├── .editorconfig ├── .eslintrc.cjs ├── .github └── workflows │ └── npm.yml ├── .gitignore ├── .gitpod.yml ├── .markdownlintrc ├── .npmignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── commonjs ├── code-root.d.ts ├── code-root.js ├── code-root.spec.ts └── package.json ├── docs └── images │ ├── core.png │ ├── fnlist.png │ └── mock.png ├── examples ├── demo.ts ├── ding-dong-bot.ts ├── media │ ├── test.gif │ ├── test.mp4 │ └── test.txt ├── quick-start.js ├── quick-start.ts ├── raw-bridge-atorber-fused.ts ├── raw-bridge-hi.ts ├── raw-bridge-jwping-wxbot.ts ├── raw-bridge-ttttupup-wxhelper-3091019.ts ├── raw-bridge-ttttupup-wxhelper.ts ├── ripe-bridge-ttttupup-wxhelper-3091019.ts ├── ripe-wechaty-3090223.ts ├── ripe-wechaty-Devo919-Gewechat.ts ├── ripe-wechaty-atorber-fused-3090825.ts ├── ripe-wechaty-hi.ts ├── ripe-wechaty-jwping-wxbot-3090825.ts ├── ripe-wechaty-lich0821-WeChatFerry-3091027.ts ├── ripe-wechaty-ttttupup-wxhelper-3090223.ts ├── ripe-wechaty-ttttupup-wxhelper-3090581.ts ├── wcf.ts └── wxhelper.ts ├── package.json ├── scripts ├── generate-package-json.sh ├── npm-pack-testing.sh └── package-publish-config-tag.sh ├── src ├── agents │ ├── Devo919-Gewechat │ │ ├── README.md │ │ ├── bridge │ │ │ ├── index.ts │ │ │ ├── mod.ts │ │ │ ├── server.ts │ │ │ ├── test.ts │ │ │ └── util.ts │ │ ├── client │ │ │ ├── config │ │ │ │ └── axiosConfig.ts │ │ │ ├── mod.ts │ │ │ ├── module │ │ │ │ ├── account.ts │ │ │ │ ├── contacts.ts │ │ │ │ ├── favorite.ts │ │ │ │ ├── groups.ts │ │ │ │ ├── index.ts │ │ │ │ ├── lable.ts │ │ │ │ ├── login.ts │ │ │ │ ├── message.ts │ │ │ │ └── self.ts │ │ │ ├── test.ts │ │ │ ├── types │ │ │ │ ├── message.ts │ │ │ │ ├── notice.ts │ │ │ │ ├── room.ts │ │ │ │ └── types.ts │ │ │ └── utils │ │ │ │ ├── logger.ts │ │ │ │ └── server.ts │ │ └── mod.ts │ ├── fused │ │ ├── atorber-fused-api.ts │ │ └── atorber-fused.ts │ ├── hi │ │ └── hi-bot.ts │ ├── jwping-wxbot │ │ ├── jwping-wxbot.ts │ │ └── wxbot.ts │ ├── lich0821-WeChatFerry │ │ └── lich0821-WeChatFerry-3091027.ts │ ├── ttttupup-wxhelper │ │ ├── ttttupup-wxhelper-3090223-api.ts │ │ ├── ttttupup-wxhelper-3090223.ts │ │ ├── ttttupup-wxhelper-3091019-api.ts │ │ ├── ttttupup-wxhelper-3091019.ts │ │ ├── ttttupup-wxhelper-api.ts │ │ └── ttttupup-wxhelper.ts │ └── wechat-bot │ │ ├── cixingguangming55555-wechat-bot.ts │ │ └── http-client.ts ├── assets │ ├── Injector.exe │ ├── qrcode.png │ ├── wxbot-sidecar-3.9.8.25.exe │ ├── wxbot.json │ ├── wxbot_backup.json │ ├── wxhelper-10.dll │ ├── wxhelper-3.9.10.19-v1.dll │ ├── wxhelper-3.9.2.23-v9.dll │ ├── wxhelper-3.9.5.81-v11.dll │ ├── wxhelper-3.9.8.25-v2.dll │ ├── wxhelper-native.dll │ ├── wxhelper-vs22.dll │ └── wxhelper.dll ├── bridge-config.ts ├── cjs.spec.ts ├── cjs.ts ├── config.ts ├── index.d.ts ├── mod.ts ├── package-json.spec.ts ├── package-json.ts ├── puppet │ ├── puppet-bridge-atorber-fused-39825.ts │ ├── puppet-bridge-cixingguangming55555-wechat-bot-391027.ts │ ├── puppet-bridge-cixingguangming55555-wechat-bot-39223.ts │ ├── puppet-bridge-hi.ts │ ├── puppet-bridge-ipad.ts │ ├── puppet-bridge-jwping-wxbot-39825.ts │ ├── puppet-bridge-lich0821-WeChatFerry-391027.ts │ ├── puppet-bridge-ttttupup-wxhelper-391019.ts │ ├── puppet-bridge-ttttupup-wxhelper-39223.ts │ ├── puppet-bridge-ttttupup-wxhelper-39581.ts │ └── puppet-bridge.spec.ts ├── pure-functions │ ├── image-decrypt.spec.ts │ ├── image-decrypt.ts │ ├── xml-msgpayload.spec.ts │ └── xml-msgpayload.ts ├── schemas │ ├── bridge-options.ts │ └── bridge.ts └── utils │ ├── messageStore.ts │ └── mod.ts ├── tests ├── fixtures │ └── smoke-testing.ts ├── integration.spec.ts └── test.js ├── tsconfig.cjs.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/.github/workflows/npm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.markdownlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/.markdownlintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs/ -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/README.md -------------------------------------------------------------------------------- /commonjs/code-root.d.ts: -------------------------------------------------------------------------------- 1 | export declare const codeRoot: string 2 | -------------------------------------------------------------------------------- /commonjs/code-root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/commonjs/code-root.js -------------------------------------------------------------------------------- /commonjs/code-root.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/commonjs/code-root.spec.ts -------------------------------------------------------------------------------- /commonjs/package.json: -------------------------------------------------------------------------------- 1 | { "type": "commonjs" } 2 | -------------------------------------------------------------------------------- /docs/images/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/docs/images/core.png -------------------------------------------------------------------------------- /docs/images/fnlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/docs/images/fnlist.png -------------------------------------------------------------------------------- /docs/images/mock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/docs/images/mock.png -------------------------------------------------------------------------------- /examples/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/demo.ts -------------------------------------------------------------------------------- /examples/ding-dong-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ding-dong-bot.ts -------------------------------------------------------------------------------- /examples/media/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/media/test.gif -------------------------------------------------------------------------------- /examples/media/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/media/test.mp4 -------------------------------------------------------------------------------- /examples/media/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/media/test.txt -------------------------------------------------------------------------------- /examples/quick-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/quick-start.js -------------------------------------------------------------------------------- /examples/quick-start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/quick-start.ts -------------------------------------------------------------------------------- /examples/raw-bridge-atorber-fused.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/raw-bridge-atorber-fused.ts -------------------------------------------------------------------------------- /examples/raw-bridge-hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/raw-bridge-hi.ts -------------------------------------------------------------------------------- /examples/raw-bridge-jwping-wxbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/raw-bridge-jwping-wxbot.ts -------------------------------------------------------------------------------- /examples/raw-bridge-ttttupup-wxhelper-3091019.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/raw-bridge-ttttupup-wxhelper-3091019.ts -------------------------------------------------------------------------------- /examples/raw-bridge-ttttupup-wxhelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/raw-bridge-ttttupup-wxhelper.ts -------------------------------------------------------------------------------- /examples/ripe-bridge-ttttupup-wxhelper-3091019.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ripe-bridge-ttttupup-wxhelper-3091019.ts -------------------------------------------------------------------------------- /examples/ripe-wechaty-3090223.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ripe-wechaty-3090223.ts -------------------------------------------------------------------------------- /examples/ripe-wechaty-Devo919-Gewechat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ripe-wechaty-Devo919-Gewechat.ts -------------------------------------------------------------------------------- /examples/ripe-wechaty-atorber-fused-3090825.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ripe-wechaty-atorber-fused-3090825.ts -------------------------------------------------------------------------------- /examples/ripe-wechaty-hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ripe-wechaty-hi.ts -------------------------------------------------------------------------------- /examples/ripe-wechaty-jwping-wxbot-3090825.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ripe-wechaty-jwping-wxbot-3090825.ts -------------------------------------------------------------------------------- /examples/ripe-wechaty-lich0821-WeChatFerry-3091027.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ripe-wechaty-lich0821-WeChatFerry-3091027.ts -------------------------------------------------------------------------------- /examples/ripe-wechaty-ttttupup-wxhelper-3090223.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ripe-wechaty-ttttupup-wxhelper-3090223.ts -------------------------------------------------------------------------------- /examples/ripe-wechaty-ttttupup-wxhelper-3090581.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/ripe-wechaty-ttttupup-wxhelper-3090581.ts -------------------------------------------------------------------------------- /examples/wcf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/wcf.ts -------------------------------------------------------------------------------- /examples/wxhelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/examples/wxhelper.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generate-package-json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/scripts/generate-package-json.sh -------------------------------------------------------------------------------- /scripts/npm-pack-testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/scripts/npm-pack-testing.sh -------------------------------------------------------------------------------- /scripts/package-publish-config-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/scripts/package-publish-config-tag.sh -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/README.md -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/bridge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/bridge/index.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/bridge/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/bridge/mod.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/bridge/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/bridge/server.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/bridge/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/bridge/test.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/bridge/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/bridge/util.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/config/axiosConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/config/axiosConfig.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/mod.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/module/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/module/account.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/module/contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/module/contacts.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/module/favorite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/module/favorite.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/module/groups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/module/groups.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/module/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/module/index.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/module/lable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/module/lable.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/module/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/module/login.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/module/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/module/message.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/module/self.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/module/self.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/test.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/types/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/types/message.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/types/notice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/types/notice.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/types/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/types/room.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/types/types.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/utils/logger.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/client/utils/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/client/utils/server.ts -------------------------------------------------------------------------------- /src/agents/Devo919-Gewechat/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/Devo919-Gewechat/mod.ts -------------------------------------------------------------------------------- /src/agents/fused/atorber-fused-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/fused/atorber-fused-api.ts -------------------------------------------------------------------------------- /src/agents/fused/atorber-fused.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/fused/atorber-fused.ts -------------------------------------------------------------------------------- /src/agents/hi/hi-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/hi/hi-bot.ts -------------------------------------------------------------------------------- /src/agents/jwping-wxbot/jwping-wxbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/jwping-wxbot/jwping-wxbot.ts -------------------------------------------------------------------------------- /src/agents/jwping-wxbot/wxbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/jwping-wxbot/wxbot.ts -------------------------------------------------------------------------------- /src/agents/lich0821-WeChatFerry/lich0821-WeChatFerry-3091027.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/lich0821-WeChatFerry/lich0821-WeChatFerry-3091027.ts -------------------------------------------------------------------------------- /src/agents/ttttupup-wxhelper/ttttupup-wxhelper-3090223-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/ttttupup-wxhelper/ttttupup-wxhelper-3090223-api.ts -------------------------------------------------------------------------------- /src/agents/ttttupup-wxhelper/ttttupup-wxhelper-3090223.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/ttttupup-wxhelper/ttttupup-wxhelper-3090223.ts -------------------------------------------------------------------------------- /src/agents/ttttupup-wxhelper/ttttupup-wxhelper-3091019-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/ttttupup-wxhelper/ttttupup-wxhelper-3091019-api.ts -------------------------------------------------------------------------------- /src/agents/ttttupup-wxhelper/ttttupup-wxhelper-3091019.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/ttttupup-wxhelper/ttttupup-wxhelper-3091019.ts -------------------------------------------------------------------------------- /src/agents/ttttupup-wxhelper/ttttupup-wxhelper-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/ttttupup-wxhelper/ttttupup-wxhelper-api.ts -------------------------------------------------------------------------------- /src/agents/ttttupup-wxhelper/ttttupup-wxhelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/ttttupup-wxhelper/ttttupup-wxhelper.ts -------------------------------------------------------------------------------- /src/agents/wechat-bot/cixingguangming55555-wechat-bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/wechat-bot/cixingguangming55555-wechat-bot.ts -------------------------------------------------------------------------------- /src/agents/wechat-bot/http-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/agents/wechat-bot/http-client.ts -------------------------------------------------------------------------------- /src/assets/Injector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/Injector.exe -------------------------------------------------------------------------------- /src/assets/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/qrcode.png -------------------------------------------------------------------------------- /src/assets/wxbot-sidecar-3.9.8.25.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxbot-sidecar-3.9.8.25.exe -------------------------------------------------------------------------------- /src/assets/wxbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxbot.json -------------------------------------------------------------------------------- /src/assets/wxbot_backup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxbot_backup.json -------------------------------------------------------------------------------- /src/assets/wxhelper-10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxhelper-10.dll -------------------------------------------------------------------------------- /src/assets/wxhelper-3.9.10.19-v1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxhelper-3.9.10.19-v1.dll -------------------------------------------------------------------------------- /src/assets/wxhelper-3.9.2.23-v9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxhelper-3.9.2.23-v9.dll -------------------------------------------------------------------------------- /src/assets/wxhelper-3.9.5.81-v11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxhelper-3.9.5.81-v11.dll -------------------------------------------------------------------------------- /src/assets/wxhelper-3.9.8.25-v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxhelper-3.9.8.25-v2.dll -------------------------------------------------------------------------------- /src/assets/wxhelper-native.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxhelper-native.dll -------------------------------------------------------------------------------- /src/assets/wxhelper-vs22.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxhelper-vs22.dll -------------------------------------------------------------------------------- /src/assets/wxhelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/assets/wxhelper.dll -------------------------------------------------------------------------------- /src/bridge-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/bridge-config.ts -------------------------------------------------------------------------------- /src/cjs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/cjs.spec.ts -------------------------------------------------------------------------------- /src/cjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/cjs.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'xmlreader' 2 | -------------------------------------------------------------------------------- /src/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/mod.ts -------------------------------------------------------------------------------- /src/package-json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/package-json.spec.ts -------------------------------------------------------------------------------- /src/package-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/package-json.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-atorber-fused-39825.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-atorber-fused-39825.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-cixingguangming55555-wechat-bot-391027.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-cixingguangming55555-wechat-bot-391027.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-cixingguangming55555-wechat-bot-39223.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-cixingguangming55555-wechat-bot-39223.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-hi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-hi.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-ipad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-ipad.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-jwping-wxbot-39825.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-jwping-wxbot-39825.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-lich0821-WeChatFerry-391027.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-lich0821-WeChatFerry-391027.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-ttttupup-wxhelper-391019.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-ttttupup-wxhelper-391019.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-ttttupup-wxhelper-39223.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-ttttupup-wxhelper-39223.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge-ttttupup-wxhelper-39581.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge-ttttupup-wxhelper-39581.ts -------------------------------------------------------------------------------- /src/puppet/puppet-bridge.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/puppet/puppet-bridge.spec.ts -------------------------------------------------------------------------------- /src/pure-functions/image-decrypt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/pure-functions/image-decrypt.spec.ts -------------------------------------------------------------------------------- /src/pure-functions/image-decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/pure-functions/image-decrypt.ts -------------------------------------------------------------------------------- /src/pure-functions/xml-msgpayload.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/pure-functions/xml-msgpayload.spec.ts -------------------------------------------------------------------------------- /src/pure-functions/xml-msgpayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/pure-functions/xml-msgpayload.ts -------------------------------------------------------------------------------- /src/schemas/bridge-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/schemas/bridge-options.ts -------------------------------------------------------------------------------- /src/schemas/bridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/schemas/bridge.ts -------------------------------------------------------------------------------- /src/utils/messageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/utils/messageStore.ts -------------------------------------------------------------------------------- /src/utils/mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/src/utils/mod.ts -------------------------------------------------------------------------------- /tests/fixtures/smoke-testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/tests/fixtures/smoke-testing.ts -------------------------------------------------------------------------------- /tests/integration.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/tests/integration.spec.ts -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/tests/test.js -------------------------------------------------------------------------------- /tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/tsconfig.cjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atorber/puppet-bridge/HEAD/tsconfig.json --------------------------------------------------------------------------------