├── .codebeatignore ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── codeql-analysis.yml │ ├── commitlint.yml │ ├── night.yml │ ├── publish.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .release-it.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Postman └── postman_collection.json ├── README.md ├── SECURITY.md ├── Update.md ├── docs ├── getting-started │ ├── admin.md │ ├── downloading_files.md │ ├── events.md │ ├── group_functions.md │ ├── installation.md │ ├── profile_functions.md │ ├── retrieving_data.md │ ├── send_functions.md │ ├── send_options.md │ ├── start_bot.md │ ├── user.md │ └── web_service.md └── layouts │ ├── analytics.hbs │ ├── default.hbs │ └── fix-docs.ts ├── eslint.config.mjs ├── gulp ├── bin │ └── gulpfile.js ├── hydra │ └── gulpfile.js ├── knex │ └── gulpfile.js ├── lessons │ └── gulpfile.js ├── migrations │ └── gulpfile.js ├── sqlite │ └── gulpfile.js ├── types │ └── gulpfile.js └── views │ └── gulpfile.js ├── img ├── .gitkeep ├── 2022-06-03_23-26-08.gif ├── documentation.png ├── hydra.png ├── logo-horizontal.webp ├── logo-redrive-png.png └── logo_zaplus.png ├── package.json ├── src ├── bin │ ├── admin │ ├── admin.cmd │ └── admin.ps1 ├── index.ts ├── knexfile.js ├── package-lock.json ├── package.json ├── webpack │ ├── api │ │ ├── browser.ts │ │ ├── check-up-to-date.ts │ │ ├── init.ts │ │ └── layes │ │ │ ├── callback-on.layes.ts │ │ │ ├── group.layer.ts │ │ │ ├── helpers.ts │ │ │ ├── index.ts │ │ │ ├── listener.layes.ts │ │ │ ├── on-wpp.ts │ │ │ ├── profile.layes.ts │ │ │ ├── retriever.layer.ts │ │ │ ├── scraping.layes.ts │ │ │ ├── sender.layes.ts │ │ │ └── whatsapp.ts │ ├── assets │ │ ├── api.js │ │ ├── event-listener │ │ │ ├── index.js │ │ │ ├── interface-change.js │ │ │ ├── new-edit-message.js │ │ │ ├── new-message.js │ │ │ ├── new-on-ack.js │ │ │ ├── newDeleteMessage.js │ │ │ ├── on-intro-reaction-message.js │ │ │ └── on-reaction-message.js │ │ ├── functions │ │ │ ├── add-participant.js │ │ │ ├── code-for-phone-number.js │ │ │ ├── convert-number.js │ │ │ ├── create-group.js │ │ │ ├── get-all-chats-groups.js │ │ │ ├── get-all-chats.js │ │ │ ├── get-all-contacts.js │ │ │ ├── get-chat-by-id.js │ │ │ ├── get-contact.js │ │ │ ├── get-group-participant.js │ │ │ ├── get-host.js │ │ │ ├── get-interface.js │ │ │ ├── get-wa-version.js │ │ │ ├── help │ │ │ │ ├── check-chat-exist.js │ │ │ │ ├── check-number-status.js │ │ │ │ ├── filter-object.js │ │ │ │ ├── get-chat.js │ │ │ │ ├── get-mew-id.js │ │ │ │ ├── get-new-message.js │ │ │ │ ├── index.js │ │ │ │ ├── is-md.js │ │ │ │ ├── return-to-chat.js │ │ │ │ ├── scope.js │ │ │ │ ├── send-check-type.js │ │ │ │ ├── send-exist.js │ │ │ │ ├── sleep.js │ │ │ │ └── wait-for-selector.js │ │ │ ├── index.js │ │ │ ├── load-and-get-all-messages-in-chat.js │ │ │ ├── logoutSession.js │ │ │ ├── refresh-alt-linking-code.js │ │ │ ├── send-message.js │ │ │ ├── set-group-description.js │ │ │ └── set-group-image.js │ │ ├── help │ │ │ ├── array-buffer-to-base64.js │ │ │ ├── base64ToFile.js │ │ │ ├── encrypt-and-upload-file.js │ │ │ ├── filter-module.js │ │ │ ├── filter-object.js │ │ │ ├── generate-media-key.js │ │ │ ├── get-file-hash.js │ │ │ ├── get-module-list.js │ │ │ ├── index.js │ │ │ ├── inject-paresite.js │ │ │ ├── process-files.js │ │ │ └── sleep.js │ │ ├── init-parasite.js │ │ ├── jsconfig.json │ │ ├── jssha │ │ │ └── index.js │ │ ├── serializers │ │ │ ├── index.js │ │ │ ├── seialize-group-participant.js │ │ │ ├── serialize-chat.js │ │ │ ├── serialize-contact.js │ │ │ ├── serialize-message.js │ │ │ ├── serialize-profile-pic-thumb.js │ │ │ ├── serialize-raw.js │ │ │ ├── serialize-reactions.js │ │ │ └── serielize-me.js │ │ └── webpack.config.js │ ├── help │ │ ├── base64-mimetype.ts │ │ ├── checking-closes.ts │ │ ├── config-puppeter.ts │ │ ├── decrypt.ts │ │ ├── download-file.ts │ │ ├── file-to-base64.ts │ │ ├── filename-from-mimetype.ts │ │ ├── includes-msg-erros.ts │ │ ├── index.ts │ │ ├── resize-Img.ts │ │ └── sleep.ts │ ├── inject │ │ └── webpack.ts │ ├── model │ │ ├── api-types.ts │ │ ├── enum │ │ │ ├── functions-layes.ts │ │ │ ├── functions-type.ts │ │ │ ├── index.ts │ │ │ ├── interface-mode.ts │ │ │ ├── interface-state.ts │ │ │ ├── mode.enum.ts │ │ │ ├── reaction-type.ts │ │ │ └── type-status-find.ts │ │ ├── global-types.ts │ │ ├── index.ts │ │ └── interface │ │ │ ├── check-number.ts │ │ │ ├── config-api.ts │ │ │ ├── contact.ts │ │ │ ├── create-size.ts │ │ │ ├── host.ts │ │ │ ├── id-message.ts │ │ │ ├── id.ts │ │ │ ├── index.ts │ │ │ ├── interface-change.ts │ │ │ ├── qrcode.ts │ │ │ ├── reaction-intro.ts │ │ │ ├── scope-msg-erros.ts │ │ │ ├── scope.ts │ │ │ ├── send-layer.ts │ │ │ └── status-find.ts │ └── utils │ │ └── semver.ts └── ws │ ├── admin.js │ ├── app.ts │ ├── help │ ├── sessions.ts │ ├── sqlite.js │ └── treatment.ts │ ├── init-ws.ts │ ├── lessons │ └── lessons.db3 │ ├── migrations │ └── 20210503110530_create-lessons-table.js │ ├── model │ └── interface │ │ ├── index.ts │ │ └── info-user.ts │ ├── routers │ ├── admin │ │ ├── delete.ts │ │ ├── functions │ │ │ ├── delete.ts │ │ │ ├── get.ts │ │ │ ├── post.ts │ │ │ └── put.ts │ │ ├── get.ts │ │ ├── post.ts │ │ └── put.ts │ ├── functions │ │ ├── get.ts │ │ ├── inicialize-routers.ts │ │ ├── post.ts │ │ └── start-session.ts │ └── webpack │ │ ├── get.ts │ │ └── post.ts │ ├── services │ ├── hydra.ts │ └── services-ws.ts │ └── views │ ├── error.ejs │ └── index.ejs ├── test ├── dev │ └── bot.ts ├── files │ ├── audio.mp3 │ ├── img.jpg │ └── video.mp4 └── help.ts ├── tsconfig.json └── typedoc.json /.codebeatignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.codebeatignore -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/commitlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.github/workflows/commitlint.yml -------------------------------------------------------------------------------- /.github/workflows/night.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.github/workflows/night.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | save-prefix= -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/.release-it.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Postman/postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/Postman/postman_collection.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/Update.md -------------------------------------------------------------------------------- /docs/getting-started/admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/admin.md -------------------------------------------------------------------------------- /docs/getting-started/downloading_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/downloading_files.md -------------------------------------------------------------------------------- /docs/getting-started/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/events.md -------------------------------------------------------------------------------- /docs/getting-started/group_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/group_functions.md -------------------------------------------------------------------------------- /docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/getting-started/profile_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/profile_functions.md -------------------------------------------------------------------------------- /docs/getting-started/retrieving_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/retrieving_data.md -------------------------------------------------------------------------------- /docs/getting-started/send_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/send_functions.md -------------------------------------------------------------------------------- /docs/getting-started/send_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/send_options.md -------------------------------------------------------------------------------- /docs/getting-started/start_bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/start_bot.md -------------------------------------------------------------------------------- /docs/getting-started/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/user.md -------------------------------------------------------------------------------- /docs/getting-started/web_service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/getting-started/web_service.md -------------------------------------------------------------------------------- /docs/layouts/analytics.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/layouts/analytics.hbs -------------------------------------------------------------------------------- /docs/layouts/default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/layouts/default.hbs -------------------------------------------------------------------------------- /docs/layouts/fix-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/docs/layouts/fix-docs.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /gulp/bin/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/gulp/bin/gulpfile.js -------------------------------------------------------------------------------- /gulp/hydra/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/gulp/hydra/gulpfile.js -------------------------------------------------------------------------------- /gulp/knex/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/gulp/knex/gulpfile.js -------------------------------------------------------------------------------- /gulp/lessons/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/gulp/lessons/gulpfile.js -------------------------------------------------------------------------------- /gulp/migrations/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/gulp/migrations/gulpfile.js -------------------------------------------------------------------------------- /gulp/sqlite/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/gulp/sqlite/gulpfile.js -------------------------------------------------------------------------------- /gulp/types/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/gulp/types/gulpfile.js -------------------------------------------------------------------------------- /gulp/views/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/gulp/views/gulpfile.js -------------------------------------------------------------------------------- /img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/2022-06-03_23-26-08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/img/2022-06-03_23-26-08.gif -------------------------------------------------------------------------------- /img/documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/img/documentation.png -------------------------------------------------------------------------------- /img/hydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/img/hydra.png -------------------------------------------------------------------------------- /img/logo-horizontal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/img/logo-horizontal.webp -------------------------------------------------------------------------------- /img/logo-redrive-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/img/logo-redrive-png.png -------------------------------------------------------------------------------- /img/logo_zaplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/img/logo_zaplus.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/bin/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/bin/admin -------------------------------------------------------------------------------- /src/bin/admin.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/bin/admin.cmd -------------------------------------------------------------------------------- /src/bin/admin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/bin/admin.ps1 -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/knexfile.js -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/package-lock.json -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/package.json -------------------------------------------------------------------------------- /src/webpack/api/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/browser.ts -------------------------------------------------------------------------------- /src/webpack/api/check-up-to-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/check-up-to-date.ts -------------------------------------------------------------------------------- /src/webpack/api/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/init.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/callback-on.layes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/callback-on.layes.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/group.layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/group.layer.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/helpers.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/index.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/listener.layes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/listener.layes.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/on-wpp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/on-wpp.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/profile.layes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/profile.layes.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/retriever.layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/retriever.layer.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/scraping.layes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/scraping.layes.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/sender.layes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/sender.layes.ts -------------------------------------------------------------------------------- /src/webpack/api/layes/whatsapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/api/layes/whatsapp.ts -------------------------------------------------------------------------------- /src/webpack/assets/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/api.js -------------------------------------------------------------------------------- /src/webpack/assets/event-listener/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/event-listener/index.js -------------------------------------------------------------------------------- /src/webpack/assets/event-listener/interface-change.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/event-listener/interface-change.js -------------------------------------------------------------------------------- /src/webpack/assets/event-listener/new-edit-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/event-listener/new-edit-message.js -------------------------------------------------------------------------------- /src/webpack/assets/event-listener/new-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/event-listener/new-message.js -------------------------------------------------------------------------------- /src/webpack/assets/event-listener/new-on-ack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/event-listener/new-on-ack.js -------------------------------------------------------------------------------- /src/webpack/assets/event-listener/newDeleteMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/event-listener/newDeleteMessage.js -------------------------------------------------------------------------------- /src/webpack/assets/event-listener/on-intro-reaction-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/event-listener/on-intro-reaction-message.js -------------------------------------------------------------------------------- /src/webpack/assets/event-listener/on-reaction-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/event-listener/on-reaction-message.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/add-participant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/add-participant.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/code-for-phone-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/code-for-phone-number.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/convert-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/convert-number.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/create-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/create-group.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/get-all-chats-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/get-all-chats-groups.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/get-all-chats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/get-all-chats.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/get-all-contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/get-all-contacts.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/get-chat-by-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/get-chat-by-id.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/get-contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/get-contact.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/get-group-participant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/get-group-participant.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/get-host.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/get-host.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/get-interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/get-interface.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/get-wa-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/get-wa-version.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/check-chat-exist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/check-chat-exist.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/check-number-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/check-number-status.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/filter-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/filter-object.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/get-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/get-chat.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/get-mew-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/get-mew-id.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/get-new-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/get-new-message.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/index.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/is-md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/is-md.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/return-to-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/return-to-chat.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/scope.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/send-check-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/send-check-type.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/send-exist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/send-exist.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/sleep.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/help/wait-for-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/help/wait-for-selector.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/index.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/load-and-get-all-messages-in-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/load-and-get-all-messages-in-chat.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/logoutSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/logoutSession.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/refresh-alt-linking-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/refresh-alt-linking-code.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/send-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/send-message.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/set-group-description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/set-group-description.js -------------------------------------------------------------------------------- /src/webpack/assets/functions/set-group-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/functions/set-group-image.js -------------------------------------------------------------------------------- /src/webpack/assets/help/array-buffer-to-base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/array-buffer-to-base64.js -------------------------------------------------------------------------------- /src/webpack/assets/help/base64ToFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/base64ToFile.js -------------------------------------------------------------------------------- /src/webpack/assets/help/encrypt-and-upload-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/encrypt-and-upload-file.js -------------------------------------------------------------------------------- /src/webpack/assets/help/filter-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/filter-module.js -------------------------------------------------------------------------------- /src/webpack/assets/help/filter-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/filter-object.js -------------------------------------------------------------------------------- /src/webpack/assets/help/generate-media-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/generate-media-key.js -------------------------------------------------------------------------------- /src/webpack/assets/help/get-file-hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/get-file-hash.js -------------------------------------------------------------------------------- /src/webpack/assets/help/get-module-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/get-module-list.js -------------------------------------------------------------------------------- /src/webpack/assets/help/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/index.js -------------------------------------------------------------------------------- /src/webpack/assets/help/inject-paresite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/inject-paresite.js -------------------------------------------------------------------------------- /src/webpack/assets/help/process-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/process-files.js -------------------------------------------------------------------------------- /src/webpack/assets/help/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/help/sleep.js -------------------------------------------------------------------------------- /src/webpack/assets/init-parasite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/init-parasite.js -------------------------------------------------------------------------------- /src/webpack/assets/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/jsconfig.json -------------------------------------------------------------------------------- /src/webpack/assets/jssha/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/jssha/index.js -------------------------------------------------------------------------------- /src/webpack/assets/serializers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/serializers/index.js -------------------------------------------------------------------------------- /src/webpack/assets/serializers/seialize-group-participant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/serializers/seialize-group-participant.js -------------------------------------------------------------------------------- /src/webpack/assets/serializers/serialize-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/serializers/serialize-chat.js -------------------------------------------------------------------------------- /src/webpack/assets/serializers/serialize-contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/serializers/serialize-contact.js -------------------------------------------------------------------------------- /src/webpack/assets/serializers/serialize-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/serializers/serialize-message.js -------------------------------------------------------------------------------- /src/webpack/assets/serializers/serialize-profile-pic-thumb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/serializers/serialize-profile-pic-thumb.js -------------------------------------------------------------------------------- /src/webpack/assets/serializers/serialize-raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/serializers/serialize-raw.js -------------------------------------------------------------------------------- /src/webpack/assets/serializers/serialize-reactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/serializers/serialize-reactions.js -------------------------------------------------------------------------------- /src/webpack/assets/serializers/serielize-me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/serializers/serielize-me.js -------------------------------------------------------------------------------- /src/webpack/assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/assets/webpack.config.js -------------------------------------------------------------------------------- /src/webpack/help/base64-mimetype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/base64-mimetype.ts -------------------------------------------------------------------------------- /src/webpack/help/checking-closes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/checking-closes.ts -------------------------------------------------------------------------------- /src/webpack/help/config-puppeter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/config-puppeter.ts -------------------------------------------------------------------------------- /src/webpack/help/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/decrypt.ts -------------------------------------------------------------------------------- /src/webpack/help/download-file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/download-file.ts -------------------------------------------------------------------------------- /src/webpack/help/file-to-base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/file-to-base64.ts -------------------------------------------------------------------------------- /src/webpack/help/filename-from-mimetype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/filename-from-mimetype.ts -------------------------------------------------------------------------------- /src/webpack/help/includes-msg-erros.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/includes-msg-erros.ts -------------------------------------------------------------------------------- /src/webpack/help/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/index.ts -------------------------------------------------------------------------------- /src/webpack/help/resize-Img.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/resize-Img.ts -------------------------------------------------------------------------------- /src/webpack/help/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/help/sleep.ts -------------------------------------------------------------------------------- /src/webpack/inject/webpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/inject/webpack.ts -------------------------------------------------------------------------------- /src/webpack/model/api-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/api-types.ts -------------------------------------------------------------------------------- /src/webpack/model/enum/functions-layes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/enum/functions-layes.ts -------------------------------------------------------------------------------- /src/webpack/model/enum/functions-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/enum/functions-type.ts -------------------------------------------------------------------------------- /src/webpack/model/enum/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/enum/index.ts -------------------------------------------------------------------------------- /src/webpack/model/enum/interface-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/enum/interface-mode.ts -------------------------------------------------------------------------------- /src/webpack/model/enum/interface-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/enum/interface-state.ts -------------------------------------------------------------------------------- /src/webpack/model/enum/mode.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/enum/mode.enum.ts -------------------------------------------------------------------------------- /src/webpack/model/enum/reaction-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/enum/reaction-type.ts -------------------------------------------------------------------------------- /src/webpack/model/enum/type-status-find.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/enum/type-status-find.ts -------------------------------------------------------------------------------- /src/webpack/model/global-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/global-types.ts -------------------------------------------------------------------------------- /src/webpack/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/index.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/check-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/check-number.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/config-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/config-api.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/contact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/contact.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/create-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/create-size.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/host.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/host.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/id-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/id-message.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/id.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/index.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/interface-change.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/interface-change.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/qrcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/qrcode.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/reaction-intro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/reaction-intro.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/scope-msg-erros.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/scope-msg-erros.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/scope.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/send-layer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/send-layer.ts -------------------------------------------------------------------------------- /src/webpack/model/interface/status-find.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/model/interface/status-find.ts -------------------------------------------------------------------------------- /src/webpack/utils/semver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/webpack/utils/semver.ts -------------------------------------------------------------------------------- /src/ws/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/admin.js -------------------------------------------------------------------------------- /src/ws/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/app.ts -------------------------------------------------------------------------------- /src/ws/help/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/help/sessions.ts -------------------------------------------------------------------------------- /src/ws/help/sqlite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/help/sqlite.js -------------------------------------------------------------------------------- /src/ws/help/treatment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/help/treatment.ts -------------------------------------------------------------------------------- /src/ws/init-ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/init-ws.ts -------------------------------------------------------------------------------- /src/ws/lessons/lessons.db3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/lessons/lessons.db3 -------------------------------------------------------------------------------- /src/ws/migrations/20210503110530_create-lessons-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/migrations/20210503110530_create-lessons-table.js -------------------------------------------------------------------------------- /src/ws/model/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/model/interface/index.ts -------------------------------------------------------------------------------- /src/ws/model/interface/info-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/model/interface/info-user.ts -------------------------------------------------------------------------------- /src/ws/routers/admin/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/admin/delete.ts -------------------------------------------------------------------------------- /src/ws/routers/admin/functions/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/admin/functions/delete.ts -------------------------------------------------------------------------------- /src/ws/routers/admin/functions/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/admin/functions/get.ts -------------------------------------------------------------------------------- /src/ws/routers/admin/functions/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/admin/functions/post.ts -------------------------------------------------------------------------------- /src/ws/routers/admin/functions/put.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/admin/functions/put.ts -------------------------------------------------------------------------------- /src/ws/routers/admin/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/admin/get.ts -------------------------------------------------------------------------------- /src/ws/routers/admin/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/admin/post.ts -------------------------------------------------------------------------------- /src/ws/routers/admin/put.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/admin/put.ts -------------------------------------------------------------------------------- /src/ws/routers/functions/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/functions/get.ts -------------------------------------------------------------------------------- /src/ws/routers/functions/inicialize-routers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/functions/inicialize-routers.ts -------------------------------------------------------------------------------- /src/ws/routers/functions/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/functions/post.ts -------------------------------------------------------------------------------- /src/ws/routers/functions/start-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/functions/start-session.ts -------------------------------------------------------------------------------- /src/ws/routers/webpack/get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/webpack/get.ts -------------------------------------------------------------------------------- /src/ws/routers/webpack/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/routers/webpack/post.ts -------------------------------------------------------------------------------- /src/ws/services/hydra.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/services/hydra.ts -------------------------------------------------------------------------------- /src/ws/services/services-ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/services/services-ws.ts -------------------------------------------------------------------------------- /src/ws/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/src/ws/views/error.ejs -------------------------------------------------------------------------------- /src/ws/views/index.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dev/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/test/dev/bot.ts -------------------------------------------------------------------------------- /test/files/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/test/files/audio.mp3 -------------------------------------------------------------------------------- /test/files/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/test/files/img.jpg -------------------------------------------------------------------------------- /test/files/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/test/files/video.mp4 -------------------------------------------------------------------------------- /test/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/test/help.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonalan7/Hydra-bot/HEAD/typedoc.json --------------------------------------------------------------------------------