n8n-nodes-ticktick 1.3.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -95
- package/dist/credentials/TickTickOAuth2Api.credentials.d.ts +2 -1
- package/dist/credentials/TickTickOAuth2Api.credentials.js +32 -31
- package/dist/credentials/TickTickOAuth2Api.credentials.js.map +1 -1
- package/dist/credentials/TickTickSessionApi.credentials.d.ts +8 -0
- package/dist/credentials/TickTickSessionApi.credentials.js +40 -0
- package/dist/credentials/TickTickSessionApi.credentials.js.map +1 -0
- package/dist/credentials/TickTickTokenApi.credentials.d.ts +2 -1
- package/dist/credentials/TickTickTokenApi.credentials.js +1 -0
- package/dist/credentials/TickTickTokenApi.credentials.js.map +1 -1
- package/dist/nodes/TickTick/TickTick.node.d.ts +19 -1
- package/dist/nodes/TickTick/TickTick.node.js +250 -10
- package/dist/nodes/TickTick/TickTick.node.js.map +1 -1
- package/dist/nodes/TickTick/helpers/apiRequest.d.ts +3 -0
- package/dist/nodes/TickTick/helpers/apiRequest.js +59 -0
- package/dist/nodes/TickTick/helpers/apiRequest.js.map +1 -1
- package/dist/nodes/TickTick/helpers/loadOptions.d.ts +32 -0
- package/dist/nodes/TickTick/helpers/loadOptions.js +263 -8
- package/dist/nodes/TickTick/helpers/loadOptions.js.map +1 -1
- package/dist/nodes/TickTick/helpers/sessionManager.d.ts +13 -0
- package/dist/nodes/TickTick/helpers/sessionManager.js +161 -0
- package/dist/nodes/TickTick/helpers/sessionManager.js.map +1 -0
- package/dist/nodes/TickTick/resources/focus/FocusDescription.d.ts +3 -0
- package/dist/nodes/TickTick/resources/focus/FocusDescription.js +37 -0
- package/dist/nodes/TickTick/resources/focus/FocusDescription.js.map +1 -0
- package/dist/nodes/TickTick/resources/focus/index.d.ts +2 -0
- package/dist/nodes/TickTick/resources/focus/index.js +19 -0
- package/dist/nodes/TickTick/resources/focus/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/focus/operations/FocusGetDistribution.d.ts +3 -0
- package/dist/nodes/TickTick/resources/focus/operations/FocusGetDistribution.js +53 -0
- package/dist/nodes/TickTick/resources/focus/operations/FocusGetDistribution.js.map +1 -0
- package/dist/nodes/TickTick/resources/focus/operations/FocusGetHeatmap.d.ts +3 -0
- package/dist/nodes/TickTick/resources/focus/operations/FocusGetHeatmap.js +56 -0
- package/dist/nodes/TickTick/resources/focus/operations/FocusGetHeatmap.js.map +1 -0
- package/dist/nodes/TickTick/resources/focus/operations/index.d.ts +2 -0
- package/dist/nodes/TickTick/resources/focus/operations/index.js +10 -0
- package/dist/nodes/TickTick/resources/focus/operations/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/HabitsDescription.d.ts +3 -0
- package/dist/nodes/TickTick/resources/habits/HabitsDescription.js +79 -0
- package/dist/nodes/TickTick/resources/habits/HabitsDescription.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/index.d.ts +2 -0
- package/dist/nodes/TickTick/resources/habits/index.js +19 -0
- package/dist/nodes/TickTick/resources/habits/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitArchive.d.ts +3 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitArchive.js +30 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitArchive.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitCheckin.d.ts +3 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitCheckin.js +66 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitCheckin.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitCreate.d.ts +3 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitCreate.js +137 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitCreate.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitDelete.d.ts +3 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitDelete.js +37 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitDelete.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitGet.d.ts +3 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitGet.js +30 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitGet.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitList.d.ts +3 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitList.js +30 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitList.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitUnarchive.d.ts +3 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitUnarchive.js +30 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitUnarchive.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitUpdate.d.ts +3 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitUpdate.js +145 -0
- package/dist/nodes/TickTick/resources/habits/operations/HabitUpdate.js.map +1 -0
- package/dist/nodes/TickTick/resources/habits/operations/index.d.ts +8 -0
- package/dist/nodes/TickTick/resources/habits/operations/index.js +28 -0
- package/dist/nodes/TickTick/resources/habits/operations/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/index.d.ts +24 -0
- package/dist/nodes/TickTick/resources/index.js +30 -0
- package/dist/nodes/TickTick/resources/index.js.map +1 -1
- package/dist/nodes/TickTick/resources/projectGroups/ProjectGroupsDescription.d.ts +3 -0
- package/dist/nodes/TickTick/resources/projectGroups/ProjectGroupsDescription.js +51 -0
- package/dist/nodes/TickTick/resources/projectGroups/ProjectGroupsDescription.js.map +1 -0
- package/dist/nodes/TickTick/resources/projectGroups/index.d.ts +2 -0
- package/dist/nodes/TickTick/resources/projectGroups/index.js +19 -0
- package/dist/nodes/TickTick/resources/projectGroups/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupCreate.d.ts +3 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupCreate.js +59 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupCreate.js.map +1 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupDelete.d.ts +3 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupDelete.js +41 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupDelete.js.map +1 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupList.d.ts +3 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupList.js +14 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupList.js.map +1 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupUpdate.d.ts +3 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupUpdate.js +68 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupUpdate.js.map +1 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/index.d.ts +4 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/index.js +16 -0
- package/dist/nodes/TickTick/resources/projectGroups/operations/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/projects/ProjectsDescription.js +17 -7
- package/dist/nodes/TickTick/resources/projects/ProjectsDescription.js.map +1 -1
- package/dist/nodes/TickTick/resources/projects/operations/ProjectCreate.js +10 -2
- package/dist/nodes/TickTick/resources/projects/operations/ProjectCreate.js.map +1 -1
- package/dist/nodes/TickTick/resources/projects/operations/ProjectDelete.js +54 -9
- package/dist/nodes/TickTick/resources/projects/operations/ProjectDelete.js.map +1 -1
- package/dist/nodes/TickTick/resources/projects/operations/ProjectGet.js +86 -8
- package/dist/nodes/TickTick/resources/projects/operations/ProjectGet.js.map +1 -1
- package/dist/nodes/TickTick/resources/projects/operations/ProjectUpdate.js +54 -8
- package/dist/nodes/TickTick/resources/projects/operations/ProjectUpdate.js.map +1 -1
- package/dist/nodes/TickTick/resources/sync/SyncDescription.d.ts +3 -0
- package/dist/nodes/TickTick/resources/sync/SyncDescription.js +28 -0
- package/dist/nodes/TickTick/resources/sync/SyncDescription.js.map +1 -0
- package/dist/nodes/TickTick/resources/sync/index.d.ts +2 -0
- package/dist/nodes/TickTick/resources/sync/index.js +19 -0
- package/dist/nodes/TickTick/resources/sync/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/sync/operations/SyncAll.d.ts +3 -0
- package/dist/nodes/TickTick/resources/sync/operations/SyncAll.js +11 -0
- package/dist/nodes/TickTick/resources/sync/operations/SyncAll.js.map +1 -0
- package/dist/nodes/TickTick/resources/sync/operations/index.d.ts +1 -0
- package/dist/nodes/TickTick/resources/sync/operations/index.js +7 -0
- package/dist/nodes/TickTick/resources/sync/operations/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/tags/TagsDescription.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tags/TagsDescription.js +65 -0
- package/dist/nodes/TickTick/resources/tags/TagsDescription.js.map +1 -0
- package/dist/nodes/TickTick/resources/tags/index.d.ts +2 -0
- package/dist/nodes/TickTick/resources/tags/index.js +19 -0
- package/dist/nodes/TickTick/resources/tags/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagCreate.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagCreate.js +73 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagCreate.js.map +1 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagDelete.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagDelete.js +60 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagDelete.js.map +1 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagList.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagList.js +12 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagList.js.map +1 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagMerge.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagMerge.js +105 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagMerge.js.map +1 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagRename.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagRename.js +81 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagRename.js.map +1 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagUpdate.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagUpdate.js +131 -0
- package/dist/nodes/TickTick/resources/tags/operations/TagUpdate.js.map +1 -0
- package/dist/nodes/TickTick/resources/tags/operations/index.d.ts +6 -0
- package/dist/nodes/TickTick/resources/tags/operations/index.js +22 -0
- package/dist/nodes/TickTick/resources/tags/operations/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/tasks/TasksDescription.js +63 -8
- package/dist/nodes/TickTick/resources/tasks/TasksDescription.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskComplete.js +84 -17
- package/dist/nodes/TickTick/resources/tasks/operations/TaskComplete.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskCreate.js +39 -6
- package/dist/nodes/TickTick/resources/tasks/operations/TaskCreate.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskDelete.js +91 -17
- package/dist/nodes/TickTick/resources/tasks/operations/TaskDelete.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskGet.js +73 -17
- package/dist/nodes/TickTick/resources/tasks/operations/TaskGet.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListAll.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListAll.js +170 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListAll.js.map +1 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListCompleted.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListCompleted.js +71 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListCompleted.js.map +1 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListDeleted.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListDeleted.js +41 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListDeleted.js.map +1 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskMove.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskMove.js +117 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskMove.js.map +1 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskSetParent.d.ts +3 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskSetParent.js +161 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskSetParent.js.map +1 -0
- package/dist/nodes/TickTick/resources/tasks/operations/TaskUpdate.js +84 -20
- package/dist/nodes/TickTick/resources/tasks/operations/TaskUpdate.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/index.d.ts +5 -0
- package/dist/nodes/TickTick/resources/tasks/operations/index.js +5 -0
- package/dist/nodes/TickTick/resources/tasks/operations/index.js.map +1 -1
- package/dist/nodes/TickTick/resources/user/UserDescription.d.ts +3 -0
- package/dist/nodes/TickTick/resources/user/UserDescription.js +44 -0
- package/dist/nodes/TickTick/resources/user/UserDescription.js.map +1 -0
- package/dist/nodes/TickTick/resources/user/index.d.ts +2 -0
- package/dist/nodes/TickTick/resources/user/index.js +19 -0
- package/dist/nodes/TickTick/resources/user/index.js.map +1 -0
- package/dist/nodes/TickTick/resources/user/operations/UserGetPreferences.d.ts +3 -0
- package/dist/nodes/TickTick/resources/user/operations/UserGetPreferences.js +11 -0
- package/dist/nodes/TickTick/resources/user/operations/UserGetPreferences.js.map +1 -0
- package/dist/nodes/TickTick/resources/user/operations/UserGetProfile.d.ts +3 -0
- package/dist/nodes/TickTick/resources/user/operations/UserGetProfile.js +11 -0
- package/dist/nodes/TickTick/resources/user/operations/UserGetProfile.js.map +1 -0
- package/dist/nodes/TickTick/resources/user/operations/UserGetStatus.d.ts +3 -0
- package/dist/nodes/TickTick/resources/user/operations/UserGetStatus.js +11 -0
- package/dist/nodes/TickTick/resources/user/operations/UserGetStatus.js.map +1 -0
- package/dist/nodes/TickTick/resources/user/operations/index.d.ts +3 -0
- package/dist/nodes/TickTick/resources/user/operations/index.js +13 -0
- package/dist/nodes/TickTick/resources/user/operations/index.js.map +1 -0
- package/dist/package.json +19 -9
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +88 -76
- package/dist/nodes/TickTick/ticktick.svg +0 -8
package/README.md
CHANGED
|
@@ -1,23 +1,19 @@
|
|
|
1
1
|
# n8n-nodes-ticktick
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
n8n community node for integrating TickTick with your workflows. Manage tasks, projects, and productivity seamlessly.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Table of Contents
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
- [Installation](#installation)
|
|
8
|
+
- [Credentials](#credentials)
|
|
9
|
+
- [Task Operations](#task-operations)
|
|
10
|
+
- [Project Operations](#project-operations)
|
|
11
|
+
- [Compatibility](#compatibility)
|
|
12
|
+
- [Known Issues](#known-issues)
|
|
13
|
+
- [Resources](#resources)
|
|
14
|
+
- [Version History](#version-history)
|
|
8
15
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
[Installation](#installation)
|
|
12
|
-
[Task Operations](#task-operations)
|
|
13
|
-
[Project Operations](#projectoperations)
|
|
14
|
-
[Credentials](#credentials)
|
|
15
|
-
[Compatibility](#compatibility)
|
|
16
|
-
[Known Issues](#known-issues)
|
|
17
|
-
[Resources](#resources)
|
|
18
|
-
[Version history](#version-history)
|
|
19
|
-
|
|
20
|
-
## 📦 Installation
|
|
16
|
+
## Installation
|
|
21
17
|
|
|
22
18
|
Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
|
|
23
19
|
|
|
@@ -27,134 +23,136 @@ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes
|
|
|
27
23
|
5. Agree to the risks of using community nodes: select I understand the risks of installing unverified code from a public source.
|
|
28
24
|
6. Select Install. n8n installs the node, and returns to the Community Nodes list in Settings.
|
|
29
25
|
|
|
30
|
-
|
|
26
|
+
## Credentials
|
|
31
27
|
|
|
32
|
-
|
|
28
|
+
### TickTick Session API (V2) - Email/Password
|
|
33
29
|
|
|
34
|
-
|
|
30
|
+
For access to V2 API features (sync, tags, etc.):
|
|
35
31
|
|
|
36
|
-
|
|
32
|
+
1. In n8n: Create new credential → **TickTick Session API**
|
|
33
|
+
2. Enter your TickTick **email** and **password**
|
|
34
|
+
3. Save
|
|
35
|
+
|
|
36
|
+
**Note**: This authentication method provides access to TickTick's undocumented V2 API, which offers more features than the official V1 API.
|
|
37
|
+
|
|
38
|
+
### TickTick API Token (V1) - Recommended for V1 API
|
|
37
39
|
|
|
38
|
-
Steps:
|
|
39
40
|
1. In TickTick: Account Settings → API Token → "Manage"
|
|
40
41
|
2. Copy token
|
|
41
|
-
3. Create credential
|
|
42
|
-
4. Paste token → Save
|
|
42
|
+
3. In n8n: Create new credential → **TickTick API Token** → Paste token → Save
|
|
43
43
|
|
|
44
|
+
### TickTick OAuth2 (V1)
|
|
44
45
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
1. Add credential in your n8n instance and select **TickTick OAuth2 API**
|
|
49
|
-
2. Visit: [TickTick Developer](https://developer.ticktick.com/)
|
|
50
|
-
3. Go to Manage Apps → New App
|
|
51
|
-
4. Copy **Client ID** & **Client Secret**
|
|
52
|
-
5. In n8n, create credential **TickTick OAuth2 API**
|
|
53
|
-
6. Paste credentials & connect
|
|
46
|
+
1. Visit [TickTick Developer](https://developer.ticktick.com/) → Manage Apps → New App
|
|
47
|
+
2. Copy **Client ID** & **Client Secret**
|
|
48
|
+
3. In n8n: Create new credential → **TickTick OAuth2 API** → Paste credentials → Connect
|
|
54
49
|
|
|
55
50
|
---
|
|
56
51
|
|
|
57
|
-
##
|
|
58
|
-
|
|
59
|
-
### 1. Create a Task
|
|
52
|
+
## TickTick V1 API (Official)
|
|
60
53
|
|
|
61
|
-
|
|
62
|
-
- Title (required)
|
|
63
|
-
- Project (defaults to Inbox if empty)
|
|
64
|
-
- Additional Fields:
|
|
65
|
-
- All Day, Completed Time, Content, Description, Due Date, Kind, Priority, Reminders, Repeat Flag, Sort Order, Start Date, Status, Time Zone
|
|
66
|
-
- Items (Subtasks)
|
|
54
|
+
The following operations use the official TickTick Open API (V1) and work with **API Token** or **OAuth2** credentials.
|
|
67
55
|
|
|
68
|
-
###
|
|
56
|
+
### Task Operations (V1)
|
|
69
57
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
58
|
+
| Operation | Required Parameters | Optional/Additional Fields |
|
|
59
|
+
|-----------|-------------------|--------------------------|
|
|
60
|
+
| **Create** | Title | Project, All Day, Content, Description, Due Date, Priority, Reminders, Start Date, Status, Items (Subtasks) |
|
|
61
|
+
| **Get** | Task ID, Project ID | — |
|
|
62
|
+
| **Update** | Task ID | Project ID, Title, Content, Description, Due Date, Priority, Reminders, Start Date, Status, Items, All Day |
|
|
63
|
+
| **Complete** | Task ID, Project ID | — |
|
|
64
|
+
| **Delete** | Task ID, Project ID | — |
|
|
73
65
|
|
|
74
|
-
###
|
|
66
|
+
### Project Operations (V1)
|
|
75
67
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
68
|
+
| Operation | Mode/Type | Required Parameters | Optional Fields |
|
|
69
|
+
|-----------|-----------|-------------------|-----------------|
|
|
70
|
+
| **Create** | — | Project Name | Color, Kind, Sort Order, View Mode |
|
|
71
|
+
| **Get** | All Projects | — | — |
|
|
72
|
+
| **Get** | Specific Project | Project ID | — |
|
|
73
|
+
| **Get** | With Tasks & Columns | Project ID | — |
|
|
74
|
+
| **Update** | — | Project ID | Name, Color, Kind, Sort Order, View Mode |
|
|
75
|
+
| **Delete** | — | Project ID | — |
|
|
81
76
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
Parameters:
|
|
85
|
-
- Task identifier (required)
|
|
86
|
-
- Project identifier (required)
|
|
77
|
+
---
|
|
87
78
|
|
|
88
|
-
|
|
79
|
+
## TickTick V2 API (Undocumented Session API)
|
|
89
80
|
|
|
90
|
-
|
|
91
|
-
- Task identifier (required)
|
|
92
|
-
- Project identifier (required)
|
|
93
|
-
|
|
94
|
-
---
|
|
81
|
+
The following operations require **TickTick Session API** (Email/Password) credentials and provide access to advanced features not available in the V1 API.
|
|
95
82
|
|
|
96
|
-
|
|
83
|
+
> **Note**: V2 authentication also supports all V1 task operations (Create, Get, Update, Complete, Delete) and all V1 project operations (Create, Get, Update, Delete). The operations listed below are **additional V2-only features** not available with V1 API Token or OAuth2 credentials.
|
|
97
84
|
|
|
98
|
-
###
|
|
85
|
+
### Task Operations (V2 Only)
|
|
99
86
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
87
|
+
| Operation | Description | Required Parameters | Optional/Additional Fields |
|
|
88
|
+
|-----------|-------------|-------------------|--------------------------|
|
|
89
|
+
| **List All** | List all tasks across projects | — | Limit, Project Filter, Status Filter (All/Active/Completed), Include Deleted |
|
|
90
|
+
| **List Completed** | Get completed tasks in date range | — | Limit, Date Range (From/To) |
|
|
91
|
+
| **List Deleted** | Get deleted/trashed tasks | — | Limit |
|
|
92
|
+
| **Move** | Move task to different project | Task, To Project | — |
|
|
103
93
|
|
|
104
|
-
### 2. Get Project(s)
|
|
105
94
|
|
|
106
|
-
Modes:
|
|
107
|
-
- Get All Projects: Retrieve a list of all projects
|
|
108
|
-
- Get Specific Project: Retrieve details of a single project (Name, Color, etc.)
|
|
109
|
-
- Get Project With Data: Retrieve a project along with its tasks and columns (Works for Inbox)
|
|
110
95
|
|
|
111
|
-
###
|
|
96
|
+
### Sync Operations (V2)
|
|
112
97
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
98
|
+
| Operation | Description | Returns |
|
|
99
|
+
|-----------|-------------|---------|
|
|
100
|
+
| **Sync All** | Get all data from sync endpoint | Tasks, Projects, Tags, Habits, Project Groups, Column Data, User Info |
|
|
116
101
|
|
|
117
|
-
###
|
|
102
|
+
### Tag Operations (V2)
|
|
118
103
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
104
|
+
| Operation | Description | Required Parameters | Optional Fields |
|
|
105
|
+
|-----------|-------------|-------------------|-----------------|
|
|
106
|
+
| **Create** | Create a new tag | Tag Name | Label, Sort Order, Color, Parent Tag |
|
|
107
|
+
| **Update** | Update existing tag | Tag | Name, Label, Sort Order, Color, Parent Tag |
|
|
108
|
+
| **Delete** | Delete a tag | Tag | — |
|
|
109
|
+
| **List** | List all tags | — | — |
|
|
122
110
|
|
|
123
111
|
---
|
|
124
112
|
|
|
125
|
-
##
|
|
113
|
+
## Compatibility
|
|
126
114
|
|
|
127
|
-
Tested successfully on
|
|
115
|
+
Tested successfully on 2026-01-06 with:
|
|
128
116
|
|
|
129
|
-
- n8n Version:
|
|
117
|
+
- n8n Version: 2.2.3
|
|
130
118
|
- Node Version: 22.11.0
|
|
131
|
-
- pnpm Version:
|
|
119
|
+
- pnpm Version: 10.27.0
|
|
132
120
|
- No extra packages required (Luxon is bundled)
|
|
133
121
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
## ⚠ Known Issues & Notes
|
|
122
|
+
## Known Issues
|
|
137
123
|
|
|
138
|
-
### API
|
|
124
|
+
### V1 API (Official)
|
|
139
125
|
- **Inbox Handling**: The "Default Inbox" is handled internally as the "inbox" ID. It supports fetching data (tasks) but does not support "Get Specific Project" details as it is not a standard project.
|
|
140
126
|
- **Empty Responses**: Operations like delete or complete often return `200 OK` with no body. This node generates a success message for these cases.
|
|
141
127
|
|
|
142
|
-
|
|
128
|
+
### V2 API (Undocumented)
|
|
129
|
+
- **Undocumented API**: The V2 Session API is not officially documented by TickTick. Endpoints and behaviors were discovered through reverse engineering and may change without notice.
|
|
130
|
+
- **Rate Limits Unknown**: Rate limiting behavior for the V2 API is undocumented and unknown. Use responsibly to avoid potential account issues.
|
|
131
|
+
- **No Official Support**: TickTick does not provide official support for the V2 Session API. Use at your own risk.
|
|
132
|
+
- **Authentication Security**: Session API requires email/password credentials. These are stored securely by n8n but consider the security implications for your use case.
|
|
133
|
+
- **Breaking Changes**: Since the API is undocumented, TickTick may change endpoints or behavior at any time without warning.
|
|
143
134
|
|
|
144
|
-
|
|
135
|
+
### General
|
|
136
|
+
- **Unofficial Node**: Community-maintained node. Not affiliated with or endorsed by TickTick or n8n.
|
|
137
|
+
|
|
138
|
+
## Resources
|
|
145
139
|
|
|
146
140
|
- [n8n Website](https://n8n.io/)
|
|
147
|
-
- [n8n
|
|
141
|
+
- [n8n Community Nodes Documentation](https://docs.n8n.io/integrations/community-nodes/)
|
|
142
|
+
- [n8n Documentation for LLMs](https://docs.n8n.io/llms.txt)
|
|
148
143
|
- [TickTick Website](https://www.ticktick.com/)
|
|
149
|
-
- [TickTick Open API
|
|
150
|
-
- [GitHub Repository](https://github.com/hansdoebel/n8n-nodes-ticktick
|
|
144
|
+
- [TickTick Open API](https://developer.ticktick.com/docs#/openapi)
|
|
145
|
+
- [GitHub Repository](https://github.com/hansdoebel/n8n-nodes-ticktick)
|
|
146
|
+
- [dev-mirzabicer/ticktick-sdk](https://github.com/dev-mirzabicer/ticktick-sdk)
|
|
147
|
+
- [lazeroffmichael/ticktick-py](https://github.com/lazeroffmichael/ticktick-py/)
|
|
148
|
+
- [@n8n/node-cli README](https://raw.githubusercontent.com/n8n-io/n8n/refs/heads/master/packages/%40n8n/node-cli/README.md)
|
|
151
149
|
|
|
152
|
-
---
|
|
153
150
|
|
|
154
|
-
##
|
|
151
|
+
## Version History
|
|
155
152
|
|
|
153
|
+
- `2.0.0` – **V2 API Support**: Added TickTick Session API (email/password) authentication with support for undocumented V2 endpoints. New resources: Tags, Sync. New V2-only task operations: List All, List Completed, List Deleted, Move. All V1 operations now support both V1 and V2 authentication methods.
|
|
156
154
|
- `1.3.0` – Major refactor: Fixed API request context, added Inbox support, expanded Task/Project fields, added Subtask support, improved Project Get modes.
|
|
157
|
-
- `1.2.2` –
|
|
155
|
+
- `1.2.2` – Documentation and metadata update only
|
|
158
156
|
- `1.2.1` – Inbox support, API Token credential, improved task/project operations, success messages
|
|
159
157
|
- `1.1.1` – Added Luxon for date formatting (thank you [mrozekadam](https://github.com/mrozekadam))
|
|
160
158
|
- `1.0.0` – Initial release
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { ICredentialType, INodeProperties } from
|
|
1
|
+
import { Icon, ICredentialType, INodeProperties } from "n8n-workflow";
|
|
2
2
|
export declare class TickTickOAuth2Api implements ICredentialType {
|
|
3
3
|
name: string;
|
|
4
4
|
extends: string[];
|
|
5
5
|
displayName: string;
|
|
6
6
|
documentationUrl: string;
|
|
7
|
+
icon: Icon;
|
|
7
8
|
properties: INodeProperties[];
|
|
8
9
|
}
|
|
@@ -3,58 +3,59 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.TickTickOAuth2Api = void 0;
|
|
4
4
|
class TickTickOAuth2Api {
|
|
5
5
|
constructor() {
|
|
6
|
-
this.name =
|
|
7
|
-
this.extends = [
|
|
8
|
-
this.displayName =
|
|
9
|
-
this.documentationUrl =
|
|
6
|
+
this.name = "tickTickOAuth2Api";
|
|
7
|
+
this.extends = ["oAuth2Api"];
|
|
8
|
+
this.displayName = "TickTick OAuth2 API";
|
|
9
|
+
this.documentationUrl = "https://developer.ticktick.com/docs#/openapi";
|
|
10
|
+
this.icon = "file:../icons/ticktick.svg";
|
|
10
11
|
this.properties = [
|
|
11
12
|
{
|
|
12
|
-
displayName:
|
|
13
|
-
name:
|
|
14
|
-
type:
|
|
15
|
-
default:
|
|
13
|
+
displayName: "Grant Type",
|
|
14
|
+
name: "grantType",
|
|
15
|
+
type: "hidden",
|
|
16
|
+
default: "pkce",
|
|
16
17
|
},
|
|
17
18
|
{
|
|
18
|
-
displayName:
|
|
19
|
-
name:
|
|
20
|
-
type:
|
|
21
|
-
default:
|
|
19
|
+
displayName: "Authorization URL",
|
|
20
|
+
name: "authUrl",
|
|
21
|
+
type: "hidden",
|
|
22
|
+
default: "https://ticktick.com/oauth/authorize",
|
|
22
23
|
required: true,
|
|
23
24
|
},
|
|
24
25
|
{
|
|
25
|
-
displayName:
|
|
26
|
-
name:
|
|
27
|
-
type:
|
|
28
|
-
default:
|
|
26
|
+
displayName: "Access Token URL",
|
|
27
|
+
name: "accessTokenUrl",
|
|
28
|
+
type: "hidden",
|
|
29
|
+
default: "https://ticktick.com/oauth/token",
|
|
29
30
|
required: true,
|
|
30
31
|
},
|
|
31
32
|
{
|
|
32
|
-
displayName:
|
|
33
|
-
name:
|
|
34
|
-
type:
|
|
33
|
+
displayName: "Client ID",
|
|
34
|
+
name: "clientId",
|
|
35
|
+
type: "string",
|
|
35
36
|
typeOptions: {
|
|
36
37
|
password: true,
|
|
37
38
|
},
|
|
38
|
-
default:
|
|
39
|
+
default: "",
|
|
39
40
|
required: true,
|
|
40
41
|
},
|
|
41
42
|
{
|
|
42
|
-
displayName:
|
|
43
|
-
name:
|
|
44
|
-
type:
|
|
43
|
+
displayName: "Scope",
|
|
44
|
+
name: "scope",
|
|
45
|
+
type: "hidden",
|
|
45
46
|
default: ``,
|
|
46
47
|
},
|
|
47
48
|
{
|
|
48
|
-
displayName:
|
|
49
|
-
name:
|
|
50
|
-
type:
|
|
51
|
-
default:
|
|
49
|
+
displayName: "Auth URI Query Parameters",
|
|
50
|
+
name: "authQueryParameters",
|
|
51
|
+
type: "hidden",
|
|
52
|
+
default: "",
|
|
52
53
|
},
|
|
53
54
|
{
|
|
54
|
-
displayName:
|
|
55
|
-
name:
|
|
56
|
-
type:
|
|
57
|
-
default:
|
|
55
|
+
displayName: "Authentication",
|
|
56
|
+
name: "authentication",
|
|
57
|
+
type: "hidden",
|
|
58
|
+
default: "header",
|
|
58
59
|
},
|
|
59
60
|
];
|
|
60
61
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TickTickOAuth2Api.credentials.js","sourceRoot":"","sources":["../../credentials/TickTickOAuth2Api.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,iBAAiB;IAA9B;QACC,SAAI,GAAG,mBAAmB,CAAC;QAC3B,YAAO,GAAG,CAAC,WAAW,CAAC,CAAC;QACxB,gBAAW,GAAG,qBAAqB,CAAC;QACpC,qBAAgB,GAAG,8CAA8C,CAAC;QAElE,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,MAAM;aACf;YACD;gBACC,WAAW,EAAE,mBAAmB;gBAChC,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,sCAAsC;gBAC/C,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,kBAAkB;gBAC/B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,kCAAkC;gBAC3C,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,WAAW;gBACxB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,2BAA2B;gBACxC,IAAI,EAAE,qBAAqB;gBAC3B,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,gBAAgB;gBAC7B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,QAAQ;aACjB;SACD,CAAC;IACH,CAAC;CAAA;
|
|
1
|
+
{"version":3,"file":"TickTickOAuth2Api.credentials.js","sourceRoot":"","sources":["../../credentials/TickTickOAuth2Api.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,iBAAiB;IAA9B;QACC,SAAI,GAAG,mBAAmB,CAAC;QAC3B,YAAO,GAAG,CAAC,WAAW,CAAC,CAAC;QACxB,gBAAW,GAAG,qBAAqB,CAAC;QACpC,qBAAgB,GAAG,8CAA8C,CAAC;QAElE,SAAI,GAAS,4BAA4B,CAAC;QAE1C,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,YAAY;gBACzB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,MAAM;aACf;YACD;gBACC,WAAW,EAAE,mBAAmB;gBAChC,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,sCAAsC;gBAC/C,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,kBAAkB;gBAC/B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,kCAAkC;gBAC3C,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,WAAW;gBACxB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;aACd;YACD;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,2BAA2B;gBACxC,IAAI,EAAE,qBAAqB;gBAC3B,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;YACD;gBACC,WAAW,EAAE,gBAAgB;gBAC7B,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,QAAQ;aACjB;SACD,CAAC;IACH,CAAC;CAAA;AA1DD,8CA0DC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TickTickSessionApi = void 0;
|
|
4
|
+
class TickTickSessionApi {
|
|
5
|
+
constructor() {
|
|
6
|
+
this.name = "tickTickSessionApi";
|
|
7
|
+
this.displayName = "TickTick (V2) Session API";
|
|
8
|
+
this.documentationUrl = "https://github.com/hansdoebel/n8n-nodes-ticktick";
|
|
9
|
+
this.icon = "file:../icons/ticktick.svg";
|
|
10
|
+
this.properties = [
|
|
11
|
+
{
|
|
12
|
+
displayName: "Email",
|
|
13
|
+
name: "username",
|
|
14
|
+
type: "string",
|
|
15
|
+
default: "",
|
|
16
|
+
required: true,
|
|
17
|
+
description: "Your TickTick account email",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
displayName: "Password",
|
|
21
|
+
name: "password",
|
|
22
|
+
type: "string",
|
|
23
|
+
typeOptions: {
|
|
24
|
+
password: true,
|
|
25
|
+
},
|
|
26
|
+
default: "",
|
|
27
|
+
required: true,
|
|
28
|
+
description: "Your TickTick account password",
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
displayName: "Session auth uses TickTick's unofficial V2 API. Credential testing is disabled; validation happens when used in a workflow. 2FA is not supported.",
|
|
32
|
+
name: "notice",
|
|
33
|
+
type: "notice",
|
|
34
|
+
default: "",
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
exports.TickTickSessionApi = TickTickSessionApi;
|
|
40
|
+
//# sourceMappingURL=TickTickSessionApi.credentials.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TickTickSessionApi.credentials.js","sourceRoot":"","sources":["../../credentials/TickTickSessionApi.credentials.ts"],"names":[],"mappings":";;;AAEA,MAAa,kBAAkB;IAA/B;QACC,SAAI,GAAG,oBAAoB,CAAC;QAC5B,gBAAW,GAAG,2BAA2B,CAAC;QAC1C,qBAAgB,GAAG,kDAAkD,CAAC;QACtE,SAAI,GAAS,4BAA4B,CAAC;QAC1C,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,OAAO;gBACpB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,6BAA6B;aAC1C;YACD;gBACC,WAAW,EAAE,UAAU;gBACvB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;gBACD,OAAO,EAAE,EAAE;gBACX,QAAQ,EAAE,IAAI;gBACd,WAAW,EAAE,gCAAgC;aAC7C;YACD;gBACC,WAAW,EACV,mJAAmJ;gBACpJ,IAAI,EAAE,QAAQ;gBACd,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;aACX;SACD,CAAC;IACH,CAAC;CAAA;AAjCD,gDAiCC"}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from "n8n-workflow";
|
|
1
|
+
import { IAuthenticateGeneric, Icon, ICredentialTestRequest, ICredentialType, INodeProperties } from "n8n-workflow";
|
|
2
2
|
export declare class TickTickTokenApi implements ICredentialType {
|
|
3
3
|
name: string;
|
|
4
4
|
displayName: string;
|
|
5
5
|
documentationUrl: string;
|
|
6
|
+
icon: Icon;
|
|
6
7
|
properties: INodeProperties[];
|
|
7
8
|
authenticate: IAuthenticateGeneric;
|
|
8
9
|
test: ICredentialTestRequest;
|
|
@@ -6,6 +6,7 @@ class TickTickTokenApi {
|
|
|
6
6
|
this.name = "tickTickTokenApi";
|
|
7
7
|
this.displayName = "TickTick API";
|
|
8
8
|
this.documentationUrl = "https://developer.ticktick.com/docs#/openapi";
|
|
9
|
+
this.icon = "file:../icons/ticktick.svg";
|
|
9
10
|
this.properties = [
|
|
10
11
|
{
|
|
11
12
|
displayName: "API Token",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TickTickTokenApi.credentials.js","sourceRoot":"","sources":["../../credentials/TickTickTokenApi.credentials.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"TickTickTokenApi.credentials.js","sourceRoot":"","sources":["../../credentials/TickTickTokenApi.credentials.ts"],"names":[],"mappings":";;;AAQA,MAAa,gBAAgB;IAA7B;QACC,SAAI,GAAG,kBAAkB,CAAC;QAC1B,gBAAW,GAAG,cAAc,CAAC;QAC7B,qBAAgB,GAAG,8CAA8C,CAAC;QAClE,SAAI,GAAS,4BAA4B,CAAC;QAC1C,eAAU,GAAsB;YAC/B;gBACC,WAAW,EAAE,WAAW;gBACxB,IAAI,EAAE,OAAO;gBACb,IAAI,EAAE,QAAQ;gBACd,OAAO,EAAE,EAAE;gBACX,WAAW,EAAE;oBACZ,QAAQ,EAAE,IAAI;iBACd;aACD;SACD,CAAC;QACF,iBAAY,GAAyB;YACpC,IAAI,EAAE,SAAS;YACf,UAAU,EAAE;gBACX,OAAO,EAAE;oBACR,aAAa,EAAE,qCAAqC;iBACpD;aACD;SACD,CAAC;QAEF,SAAI,GAA2B;YAC9B,OAAO,EAAE;gBACR,OAAO,EAAE,sBAAsB;gBAC/B,GAAG,EAAE,kBAAkB;aACvB;SACD,CAAC;IACH,CAAC;CAAA;AA/BD,4CA+BC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from "n8n-workflow";
|
|
1
|
+
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeListSearchResult, INodeType, INodeTypeDescription } from "n8n-workflow";
|
|
2
2
|
export declare class TickTick implements INodeType {
|
|
3
3
|
description: INodeTypeDescription;
|
|
4
4
|
methods: {
|
|
@@ -11,6 +11,24 @@ export declare class TickTick implements INodeType {
|
|
|
11
11
|
name: string;
|
|
12
12
|
value: string;
|
|
13
13
|
}[]>;
|
|
14
|
+
getHabits(this: ILoadOptionsFunctions): Promise<{
|
|
15
|
+
name: string;
|
|
16
|
+
value: string;
|
|
17
|
+
}[]>;
|
|
18
|
+
getTags(this: ILoadOptionsFunctions): Promise<{
|
|
19
|
+
name: string;
|
|
20
|
+
value: string;
|
|
21
|
+
}[]>;
|
|
22
|
+
getProjectGroups(this: ILoadOptionsFunctions): Promise<{
|
|
23
|
+
name: string;
|
|
24
|
+
value: string;
|
|
25
|
+
}[]>;
|
|
26
|
+
};
|
|
27
|
+
listSearch: {
|
|
28
|
+
searchProjects(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
|
|
29
|
+
searchProjectsForMove(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
|
|
30
|
+
searchTags(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
|
|
31
|
+
searchTasks(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
|
|
14
32
|
};
|
|
15
33
|
};
|
|
16
34
|
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
|