├── .editorconfig ├── .eslintrc.js ├── .eslintrc.prepublish.js ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── .vscode └── extensions.json ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── credentials ├── TickTickOAuth2Api.credentials.ts └── TickTickTokenApi.credentials.ts ├── gulpfile.js ├── index.js ├── nodes └── TickTick │ ├── GenericFunctions.ts │ ├── TickTick.node.json │ ├── TickTick.node.ts │ ├── descriptions │ ├── ProjectDescription.ts │ ├── TaskDescription.ts │ └── index.ts │ └── ticktick.svg ├── package.json ├── pnpm-lock.yaml └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.prepublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/.eslintrc.prepublish.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/README.md -------------------------------------------------------------------------------- /credentials/TickTickOAuth2Api.credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/credentials/TickTickOAuth2Api.credentials.ts -------------------------------------------------------------------------------- /credentials/TickTickTokenApi.credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/credentials/TickTickTokenApi.credentials.ts -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/TickTick/GenericFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/nodes/TickTick/GenericFunctions.ts -------------------------------------------------------------------------------- /nodes/TickTick/TickTick.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/nodes/TickTick/TickTick.node.json -------------------------------------------------------------------------------- /nodes/TickTick/TickTick.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/nodes/TickTick/TickTick.node.ts -------------------------------------------------------------------------------- /nodes/TickTick/descriptions/ProjectDescription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/nodes/TickTick/descriptions/ProjectDescription.ts -------------------------------------------------------------------------------- /nodes/TickTick/descriptions/TaskDescription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/nodes/TickTick/descriptions/TaskDescription.ts -------------------------------------------------------------------------------- /nodes/TickTick/descriptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/nodes/TickTick/descriptions/index.ts -------------------------------------------------------------------------------- /nodes/TickTick/ticktick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/nodes/TickTick/ticktick.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansdoebel/n8n-nodes-ticktick/HEAD/tsconfig.json --------------------------------------------------------------------------------