├── .editorconfig ├── .eslintrc.js ├── .eslintrc.prepublish.js ├── .github └── workflows │ ├── publish-check.yml │ └── publish.yml ├── .gitignore ├── .gitmodules ├── .npmignore ├── .prettierrc.js ├── .vscode └── extensions.json ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── Makefile ├── README.md ├── README_TEMPLATE.md ├── credentials └── TelePilotApi.credentials.ts ├── deploy ├── aws-test │ ├── 0-install-dependencies.sh │ ├── 1-clone-git-repos.sh │ ├── 2-run-npm-registry.sh │ ├── 3-build-and-publish.sh │ ├── 4-build-docker-image-alpine-musl.sh │ ├── 5-run-docker-container-alpine-musl.sh │ ├── 6-run-compose-n8n-alpine-musl.sh │ ├── 7-run-n8n-glibc.sh │ └── test-on-aws.sh ├── n8n-dockerfile-installation │ ├── Dockerfile │ ├── build.sh │ ├── docker-compose.yml │ ├── run-compose.sh │ └── run.sh ├── npm-telepilot-co.sh ├── publish.sh ├── test-n8n-imports │ ├── credentials │ │ └── credential-dummy.json │ └── workflows │ │ └── Telepilot_getMe.json └── verdaccio │ ├── conf │ └── config.yaml │ └── storage │ └── htpasswd ├── gulpfile.js ├── index.js ├── nodes └── TelePilot │ ├── TelePilot.node.json │ ├── TelePilot.node.ts │ ├── TelePilot.svg │ ├── TelePilotNodeConnectionManager.ts │ ├── TelePilotTrigger.node.ts │ ├── common.descriptions.ts │ └── tdlib │ ├── types.ts │ └── updateEvents.ts ├── package.json ├── pnpm-lock.yaml ├── run.sh ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.prepublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/.eslintrc.prepublish.js -------------------------------------------------------------------------------- /.github/workflows/publish-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/.github/workflows/publish-check.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.tsbuildinfo 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/README.md -------------------------------------------------------------------------------- /README_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/README_TEMPLATE.md -------------------------------------------------------------------------------- /credentials/TelePilotApi.credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/credentials/TelePilotApi.credentials.ts -------------------------------------------------------------------------------- /deploy/aws-test/0-install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/aws-test/0-install-dependencies.sh -------------------------------------------------------------------------------- /deploy/aws-test/1-clone-git-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/aws-test/1-clone-git-repos.sh -------------------------------------------------------------------------------- /deploy/aws-test/2-run-npm-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/aws-test/2-run-npm-registry.sh -------------------------------------------------------------------------------- /deploy/aws-test/3-build-and-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/aws-test/3-build-and-publish.sh -------------------------------------------------------------------------------- /deploy/aws-test/4-build-docker-image-alpine-musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/aws-test/4-build-docker-image-alpine-musl.sh -------------------------------------------------------------------------------- /deploy/aws-test/5-run-docker-container-alpine-musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/aws-test/5-run-docker-container-alpine-musl.sh -------------------------------------------------------------------------------- /deploy/aws-test/6-run-compose-n8n-alpine-musl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/aws-test/6-run-compose-n8n-alpine-musl.sh -------------------------------------------------------------------------------- /deploy/aws-test/7-run-n8n-glibc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/aws-test/7-run-n8n-glibc.sh -------------------------------------------------------------------------------- /deploy/aws-test/test-on-aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/aws-test/test-on-aws.sh -------------------------------------------------------------------------------- /deploy/n8n-dockerfile-installation/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/n8n-dockerfile-installation/Dockerfile -------------------------------------------------------------------------------- /deploy/n8n-dockerfile-installation/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/n8n-dockerfile-installation/build.sh -------------------------------------------------------------------------------- /deploy/n8n-dockerfile-installation/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/n8n-dockerfile-installation/docker-compose.yml -------------------------------------------------------------------------------- /deploy/n8n-dockerfile-installation/run-compose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/n8n-dockerfile-installation/run-compose.sh -------------------------------------------------------------------------------- /deploy/n8n-dockerfile-installation/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/n8n-dockerfile-installation/run.sh -------------------------------------------------------------------------------- /deploy/npm-telepilot-co.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/npm-telepilot-co.sh -------------------------------------------------------------------------------- /deploy/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/publish.sh -------------------------------------------------------------------------------- /deploy/test-n8n-imports/credentials/credential-dummy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/test-n8n-imports/credentials/credential-dummy.json -------------------------------------------------------------------------------- /deploy/test-n8n-imports/workflows/Telepilot_getMe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/test-n8n-imports/workflows/Telepilot_getMe.json -------------------------------------------------------------------------------- /deploy/verdaccio/conf/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/deploy/verdaccio/conf/config.yaml -------------------------------------------------------------------------------- /deploy/verdaccio/storage/htpasswd: -------------------------------------------------------------------------------- 1 | admin:$2y$10$yqJewHsbrxJFlc1dEDBRjuPzNYWZVJJTXbEXadRDkqcrea0PzZpBO 2 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/TelePilot/TelePilot.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/nodes/TelePilot/TelePilot.node.json -------------------------------------------------------------------------------- /nodes/TelePilot/TelePilot.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/nodes/TelePilot/TelePilot.node.ts -------------------------------------------------------------------------------- /nodes/TelePilot/TelePilot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/nodes/TelePilot/TelePilot.svg -------------------------------------------------------------------------------- /nodes/TelePilot/TelePilotNodeConnectionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/nodes/TelePilot/TelePilotNodeConnectionManager.ts -------------------------------------------------------------------------------- /nodes/TelePilot/TelePilotTrigger.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/nodes/TelePilot/TelePilotTrigger.node.ts -------------------------------------------------------------------------------- /nodes/TelePilot/common.descriptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/nodes/TelePilot/common.descriptions.ts -------------------------------------------------------------------------------- /nodes/TelePilot/tdlib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/nodes/TelePilot/tdlib/types.ts -------------------------------------------------------------------------------- /nodes/TelePilot/tdlib/updateEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/nodes/TelePilot/tdlib/updateEvents.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/run.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telepilotco/n8n-nodes-telepilot/HEAD/tslint.json --------------------------------------------------------------------------------