n8n-nodes-ticktick 2.1.1 → 2.1.2
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 +26 -244
- package/dist/nodes/TickTick/TickTick.node.js +1 -23
- package/dist/nodes/TickTick/TickTick.node.js.map +1 -1
- package/dist/nodes/TickTick/constants/endpoints.d.ts +7 -0
- package/dist/nodes/TickTick/constants/endpoints.js +7 -0
- package/dist/nodes/TickTick/constants/endpoints.js.map +1 -1
- package/dist/nodes/TickTick/helpers/loadOptions.d.ts +24 -0
- package/dist/nodes/TickTick/helpers/loadOptions.js +223 -17
- package/dist/nodes/TickTick/helpers/loadOptions.js.map +1 -1
- package/dist/nodes/TickTick/helpers/utils.d.ts +5 -0
- package/dist/nodes/TickTick/helpers/utils.js +27 -0
- package/dist/nodes/TickTick/helpers/utils.js.map +1 -1
- package/dist/nodes/TickTick/resources/focus/FocusDescription.js +13 -0
- package/dist/nodes/TickTick/resources/focus/FocusDescription.js.map +1 -1
- package/dist/nodes/TickTick/resources/habits/HabitsDescription.js +13 -0
- package/dist/nodes/TickTick/resources/habits/HabitsDescription.js.map +1 -1
- package/dist/nodes/TickTick/resources/habits/methods.d.ts +4 -1
- package/dist/nodes/TickTick/resources/habits/methods.js +6 -0
- package/dist/nodes/TickTick/resources/habits/methods.js.map +1 -1
- package/dist/nodes/TickTick/resources/habits/operations/HabitArchive.js +30 -8
- package/dist/nodes/TickTick/resources/habits/operations/HabitArchive.js.map +1 -1
- package/dist/nodes/TickTick/resources/habits/operations/HabitCheckin.js +30 -8
- package/dist/nodes/TickTick/resources/habits/operations/HabitCheckin.js.map +1 -1
- package/dist/nodes/TickTick/resources/habits/operations/HabitDelete.js +30 -8
- package/dist/nodes/TickTick/resources/habits/operations/HabitDelete.js.map +1 -1
- package/dist/nodes/TickTick/resources/habits/operations/HabitGet.js +30 -8
- package/dist/nodes/TickTick/resources/habits/operations/HabitGet.js.map +1 -1
- package/dist/nodes/TickTick/resources/habits/operations/HabitUnarchive.js +30 -8
- package/dist/nodes/TickTick/resources/habits/operations/HabitUnarchive.js.map +1 -1
- package/dist/nodes/TickTick/resources/habits/operations/HabitUpdate.js +30 -8
- package/dist/nodes/TickTick/resources/habits/operations/HabitUpdate.js.map +1 -1
- package/dist/nodes/TickTick/resources/projectGroups/ProjectGroupsDescription.js +13 -0
- package/dist/nodes/TickTick/resources/projectGroups/ProjectGroupsDescription.js.map +1 -1
- package/dist/nodes/TickTick/resources/projectGroups/methods.d.ts +4 -1
- package/dist/nodes/TickTick/resources/projectGroups/methods.js +6 -0
- package/dist/nodes/TickTick/resources/projectGroups/methods.js.map +1 -1
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupDelete.js +37 -8
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupDelete.js.map +1 -1
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupUpdate.js +37 -8
- package/dist/nodes/TickTick/resources/projectGroups/operations/ProjectGroupUpdate.js.map +1 -1
- package/dist/nodes/TickTick/resources/projects/ProjectsDescription.js +1 -20
- package/dist/nodes/TickTick/resources/projects/ProjectsDescription.js.map +1 -1
- package/dist/nodes/TickTick/resources/projects/methods.d.ts +8 -0
- package/dist/nodes/TickTick/resources/projects/methods.js +45 -0
- package/dist/nodes/TickTick/resources/projects/methods.js.map +1 -1
- package/dist/nodes/TickTick/resources/projects/operations/ProjectCreate.js +45 -9
- package/dist/nodes/TickTick/resources/projects/operations/ProjectCreate.js.map +1 -1
- package/dist/nodes/TickTick/resources/projects/operations/ProjectDelete.js +2 -3
- package/dist/nodes/TickTick/resources/projects/operations/ProjectDelete.js.map +1 -1
- package/dist/nodes/TickTick/resources/projects/operations/ProjectUpdate.js +58 -19
- package/dist/nodes/TickTick/resources/projects/operations/ProjectUpdate.js.map +1 -1
- package/dist/nodes/TickTick/resources/sync/SyncDescription.js +13 -0
- package/dist/nodes/TickTick/resources/sync/SyncDescription.js.map +1 -1
- package/dist/nodes/TickTick/resources/tags/TagsDescription.js +12 -0
- package/dist/nodes/TickTick/resources/tags/TagsDescription.js.map +1 -1
- package/dist/nodes/TickTick/resources/tags/methods.d.ts +1 -0
- package/dist/nodes/TickTick/resources/tags/methods.js +4 -0
- package/dist/nodes/TickTick/resources/tags/methods.js.map +1 -1
- package/dist/nodes/TickTick/resources/tags/operations/TagUpdate.js +85 -24
- package/dist/nodes/TickTick/resources/tags/operations/TagUpdate.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/TasksDescription.js +15 -21
- package/dist/nodes/TickTick/resources/tasks/TasksDescription.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/index.js +1 -0
- package/dist/nodes/TickTick/resources/tasks/index.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/methods.d.ts +1 -0
- package/dist/nodes/TickTick/resources/tasks/methods.js +4 -0
- package/dist/nodes/TickTick/resources/tasks/methods.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskComplete.js +1 -2
- package/dist/nodes/TickTick/resources/tasks/operations/TaskComplete.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskCreate.js +45 -61
- package/dist/nodes/TickTick/resources/tasks/operations/TaskCreate.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskDelete.js +1 -2
- package/dist/nodes/TickTick/resources/tasks/operations/TaskDelete.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskGet.js +1 -2
- package/dist/nodes/TickTick/resources/tasks/operations/TaskGet.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskListAll.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskSetParent.js +32 -79
- package/dist/nodes/TickTick/resources/tasks/operations/TaskSetParent.js.map +1 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskUpdate.d.ts +45 -1
- package/dist/nodes/TickTick/resources/tasks/operations/TaskUpdate.js +139 -38
- package/dist/nodes/TickTick/resources/tasks/operations/TaskUpdate.js.map +1 -1
- package/dist/nodes/TickTick/resources/user/UserDescription.js +13 -0
- package/dist/nodes/TickTick/resources/user/UserDescription.js.map +1 -1
- package/dist/nodes/TickTick/types/api.d.ts +117 -10
- package/dist/nodes/TickTick/types/registry.d.ts +1 -0
- package/dist/nodes/TickTick/types/registry.js +8 -0
- package/dist/nodes/TickTick/types/registry.js.map +1 -1
- package/dist/package.json +6 -6
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -2,261 +2,43 @@
|
|
|
2
2
|
|
|
3
3
|
n8n community node for integrating TickTick with your workflows. Manage tasks, projects, tags, habits, and productivity seamlessly.
|
|
4
4
|
|
|
5
|
-
## Table of Contents
|
|
6
|
-
|
|
7
|
-
- [Installation](#installation)
|
|
8
|
-
- [Credentials](#credentials)
|
|
9
|
-
- [Task Operations](#task-operations)
|
|
10
|
-
- [Project Operations](#project-operations)
|
|
11
|
-
- [Tag Operations](#tag-operations)
|
|
12
|
-
- [Habit Operations](#habit-operations)
|
|
13
|
-
- [Focus Operations](#focus-operations)
|
|
14
|
-
- [Project Group Operations](#project-group-operations)
|
|
15
|
-
- [User Operations](#user-operations)
|
|
16
|
-
- [Sync Operations](#sync-operations)
|
|
17
|
-
- [Compatibility](#compatibility)
|
|
18
|
-
- [Known Issues](#known-issues)
|
|
19
|
-
- [Development Notes](#development-notes)
|
|
20
|
-
- [Resources](#resources)
|
|
21
|
-
- [Version History](#version-history)
|
|
22
|
-
|
|
23
5
|
## Installation
|
|
24
6
|
|
|
25
|
-
Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
|
|
26
|
-
|
|
27
|
-
1. Go to **Settings** > **Community Nodes.**
|
|
28
|
-
2. Select **Install.**
|
|
29
|
-
3. Type `n8n-nodes-ticktick` (and version number if required) into **npm Package Name** field
|
|
30
|
-
5. Agree to the risks of using community nodes: select I understand the risks of installing unverified code from a public source.
|
|
31
|
-
6. Select Install. n8n installs the node, and returns to the Community Nodes list in Settings.
|
|
32
|
-
|
|
33
|
-
## Credentials
|
|
34
|
-
|
|
35
|
-
### TickTick Session API (V2) - Email/Password
|
|
36
|
-
|
|
37
|
-
For access to V2 API features (sync, tags, habits, focus, etc.):
|
|
38
|
-
|
|
39
|
-
1. In n8n: Create new credential → **TickTick Session API**
|
|
40
|
-
2. Enter your TickTick **email** and **password**
|
|
41
|
-
3. Save
|
|
42
|
-
|
|
43
|
-
**Note**: This authentication method provides access to TickTick's undocumented V2 API, which offers more features than the official V1 API.
|
|
44
|
-
|
|
45
|
-
### TickTick API Token (V1) - Recommended for V1 API
|
|
46
|
-
|
|
47
|
-
1. In TickTick: Account Settings → API Token → "Manage"
|
|
48
|
-
2. Copy token
|
|
49
|
-
3. In n8n: Create new credential → **TickTick API Token** → Paste token → Save
|
|
50
|
-
|
|
51
|
-
### TickTick OAuth2 (V1)
|
|
52
|
-
|
|
53
|
-
1. Visit [TickTick Developer](https://developer.ticktick.com/) → Manage Apps → New App
|
|
54
|
-
2. Copy **Client ID** & **Client Secret**
|
|
55
|
-
3. In n8n: Create new credential → **TickTick OAuth2 API** → Paste credentials → Connect
|
|
56
|
-
|
|
57
|
-
---
|
|
58
|
-
|
|
59
|
-
## TickTick V1 API (Official)
|
|
60
|
-
|
|
61
|
-
The following operations use the official TickTick Open API (V1) and work with **API Token** or **OAuth2** credentials.
|
|
62
|
-
|
|
63
|
-
### Task Operations (V1)
|
|
64
|
-
|
|
65
|
-
| Operation | Required Parameters | Optional/Additional Fields |
|
|
66
|
-
|-----------|-------------------|--------------------------|
|
|
67
|
-
| **Create** | Title | Project, All Day, Content, Description, Due Date, Priority, Reminders, Start Date, Status, Items (Subtasks) |
|
|
68
|
-
| **Get** | Task ID, Project ID | — |
|
|
69
|
-
| **Update** | Task ID | Project ID, Title, Content, Description, Due Date, Priority, Reminders, Start Date, Status, Items, All Day |
|
|
70
|
-
| **Complete** | Task ID, Project ID | — |
|
|
71
|
-
| **Delete** | Task ID, Project ID | — |
|
|
72
|
-
|
|
73
|
-
### Project Operations (V1)
|
|
74
|
-
|
|
75
|
-
| Operation | Mode/Type | Required Parameters | Optional Fields |
|
|
76
|
-
|-----------|-----------|-------------------|-----------------|
|
|
77
|
-
| **Create** | — | Project Name | Color, Kind, Sort Order, View Mode |
|
|
78
|
-
| **Get** | All Projects | — | — |
|
|
79
|
-
| **Get** | Specific Project | Project ID | — |
|
|
80
|
-
| **Get** | With Tasks & Columns | Project ID | — |
|
|
81
|
-
| **Update** | — | Project ID | Name, Color, Kind, Sort Order, View Mode |
|
|
82
|
-
| **Delete** | — | Project ID | — |
|
|
83
|
-
|
|
84
|
-
---
|
|
85
|
-
|
|
86
|
-
## TickTick V2 API (Undocumented Session API)
|
|
87
|
-
|
|
88
|
-
The following operations require **TickTick Session API** (Email/Password) credentials and provide access to advanced features not available in the V1 API.
|
|
89
|
-
|
|
90
|
-
> **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.
|
|
91
|
-
|
|
92
|
-
### Task Operations (V2 Only)
|
|
93
|
-
|
|
94
|
-
| Operation | Description | Required Parameters | Optional/Additional Fields |
|
|
95
|
-
|-----------|-------------|-------------------|--------------------------|
|
|
96
|
-
| **Assign** | Assign task to a user (shared projects only) | Project, Task, Assignee | — |
|
|
97
|
-
| **List All** | List all tasks across projects | — | Limit, Project Filter, Status Filter (All/Active/Completed), Include Deleted |
|
|
98
|
-
| **List Completed** | Get completed tasks in date range | — | Limit, Date Range (From/To) |
|
|
99
|
-
| **List Deleted** | Get deleted/trashed tasks | — | Limit |
|
|
100
|
-
| **Move** | Move task to different project | Task, To Project | — |
|
|
101
|
-
|
|
102
|
-
> **Note**: The **Assign** operation only works with shared/collaborative projects. The project dropdown automatically filters to show only projects that have been shared with other users. Assignees can be selected from a dropdown that loads users from the selected project.
|
|
103
|
-
|
|
104
|
-
### Project Operations (V2 Only)
|
|
105
|
-
|
|
106
|
-
| Operation | Description | Required Parameters | Optional/Additional Fields |
|
|
107
|
-
|-----------|-------------|-------------------|--------------------------|
|
|
108
|
-
| **Get Users** | Get users in a shared project | Project | — |
|
|
109
|
-
| **List Closed** | Get all closed projects | — | — |
|
|
110
|
-
|
|
111
|
-
> **Note**: The **Get Users** operation only works with shared/collaborative projects. The project dropdown automatically filters to show only projects that have been shared with other users (userCount > 1). Personal projects and the Inbox cannot be used with this operation.
|
|
112
|
-
|
|
113
|
-
### Tag Operations (V2)
|
|
114
|
-
|
|
115
|
-
| Operation | Description | Required Parameters | Optional Fields |
|
|
116
|
-
|-----------|-------------|-------------------|-----------------|
|
|
117
|
-
| **Create** | Create a new tag | Tag Name | Label, Sort Order, Color, Parent Tag |
|
|
118
|
-
| **Update** | Update existing tag | Tag | Name, Label, Sort Order, Color, Parent Tag |
|
|
119
|
-
| **Delete** | Delete a tag | Tag | — |
|
|
120
|
-
| **List** | List all tags | — | — |
|
|
121
|
-
| **Rename** | Rename a tag | Tag, New Name | — |
|
|
122
|
-
| **Merge** | Merge tag into another | Source Tag, Target Tag | — |
|
|
123
|
-
|
|
124
|
-
### Habit Operations (V2)
|
|
125
|
-
|
|
126
|
-
| Operation | Description | Required Parameters | Optional Fields |
|
|
127
|
-
|-----------|-------------|-------------------|-----------------|
|
|
128
|
-
| **Create** | Create a new habit | Habit Name | Type (Boolean/Real), Color, Icon, Repeat Rule, Target Days, Archived Days, Goal |
|
|
129
|
-
| **Get** | Get a specific habit | Habit | — |
|
|
130
|
-
| **Update** | Update existing habit | Habit | Name, Type, Color, Icon, Repeat Rule, Target Days, Archived Days, Goal |
|
|
131
|
-
| **Archive** | Archive a habit | Habit | — |
|
|
132
|
-
| **Unarchive** | Unarchive a habit | Habit | — |
|
|
133
|
-
| **Delete** | Delete a habit | Habit | — |
|
|
134
|
-
| **List** | List all habits | — | — |
|
|
135
|
-
| **Checkin** | Record habit check-in | Habit, Date | Value (for Real type habits) |
|
|
136
|
-
|
|
137
|
-
### Focus Operations (V2)
|
|
138
|
-
|
|
139
|
-
| Operation | Description | Required Parameters | Optional Fields |
|
|
140
|
-
|-----------|-------------|-------------------|-----------------|
|
|
141
|
-
| **Get Heatmap** | Get focus heatmap data | Start Date, End Date | — |
|
|
142
|
-
| **Get Distribution** | Get focus time distribution | Start Date, End Date | — |
|
|
143
|
-
|
|
144
|
-
### Project Group Operations (V2)
|
|
145
|
-
|
|
146
|
-
| Operation | Description | Required Parameters | Optional Fields |
|
|
147
|
-
|-----------|-------------|-------------------|-----------------|
|
|
148
|
-
| **Create** | Create a project group | Group Name | Sort Order, Sort Type |
|
|
149
|
-
| **Update** | Update existing group | Project Group | Name, Sort Order, Sort Type |
|
|
150
|
-
| **Delete** | Delete a project group | Project Group | — |
|
|
151
|
-
| **List** | List all project groups | — | — |
|
|
152
|
-
|
|
153
|
-
### User Operations (V2)
|
|
154
|
-
|
|
155
|
-
| Operation | Description | Returns |
|
|
156
|
-
|-----------|-------------|---------|
|
|
157
|
-
| **Get Profile** | Get user profile information | User details, settings, subscription info |
|
|
158
|
-
| **Get Status** | Get user status | Current status, activity data |
|
|
159
|
-
| **Get Preferences** | Get user preferences | UI settings, notification preferences |
|
|
160
|
-
|
|
161
|
-
### Sync Operations (V2)
|
|
162
|
-
|
|
163
|
-
| Operation | Description | Returns |
|
|
164
|
-
|-----------|-------------|---------|
|
|
165
|
-
| **Sync All** | Get all data from sync endpoint | Tasks, Projects, Tags, Habits, Project Groups, Column Data, User Info |
|
|
166
|
-
|
|
167
|
-
---
|
|
168
|
-
|
|
169
|
-
## Compatibility
|
|
170
|
-
|
|
171
|
-
Tested successfully on 2026-01-09 with:
|
|
172
|
-
|
|
173
|
-
- n8n Version: 2.2.3
|
|
174
|
-
- Node Version: 22.11.0
|
|
175
|
-
- Bun Version: 1.3.5
|
|
176
|
-
- No extra packages required (Luxon is bundled)
|
|
177
|
-
|
|
178
|
-
## Known Issues
|
|
179
|
-
|
|
180
|
-
### V1 API (Official)
|
|
181
|
-
- **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.
|
|
182
|
-
- **Empty Responses**: Operations like delete or complete often return `200 OK` with no body. This node generates a success message for these cases.
|
|
183
|
-
|
|
184
|
-
### V2 API (Undocumented)
|
|
185
|
-
- **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.
|
|
186
|
-
- **Rate Limits Unknown**: Rate limiting behavior for the V2 API is undocumented and unknown. Use responsibly to avoid potential account issues.
|
|
187
|
-
- **No Official Support**: TickTick does not provide official support for the V2 Session API. Use at your own risk.
|
|
188
|
-
- **Authentication Security**: Session API requires email/password credentials. These are stored securely by n8n but consider the security implications for your use case.
|
|
189
|
-
- **Breaking Changes**: Since the API is undocumented, TickTick may change endpoints or behavior at any time without warning.
|
|
190
|
-
|
|
191
|
-
### General
|
|
192
|
-
- **Unofficial Node**: Community-maintained node. Not affiliated with or endorsed by TickTick or n8n.
|
|
193
|
-
|
|
194
|
-
## Development Notes
|
|
195
|
-
|
|
196
|
-
### Kill n8n Process
|
|
197
|
-
|
|
198
|
-
Add this alias to your `~/.zshrc` for quick n8n process termination during development:
|
|
199
|
-
|
|
200
|
-
```bash
|
|
201
|
-
alias kill-n8n="kill -9 \$(lsof -ti tcp:5678 -sTCP:LISTEN)"
|
|
202
|
-
```
|
|
203
|
-
|
|
204
|
-
After adding, reload your shell: `source ~/.zshrc`
|
|
205
|
-
|
|
206
|
-
### How to publish new release
|
|
207
|
-
|
|
208
7
|
```
|
|
209
|
-
|
|
210
|
-
npm version patch|minor|major
|
|
8
|
+
n8n-nodes-ticktick
|
|
211
9
|
```
|
|
212
10
|
|
|
213
|
-
|
|
214
|
-
# push the tag to GitHub
|
|
215
|
-
git push origin v1.2.3
|
|
216
|
-
```
|
|
11
|
+
Follow the [n8n community nodes installation guide](https://docs.n8n.io/integrations/community-nodes/installation/).
|
|
217
12
|
|
|
218
|
-
|
|
13
|
+
## Features
|
|
219
14
|
|
|
220
|
-
|
|
15
|
+
- **Tasks** - Create, update, complete, delete, move, assign, set parent
|
|
16
|
+
- **Projects** - Manage projects and shared collaborators
|
|
17
|
+
- **Project Groups** - Organize projects into groups (V2)
|
|
18
|
+
- **Tags** - Create, rename, merge tags (V2)
|
|
19
|
+
- **Habits** - Track habits with check-ins (V2)
|
|
20
|
+
- **Focus** - Get focus time heatmaps and distribution (V2)
|
|
21
|
+
- **User** - Get profile, status, and preferences (V2)
|
|
22
|
+
- **Sync** - Full data sync (V2)
|
|
221
23
|
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
}
|
|
234
|
-
```
|
|
235
|
-
Available Tools:
|
|
236
|
-
- execute_workflow
|
|
237
|
-
- get_workflow_details
|
|
238
|
-
- search_workflows
|
|
24
|
+
## Documentation
|
|
25
|
+
|
|
26
|
+
| Document | Description |
|
|
27
|
+
|----------|-------------|
|
|
28
|
+
| [Getting Started](https://github.com/hansdoebel/n8n-nodes-ticktick/blob/main/docs/getting-started.md) | Installation and setup |
|
|
29
|
+
| [Credentials](https://github.com/hansdoebel/n8n-nodes-ticktick/blob/main/docs/credentials.md) | Authentication options |
|
|
30
|
+
| [API Reference](https://github.com/hansdoebel/n8n-nodes-ticktick/blob/main/docs/api-reference.md) | All operations |
|
|
31
|
+
| [Testing](https://github.com/hansdoebel/n8n-nodes-ticktick/blob/main/docs/testing.md) | Running tests |
|
|
32
|
+
| [Development](https://github.com/hansdoebel/n8n-nodes-ticktick/blob/main/docs/development.md) | Contributing |
|
|
33
|
+
| [Troubleshooting](https://github.com/hansdoebel/n8n-nodes-ticktick/blob/main/docs/troubleshooting.md) | Known issues and FAQ |
|
|
34
|
+
| [Changelog](https://github.com/hansdoebel/n8n-nodes-ticktick/blob/main/CHANGELOG.md) | Version history |
|
|
239
35
|
|
|
240
36
|
## Resources
|
|
241
37
|
|
|
242
|
-
- [n8n Website](https://n8n.io/)
|
|
243
|
-
- [n8n Community Nodes Documentation](https://docs.n8n.io/integrations/community-nodes/)
|
|
244
|
-
- [n8n Documentation for LLMs](https://docs.n8n.io/llms.txt)
|
|
245
|
-
- [TickTick Website](https://www.ticktick.com/)
|
|
246
|
-
- [TickTick Open API](https://developer.ticktick.com/docs#/openapi)
|
|
247
38
|
- [GitHub Repository](https://github.com/hansdoebel/n8n-nodes-ticktick)
|
|
248
|
-
- [
|
|
249
|
-
- [
|
|
250
|
-
- [@n8n/node-cli README](https://raw.githubusercontent.com/n8n-io/n8n/refs/heads/master/packages/%40n8n/node-cli/README.md)
|
|
251
|
-
|
|
39
|
+
- [TickTick Open API](https://developer.ticktick.com/docs#/openapi)
|
|
40
|
+
- [n8n Community Nodes](https://docs.n8n.io/integrations/community-nodes/)
|
|
252
41
|
|
|
253
|
-
##
|
|
42
|
+
## License
|
|
254
43
|
|
|
255
|
-
|
|
256
|
-
- `2.0.3` – **Major Refactor & New Resources**: Complete codebase restructure with resource registry pattern, barrel exports, TypeScript types, centralized constants. New resources: Habits (with check-ins), Focus (heatmap & distribution), Project Groups, User (profile/status/preferences). Enhanced tag operations (rename, merge). Improved API implementations matching Python SDK reference. Comprehensive test suite with 34+ tests.
|
|
257
|
-
- `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.
|
|
258
|
-
- `1.3.0` – Major refactor: Fixed API request context, added Inbox support, expanded Task/Project fields, added Subtask support, improved Project Get modes.
|
|
259
|
-
- `1.2.2` – Documentation and metadata update only
|
|
260
|
-
- `1.2.1` – Inbox support, API Token credential, improved task/project operations, success messages
|
|
261
|
-
- `1.1.1` – Added Luxon for date formatting (thank you [mrozekadam](https://github.com/mrozekadam))
|
|
262
|
-
- `1.0.0` – Initial release
|
|
44
|
+
[MIT](LICENSE.md)
|
|
@@ -59,27 +59,6 @@ class TickTick {
|
|
|
59
59
|
name: "resource",
|
|
60
60
|
type: "options",
|
|
61
61
|
noDataExpression: true,
|
|
62
|
-
displayOptions: {
|
|
63
|
-
show: {
|
|
64
|
-
authentication: ["tickTickTokenApi", "tickTickOAuth2Api"],
|
|
65
|
-
},
|
|
66
|
-
},
|
|
67
|
-
options: [
|
|
68
|
-
{ name: "Project", value: "project" },
|
|
69
|
-
{ name: "Task", value: "task" },
|
|
70
|
-
],
|
|
71
|
-
default: "task",
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
displayName: "Resource",
|
|
75
|
-
name: "resource",
|
|
76
|
-
type: "options",
|
|
77
|
-
noDataExpression: true,
|
|
78
|
-
displayOptions: {
|
|
79
|
-
show: {
|
|
80
|
-
authentication: ["tickTickSessionApi"],
|
|
81
|
-
},
|
|
82
|
-
},
|
|
83
62
|
options: [
|
|
84
63
|
{ name: "Focus", value: "focus" },
|
|
85
64
|
{ name: "Habit", value: "habit" },
|
|
@@ -92,8 +71,7 @@ class TickTick {
|
|
|
92
71
|
],
|
|
93
72
|
default: "task",
|
|
94
73
|
},
|
|
95
|
-
...resources_1.registry.
|
|
96
|
-
...resources_1.registry.getAllFields(),
|
|
74
|
+
...resources_1.registry.getAllProperties(),
|
|
97
75
|
],
|
|
98
76
|
};
|
|
99
77
|
this.methods = {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TickTick.node.js","sourceRoot":"","sources":["../../../nodes/TickTick/TickTick.node.ts"],"names":[],"mappings":";;;AAMA,+CAAgE;AAEhE,2CAAsD;AAEtD,MAAa,QAAQ;IAArB;QACC,gBAAW,GAAyB;YACnC,WAAW,EAAE,UAAU;YACvB,IAAI,EAAE,UAAU;YAChB,IAAI,EAAE,+BAA+B;YACrC,KAAK,EAAE,CAAC,WAAW,CAAC;YACpB,QAAQ,EAAE,gEAAgE;YAC1E,OAAO,EAAE,CAAC;YACV,WAAW,EAAE,2CAA2C;YACxD,QAAQ,EAAE;gBACT,IAAI,EAAE,UAAU;aAChB;YACD,YAAY,EAAE,IAAI;YAClB,MAAM,EAAE,CAAC,MAAM,CAAC;YAChB,OAAO,EAAE,CAAC,MAAM,CAAC;YACjB,WAAW,EAAE;gBACZ;oBACC,IAAI,EAAE,kBAAkB;oBACxB,QAAQ,EAAE,IAAI;oBACd,cAAc,EAAE;wBACf,IAAI,EAAE,EAAE,cAAc,EAAE,CAAC,kBAAkB,CAAC,EAAE;qBAC9C;iBACD;gBACD;oBACC,IAAI,EAAE,mBAAmB;oBACzB,QAAQ,EAAE,IAAI;oBACd,cAAc,EAAE;wBACf,IAAI,EAAE,EAAE,cAAc,EAAE,CAAC,mBAAmB,CAAC,EAAE;qBAC/C;iBACD;gBACD;oBACC,IAAI,EAAE,oBAAoB;oBAC1B,QAAQ,EAAE,IAAI;oBACd,cAAc,EAAE;wBACf,IAAI,EAAE,EAAE,cAAc,EAAE,CAAC,oBAAoB,CAAC,EAAE;qBAChD;iBACD;aACD;YACD,UAAU,EAAE;gBACX;oBACC,WAAW,EAAE,gBAAgB;oBAC7B,IAAI,EAAE,gBAAgB;oBACtB,IAAI,EAAE,SAAS;oBACf,OAAO,EAAE;wBACR,EAAE,IAAI,EAAE,uBAAuB,EAAE,KAAK,EAAE,kBAAkB,EAAE;wBAC5D,EAAE,IAAI,EAAE,iBAAiB,EAAE,KAAK,EAAE,mBAAmB,EAAE;wBACvD,EAAE,IAAI,EAAE,yBAAyB,EAAE,KAAK,EAAE,oBAAoB,EAAE;qBAChE;oBACD,OAAO,EAAE,kBAAkB;iBAC3B;gBACD;oBACC,WAAW,EAAE,UAAU;oBACvB,IAAI,EAAE,UAAU;oBAChB,IAAI,EAAE,SAAS;oBACf,gBAAgB,EAAE,IAAI;oBACtB,
|
|
1
|
+
{"version":3,"file":"TickTick.node.js","sourceRoot":"","sources":["../../../nodes/TickTick/TickTick.node.ts"],"names":[],"mappings":"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"}
|
|
@@ -18,7 +18,13 @@ export declare const ENDPOINTS: {
|
|
|
18
18
|
readonly PROJECT_ALL_TRASH_PAGINATION: "/project/all/trash/pagination";
|
|
19
19
|
readonly PROJECT_ALL_COMPLETED: "/project/all/completed";
|
|
20
20
|
readonly OPEN_V1_PROJECT: "/open/v1/project";
|
|
21
|
+
readonly OPEN_V1_PROJECT_BY_ID: (projectId: string) => string;
|
|
22
|
+
readonly OPEN_V1_PROJECT_DATA: (projectId: string) => string;
|
|
21
23
|
readonly OPEN_V1_TASK: "/open/v1/task";
|
|
24
|
+
readonly OPEN_V1_TASK_UPDATE: (taskId: string) => string;
|
|
25
|
+
readonly OPEN_V1_TASK_ALL: (taskId: string) => string;
|
|
26
|
+
readonly OPEN_V1_TASK_BY_PROJECT: (projectId: string, taskId: string) => string;
|
|
27
|
+
readonly OPEN_V1_TASK_COMPLETE: (projectId: string, taskId: string) => string;
|
|
22
28
|
readonly FOCUS_HEATMAP: (start: string, end: string) => string;
|
|
23
29
|
readonly FOCUS_DISTRIBUTION: (start: string, end: string) => string;
|
|
24
30
|
readonly SYNC: "/batch/check/0";
|
|
@@ -28,4 +34,5 @@ export declare const ENDPOINTS: {
|
|
|
28
34
|
readonly PROJECT_USERS: (projectId: string) => string;
|
|
29
35
|
readonly TASK_ASSIGN: "/task/assign";
|
|
30
36
|
readonly TASK_PROJECT: "/batch/taskProject";
|
|
37
|
+
readonly TASK_PARENT: "/batch/taskParent";
|
|
31
38
|
};
|
|
@@ -21,7 +21,13 @@ exports.ENDPOINTS = {
|
|
|
21
21
|
PROJECT_ALL_TRASH_PAGINATION: "/project/all/trash/pagination",
|
|
22
22
|
PROJECT_ALL_COMPLETED: "/project/all/completed",
|
|
23
23
|
OPEN_V1_PROJECT: "/open/v1/project",
|
|
24
|
+
OPEN_V1_PROJECT_BY_ID: (projectId) => `/open/v1/project/${projectId}`,
|
|
25
|
+
OPEN_V1_PROJECT_DATA: (projectId) => `/open/v1/project/${projectId}/data`,
|
|
24
26
|
OPEN_V1_TASK: "/open/v1/task",
|
|
27
|
+
OPEN_V1_TASK_UPDATE: (taskId) => `/open/v1/task/${taskId}`,
|
|
28
|
+
OPEN_V1_TASK_ALL: (taskId) => `/open/v1/project/all/task/${taskId}`,
|
|
29
|
+
OPEN_V1_TASK_BY_PROJECT: (projectId, taskId) => `/open/v1/project/${projectId}/task/${taskId}`,
|
|
30
|
+
OPEN_V1_TASK_COMPLETE: (projectId, taskId) => `/open/v1/project/${projectId}/task/${taskId}/complete`,
|
|
25
31
|
FOCUS_HEATMAP: (start, end) => `/pomodoros/statistics/heatmap/${start}/${end}`,
|
|
26
32
|
FOCUS_DISTRIBUTION: (start, end) => `/pomodoros/statistics/dist/${start}/${end}`,
|
|
27
33
|
SYNC: "/batch/check/0",
|
|
@@ -31,5 +37,6 @@ exports.ENDPOINTS = {
|
|
|
31
37
|
PROJECT_USERS: (projectId) => `/project/${projectId}/users`,
|
|
32
38
|
TASK_ASSIGN: "/task/assign",
|
|
33
39
|
TASK_PROJECT: "/batch/taskProject",
|
|
40
|
+
TASK_PARENT: "/batch/taskParent",
|
|
34
41
|
};
|
|
35
42
|
//# sourceMappingURL=endpoints.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpoints.js","sourceRoot":"","sources":["../../../../nodes/TickTick/constants/endpoints.ts"],"names":[],"mappings":";;;AAAa,QAAA,SAAS,GAAG;IACxB,KAAK,EAAE,QAAQ;IACf,WAAW,EAAE,aAAa;IAE1B,MAAM,EAAE,SAAS;IACjB,YAAY,EAAE,eAAe;IAC7B,oBAAoB,EAAE,sBAAsB;IAC5C,cAAc,EAAE,gBAAgB;IAEhC,QAAQ,EAAE,WAAW;IACrB,cAAc,EAAE,gBAAgB;IAEhC,cAAc,EAAE,gBAAgB;IAChC,oBAAoB,EAAE,qBAAqB;IAE3C,IAAI,EAAE,OAAO;IACb,UAAU,EAAE,YAAY;IACxB,GAAG,EAAE,MAAM;IACX,UAAU,EAAE,aAAa;IACzB,SAAS,EAAE,YAAY;IAEvB,kBAAkB,EAAE,qBAAqB;IACzC,4BAA4B,EAAE,+BAA+B;IAC7D,qBAAqB,EAAE,wBAAwB;IAE/C,eAAe,EAAE,kBAAkB;IACnC,YAAY,EAAE,eAAe;
|
|
1
|
+
{"version":3,"file":"endpoints.js","sourceRoot":"","sources":["../../../../nodes/TickTick/constants/endpoints.ts"],"names":[],"mappings":";;;AAAa,QAAA,SAAS,GAAG;IACxB,KAAK,EAAE,QAAQ;IACf,WAAW,EAAE,aAAa;IAE1B,MAAM,EAAE,SAAS;IACjB,YAAY,EAAE,eAAe;IAC7B,oBAAoB,EAAE,sBAAsB;IAC5C,cAAc,EAAE,gBAAgB;IAEhC,QAAQ,EAAE,WAAW;IACrB,cAAc,EAAE,gBAAgB;IAEhC,cAAc,EAAE,gBAAgB;IAChC,oBAAoB,EAAE,qBAAqB;IAE3C,IAAI,EAAE,OAAO;IACb,UAAU,EAAE,YAAY;IACxB,GAAG,EAAE,MAAM;IACX,UAAU,EAAE,aAAa;IACzB,SAAS,EAAE,YAAY;IAEvB,kBAAkB,EAAE,qBAAqB;IACzC,4BAA4B,EAAE,+BAA+B;IAC7D,qBAAqB,EAAE,wBAAwB;IAE/C,eAAe,EAAE,kBAAkB;IACnC,qBAAqB,EAAE,CAAC,SAAiB,EAAE,EAAE,CAAC,oBAAoB,SAAS,EAAE;IAC7E,oBAAoB,EAAE,CAAC,SAAiB,EAAE,EAAE,CAC3C,oBAAoB,SAAS,OAAO;IACrC,YAAY,EAAE,eAAe;IAC7B,mBAAmB,EAAE,CAAC,MAAc,EAAE,EAAE,CAAC,iBAAiB,MAAM,EAAE;IAClE,gBAAgB,EAAE,CAAC,MAAc,EAAE,EAAE,CAAC,6BAA6B,MAAM,EAAE;IAC3E,uBAAuB,EAAE,CAAC,SAAiB,EAAE,MAAc,EAAE,EAAE,CAC9D,oBAAoB,SAAS,SAAS,MAAM,EAAE;IAC/C,qBAAqB,EAAE,CAAC,SAAiB,EAAE,MAAc,EAAE,EAAE,CAC5D,oBAAoB,SAAS,SAAS,MAAM,WAAW;IAExD,aAAa,EAAE,CAAC,KAAa,EAAE,GAAW,EAAE,EAAE,CAC7C,iCAAiC,KAAK,IAAI,GAAG,EAAE;IAChD,kBAAkB,EAAE,CAAC,KAAa,EAAE,GAAW,EAAE,EAAE,CAClD,8BAA8B,KAAK,IAAI,GAAG,EAAE;IAE7C,IAAI,EAAE,gBAAgB;IAEtB,YAAY,EAAE,eAAe;IAC7B,WAAW,EAAE,cAAc;IAC3B,yBAAyB,EAAE,4BAA4B;IAEvD,aAAa,EAAE,CAAC,SAAiB,EAAE,EAAE,CAAC,YAAY,SAAS,QAAQ;IACnE,WAAW,EAAE,cAAc;IAC3B,YAAY,EAAE,oBAAoB;IAClC,WAAW,EAAE,mBAAmB;CACvB,CAAC"}
|
|
@@ -12,6 +12,10 @@ export declare function searchProjectsV2(this: ILoadOptionsFunctions, filter?: s
|
|
|
12
12
|
name: string;
|
|
13
13
|
value: string;
|
|
14
14
|
}[]>;
|
|
15
|
+
export declare function searchProjectsForDelete(this: ILoadOptionsFunctions, filter?: string): Promise<{
|
|
16
|
+
name: string;
|
|
17
|
+
value: string;
|
|
18
|
+
}[]>;
|
|
15
19
|
export declare function getTasks(this: ILoadOptionsFunctions, projectId?: string): Promise<{
|
|
16
20
|
name: string;
|
|
17
21
|
value: string;
|
|
@@ -28,6 +32,10 @@ export declare function getHabits(this: ILoadOptionsFunctions): Promise<{
|
|
|
28
32
|
name: string;
|
|
29
33
|
value: string;
|
|
30
34
|
}[]>;
|
|
35
|
+
export declare function searchHabits(this: ILoadOptionsFunctions, filter?: string): Promise<{
|
|
36
|
+
name: string;
|
|
37
|
+
value: string;
|
|
38
|
+
}[]>;
|
|
31
39
|
export declare function getTags(this: ILoadOptionsFunctions): Promise<{
|
|
32
40
|
name: string;
|
|
33
41
|
value: string;
|
|
@@ -36,10 +44,22 @@ export declare function searchTags(this: ILoadOptionsFunctions, filter?: string)
|
|
|
36
44
|
name: string;
|
|
37
45
|
value: string;
|
|
38
46
|
}[]>;
|
|
47
|
+
export declare function searchParentTags(this: ILoadOptionsFunctions, filter?: string): Promise<{
|
|
48
|
+
name: string;
|
|
49
|
+
value: string;
|
|
50
|
+
}[]>;
|
|
39
51
|
export declare function getProjectGroups(this: ILoadOptionsFunctions): Promise<{
|
|
40
52
|
name: string;
|
|
41
53
|
value: string;
|
|
42
54
|
}[]>;
|
|
55
|
+
export declare function searchProjectGroups(this: ILoadOptionsFunctions, filter?: string): Promise<{
|
|
56
|
+
name: string;
|
|
57
|
+
value: string;
|
|
58
|
+
}[]>;
|
|
59
|
+
export declare function searchProjectGroupsForCreate(this: ILoadOptionsFunctions, filter?: string): Promise<{
|
|
60
|
+
name: string;
|
|
61
|
+
value: string;
|
|
62
|
+
}[]>;
|
|
43
63
|
export declare function searchProjectUsers(this: ILoadOptionsFunctions, filter?: string): Promise<{
|
|
44
64
|
name: string;
|
|
45
65
|
value: string;
|
|
@@ -48,3 +68,7 @@ export declare function searchSharedProjects(this: ILoadOptionsFunctions, filter
|
|
|
48
68
|
name: string;
|
|
49
69
|
value: string;
|
|
50
70
|
}[]>;
|
|
71
|
+
export declare function searchTaskTags(this: ILoadOptionsFunctions, filter?: string): Promise<{
|
|
72
|
+
name: string;
|
|
73
|
+
value: string;
|
|
74
|
+
}[]>;
|