├── .deepsource.toml ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── config.yml ├── dependabot.yml └── workflows │ ├── comment-run.yml │ └── docs-run.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── .release-it.json ├── CHANGELOG.md ├── CNAME ├── LICENSE.md ├── README.md ├── _tsconfig.docs.json ├── bin ├── config-schema.json ├── oas-type-schemas.json └── server.js ├── compact-keepachangelog.hbs ├── demo ├── Dockerfile ├── index.ts ├── message_queue.ts ├── server.ts └── simple_server.ts ├── docfix.ts ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── blog │ ├── 2019-05-28-first-blog-post.md │ ├── 2019-05-29-long-blog-post.md │ ├── 2021-08-01-mdx-blog-post.mdx │ ├── 2021-08-26-welcome │ │ ├── docusaurus-plushie-banner.jpeg │ │ └── index.md │ ├── authors.yml │ └── tags.yml ├── components.json ├── docs │ ├── Integrations │ │ ├── _category_.yml │ │ └── chatwoot.md │ ├── advanced │ │ ├── _category_.yml │ │ └── best-practices.md │ ├── api │ │ ├── index.md │ │ └── typedoc-sidebar.cjs │ ├── concepts │ │ ├── _category_.json │ │ ├── glossary.md │ │ └── how-it-works.md │ ├── configuration │ │ ├── _category_.json │ │ ├── capture-qr.md │ │ ├── capture-sd.md │ │ ├── command-line-options.md │ │ ├── config-object.md │ │ ├── launch-events.md │ │ ├── licensed-features.mdx │ │ ├── multiple-sessions.md │ │ └── the-client.md │ ├── get-started │ │ ├── _category_.json │ │ ├── docker.md │ │ ├── installation.md │ │ ├── link-code.md │ │ ├── quick-run.md │ │ └── socketmode.md │ ├── how-to │ │ ├── _category_.yml │ │ ├── create-api.md │ │ ├── decrypt-media.md │ │ ├── detect-logout.md │ │ ├── groups.md │ │ ├── handle-errors.md │ │ ├── incoming-calls.md │ │ ├── location.md │ │ ├── manage-participants.md │ │ ├── misc.md │ │ ├── react-to-group-events.md │ │ ├── read-state.md │ │ ├── receive-files.md │ │ ├── receive-messages.md │ │ ├── send-files.md │ │ ├── send-messages.md │ │ ├── send-videos.md │ │ ├── sendfile.md │ │ └── use-a-proxy.md │ ├── intro.md │ └── reference │ │ ├── api │ │ ├── Client │ │ │ ├── classes │ │ │ │ └── Client.md │ │ │ ├── enumerations │ │ │ │ └── namespace.md │ │ │ ├── index.md │ │ │ └── variables │ │ │ │ └── useragent.md │ │ ├── functions │ │ │ └── exposed.enum │ │ │ │ ├── enumerations │ │ │ │ └── ExposedFn.md │ │ │ │ └── index.md │ │ └── model │ │ │ ├── aliases │ │ │ ├── index.md │ │ │ └── type-aliases │ │ │ │ ├── AccountNumber.md │ │ │ │ ├── AdvancedFile.md │ │ │ │ ├── Base64.md │ │ │ │ ├── ChatId.md │ │ │ │ ├── ChatServer.md │ │ │ │ ├── ContactId.md │ │ │ │ ├── Content.md │ │ │ │ ├── CountryCode.md │ │ │ │ ├── DataURL.md │ │ │ │ ├── FilePath.md │ │ │ │ ├── GetURL.md │ │ │ │ ├── GroupChatId.md │ │ │ │ ├── GroupChatServer.md │ │ │ │ ├── GroupId.md │ │ │ │ ├── MessageId.md │ │ │ │ ├── NonSerializedId.md │ │ │ │ └── WaServers.md │ │ │ ├── button │ │ │ ├── index.md │ │ │ └── interfaces │ │ │ │ ├── AdvancedButton.md │ │ │ │ ├── Button.md │ │ │ │ ├── LocationButtonBody.md │ │ │ │ ├── Row.md │ │ │ │ └── Section.md │ │ │ ├── call │ │ │ ├── enumerations │ │ │ │ └── CallState.md │ │ │ ├── index.md │ │ │ └── interfaces │ │ │ │ └── Call.md │ │ │ ├── chat │ │ │ ├── enumerations │ │ │ │ ├── ChatMuteDuration.md │ │ │ │ ├── ChatState.md │ │ │ │ └── ChatTypes.md │ │ │ ├── index.md │ │ │ ├── interfaces │ │ │ │ ├── BaseChat.md │ │ │ │ ├── GroupChat.md │ │ │ │ ├── GroupChatCreationParticipantAddResponse.md │ │ │ │ ├── GroupChatCreationResponse.md │ │ │ │ ├── LiveLocationChangedEvent.md │ │ │ │ └── SingleChat.md │ │ │ └── type-aliases │ │ │ │ ├── Chat.md │ │ │ │ └── EphemeralDuration.md │ │ │ ├── config │ │ │ ├── enumerations │ │ │ │ ├── CLOUD_PROVIDERS.md │ │ │ │ ├── DIRECTORY_STRATEGY.md │ │ │ │ ├── LicenseType.md │ │ │ │ ├── NotificationLanguage.md │ │ │ │ ├── OnError.md │ │ │ │ ├── QRFormat.md │ │ │ │ └── QRQuality.md │ │ │ ├── index.md │ │ │ ├── interfaces │ │ │ │ ├── ConfigObject.md │ │ │ │ ├── DevTools.md │ │ │ │ ├── EventPayload.md │ │ │ │ ├── ProxyServerCredentials.md │ │ │ │ ├── SessionData.md │ │ │ │ └── Webhook.md │ │ │ └── type-aliases │ │ │ │ └── AdvancedConfig.md │ │ │ ├── contact │ │ │ ├── index.md │ │ │ └── interfaces │ │ │ │ ├── BizCategory.md │ │ │ │ ├── BizProfileOptions.md │ │ │ │ ├── BusinessHours.md │ │ │ │ ├── BusinessProfile.md │ │ │ │ ├── Contact.md │ │ │ │ └── NumberCheck.md │ │ │ ├── enumerations │ │ │ ├── Events.md │ │ │ ├── STATE.md │ │ │ └── Status.md │ │ │ ├── errors │ │ │ ├── classes │ │ │ │ ├── AddParticipantError.md │ │ │ │ ├── CustomError.md │ │ │ │ ├── PageEvaluationTimeout.md │ │ │ │ └── SessionExpiredError.md │ │ │ ├── enumerations │ │ │ │ ├── AddParticipantErrorStatusCode.md │ │ │ │ └── ERROR_NAME.md │ │ │ └── index.md │ │ │ ├── events │ │ │ ├── enumerations │ │ │ │ └── SimpleListener.md │ │ │ └── index.md │ │ │ ├── group-metadata │ │ │ ├── enumerations │ │ │ │ ├── GroupNotificationTypes.md │ │ │ │ └── groupChangeEvent.md │ │ │ ├── index.md │ │ │ └── interfaces │ │ │ │ ├── GenericGroupChangeEvent.md │ │ │ │ ├── GroupMetadata.md │ │ │ │ ├── NewCommunityGroup.md │ │ │ │ ├── Participant.md │ │ │ │ └── ParticipantChangedEventModel.md │ │ │ ├── id │ │ │ ├── index.md │ │ │ └── interfaces │ │ │ │ └── Id.md │ │ │ ├── index.md │ │ │ ├── label │ │ │ ├── index.md │ │ │ └── interfaces │ │ │ │ └── Label.md │ │ │ ├── media │ │ │ ├── index.md │ │ │ ├── type-aliases │ │ │ │ ├── Mp4StickerConversionProcessOptions.md │ │ │ │ └── StickerMetadata.md │ │ │ └── variables │ │ │ │ └── defaultProcessOptions.md │ │ │ ├── message │ │ │ ├── enumerations │ │ │ │ ├── MessageAck.md │ │ │ │ └── MessageTypes.md │ │ │ ├── index.md │ │ │ ├── interfaces │ │ │ │ ├── Message.md │ │ │ │ ├── MessageInfo.md │ │ │ │ ├── MessageInfoInteraction.md │ │ │ │ ├── PollData.md │ │ │ │ ├── PollOption.md │ │ │ │ ├── PollVote.md │ │ │ │ ├── QuoteMap.md │ │ │ │ └── ReactionSender.md │ │ │ └── type-aliases │ │ │ │ └── MessagePinDuration.md │ │ │ ├── product │ │ │ ├── index.md │ │ │ └── interfaces │ │ │ │ ├── CartItem.md │ │ │ │ ├── CustomProduct.md │ │ │ │ ├── Order.md │ │ │ │ └── Product.md │ │ │ ├── reactions │ │ │ ├── index.md │ │ │ └── type-aliases │ │ │ │ ├── Reaction.md │ │ │ │ ├── ReactionEvent.md │ │ │ │ └── ReactionRecord.md │ │ │ ├── sessionInfo │ │ │ ├── index.md │ │ │ └── interfaces │ │ │ │ ├── HealthCheck.md │ │ │ │ └── SessionInfo.md │ │ │ └── type-aliases │ │ │ └── EasyApiResponse.md │ │ ├── controllers │ │ ├── events │ │ │ ├── index.md │ │ │ └── variables │ │ │ │ └── ev.md │ │ ├── init_patch │ │ │ └── index.md │ │ ├── initializer │ │ │ ├── functions │ │ │ │ ├── create.md │ │ │ │ └── timeout.md │ │ │ ├── index.md │ │ │ └── variables │ │ │ │ ├── configWithCases.md │ │ │ │ ├── pkg.md │ │ │ │ └── screenshot.md │ │ └── patch_manager │ │ │ ├── functions │ │ │ ├── earlyInjectionCheck.md │ │ │ └── getAndInjectLicense.md │ │ │ └── index.md │ │ ├── index.md │ │ ├── logging │ │ ├── custom_transport │ │ │ ├── classes │ │ │ │ ├── LogToEvTransport.md │ │ │ │ └── NoOpTransport.md │ │ │ └── index.md │ │ └── logging │ │ │ ├── functions │ │ │ └── addRotateFileLogTransport.md │ │ │ ├── index.md │ │ │ ├── type-aliases │ │ │ └── ConfigLogTransport.md │ │ │ └── variables │ │ │ └── log.md │ │ ├── structures │ │ ├── Collector │ │ │ ├── classes │ │ │ │ ├── Collection.md │ │ │ │ └── Collector.md │ │ │ ├── index.md │ │ │ ├── interfaces │ │ │ │ ├── AwaitMessagesOptions.md │ │ │ │ └── CollectorOptions.md │ │ │ └── type-aliases │ │ │ │ └── CollectorFilter.md │ │ ├── Dialog │ │ │ ├── enumerations │ │ │ │ └── ValidationType.md │ │ │ ├── index.md │ │ │ ├── interfaces │ │ │ │ ├── CurrentDialogProps.md │ │ │ │ ├── DialogButtons.md │ │ │ │ ├── DialogListMessageRow.md │ │ │ │ ├── DialogListMessageSection.md │ │ │ │ ├── DialogProperty.md │ │ │ │ ├── DialogTemplate.md │ │ │ │ └── DialogValidation.md │ │ │ └── type-aliases │ │ │ │ └── CheckFunction.md │ │ ├── MessageCollector │ │ │ ├── classes │ │ │ │ └── MessageCollector.md │ │ │ └── index.md │ │ └── preProcessors │ │ │ ├── enumerations │ │ │ └── PREPROCESSORS.md │ │ │ ├── index.md │ │ │ ├── type-aliases │ │ │ ├── MPConfigType.md │ │ │ └── MessagePreProcessor.md │ │ │ └── variables │ │ │ └── MessagePreprocessors.md │ │ └── typedoc-sidebar.cjs ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── plugins │ ├── markdown-replacer.ts │ └── tailwind-config.ts ├── sidebars.ts ├── src │ ├── components │ │ ├── Consent │ │ │ └── index.tsx │ │ ├── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── License │ │ │ └── index.tsx │ │ └── OpenReplay │ │ │ └── OpenReplay.ts │ ├── config │ │ ├── consts.ts │ │ └── typedoc.ts │ ├── css │ │ ├── admonition.css │ │ └── custom.css │ ├── lib │ │ └── utils.ts │ ├── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md │ ├── theme │ │ ├── Admonition │ │ │ ├── Types.tsx │ │ │ └── index.tsx │ │ ├── DocRoot │ │ │ └── Layout │ │ │ │ ├── Main │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ │ ├── Sidebar │ │ │ │ ├── ExpandButton │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── styles.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ └── NavbarItem │ │ │ └── ComponentTypes.tsx │ └── ui │ │ └── button.tsx ├── static │ ├── .nojekyll │ ├── CNAME │ ├── img │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── license-identifier.png │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg │ └── js │ │ ├── arrays.js │ │ └── gumroad_docusaurus_cart_fix.js ├── tailwind.config.js └── tsconfig.json ├── package.json ├── patches.json ├── prebuild.ts ├── release-image.js ├── release.png ├── resources ├── hotfix-logo.png └── membership.png ├── src ├── api │ ├── Client.ts │ ├── functions │ │ └── exposed.enum.ts │ └── model │ │ ├── aliases.ts │ │ ├── button.ts │ │ ├── call.ts │ │ ├── chat.ts │ │ ├── config.ts │ │ ├── contact.ts │ │ ├── errors.ts │ │ ├── events.ts │ │ ├── group-metadata.ts │ │ ├── id.ts │ │ ├── index.ts │ │ ├── label.ts │ │ ├── media.ts │ │ ├── message.ts │ │ ├── product.ts │ │ ├── reactions.ts │ │ └── sessionInfo.ts ├── build │ └── build-postman.ts ├── cli │ ├── cli-options.ts │ ├── collections.ts │ ├── file-utils.ts │ ├── index.ts │ ├── integrations │ │ ├── chatwoot.ts │ │ └── cloudflare.ts │ ├── logo.ts │ ├── server.ts │ └── setup.ts ├── config │ └── puppeteer.config.ts ├── controllers │ ├── auth.ts │ ├── browser.ts │ ├── events.ts │ ├── init_patch.ts │ ├── initializer.ts │ ├── launch_checks.ts │ ├── patch_manager.ts │ ├── popup │ │ ├── index.html │ │ └── index.ts │ ├── preload.js │ └── script_preloader.ts ├── index.ts ├── lib │ ├── README.md │ ├── base64.js │ ├── hash.js │ ├── jsSha.min.js │ ├── launch.js │ ├── qr.min.js │ └── wapi.js ├── logging │ ├── custom_transport.ts │ └── logging.ts ├── structures │ ├── Collector.ts │ ├── Dialog.ts │ ├── MessageCollector.ts │ └── preProcessors.ts └── utils │ ├── pid_utils.ts │ └── tools.ts ├── test └── test.js ├── tos.md ├── tsconfig.json └── types-only ├── .npmignore ├── README.md ├── package.json └── tsconfig.json /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/comment-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.github/workflows/comment-run.yml -------------------------------------------------------------------------------- /.github/workflows/docs-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.github/workflows/docs-run.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/*.js -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/.release-it.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docs.openwa.dev -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /_tsconfig.docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/_tsconfig.docs.json -------------------------------------------------------------------------------- /bin/config-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/bin/config-schema.json -------------------------------------------------------------------------------- /bin/oas-type-schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/bin/oas-type-schemas.json -------------------------------------------------------------------------------- /bin/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/bin/server.js -------------------------------------------------------------------------------- /compact-keepachangelog.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/compact-keepachangelog.hbs -------------------------------------------------------------------------------- /demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/demo/Dockerfile -------------------------------------------------------------------------------- /demo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/demo/index.ts -------------------------------------------------------------------------------- /demo/message_queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/demo/message_queue.ts -------------------------------------------------------------------------------- /demo/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/demo/server.ts -------------------------------------------------------------------------------- /demo/simple_server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/demo/simple_server.ts -------------------------------------------------------------------------------- /docfix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docfix.ts -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/blog/2019-05-28-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/blog/2019-05-28-first-blog-post.md -------------------------------------------------------------------------------- /docs/blog/2019-05-29-long-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/blog/2019-05-29-long-blog-post.md -------------------------------------------------------------------------------- /docs/blog/2021-08-01-mdx-blog-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/blog/2021-08-01-mdx-blog-post.mdx -------------------------------------------------------------------------------- /docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg -------------------------------------------------------------------------------- /docs/blog/2021-08-26-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/blog/2021-08-26-welcome/index.md -------------------------------------------------------------------------------- /docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/blog/authors.yml -------------------------------------------------------------------------------- /docs/blog/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/blog/tags.yml -------------------------------------------------------------------------------- /docs/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/components.json -------------------------------------------------------------------------------- /docs/docs/Integrations/_category_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/Integrations/_category_.yml -------------------------------------------------------------------------------- /docs/docs/Integrations/chatwoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/Integrations/chatwoot.md -------------------------------------------------------------------------------- /docs/docs/advanced/_category_.yml: -------------------------------------------------------------------------------- 1 | label: "Advanced" 2 | position: 3 -------------------------------------------------------------------------------- /docs/docs/advanced/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/advanced/best-practices.md -------------------------------------------------------------------------------- /docs/docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/api/index.md -------------------------------------------------------------------------------- /docs/docs/api/typedoc-sidebar.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/api/typedoc-sidebar.cjs -------------------------------------------------------------------------------- /docs/docs/concepts/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/concepts/_category_.json -------------------------------------------------------------------------------- /docs/docs/concepts/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/concepts/glossary.md -------------------------------------------------------------------------------- /docs/docs/concepts/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/concepts/how-it-works.md -------------------------------------------------------------------------------- /docs/docs/configuration/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/configuration/_category_.json -------------------------------------------------------------------------------- /docs/docs/configuration/capture-qr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/configuration/capture-qr.md -------------------------------------------------------------------------------- /docs/docs/configuration/capture-sd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/configuration/capture-sd.md -------------------------------------------------------------------------------- /docs/docs/configuration/command-line-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/configuration/command-line-options.md -------------------------------------------------------------------------------- /docs/docs/configuration/config-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/configuration/config-object.md -------------------------------------------------------------------------------- /docs/docs/configuration/launch-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/configuration/launch-events.md -------------------------------------------------------------------------------- /docs/docs/configuration/licensed-features.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/configuration/licensed-features.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/multiple-sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/configuration/multiple-sessions.md -------------------------------------------------------------------------------- /docs/docs/configuration/the-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/configuration/the-client.md -------------------------------------------------------------------------------- /docs/docs/get-started/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/get-started/_category_.json -------------------------------------------------------------------------------- /docs/docs/get-started/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/get-started/docker.md -------------------------------------------------------------------------------- /docs/docs/get-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/get-started/installation.md -------------------------------------------------------------------------------- /docs/docs/get-started/link-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/get-started/link-code.md -------------------------------------------------------------------------------- /docs/docs/get-started/quick-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/get-started/quick-run.md -------------------------------------------------------------------------------- /docs/docs/get-started/socketmode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/get-started/socketmode.md -------------------------------------------------------------------------------- /docs/docs/how-to/_category_.yml: -------------------------------------------------------------------------------- 1 | label: "How To" 2 | # position: 0 -------------------------------------------------------------------------------- /docs/docs/how-to/create-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/create-api.md -------------------------------------------------------------------------------- /docs/docs/how-to/decrypt-media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/decrypt-media.md -------------------------------------------------------------------------------- /docs/docs/how-to/detect-logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/detect-logout.md -------------------------------------------------------------------------------- /docs/docs/how-to/groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/groups.md -------------------------------------------------------------------------------- /docs/docs/how-to/handle-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/handle-errors.md -------------------------------------------------------------------------------- /docs/docs/how-to/incoming-calls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/incoming-calls.md -------------------------------------------------------------------------------- /docs/docs/how-to/location.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/location.md -------------------------------------------------------------------------------- /docs/docs/how-to/manage-participants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/manage-participants.md -------------------------------------------------------------------------------- /docs/docs/how-to/misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/misc.md -------------------------------------------------------------------------------- /docs/docs/how-to/react-to-group-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/react-to-group-events.md -------------------------------------------------------------------------------- /docs/docs/how-to/read-state.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/how-to/receive-files.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/how-to/receive-messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/receive-messages.md -------------------------------------------------------------------------------- /docs/docs/how-to/send-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/send-files.md -------------------------------------------------------------------------------- /docs/docs/how-to/send-messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/send-messages.md -------------------------------------------------------------------------------- /docs/docs/how-to/send-videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/send-videos.md -------------------------------------------------------------------------------- /docs/docs/how-to/sendfile.md: -------------------------------------------------------------------------------- 1 | # SendFile 2 | 3 | -------------------------------------------------------------------------------- /docs/docs/how-to/use-a-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/how-to/use-a-proxy.md -------------------------------------------------------------------------------- /docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/intro.md -------------------------------------------------------------------------------- /docs/docs/reference/api/Client/classes/Client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/Client/classes/Client.md -------------------------------------------------------------------------------- /docs/docs/reference/api/Client/enumerations/namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/Client/enumerations/namespace.md -------------------------------------------------------------------------------- /docs/docs/reference/api/Client/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/Client/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/Client/variables/useragent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/Client/variables/useragent.md -------------------------------------------------------------------------------- /docs/docs/reference/api/functions/exposed.enum/enumerations/ExposedFn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/functions/exposed.enum/enumerations/ExposedFn.md -------------------------------------------------------------------------------- /docs/docs/reference/api/functions/exposed.enum/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/functions/exposed.enum/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/AccountNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/AccountNumber.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/AdvancedFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/AdvancedFile.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/Base64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/Base64.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/ChatId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/ChatId.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/ChatServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/ChatServer.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/ContactId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/ContactId.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/Content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/Content.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/CountryCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/CountryCode.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/DataURL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/DataURL.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/FilePath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/FilePath.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/GetURL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/GetURL.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/GroupChatId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/GroupChatId.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/GroupChatServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/GroupChatServer.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/GroupId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/GroupId.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/MessageId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/MessageId.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/NonSerializedId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/NonSerializedId.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/aliases/type-aliases/WaServers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/aliases/type-aliases/WaServers.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/button/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/button/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/button/interfaces/AdvancedButton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/button/interfaces/AdvancedButton.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/button/interfaces/Button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/button/interfaces/Button.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/button/interfaces/LocationButtonBody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/button/interfaces/LocationButtonBody.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/button/interfaces/Row.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/button/interfaces/Row.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/button/interfaces/Section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/button/interfaces/Section.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/call/enumerations/CallState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/call/enumerations/CallState.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/call/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/call/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/call/interfaces/Call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/call/interfaces/Call.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/enumerations/ChatMuteDuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/enumerations/ChatMuteDuration.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/enumerations/ChatState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/enumerations/ChatState.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/enumerations/ChatTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/enumerations/ChatTypes.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/interfaces/BaseChat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/interfaces/BaseChat.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/interfaces/GroupChat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/interfaces/GroupChat.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/interfaces/GroupChatCreationParticipantAddResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/interfaces/GroupChatCreationParticipantAddResponse.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/interfaces/GroupChatCreationResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/interfaces/GroupChatCreationResponse.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/interfaces/LiveLocationChangedEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/interfaces/LiveLocationChangedEvent.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/interfaces/SingleChat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/interfaces/SingleChat.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/type-aliases/Chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/type-aliases/Chat.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/chat/type-aliases/EphemeralDuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/chat/type-aliases/EphemeralDuration.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/enumerations/CLOUD_PROVIDERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/enumerations/CLOUD_PROVIDERS.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/enumerations/DIRECTORY_STRATEGY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/enumerations/DIRECTORY_STRATEGY.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/enumerations/LicenseType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/enumerations/LicenseType.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/enumerations/NotificationLanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/enumerations/NotificationLanguage.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/enumerations/OnError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/enumerations/OnError.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/enumerations/QRFormat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/enumerations/QRFormat.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/enumerations/QRQuality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/enumerations/QRQuality.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/interfaces/ConfigObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/interfaces/ConfigObject.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/interfaces/DevTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/interfaces/DevTools.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/interfaces/EventPayload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/interfaces/EventPayload.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/interfaces/ProxyServerCredentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/interfaces/ProxyServerCredentials.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/interfaces/SessionData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/interfaces/SessionData.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/interfaces/Webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/interfaces/Webhook.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/config/type-aliases/AdvancedConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/config/type-aliases/AdvancedConfig.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/contact/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/contact/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/contact/interfaces/BizCategory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/contact/interfaces/BizCategory.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/contact/interfaces/BizProfileOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/contact/interfaces/BizProfileOptions.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/contact/interfaces/BusinessHours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/contact/interfaces/BusinessHours.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/contact/interfaces/BusinessProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/contact/interfaces/BusinessProfile.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/contact/interfaces/Contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/contact/interfaces/Contact.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/contact/interfaces/NumberCheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/contact/interfaces/NumberCheck.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/enumerations/Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/enumerations/Events.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/enumerations/STATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/enumerations/STATE.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/enumerations/Status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/enumerations/Status.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/errors/classes/AddParticipantError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/errors/classes/AddParticipantError.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/errors/classes/CustomError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/errors/classes/CustomError.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/errors/classes/PageEvaluationTimeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/errors/classes/PageEvaluationTimeout.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/errors/classes/SessionExpiredError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/errors/classes/SessionExpiredError.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/errors/enumerations/AddParticipantErrorStatusCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/errors/enumerations/AddParticipantErrorStatusCode.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/errors/enumerations/ERROR_NAME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/errors/enumerations/ERROR_NAME.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/errors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/errors/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/events/enumerations/SimpleListener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/events/enumerations/SimpleListener.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/events/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/events/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/group-metadata/enumerations/GroupNotificationTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/group-metadata/enumerations/GroupNotificationTypes.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/group-metadata/enumerations/groupChangeEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/group-metadata/enumerations/groupChangeEvent.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/group-metadata/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/group-metadata/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/group-metadata/interfaces/GenericGroupChangeEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/group-metadata/interfaces/GenericGroupChangeEvent.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/group-metadata/interfaces/GroupMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/group-metadata/interfaces/GroupMetadata.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/group-metadata/interfaces/NewCommunityGroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/group-metadata/interfaces/NewCommunityGroup.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/group-metadata/interfaces/Participant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/group-metadata/interfaces/Participant.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/group-metadata/interfaces/ParticipantChangedEventModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/group-metadata/interfaces/ParticipantChangedEventModel.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/id/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/id/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/id/interfaces/Id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/id/interfaces/Id.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/label/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/label/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/label/interfaces/Label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/label/interfaces/Label.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/media/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/media/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/media/type-aliases/Mp4StickerConversionProcessOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/media/type-aliases/Mp4StickerConversionProcessOptions.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/media/type-aliases/StickerMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/media/type-aliases/StickerMetadata.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/media/variables/defaultProcessOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/media/variables/defaultProcessOptions.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/enumerations/MessageAck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/enumerations/MessageAck.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/enumerations/MessageTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/enumerations/MessageTypes.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/interfaces/Message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/interfaces/Message.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/interfaces/MessageInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/interfaces/MessageInfo.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/interfaces/MessageInfoInteraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/interfaces/MessageInfoInteraction.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/interfaces/PollData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/interfaces/PollData.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/interfaces/PollOption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/interfaces/PollOption.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/interfaces/PollVote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/interfaces/PollVote.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/interfaces/QuoteMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/interfaces/QuoteMap.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/interfaces/ReactionSender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/interfaces/ReactionSender.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/message/type-aliases/MessagePinDuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/message/type-aliases/MessagePinDuration.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/product/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/product/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/product/interfaces/CartItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/product/interfaces/CartItem.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/product/interfaces/CustomProduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/product/interfaces/CustomProduct.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/product/interfaces/Order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/product/interfaces/Order.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/product/interfaces/Product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/product/interfaces/Product.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/reactions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/reactions/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/reactions/type-aliases/Reaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/reactions/type-aliases/Reaction.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/reactions/type-aliases/ReactionEvent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/reactions/type-aliases/ReactionEvent.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/reactions/type-aliases/ReactionRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/reactions/type-aliases/ReactionRecord.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/sessionInfo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/sessionInfo/index.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/sessionInfo/interfaces/HealthCheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/sessionInfo/interfaces/HealthCheck.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/sessionInfo/interfaces/SessionInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/sessionInfo/interfaces/SessionInfo.md -------------------------------------------------------------------------------- /docs/docs/reference/api/model/type-aliases/EasyApiResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/api/model/type-aliases/EasyApiResponse.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/events/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/events/index.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/events/variables/ev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/events/variables/ev.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/init_patch/index.md: -------------------------------------------------------------------------------- 1 | # controllers/init\_patch 2 | -------------------------------------------------------------------------------- /docs/docs/reference/controllers/initializer/functions/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/initializer/functions/create.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/initializer/functions/timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/initializer/functions/timeout.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/initializer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/initializer/index.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/initializer/variables/configWithCases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/initializer/variables/configWithCases.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/initializer/variables/pkg.md: -------------------------------------------------------------------------------- 1 | # Variable: pkg 2 | 3 | > `const` **pkg**: `any` 4 | -------------------------------------------------------------------------------- /docs/docs/reference/controllers/initializer/variables/screenshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/initializer/variables/screenshot.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/patch_manager/functions/earlyInjectionCheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/patch_manager/functions/earlyInjectionCheck.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/patch_manager/functions/getAndInjectLicense.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/patch_manager/functions/getAndInjectLicense.md -------------------------------------------------------------------------------- /docs/docs/reference/controllers/patch_manager/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/controllers/patch_manager/index.md -------------------------------------------------------------------------------- /docs/docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/index.md -------------------------------------------------------------------------------- /docs/docs/reference/logging/custom_transport/classes/LogToEvTransport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/logging/custom_transport/classes/LogToEvTransport.md -------------------------------------------------------------------------------- /docs/docs/reference/logging/custom_transport/classes/NoOpTransport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/logging/custom_transport/classes/NoOpTransport.md -------------------------------------------------------------------------------- /docs/docs/reference/logging/custom_transport/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/logging/custom_transport/index.md -------------------------------------------------------------------------------- /docs/docs/reference/logging/logging/functions/addRotateFileLogTransport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/logging/logging/functions/addRotateFileLogTransport.md -------------------------------------------------------------------------------- /docs/docs/reference/logging/logging/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/logging/logging/index.md -------------------------------------------------------------------------------- /docs/docs/reference/logging/logging/type-aliases/ConfigLogTransport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/logging/logging/type-aliases/ConfigLogTransport.md -------------------------------------------------------------------------------- /docs/docs/reference/logging/logging/variables/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/logging/logging/variables/log.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Collector/classes/Collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Collector/classes/Collection.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Collector/classes/Collector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Collector/classes/Collector.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Collector/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Collector/index.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Collector/interfaces/AwaitMessagesOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Collector/interfaces/AwaitMessagesOptions.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Collector/interfaces/CollectorOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Collector/interfaces/CollectorOptions.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Collector/type-aliases/CollectorFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Collector/type-aliases/CollectorFilter.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/enumerations/ValidationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/enumerations/ValidationType.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/index.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/interfaces/CurrentDialogProps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/interfaces/CurrentDialogProps.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/interfaces/DialogButtons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/interfaces/DialogButtons.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/interfaces/DialogListMessageRow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/interfaces/DialogListMessageRow.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/interfaces/DialogListMessageSection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/interfaces/DialogListMessageSection.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/interfaces/DialogProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/interfaces/DialogProperty.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/interfaces/DialogTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/interfaces/DialogTemplate.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/interfaces/DialogValidation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/interfaces/DialogValidation.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/Dialog/type-aliases/CheckFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/Dialog/type-aliases/CheckFunction.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/MessageCollector/classes/MessageCollector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/MessageCollector/classes/MessageCollector.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/MessageCollector/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/MessageCollector/index.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/preProcessors/enumerations/PREPROCESSORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/preProcessors/enumerations/PREPROCESSORS.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/preProcessors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/preProcessors/index.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/preProcessors/type-aliases/MPConfigType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/preProcessors/type-aliases/MPConfigType.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/preProcessors/type-aliases/MessagePreProcessor.md -------------------------------------------------------------------------------- /docs/docs/reference/structures/preProcessors/variables/MessagePreprocessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/structures/preProcessors/variables/MessagePreprocessors.md -------------------------------------------------------------------------------- /docs/docs/reference/typedoc-sidebar.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docs/reference/typedoc-sidebar.cjs -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/plugins/markdown-replacer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/plugins/markdown-replacer.ts -------------------------------------------------------------------------------- /docs/plugins/tailwind-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/plugins/tailwind-config.ts -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/Consent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/components/Consent/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/License/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/components/License/index.tsx -------------------------------------------------------------------------------- /docs/src/components/OpenReplay/OpenReplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/components/OpenReplay/OpenReplay.ts -------------------------------------------------------------------------------- /docs/src/config/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/config/consts.ts -------------------------------------------------------------------------------- /docs/src/config/typedoc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/config/typedoc.ts -------------------------------------------------------------------------------- /docs/src/css/admonition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/css/admonition.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/lib/utils.ts -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/src/theme/Admonition/Types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/Admonition/Types.tsx -------------------------------------------------------------------------------- /docs/src/theme/Admonition/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/Admonition/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/DocRoot/Layout/Main/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/DocRoot/Layout/Main/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/DocRoot/Layout/Main/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/DocRoot/Layout/Main/styles.module.css -------------------------------------------------------------------------------- /docs/src/theme/DocRoot/Layout/Sidebar/ExpandButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/DocRoot/Layout/Sidebar/ExpandButton/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/DocRoot/Layout/Sidebar/ExpandButton/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/DocRoot/Layout/Sidebar/ExpandButton/styles.module.css -------------------------------------------------------------------------------- /docs/src/theme/DocRoot/Layout/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/DocRoot/Layout/Sidebar/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/DocRoot/Layout/Sidebar/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/DocRoot/Layout/Sidebar/styles.module.css -------------------------------------------------------------------------------- /docs/src/theme/DocRoot/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/DocRoot/Layout/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/DocRoot/Layout/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/DocRoot/Layout/styles.module.css -------------------------------------------------------------------------------- /docs/src/theme/NavbarItem/ComponentTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/theme/NavbarItem/ComponentTypes.tsx -------------------------------------------------------------------------------- /docs/src/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/src/ui/button.tsx -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/CNAME: -------------------------------------------------------------------------------- 1 | docs.openwa.dev -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/license-identifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/img/license-identifier.png -------------------------------------------------------------------------------- /docs/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/img/logo.png -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/static/js/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/js/arrays.js -------------------------------------------------------------------------------- /docs/static/js/gumroad_docusaurus_cart_fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/static/js/gumroad_docusaurus_cart_fix.js -------------------------------------------------------------------------------- /docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/tailwind.config.js -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /patches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/patches.json -------------------------------------------------------------------------------- /prebuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/prebuild.ts -------------------------------------------------------------------------------- /release-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/release-image.js -------------------------------------------------------------------------------- /release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/release.png -------------------------------------------------------------------------------- /resources/hotfix-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/resources/hotfix-logo.png -------------------------------------------------------------------------------- /resources/membership.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/resources/membership.png -------------------------------------------------------------------------------- /src/api/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/Client.ts -------------------------------------------------------------------------------- /src/api/functions/exposed.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/functions/exposed.enum.ts -------------------------------------------------------------------------------- /src/api/model/aliases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/aliases.ts -------------------------------------------------------------------------------- /src/api/model/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/button.ts -------------------------------------------------------------------------------- /src/api/model/call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/call.ts -------------------------------------------------------------------------------- /src/api/model/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/chat.ts -------------------------------------------------------------------------------- /src/api/model/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/config.ts -------------------------------------------------------------------------------- /src/api/model/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/contact.ts -------------------------------------------------------------------------------- /src/api/model/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/errors.ts -------------------------------------------------------------------------------- /src/api/model/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/events.ts -------------------------------------------------------------------------------- /src/api/model/group-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/group-metadata.ts -------------------------------------------------------------------------------- /src/api/model/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/id.ts -------------------------------------------------------------------------------- /src/api/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/index.ts -------------------------------------------------------------------------------- /src/api/model/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/label.ts -------------------------------------------------------------------------------- /src/api/model/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/media.ts -------------------------------------------------------------------------------- /src/api/model/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/message.ts -------------------------------------------------------------------------------- /src/api/model/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/product.ts -------------------------------------------------------------------------------- /src/api/model/reactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/reactions.ts -------------------------------------------------------------------------------- /src/api/model/sessionInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/api/model/sessionInfo.ts -------------------------------------------------------------------------------- /src/build/build-postman.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/build/build-postman.ts -------------------------------------------------------------------------------- /src/cli/cli-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/cli/cli-options.ts -------------------------------------------------------------------------------- /src/cli/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/cli/collections.ts -------------------------------------------------------------------------------- /src/cli/file-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/cli/file-utils.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/cli/integrations/chatwoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/cli/integrations/chatwoot.ts -------------------------------------------------------------------------------- /src/cli/integrations/cloudflare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/cli/integrations/cloudflare.ts -------------------------------------------------------------------------------- /src/cli/logo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/cli/logo.ts -------------------------------------------------------------------------------- /src/cli/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/cli/server.ts -------------------------------------------------------------------------------- /src/cli/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/cli/setup.ts -------------------------------------------------------------------------------- /src/config/puppeteer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/config/puppeteer.config.ts -------------------------------------------------------------------------------- /src/controllers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/auth.ts -------------------------------------------------------------------------------- /src/controllers/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/browser.ts -------------------------------------------------------------------------------- /src/controllers/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/events.ts -------------------------------------------------------------------------------- /src/controllers/init_patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/init_patch.ts -------------------------------------------------------------------------------- /src/controllers/initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/initializer.ts -------------------------------------------------------------------------------- /src/controllers/launch_checks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/launch_checks.ts -------------------------------------------------------------------------------- /src/controllers/patch_manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/patch_manager.ts -------------------------------------------------------------------------------- /src/controllers/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/popup/index.html -------------------------------------------------------------------------------- /src/controllers/popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/popup/index.ts -------------------------------------------------------------------------------- /src/controllers/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/preload.js -------------------------------------------------------------------------------- /src/controllers/script_preloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/controllers/script_preloader.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/lib/README.md -------------------------------------------------------------------------------- /src/lib/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/lib/base64.js -------------------------------------------------------------------------------- /src/lib/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/lib/hash.js -------------------------------------------------------------------------------- /src/lib/jsSha.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/lib/jsSha.min.js -------------------------------------------------------------------------------- /src/lib/launch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/lib/launch.js -------------------------------------------------------------------------------- /src/lib/qr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/lib/qr.min.js -------------------------------------------------------------------------------- /src/lib/wapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/lib/wapi.js -------------------------------------------------------------------------------- /src/logging/custom_transport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/logging/custom_transport.ts -------------------------------------------------------------------------------- /src/logging/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/logging/logging.ts -------------------------------------------------------------------------------- /src/structures/Collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/structures/Collector.ts -------------------------------------------------------------------------------- /src/structures/Dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/structures/Dialog.ts -------------------------------------------------------------------------------- /src/structures/MessageCollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/structures/MessageCollector.ts -------------------------------------------------------------------------------- /src/structures/preProcessors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/structures/preProcessors.ts -------------------------------------------------------------------------------- /src/utils/pid_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/utils/pid_utils.ts -------------------------------------------------------------------------------- /src/utils/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/src/utils/tools.ts -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/test/test.js -------------------------------------------------------------------------------- /tos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/tos.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types-only/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/types-only/.npmignore -------------------------------------------------------------------------------- /types-only/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/types-only/README.md -------------------------------------------------------------------------------- /types-only/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/types-only/package.json -------------------------------------------------------------------------------- /types-only/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/wa-automate-nodejs/HEAD/types-only/tsconfig.json --------------------------------------------------------------------------------