Skip to content

Commit 0de5367

Browse files
committed
feat(todoist): add todoist protocol launcher support
1 parent 2a31a72 commit 0de5367

34 files changed

+1450
-5
lines changed

.changeset/huge-results-talk.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'protocol-launcher': minor
3+
---
4+
5+
feat(todoist): add todoist protocol launcher support

apps/docs/.vitepress/config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ export default defineConfig({
114114
'en/apps/theia.md': 'apps/theia.md',
115115
'en/apps/things.md': 'apps/things.md',
116116
'en/apps/thunder.md': 'apps/thunder.md',
117+
'en/apps/todoist.md': 'apps/todoist.md',
117118
'en/apps/trae.md': 'apps/trae.md',
118119
'en/apps/trae-cn.md': 'apps/trae-cn.md',
119120
'en/apps/trello.md': 'apps/trello.md',
@@ -269,6 +270,7 @@ export default defineConfig({
269270
{ text: 'Theia', link: '/apps/theia' },
270271
{ text: 'Things', link: '/apps/things' },
271272
{ text: 'Thunder', link: '/apps/thunder' },
273+
{ text: 'Todoist', link: '/apps/todoist' },
272274
{ text: 'Trae', link: '/apps/trae' },
273275
{ text: 'Trae China', link: '/apps/trae-cn' },
274276
{ text: 'Trello', link: '/apps/trello' },
@@ -430,6 +432,7 @@ export default defineConfig({
430432
{ text: 'Theia', link: '/apps/theia' },
431433
{ text: 'Things', link: '/apps/things' },
432434
{ text: 'Thunder', link: '/apps/thunder' },
435+
{ text: 'Todoist', link: '/apps/todoist' },
433436
{ text: 'Trae', link: '/apps/trae' },
434437
{ text: 'Trae China', link: '/apps/trae-cn' },
435438
{ text: 'Trello', link: '/apps/trello' },
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
export const addTaskParams = {
2+
content: 'Buy Milk',
3+
date: 'Tomorrow @ 14:00',
4+
priority: 4,
5+
}
6+
7+
export const openQuickAddParams = {
8+
content: 'My Task',
9+
description: 'This is a description',
10+
}
11+
12+
export const searchParams = {
13+
query: 'Test & Today',
14+
}
15+
16+
export const openProjectParams = {
17+
id: '128501470',
18+
}
19+
20+
export const openProjectsParams = {
21+
workspaceId: '1234',
22+
}
23+
24+
export const openLabelParams = {
25+
name: 'Urgent',
26+
}
27+
28+
export const openLabelWithIdParams = {
29+
id: '12345',
30+
}
31+
32+
export const openFilterParams = {
33+
id: '9',
34+
}
35+
36+
export const openTaskParams = {
37+
id: '12345',
38+
}
39+
40+
export const openTemplatesWithIdParams = {
41+
id: '123',
42+
}

0 commit comments

Comments
 (0)