├── .editorconfig ├── .github ├── ISSUE_TEMPLATE-en.md └── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── question.md ├── .gitignore ├── .markdownlintrc ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README-en.md ├── README.md ├── bin └── store-dumper.ts ├── examples ├── raw-bot.ts └── wechaty-padchat-bot.ts ├── image └── contact.gif ├── package.json ├── scripts ├── development-release.ts ├── npm-pack-testing.sh ├── package-publish-config-tag-next.ts └── pre-push.sh ├── src ├── config.ts ├── index.ts ├── padchat-manager.spec.ts ├── padchat-manager.ts ├── padchat-rpc.ts ├── padchat-rpc.type.ts ├── padchat-schemas.ts ├── puppet-padchat.spec.ts ├── puppet-padchat.ts ├── pure-function-helpers │ ├── README.md │ ├── app-message-generator.ts │ ├── compatible-wei-bug.spec.ts │ ├── compatible-wei-bug.ts │ ├── contact-raw-payload-parser.spec.ts │ ├── contact-raw-payload-parser.ts │ ├── file-box-to-qrcode.spec.ts │ ├── file-box-to-qrcode.ts │ ├── friendship-event-message-parser.confirm.spec.ts │ ├── friendship-event-message-parser.receive.spec.ts │ ├── friendship-event-message-parser.spec.ts │ ├── friendship-event-message-parser.ts │ ├── friendship-event-message-parser.verify.spec.ts │ ├── friendship-raw-payload-parser.spec.ts │ ├── friendship-raw-payload-parser.ts │ ├── index.ts │ ├── is-type.spec.ts │ ├── is-type.ts │ ├── message-app-payload-parser.spec.ts │ ├── message-app-payload-parser.ts │ ├── message-emoji-payload-parser.spec.ts │ ├── message-emoji-payload-parser.ts │ ├── message-file-name.ts │ ├── message-raw-payload-parser.spec.ts │ ├── message-raw-payload-parser.ts │ ├── message-source-parser.spec.ts │ ├── message-source-parser.ts │ ├── message-type.ts │ ├── padchat-decode.spec.ts │ ├── padchat-decode.ts │ ├── padchat-internal-schemas.ts │ ├── room-event-invite-message-parser.spec.ts │ ├── room-event-invite-message-parser.ts │ ├── room-event-join-message-parser.en.spec.ts │ ├── room-event-join-message-parser.spec.ts │ ├── room-event-join-message-parser.ts │ ├── room-event-join-message-parser.zh.spec.ts │ ├── room-event-leave-message-parser.en.spec.ts │ ├── room-event-leave-message-parser.spec.ts │ ├── room-event-leave-message-parser.ts │ ├── room-event-leave-message-parser.zh.spec.ts │ ├── room-event-topic-message-parser.en.spec.ts │ ├── room-event-topic-message-parser.spec.ts │ ├── room-event-topic-message-parser.ts │ ├── room-event-topic-message-parser.zh.spec.ts │ ├── room-raw-payload-parser.spec.ts │ ├── room-raw-payload-parser.ts │ ├── split-name.spec.ts │ ├── split-name.ts │ ├── xml-to-json.spec.ts │ └── xml-to-json.ts ├── rpc-api.ts └── typings.d.ts ├── tests ├── fixtures │ └── smoke-testing.ts ├── integration.spec.ts ├── mock-config.ts └── mock-server.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/.github/ISSUE_TEMPLATE-en.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/.markdownlintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/LICENSE -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/README-en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/README.md -------------------------------------------------------------------------------- /bin/store-dumper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/bin/store-dumper.ts -------------------------------------------------------------------------------- /examples/raw-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/examples/raw-bot.ts -------------------------------------------------------------------------------- /examples/wechaty-padchat-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/examples/wechaty-padchat-bot.ts -------------------------------------------------------------------------------- /image/contact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/image/contact.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/package.json -------------------------------------------------------------------------------- /scripts/development-release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/scripts/development-release.ts -------------------------------------------------------------------------------- /scripts/npm-pack-testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/scripts/npm-pack-testing.sh -------------------------------------------------------------------------------- /scripts/package-publish-config-tag-next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/scripts/package-publish-config-tag-next.ts -------------------------------------------------------------------------------- /scripts/pre-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/scripts/pre-push.sh -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/padchat-manager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/padchat-manager.spec.ts -------------------------------------------------------------------------------- /src/padchat-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/padchat-manager.ts -------------------------------------------------------------------------------- /src/padchat-rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/padchat-rpc.ts -------------------------------------------------------------------------------- /src/padchat-rpc.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/padchat-rpc.type.ts -------------------------------------------------------------------------------- /src/padchat-schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/padchat-schemas.ts -------------------------------------------------------------------------------- /src/puppet-padchat.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/puppet-padchat.spec.ts -------------------------------------------------------------------------------- /src/puppet-padchat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/puppet-padchat.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/README.md -------------------------------------------------------------------------------- /src/pure-function-helpers/app-message-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/app-message-generator.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/compatible-wei-bug.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/compatible-wei-bug.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/compatible-wei-bug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/compatible-wei-bug.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/contact-raw-payload-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/contact-raw-payload-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/contact-raw-payload-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/contact-raw-payload-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/file-box-to-qrcode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/file-box-to-qrcode.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/file-box-to-qrcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/file-box-to-qrcode.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/friendship-event-message-parser.confirm.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/friendship-event-message-parser.confirm.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/friendship-event-message-parser.receive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/friendship-event-message-parser.receive.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/friendship-event-message-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/friendship-event-message-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/friendship-event-message-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/friendship-event-message-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/friendship-event-message-parser.verify.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/friendship-event-message-parser.verify.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/friendship-raw-payload-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/friendship-raw-payload-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/friendship-raw-payload-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/friendship-raw-payload-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/index.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/is-type.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/is-type.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/is-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/is-type.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-app-payload-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-app-payload-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-app-payload-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-app-payload-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-emoji-payload-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-emoji-payload-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-emoji-payload-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-emoji-payload-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-file-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-file-name.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-raw-payload-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-raw-payload-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-raw-payload-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-raw-payload-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-source-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-source-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-source-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-source-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/message-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/message-type.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/padchat-decode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/padchat-decode.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/padchat-decode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/padchat-decode.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/padchat-internal-schemas.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-invite-message-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-invite-message-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-invite-message-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-invite-message-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-join-message-parser.en.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-join-message-parser.en.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-join-message-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-join-message-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-join-message-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-join-message-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-join-message-parser.zh.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-join-message-parser.zh.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-leave-message-parser.en.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-leave-message-parser.en.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-leave-message-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-leave-message-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-leave-message-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-leave-message-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-leave-message-parser.zh.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-leave-message-parser.zh.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-topic-message-parser.en.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-topic-message-parser.en.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-topic-message-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-topic-message-parser.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-topic-message-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-topic-message-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-event-topic-message-parser.zh.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-event-topic-message-parser.zh.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/room-raw-payload-parser.spec.ts: -------------------------------------------------------------------------------- 1 | // TODO 2 | // test('roomRawPayloadParser', async t => { 3 | 4 | // }) 5 | -------------------------------------------------------------------------------- /src/pure-function-helpers/room-raw-payload-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/room-raw-payload-parser.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/split-name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/split-name.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/split-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/split-name.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/xml-to-json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/xml-to-json.spec.ts -------------------------------------------------------------------------------- /src/pure-function-helpers/xml-to-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/pure-function-helpers/xml-to-json.ts -------------------------------------------------------------------------------- /src/rpc-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/rpc-api.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tests/fixtures/smoke-testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/tests/fixtures/smoke-testing.ts -------------------------------------------------------------------------------- /tests/integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/tests/integration.spec.ts -------------------------------------------------------------------------------- /tests/mock-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/tests/mock-config.ts -------------------------------------------------------------------------------- /tests/mock-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/tests/mock-server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechaty/wechaty-puppet-padchat/HEAD/tslint.json --------------------------------------------------------------------------------