├── .gitignore ├── LICENSE ├── README.md ├── config.example.json ├── demos ├── demo-client-auto-after-login.gif ├── demo-client-auto-before-login.gif ├── demo-client-auto-re-login.gif └── demo-converstation-cli.gif ├── dist ├── cli.js ├── client.js ├── client_auto.js ├── client_manual.js ├── credential.js ├── index.js ├── mail.js └── websocket.js ├── graphql ├── AddHumanMessageMutation.graphql ├── AddMessageBreakMutation.graphql ├── AutoSubscriptionMutation.graphql ├── BioFragment.graphql ├── ChatAddedSubscription.graphql ├── ChatFragment.graphql ├── ChatPaginationQuery.graphql ├── ChatViewQuery.graphql ├── DeleteHumanMessagesMutation.graphql ├── HandleFragment.graphql ├── LoginWithVerificationCodeMutation.graphql ├── MessageAddedSubscription.graphql ├── MessageDeletedSubscription.graphql ├── MessageFragment.graphql ├── MessageRemoveVoteMutation.graphql ├── MessageSetVoteMutation.graphql ├── SendVerificationCodeForLoginMutation.graphql ├── ShareMessagesMutation.graphql ├── SignupWithVerificationCodeMutation.graphql ├── StaleChatUpdateMutation.graphql ├── SummarizePlainPostQuery.graphql ├── SummarizeQuotePostQuery.graphql ├── SummarizeSharePostQuery.graphql ├── UserSnippetFragment.graphql ├── ViewerInfoQuery.graphql ├── ViewerStateFragment.graphql └── ViewerStateUpdatedSubscription.graphql ├── package.json ├── src ├── cli.ts ├── client_auto.ts ├── client_manual.ts ├── credential.ts ├── index.ts ├── mail.ts └── websocket.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | config.json 4 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/README.md -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/config.example.json -------------------------------------------------------------------------------- /demos/demo-client-auto-after-login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/demos/demo-client-auto-after-login.gif -------------------------------------------------------------------------------- /demos/demo-client-auto-before-login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/demos/demo-client-auto-before-login.gif -------------------------------------------------------------------------------- /demos/demo-client-auto-re-login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/demos/demo-client-auto-re-login.gif -------------------------------------------------------------------------------- /demos/demo-converstation-cli.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/demos/demo-converstation-cli.gif -------------------------------------------------------------------------------- /dist/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/dist/cli.js -------------------------------------------------------------------------------- /dist/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/dist/client.js -------------------------------------------------------------------------------- /dist/client_auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/dist/client_auto.js -------------------------------------------------------------------------------- /dist/client_manual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/dist/client_manual.js -------------------------------------------------------------------------------- /dist/credential.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/dist/credential.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/dist/mail.js -------------------------------------------------------------------------------- /dist/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/dist/websocket.js -------------------------------------------------------------------------------- /graphql/AddHumanMessageMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/AddHumanMessageMutation.graphql -------------------------------------------------------------------------------- /graphql/AddMessageBreakMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/AddMessageBreakMutation.graphql -------------------------------------------------------------------------------- /graphql/AutoSubscriptionMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/AutoSubscriptionMutation.graphql -------------------------------------------------------------------------------- /graphql/BioFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/BioFragment.graphql -------------------------------------------------------------------------------- /graphql/ChatAddedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/ChatAddedSubscription.graphql -------------------------------------------------------------------------------- /graphql/ChatFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/ChatFragment.graphql -------------------------------------------------------------------------------- /graphql/ChatPaginationQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/ChatPaginationQuery.graphql -------------------------------------------------------------------------------- /graphql/ChatViewQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/ChatViewQuery.graphql -------------------------------------------------------------------------------- /graphql/DeleteHumanMessagesMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/DeleteHumanMessagesMutation.graphql -------------------------------------------------------------------------------- /graphql/HandleFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/HandleFragment.graphql -------------------------------------------------------------------------------- /graphql/LoginWithVerificationCodeMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/LoginWithVerificationCodeMutation.graphql -------------------------------------------------------------------------------- /graphql/MessageAddedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/MessageAddedSubscription.graphql -------------------------------------------------------------------------------- /graphql/MessageDeletedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/MessageDeletedSubscription.graphql -------------------------------------------------------------------------------- /graphql/MessageFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/MessageFragment.graphql -------------------------------------------------------------------------------- /graphql/MessageRemoveVoteMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/MessageRemoveVoteMutation.graphql -------------------------------------------------------------------------------- /graphql/MessageSetVoteMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/MessageSetVoteMutation.graphql -------------------------------------------------------------------------------- /graphql/SendVerificationCodeForLoginMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/SendVerificationCodeForLoginMutation.graphql -------------------------------------------------------------------------------- /graphql/ShareMessagesMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/ShareMessagesMutation.graphql -------------------------------------------------------------------------------- /graphql/SignupWithVerificationCodeMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/SignupWithVerificationCodeMutation.graphql -------------------------------------------------------------------------------- /graphql/StaleChatUpdateMutation.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/StaleChatUpdateMutation.graphql -------------------------------------------------------------------------------- /graphql/SummarizePlainPostQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/SummarizePlainPostQuery.graphql -------------------------------------------------------------------------------- /graphql/SummarizeQuotePostQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/SummarizeQuotePostQuery.graphql -------------------------------------------------------------------------------- /graphql/SummarizeSharePostQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/SummarizeSharePostQuery.graphql -------------------------------------------------------------------------------- /graphql/UserSnippetFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/UserSnippetFragment.graphql -------------------------------------------------------------------------------- /graphql/ViewerInfoQuery.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/ViewerInfoQuery.graphql -------------------------------------------------------------------------------- /graphql/ViewerStateFragment.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/ViewerStateFragment.graphql -------------------------------------------------------------------------------- /graphql/ViewerStateUpdatedSubscription.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/graphql/ViewerStateUpdatedSubscription.graphql -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/client_auto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/src/client_auto.ts -------------------------------------------------------------------------------- /src/client_manual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/src/client_manual.ts -------------------------------------------------------------------------------- /src/credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/src/credential.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/src/mail.ts -------------------------------------------------------------------------------- /src/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/src/websocket.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muharamdani/poe/HEAD/tsconfig.json --------------------------------------------------------------------------------