├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── .yarnrc ├── Makefile ├── README.md ├── __tests__ ├── chat.simple.watch.test.ts ├── chat.test.ts ├── deinit.test.ts ├── helpers.test.ts ├── init.test.ts ├── kvstore.test.ts ├── myInfo.test.ts ├── race.conditions.test.ts ├── setup.ts ├── team.test.ts ├── test-utils │ ├── index.ts │ ├── pollFor.ts │ ├── publicPaperkeyLabel.ts │ ├── startServiceManually.ts │ └── stopServiceManually.ts ├── tests.config.example.ts └── wallet.test.ts ├── demos ├── check-for-unreads.js ├── compiled-from-typescript │ ├── hello-world.js │ ├── hunt-for-resets.js │ └── team-kvstore.js ├── es7 │ ├── advertised-echo.js │ ├── check-for-unreads-es7.js │ ├── flippy.js │ ├── hello-world-es7.js │ ├── math-bot-es7.js │ ├── poker-hands-reverse.js │ ├── poker-hands.js │ └── team-inviter.js ├── hello-world.js ├── iced │ └── puzzle-bot.iced ├── math-bot.js └── typescript │ ├── hello-world.ts │ ├── hunt-for-resets.ts │ └── team-kvstore.ts ├── documentation.yml ├── jest.config.js ├── lib ├── chat-client │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── client-base │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── constants.d.ts ├── constants.js ├── constants.js.map ├── helpers-client │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── index.d.ts ├── index.js ├── index.js.map ├── kvstore-client │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── service │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── team-client │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── types │ ├── chat1 │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ ├── gregor1 │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ ├── keybase1 │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ └── stellar1 │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map ├── utils │ ├── adminDebugLogger.d.ts │ ├── adminDebugLogger.js │ ├── adminDebugLogger.js.map │ ├── formatAPIObject.d.ts │ ├── formatAPIObject.js │ ├── formatAPIObject.js.map │ ├── index.d.ts │ ├── index.js │ ├── index.js.map │ ├── keybaseBinaryName.d.ts │ ├── keybaseBinaryName.js │ ├── keybaseBinaryName.js.map │ ├── keybaseExec.d.ts │ ├── keybaseExec.js │ ├── keybaseExec.js.map │ ├── keybaseStatus.d.ts │ ├── keybaseStatus.js │ ├── keybaseStatus.js.map │ ├── options.d.ts │ ├── options.js │ ├── options.js.map │ ├── pingKeybaseService.d.ts │ ├── pingKeybaseService.js │ ├── pingKeybaseService.js.map │ ├── randomTempDir.d.ts │ ├── randomTempDir.js │ ├── randomTempDir.js.map │ ├── rmdirRecursive.d.ts │ ├── rmdirRecursive.js │ ├── rmdirRecursive.js.map │ ├── safeJSONStringify.d.ts │ ├── safeJSONStringify.js │ ├── safeJSONStringify.js.map │ ├── timeout.d.ts │ ├── timeout.js │ ├── timeout.js.map │ ├── whichKeybase.d.ts │ ├── whichKeybase.js │ └── whichKeybase.js.map └── wallet-client │ ├── index.d.ts │ ├── index.js │ └── index.js.map ├── package.json ├── src ├── chat-client │ └── index.ts ├── client-base │ └── index.ts ├── constants.ts ├── helpers-client │ └── index.ts ├── index.ts ├── kvstore-client │ └── index.ts ├── service │ └── index.ts ├── team-client │ └── index.ts ├── types │ ├── chat1 │ │ └── index.ts │ ├── gregor1 │ │ └── index.ts │ ├── keybase1 │ │ └── index.ts │ └── stellar1 │ │ └── index.ts ├── utils │ ├── adminDebugLogger.ts │ ├── formatAPIObject.test.ts │ ├── formatAPIObject.ts │ ├── index.ts │ ├── keybaseBinaryName.ts │ ├── keybaseExec.ts │ ├── keybaseStatus.ts │ ├── options.ts │ ├── pingKeybaseService.ts │ ├── randomTempDir.ts │ ├── rmdirRecursive.ts │ ├── safeJSONStringify.ts │ ├── timeout.ts │ └── whichKeybase.ts └── wallet-client │ └── index.ts ├── tsconfig.demos.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.12.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | save-prefix "" 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/chat.simple.watch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/chat.simple.watch.test.ts -------------------------------------------------------------------------------- /__tests__/chat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/chat.test.ts -------------------------------------------------------------------------------- /__tests__/deinit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/deinit.test.ts -------------------------------------------------------------------------------- /__tests__/helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/helpers.test.ts -------------------------------------------------------------------------------- /__tests__/init.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/init.test.ts -------------------------------------------------------------------------------- /__tests__/kvstore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/kvstore.test.ts -------------------------------------------------------------------------------- /__tests__/myInfo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/myInfo.test.ts -------------------------------------------------------------------------------- /__tests__/race.conditions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/race.conditions.test.ts -------------------------------------------------------------------------------- /__tests__/setup.ts: -------------------------------------------------------------------------------- 1 | jest.setTimeout(60000) 2 | -------------------------------------------------------------------------------- /__tests__/team.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/team.test.ts -------------------------------------------------------------------------------- /__tests__/test-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/test-utils/index.ts -------------------------------------------------------------------------------- /__tests__/test-utils/pollFor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/test-utils/pollFor.ts -------------------------------------------------------------------------------- /__tests__/test-utils/publicPaperkeyLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/test-utils/publicPaperkeyLabel.ts -------------------------------------------------------------------------------- /__tests__/test-utils/startServiceManually.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/test-utils/startServiceManually.ts -------------------------------------------------------------------------------- /__tests__/test-utils/stopServiceManually.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/test-utils/stopServiceManually.ts -------------------------------------------------------------------------------- /__tests__/tests.config.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/tests.config.example.ts -------------------------------------------------------------------------------- /__tests__/wallet.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/__tests__/wallet.test.ts -------------------------------------------------------------------------------- /demos/check-for-unreads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/check-for-unreads.js -------------------------------------------------------------------------------- /demos/compiled-from-typescript/hello-world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/compiled-from-typescript/hello-world.js -------------------------------------------------------------------------------- /demos/compiled-from-typescript/hunt-for-resets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/compiled-from-typescript/hunt-for-resets.js -------------------------------------------------------------------------------- /demos/compiled-from-typescript/team-kvstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/compiled-from-typescript/team-kvstore.js -------------------------------------------------------------------------------- /demos/es7/advertised-echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/es7/advertised-echo.js -------------------------------------------------------------------------------- /demos/es7/check-for-unreads-es7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/es7/check-for-unreads-es7.js -------------------------------------------------------------------------------- /demos/es7/flippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/es7/flippy.js -------------------------------------------------------------------------------- /demos/es7/hello-world-es7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/es7/hello-world-es7.js -------------------------------------------------------------------------------- /demos/es7/math-bot-es7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/es7/math-bot-es7.js -------------------------------------------------------------------------------- /demos/es7/poker-hands-reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/es7/poker-hands-reverse.js -------------------------------------------------------------------------------- /demos/es7/poker-hands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/es7/poker-hands.js -------------------------------------------------------------------------------- /demos/es7/team-inviter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/es7/team-inviter.js -------------------------------------------------------------------------------- /demos/hello-world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/hello-world.js -------------------------------------------------------------------------------- /demos/iced/puzzle-bot.iced: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/iced/puzzle-bot.iced -------------------------------------------------------------------------------- /demos/math-bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/math-bot.js -------------------------------------------------------------------------------- /demos/typescript/hello-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/typescript/hello-world.ts -------------------------------------------------------------------------------- /demos/typescript/hunt-for-resets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/typescript/hunt-for-resets.ts -------------------------------------------------------------------------------- /demos/typescript/team-kvstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/demos/typescript/team-kvstore.ts -------------------------------------------------------------------------------- /documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/documentation.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/jest.config.js -------------------------------------------------------------------------------- /lib/chat-client/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/chat-client/index.d.ts -------------------------------------------------------------------------------- /lib/chat-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/chat-client/index.js -------------------------------------------------------------------------------- /lib/chat-client/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/chat-client/index.js.map -------------------------------------------------------------------------------- /lib/client-base/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/client-base/index.d.ts -------------------------------------------------------------------------------- /lib/client-base/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/client-base/index.js -------------------------------------------------------------------------------- /lib/client-base/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/client-base/index.js.map -------------------------------------------------------------------------------- /lib/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/constants.d.ts -------------------------------------------------------------------------------- /lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/constants.js -------------------------------------------------------------------------------- /lib/constants.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/constants.js.map -------------------------------------------------------------------------------- /lib/helpers-client/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/helpers-client/index.d.ts -------------------------------------------------------------------------------- /lib/helpers-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/helpers-client/index.js -------------------------------------------------------------------------------- /lib/helpers-client/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/helpers-client/index.js.map -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/index.js.map -------------------------------------------------------------------------------- /lib/kvstore-client/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/kvstore-client/index.d.ts -------------------------------------------------------------------------------- /lib/kvstore-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/kvstore-client/index.js -------------------------------------------------------------------------------- /lib/kvstore-client/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/kvstore-client/index.js.map -------------------------------------------------------------------------------- /lib/service/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/service/index.d.ts -------------------------------------------------------------------------------- /lib/service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/service/index.js -------------------------------------------------------------------------------- /lib/service/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/service/index.js.map -------------------------------------------------------------------------------- /lib/team-client/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/team-client/index.d.ts -------------------------------------------------------------------------------- /lib/team-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/team-client/index.js -------------------------------------------------------------------------------- /lib/team-client/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/team-client/index.js.map -------------------------------------------------------------------------------- /lib/types/chat1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/chat1/index.d.ts -------------------------------------------------------------------------------- /lib/types/chat1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/chat1/index.js -------------------------------------------------------------------------------- /lib/types/chat1/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/chat1/index.js.map -------------------------------------------------------------------------------- /lib/types/gregor1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/gregor1/index.d.ts -------------------------------------------------------------------------------- /lib/types/gregor1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/gregor1/index.js -------------------------------------------------------------------------------- /lib/types/gregor1/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/gregor1/index.js.map -------------------------------------------------------------------------------- /lib/types/keybase1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/keybase1/index.d.ts -------------------------------------------------------------------------------- /lib/types/keybase1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/keybase1/index.js -------------------------------------------------------------------------------- /lib/types/keybase1/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/keybase1/index.js.map -------------------------------------------------------------------------------- /lib/types/stellar1/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/stellar1/index.d.ts -------------------------------------------------------------------------------- /lib/types/stellar1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/stellar1/index.js -------------------------------------------------------------------------------- /lib/types/stellar1/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/types/stellar1/index.js.map -------------------------------------------------------------------------------- /lib/utils/adminDebugLogger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/adminDebugLogger.d.ts -------------------------------------------------------------------------------- /lib/utils/adminDebugLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/adminDebugLogger.js -------------------------------------------------------------------------------- /lib/utils/adminDebugLogger.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/adminDebugLogger.js.map -------------------------------------------------------------------------------- /lib/utils/formatAPIObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/formatAPIObject.d.ts -------------------------------------------------------------------------------- /lib/utils/formatAPIObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/formatAPIObject.js -------------------------------------------------------------------------------- /lib/utils/formatAPIObject.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/formatAPIObject.js.map -------------------------------------------------------------------------------- /lib/utils/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/index.d.ts -------------------------------------------------------------------------------- /lib/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/index.js -------------------------------------------------------------------------------- /lib/utils/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/index.js.map -------------------------------------------------------------------------------- /lib/utils/keybaseBinaryName.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/keybaseBinaryName.d.ts -------------------------------------------------------------------------------- /lib/utils/keybaseBinaryName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/keybaseBinaryName.js -------------------------------------------------------------------------------- /lib/utils/keybaseBinaryName.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/keybaseBinaryName.js.map -------------------------------------------------------------------------------- /lib/utils/keybaseExec.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/keybaseExec.d.ts -------------------------------------------------------------------------------- /lib/utils/keybaseExec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/keybaseExec.js -------------------------------------------------------------------------------- /lib/utils/keybaseExec.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/keybaseExec.js.map -------------------------------------------------------------------------------- /lib/utils/keybaseStatus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/keybaseStatus.d.ts -------------------------------------------------------------------------------- /lib/utils/keybaseStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/keybaseStatus.js -------------------------------------------------------------------------------- /lib/utils/keybaseStatus.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/keybaseStatus.js.map -------------------------------------------------------------------------------- /lib/utils/options.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/options.d.ts -------------------------------------------------------------------------------- /lib/utils/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/options.js -------------------------------------------------------------------------------- /lib/utils/options.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/options.js.map -------------------------------------------------------------------------------- /lib/utils/pingKeybaseService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/pingKeybaseService.d.ts -------------------------------------------------------------------------------- /lib/utils/pingKeybaseService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/pingKeybaseService.js -------------------------------------------------------------------------------- /lib/utils/pingKeybaseService.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/pingKeybaseService.js.map -------------------------------------------------------------------------------- /lib/utils/randomTempDir.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/randomTempDir.d.ts -------------------------------------------------------------------------------- /lib/utils/randomTempDir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/randomTempDir.js -------------------------------------------------------------------------------- /lib/utils/randomTempDir.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/randomTempDir.js.map -------------------------------------------------------------------------------- /lib/utils/rmdirRecursive.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/rmdirRecursive.d.ts -------------------------------------------------------------------------------- /lib/utils/rmdirRecursive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/rmdirRecursive.js -------------------------------------------------------------------------------- /lib/utils/rmdirRecursive.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/rmdirRecursive.js.map -------------------------------------------------------------------------------- /lib/utils/safeJSONStringify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/safeJSONStringify.d.ts -------------------------------------------------------------------------------- /lib/utils/safeJSONStringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/safeJSONStringify.js -------------------------------------------------------------------------------- /lib/utils/safeJSONStringify.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/safeJSONStringify.js.map -------------------------------------------------------------------------------- /lib/utils/timeout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/timeout.d.ts -------------------------------------------------------------------------------- /lib/utils/timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/timeout.js -------------------------------------------------------------------------------- /lib/utils/timeout.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/timeout.js.map -------------------------------------------------------------------------------- /lib/utils/whichKeybase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/whichKeybase.d.ts -------------------------------------------------------------------------------- /lib/utils/whichKeybase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/whichKeybase.js -------------------------------------------------------------------------------- /lib/utils/whichKeybase.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/utils/whichKeybase.js.map -------------------------------------------------------------------------------- /lib/wallet-client/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/wallet-client/index.d.ts -------------------------------------------------------------------------------- /lib/wallet-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/wallet-client/index.js -------------------------------------------------------------------------------- /lib/wallet-client/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/lib/wallet-client/index.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/chat-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/chat-client/index.ts -------------------------------------------------------------------------------- /src/client-base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/client-base/index.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/helpers-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/helpers-client/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/kvstore-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/kvstore-client/index.ts -------------------------------------------------------------------------------- /src/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/service/index.ts -------------------------------------------------------------------------------- /src/team-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/team-client/index.ts -------------------------------------------------------------------------------- /src/types/chat1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/types/chat1/index.ts -------------------------------------------------------------------------------- /src/types/gregor1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/types/gregor1/index.ts -------------------------------------------------------------------------------- /src/types/keybase1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/types/keybase1/index.ts -------------------------------------------------------------------------------- /src/types/stellar1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/types/stellar1/index.ts -------------------------------------------------------------------------------- /src/utils/adminDebugLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/adminDebugLogger.ts -------------------------------------------------------------------------------- /src/utils/formatAPIObject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/formatAPIObject.test.ts -------------------------------------------------------------------------------- /src/utils/formatAPIObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/formatAPIObject.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/keybaseBinaryName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/keybaseBinaryName.ts -------------------------------------------------------------------------------- /src/utils/keybaseExec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/keybaseExec.ts -------------------------------------------------------------------------------- /src/utils/keybaseStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/keybaseStatus.ts -------------------------------------------------------------------------------- /src/utils/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/options.ts -------------------------------------------------------------------------------- /src/utils/pingKeybaseService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/pingKeybaseService.ts -------------------------------------------------------------------------------- /src/utils/randomTempDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/randomTempDir.ts -------------------------------------------------------------------------------- /src/utils/rmdirRecursive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/rmdirRecursive.ts -------------------------------------------------------------------------------- /src/utils/safeJSONStringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/safeJSONStringify.ts -------------------------------------------------------------------------------- /src/utils/timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/timeout.ts -------------------------------------------------------------------------------- /src/utils/whichKeybase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/utils/whichKeybase.ts -------------------------------------------------------------------------------- /src/wallet-client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/src/wallet-client/index.ts -------------------------------------------------------------------------------- /tsconfig.demos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/tsconfig.demos.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keybase/keybase-bot/HEAD/yarn.lock --------------------------------------------------------------------------------