├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── pr_healthier.yml │ ├── pr_respond.yml │ ├── publish-release.yml │ └── shizoweb-beta_release.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .release-it.yml ├── CHANGELOG.md ├── Example ├── boot_analytics_test.json └── example.ts ├── LICENSE ├── Media ├── .gitignore ├── cat.jpeg ├── icon.png ├── ma_gif.mp4 ├── meme.jpeg ├── octopus.webp └── sonata.mp3 ├── README.md ├── WAProto ├── GenerateStatics.sh ├── WAProto.proto ├── index.d.ts └── index.js ├── WASignalGroup ├── GroupProtocol.js ├── ciphertext_message.js ├── generate-proto.sh ├── group.proto ├── group_cipher.js ├── group_session_builder.js ├── index.js ├── keyhelper.js ├── protobufs.js ├── queue_job.js ├── readme.md ├── sender_chain_key.js ├── sender_key_distribution_message.js ├── sender_key_message.js ├── sender_key_name.js ├── sender_key_record.js ├── sender_key_state.js └── sender_message_key.js ├── jest.config.js ├── package.json ├── proto-extract ├── .gitignore ├── README.md ├── index.js ├── package.json └── yarn.lock ├── src ├── Defaults │ ├── baileys-version.json │ ├── index.ts │ └── phonenumber-mcc.json ├── Signal │ └── libsignal.ts ├── Socket │ ├── Client │ │ ├── abstract-socket-client.ts │ │ ├── index.ts │ │ ├── mobile-socket-client.ts │ │ └── web-socket-client.ts │ ├── business.ts │ ├── chats.ts │ ├── groups.ts │ ├── index.ts │ ├── messages-recv.ts │ ├── messages-send.ts │ ├── newsletter.ts │ ├── registration.ts │ └── socket.ts ├── Store │ ├── index.ts │ ├── make-cache-manager-store.ts │ ├── make-in-memory-store.ts │ ├── make-ordered-dictionary.ts │ └── object-repository.ts ├── Tests │ ├── test.app-state-sync.ts │ ├── test.event-buffer.ts │ ├── test.key-store.ts │ ├── test.libsignal.ts │ ├── test.media-download.ts │ ├── test.messages.ts │ └── utils.ts ├── Types │ ├── Auth.ts │ ├── Call.ts │ ├── Chat.ts │ ├── Contact.ts │ ├── Events.ts │ ├── GroupMetadata.ts │ ├── Label.ts │ ├── LabelAssociation.ts │ ├── Message.ts │ ├── Newsletter.ts │ ├── Product.ts │ ├── Signal.ts │ ├── Socket.ts │ ├── State.ts │ └── index.ts ├── Utils │ ├── auth-utils.ts │ ├── baileys-event-stream.ts │ ├── business.ts │ ├── chat-utils.ts │ ├── crypto.ts │ ├── decode-wa-message.ts │ ├── event-buffer.ts │ ├── generics.ts │ ├── history.ts │ ├── index.ts │ ├── link-preview.ts │ ├── logger.ts │ ├── lt-hash.ts │ ├── make-mutex.ts │ ├── messages-media.ts │ ├── messages.ts │ ├── noise-handler.ts │ ├── process-message.ts │ ├── signal.ts │ ├── use-multi-file-auth-state.ts │ └── validate-connection.ts ├── WABinary │ ├── constants.ts │ ├── decode.ts │ ├── encode.ts │ ├── generic-utils.ts │ ├── index.ts │ ├── jid-utils.ts │ └── types.ts ├── WAM │ ├── BinaryInfo.ts │ ├── constants.ts │ ├── encode.ts │ └── index.ts └── index.ts ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/pr_healthier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.github/workflows/pr_healthier.yml -------------------------------------------------------------------------------- /.github/workflows/pr_respond.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.github/workflows/pr_respond.yml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.github/workflows/publish-release.yml -------------------------------------------------------------------------------- /.github/workflows/shizoweb-beta_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.github/workflows/shizoweb-beta_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /.release-it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/.release-it.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/boot_analytics_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/Example/boot_analytics_test.json -------------------------------------------------------------------------------- /Example/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/Example/example.ts -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/LICENSE -------------------------------------------------------------------------------- /Media/.gitignore: -------------------------------------------------------------------------------- 1 | received_* 2 | media_* -------------------------------------------------------------------------------- /Media/cat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/Media/cat.jpeg -------------------------------------------------------------------------------- /Media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/Media/icon.png -------------------------------------------------------------------------------- /Media/ma_gif.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/Media/ma_gif.mp4 -------------------------------------------------------------------------------- /Media/meme.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/Media/meme.jpeg -------------------------------------------------------------------------------- /Media/octopus.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/Media/octopus.webp -------------------------------------------------------------------------------- /Media/sonata.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/Media/sonata.mp3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/README.md -------------------------------------------------------------------------------- /WAProto/GenerateStatics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WAProto/GenerateStatics.sh -------------------------------------------------------------------------------- /WAProto/WAProto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WAProto/WAProto.proto -------------------------------------------------------------------------------- /WAProto/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WAProto/index.d.ts -------------------------------------------------------------------------------- /WAProto/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WAProto/index.js -------------------------------------------------------------------------------- /WASignalGroup/GroupProtocol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/GroupProtocol.js -------------------------------------------------------------------------------- /WASignalGroup/ciphertext_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/ciphertext_message.js -------------------------------------------------------------------------------- /WASignalGroup/generate-proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/generate-proto.sh -------------------------------------------------------------------------------- /WASignalGroup/group.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/group.proto -------------------------------------------------------------------------------- /WASignalGroup/group_cipher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/group_cipher.js -------------------------------------------------------------------------------- /WASignalGroup/group_session_builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/group_session_builder.js -------------------------------------------------------------------------------- /WASignalGroup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/index.js -------------------------------------------------------------------------------- /WASignalGroup/keyhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/keyhelper.js -------------------------------------------------------------------------------- /WASignalGroup/protobufs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/protobufs.js -------------------------------------------------------------------------------- /WASignalGroup/queue_job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/queue_job.js -------------------------------------------------------------------------------- /WASignalGroup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/readme.md -------------------------------------------------------------------------------- /WASignalGroup/sender_chain_key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/sender_chain_key.js -------------------------------------------------------------------------------- /WASignalGroup/sender_key_distribution_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/sender_key_distribution_message.js -------------------------------------------------------------------------------- /WASignalGroup/sender_key_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/sender_key_message.js -------------------------------------------------------------------------------- /WASignalGroup/sender_key_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/sender_key_name.js -------------------------------------------------------------------------------- /WASignalGroup/sender_key_record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/sender_key_record.js -------------------------------------------------------------------------------- /WASignalGroup/sender_key_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/sender_key_state.js -------------------------------------------------------------------------------- /WASignalGroup/sender_message_key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/WASignalGroup/sender_message_key.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/package.json -------------------------------------------------------------------------------- /proto-extract/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /proto-extract/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/proto-extract/README.md -------------------------------------------------------------------------------- /proto-extract/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/proto-extract/index.js -------------------------------------------------------------------------------- /proto-extract/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/proto-extract/package.json -------------------------------------------------------------------------------- /proto-extract/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/proto-extract/yarn.lock -------------------------------------------------------------------------------- /src/Defaults/baileys-version.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": [2, 2413, 1] 3 | } 4 | -------------------------------------------------------------------------------- /src/Defaults/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Defaults/index.ts -------------------------------------------------------------------------------- /src/Defaults/phonenumber-mcc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Defaults/phonenumber-mcc.json -------------------------------------------------------------------------------- /src/Signal/libsignal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Signal/libsignal.ts -------------------------------------------------------------------------------- /src/Socket/Client/abstract-socket-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/Client/abstract-socket-client.ts -------------------------------------------------------------------------------- /src/Socket/Client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/Client/index.ts -------------------------------------------------------------------------------- /src/Socket/Client/mobile-socket-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/Client/mobile-socket-client.ts -------------------------------------------------------------------------------- /src/Socket/Client/web-socket-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/Client/web-socket-client.ts -------------------------------------------------------------------------------- /src/Socket/business.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/business.ts -------------------------------------------------------------------------------- /src/Socket/chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/chats.ts -------------------------------------------------------------------------------- /src/Socket/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/groups.ts -------------------------------------------------------------------------------- /src/Socket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/index.ts -------------------------------------------------------------------------------- /src/Socket/messages-recv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/messages-recv.ts -------------------------------------------------------------------------------- /src/Socket/messages-send.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/messages-send.ts -------------------------------------------------------------------------------- /src/Socket/newsletter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/newsletter.ts -------------------------------------------------------------------------------- /src/Socket/registration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/registration.ts -------------------------------------------------------------------------------- /src/Socket/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Socket/socket.ts -------------------------------------------------------------------------------- /src/Store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Store/index.ts -------------------------------------------------------------------------------- /src/Store/make-cache-manager-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Store/make-cache-manager-store.ts -------------------------------------------------------------------------------- /src/Store/make-in-memory-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Store/make-in-memory-store.ts -------------------------------------------------------------------------------- /src/Store/make-ordered-dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Store/make-ordered-dictionary.ts -------------------------------------------------------------------------------- /src/Store/object-repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Store/object-repository.ts -------------------------------------------------------------------------------- /src/Tests/test.app-state-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Tests/test.app-state-sync.ts -------------------------------------------------------------------------------- /src/Tests/test.event-buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Tests/test.event-buffer.ts -------------------------------------------------------------------------------- /src/Tests/test.key-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Tests/test.key-store.ts -------------------------------------------------------------------------------- /src/Tests/test.libsignal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Tests/test.libsignal.ts -------------------------------------------------------------------------------- /src/Tests/test.media-download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Tests/test.media-download.ts -------------------------------------------------------------------------------- /src/Tests/test.messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Tests/test.messages.ts -------------------------------------------------------------------------------- /src/Tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Tests/utils.ts -------------------------------------------------------------------------------- /src/Types/Auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Auth.ts -------------------------------------------------------------------------------- /src/Types/Call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Call.ts -------------------------------------------------------------------------------- /src/Types/Chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Chat.ts -------------------------------------------------------------------------------- /src/Types/Contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Contact.ts -------------------------------------------------------------------------------- /src/Types/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Events.ts -------------------------------------------------------------------------------- /src/Types/GroupMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/GroupMetadata.ts -------------------------------------------------------------------------------- /src/Types/Label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Label.ts -------------------------------------------------------------------------------- /src/Types/LabelAssociation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/LabelAssociation.ts -------------------------------------------------------------------------------- /src/Types/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Message.ts -------------------------------------------------------------------------------- /src/Types/Newsletter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Newsletter.ts -------------------------------------------------------------------------------- /src/Types/Product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Product.ts -------------------------------------------------------------------------------- /src/Types/Signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Signal.ts -------------------------------------------------------------------------------- /src/Types/Socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/Socket.ts -------------------------------------------------------------------------------- /src/Types/State.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/State.ts -------------------------------------------------------------------------------- /src/Types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Types/index.ts -------------------------------------------------------------------------------- /src/Utils/auth-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/auth-utils.ts -------------------------------------------------------------------------------- /src/Utils/baileys-event-stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/baileys-event-stream.ts -------------------------------------------------------------------------------- /src/Utils/business.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/business.ts -------------------------------------------------------------------------------- /src/Utils/chat-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/chat-utils.ts -------------------------------------------------------------------------------- /src/Utils/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/crypto.ts -------------------------------------------------------------------------------- /src/Utils/decode-wa-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/decode-wa-message.ts -------------------------------------------------------------------------------- /src/Utils/event-buffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/event-buffer.ts -------------------------------------------------------------------------------- /src/Utils/generics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/generics.ts -------------------------------------------------------------------------------- /src/Utils/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/history.ts -------------------------------------------------------------------------------- /src/Utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/index.ts -------------------------------------------------------------------------------- /src/Utils/link-preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/link-preview.ts -------------------------------------------------------------------------------- /src/Utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/logger.ts -------------------------------------------------------------------------------- /src/Utils/lt-hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/lt-hash.ts -------------------------------------------------------------------------------- /src/Utils/make-mutex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/make-mutex.ts -------------------------------------------------------------------------------- /src/Utils/messages-media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/messages-media.ts -------------------------------------------------------------------------------- /src/Utils/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/messages.ts -------------------------------------------------------------------------------- /src/Utils/noise-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/noise-handler.ts -------------------------------------------------------------------------------- /src/Utils/process-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/process-message.ts -------------------------------------------------------------------------------- /src/Utils/signal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/signal.ts -------------------------------------------------------------------------------- /src/Utils/use-multi-file-auth-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/use-multi-file-auth-state.ts -------------------------------------------------------------------------------- /src/Utils/validate-connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/Utils/validate-connection.ts -------------------------------------------------------------------------------- /src/WABinary/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WABinary/constants.ts -------------------------------------------------------------------------------- /src/WABinary/decode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WABinary/decode.ts -------------------------------------------------------------------------------- /src/WABinary/encode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WABinary/encode.ts -------------------------------------------------------------------------------- /src/WABinary/generic-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WABinary/generic-utils.ts -------------------------------------------------------------------------------- /src/WABinary/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WABinary/index.ts -------------------------------------------------------------------------------- /src/WABinary/jid-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WABinary/jid-utils.ts -------------------------------------------------------------------------------- /src/WABinary/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WABinary/types.ts -------------------------------------------------------------------------------- /src/WAM/BinaryInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WAM/BinaryInfo.ts -------------------------------------------------------------------------------- /src/WAM/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WAM/constants.ts -------------------------------------------------------------------------------- /src/WAM/encode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WAM/encode.ts -------------------------------------------------------------------------------- /src/WAM/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/WAM/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shizo-devs/shizoweb/HEAD/yarn.lock --------------------------------------------------------------------------------