@doist/todoist-api-typescript 7.2.0 → 7.3.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/dist/cjs/test-utils/msw-setup.js +4 -3
- package/dist/cjs/types/entities.js +43 -26
- package/dist/cjs/types/sync/resources/calendars.js +7 -3
- package/dist/cjs/types/sync/resources/collaborators.js +4 -2
- package/dist/cjs/types/sync/resources/reminders.js +8 -6
- package/dist/cjs/types/sync/resources/suggestions.js +11 -7
- package/dist/cjs/types/sync/resources/user-settings.js +5 -5
- package/dist/cjs/types/sync/resources/user.js +11 -15
- package/dist/cjs/types/sync/resources/view-options.js +33 -25
- package/dist/esm/test-utils/msw-setup.js +1 -0
- package/dist/esm/types/entities.js +32 -15
- package/dist/esm/types/sync/resources/calendars.js +6 -2
- package/dist/esm/types/sync/resources/collaborators.js +3 -1
- package/dist/esm/types/sync/resources/reminders.js +4 -2
- package/dist/esm/types/sync/resources/suggestions.js +8 -4
- package/dist/esm/types/sync/resources/user-settings.js +2 -2
- package/dist/esm/types/sync/resources/user.js +6 -10
- package/dist/esm/types/sync/resources/view-options.js +22 -14
- package/dist/types/types/entities.d.ts +48 -1
- package/dist/types/types/sync/commands/project-view-options.d.ts +2 -2
- package/dist/types/types/sync/commands/view-options.d.ts +3 -7
- package/dist/types/types/sync/resources/calendars.d.ts +8 -0
- package/dist/types/types/sync/resources/collaborators.d.ts +4 -0
- package/dist/types/types/sync/resources/reminders.d.ts +11 -0
- package/dist/types/types/sync/resources/suggestions.d.ts +42 -0
- package/dist/types/types/sync/resources/user-settings.d.ts +8 -0
- package/dist/types/types/sync/resources/user.d.ts +30 -0
- package/dist/types/types/sync/resources/view-options.d.ts +75 -0
- package/package.json +5 -5
|
@@ -23,9 +23,11 @@ export const DueDateSchema = z
|
|
|
23
23
|
timezone: z.string().nullable().optional(),
|
|
24
24
|
lang: z.string().nullable().optional(),
|
|
25
25
|
});
|
|
26
|
+
/** Available duration units for task deadlines. */
|
|
27
|
+
export const DURATION_UNITS = ['minute', 'day'];
|
|
26
28
|
export const DurationSchema = z.object({
|
|
27
29
|
amount: z.number().positive('Value should be greater than zero'),
|
|
28
|
-
unit: z.enum(
|
|
30
|
+
unit: z.enum(DURATION_UNITS),
|
|
29
31
|
});
|
|
30
32
|
export const DeadlineSchema = z.object({
|
|
31
33
|
date: z.string(),
|
|
@@ -94,7 +96,9 @@ export const PersonalProjectSchema = BaseProjectSchema.extend({
|
|
|
94
96
|
}).transform((data) => {
|
|
95
97
|
return Object.assign(Object.assign({}, data), { url: getProjectUrl(data.id, data.name) });
|
|
96
98
|
});
|
|
97
|
-
|
|
99
|
+
/** Available project visibility levels. */
|
|
100
|
+
export const PROJECT_VISIBILITIES = ['restricted', 'team', 'public'];
|
|
101
|
+
export const ProjectVisibilitySchema = z.enum(PROJECT_VISIBILITIES);
|
|
98
102
|
/**
|
|
99
103
|
* Schema for workspace projects in Todoist.
|
|
100
104
|
*/
|
|
@@ -134,6 +138,8 @@ export const LabelSchema = z.object({
|
|
|
134
138
|
color: z.string(),
|
|
135
139
|
isFavorite: z.boolean(),
|
|
136
140
|
});
|
|
141
|
+
/** Available file attachment upload states. */
|
|
142
|
+
export const UPLOAD_STATES = ['pending', 'completed'];
|
|
137
143
|
export const AttachmentSchema = z
|
|
138
144
|
.object({
|
|
139
145
|
resourceType: z.string(),
|
|
@@ -144,7 +150,7 @@ export const AttachmentSchema = z
|
|
|
144
150
|
fileType: z.string().nullable().optional(),
|
|
145
151
|
fileUrl: z.string().nullable().optional(),
|
|
146
152
|
fileDuration: z.number().int().nullable().optional(),
|
|
147
|
-
uploadState: z.enum(
|
|
153
|
+
uploadState: z.enum(UPLOAD_STATES).nullable().optional(),
|
|
148
154
|
image: z.string().nullable().optional(),
|
|
149
155
|
imageWidth: z.number().int().nullable().optional(),
|
|
150
156
|
imageHeight: z.number().int().nullable().optional(),
|
|
@@ -189,6 +195,13 @@ export const TimezoneInfoSchema = z.object({
|
|
|
189
195
|
minutes: z.number().int(),
|
|
190
196
|
timezone: z.string(),
|
|
191
197
|
});
|
|
198
|
+
/** Available user premium statuses. */
|
|
199
|
+
export const PREMIUM_STATUSES = [
|
|
200
|
+
'not_premium',
|
|
201
|
+
'current_personal_plan',
|
|
202
|
+
'legacy_personal_plan',
|
|
203
|
+
'teams_business_member',
|
|
204
|
+
];
|
|
192
205
|
export const CurrentUserSchema = z.object({
|
|
193
206
|
id: z.string(),
|
|
194
207
|
email: z.string(),
|
|
@@ -199,12 +212,7 @@ export const CurrentUserSchema = z.object({
|
|
|
199
212
|
avatarSmall: z.string().nullish(),
|
|
200
213
|
businessAccountId: z.string().nullable(),
|
|
201
214
|
isPremium: z.boolean(),
|
|
202
|
-
premiumStatus: z.enum(
|
|
203
|
-
'not_premium',
|
|
204
|
-
'current_personal_plan',
|
|
205
|
-
'legacy_personal_plan',
|
|
206
|
-
'teams_business_member',
|
|
207
|
-
]),
|
|
215
|
+
premiumStatus: z.enum(PREMIUM_STATUSES),
|
|
208
216
|
dateFormat: z.number().int(),
|
|
209
217
|
timeFormat: z.number().int(),
|
|
210
218
|
weeklyGoal: z.number().int(),
|
|
@@ -222,20 +230,20 @@ export const CurrentUserSchema = z.object({
|
|
|
222
230
|
daysOff: z.array(z.number().int()),
|
|
223
231
|
weekendStartDay: z.number().int(),
|
|
224
232
|
});
|
|
225
|
-
const StreakSchema = z.object({
|
|
233
|
+
export const StreakSchema = z.object({
|
|
226
234
|
count: z.number(),
|
|
227
235
|
start: z.string(),
|
|
228
236
|
end: z.string(),
|
|
229
237
|
});
|
|
230
|
-
const CompletedItemSchema = z.object({
|
|
238
|
+
export const CompletedItemSchema = z.object({
|
|
231
239
|
id: z.string(),
|
|
232
240
|
completed: z.number(),
|
|
233
241
|
});
|
|
234
|
-
const ItemsWithDateSchema = z.object({
|
|
242
|
+
export const ItemsWithDateSchema = z.object({
|
|
235
243
|
items: z.array(CompletedItemSchema),
|
|
236
244
|
totalCompleted: z.number(),
|
|
237
245
|
});
|
|
238
|
-
const KarmaUpdateSchema = z.object({
|
|
246
|
+
export const KarmaUpdateSchema = z.object({
|
|
239
247
|
time: z.string(),
|
|
240
248
|
newKarma: z.number(),
|
|
241
249
|
positiveKarma: z.number(),
|
|
@@ -343,10 +351,19 @@ export const FormattedPriceListingSchema = z.object({
|
|
|
343
351
|
interval: z.string().optional(),
|
|
344
352
|
formatted: z.string().optional(),
|
|
345
353
|
});
|
|
354
|
+
/** Available workspace plan names. */
|
|
355
|
+
export const WORKSPACE_CURRENT_PLANS = ['Business', 'Starter'];
|
|
356
|
+
/** Available workspace plan statuses. */
|
|
357
|
+
export const WORKSPACE_PLAN_STATUSES = [
|
|
358
|
+
'Active',
|
|
359
|
+
'Downgraded',
|
|
360
|
+
'Cancelled',
|
|
361
|
+
'NeverSubscribed',
|
|
362
|
+
];
|
|
346
363
|
export const WorkspacePlanDetailsSchema = z.object({
|
|
347
364
|
currentMemberCount: z.number(),
|
|
348
|
-
currentPlan: z.enum(
|
|
349
|
-
currentPlanStatus: z.enum(
|
|
365
|
+
currentPlan: z.enum(WORKSPACE_CURRENT_PLANS),
|
|
366
|
+
currentPlanStatus: z.enum(WORKSPACE_PLAN_STATUSES),
|
|
350
367
|
downgradeAt: z.string().nullable(),
|
|
351
368
|
currentActiveProjects: z.number(),
|
|
352
369
|
maximumActiveProjects: z.number(),
|
|
@@ -9,16 +9,20 @@ export const CalendarSchema = z
|
|
|
9
9
|
isTaskCalendar: z.boolean().optional(),
|
|
10
10
|
})
|
|
11
11
|
.passthrough();
|
|
12
|
+
/** Available calendar account provider types. */
|
|
13
|
+
export const CALENDAR_ACCOUNT_TYPES = ['google', 'microsoft', 'apple'];
|
|
14
|
+
/** Available calendar sync states. */
|
|
15
|
+
export const CALENDAR_SYNC_STATES = ['synced', 'syncing', 'error'];
|
|
12
16
|
export const CalendarAccountSchema = z
|
|
13
17
|
.object({
|
|
14
18
|
id: z.string(),
|
|
15
19
|
name: z.string(),
|
|
16
|
-
type: z.enum(
|
|
20
|
+
type: z.enum(CALENDAR_ACCOUNT_TYPES),
|
|
17
21
|
isDeleted: z.boolean().optional(),
|
|
18
22
|
isEventsEnabled: z.boolean().optional(),
|
|
19
23
|
isTasksEnabled: z.boolean().optional(),
|
|
20
24
|
isAllDayTasksEnabled: z.boolean().optional(),
|
|
21
25
|
pendingOperationUntil: z.string().nullable().optional(),
|
|
22
|
-
calendarsSyncState: z.enum(
|
|
26
|
+
calendarsSyncState: z.enum(CALENDAR_SYNC_STATES).optional(),
|
|
23
27
|
})
|
|
24
28
|
.passthrough();
|
|
@@ -9,11 +9,13 @@ export const CollaboratorSchema = z
|
|
|
9
9
|
imageId: z.string().nullable(),
|
|
10
10
|
})
|
|
11
11
|
.passthrough();
|
|
12
|
+
/** Available collaborator statuses. */
|
|
13
|
+
export const COLLABORATOR_STATUSES = ['active', 'invited'];
|
|
12
14
|
export const CollaboratorStateSchema = z
|
|
13
15
|
.object({
|
|
14
16
|
userId: z.string(),
|
|
15
17
|
projectId: z.string(),
|
|
16
|
-
state: z.enum(
|
|
18
|
+
state: z.enum(COLLABORATOR_STATUSES),
|
|
17
19
|
isDeleted: z.boolean(),
|
|
18
20
|
workspaceRole: WorkspaceRoleSchema.optional(),
|
|
19
21
|
})
|
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { DueDateSchema } from '../../entities.js';
|
|
3
|
-
const ReminderBaseSchema = z.object({
|
|
3
|
+
export const ReminderBaseSchema = z.object({
|
|
4
4
|
id: z.string(),
|
|
5
5
|
notifyUid: z.string(),
|
|
6
6
|
itemId: z.string(),
|
|
7
7
|
projectId: z.string().optional(),
|
|
8
8
|
isDeleted: z.boolean(),
|
|
9
9
|
});
|
|
10
|
+
/** Available location reminder triggers. */
|
|
11
|
+
export const LOCATION_TRIGGERS = ['on_enter', 'on_leave'];
|
|
10
12
|
export const LocationReminderSchema = ReminderBaseSchema.extend({
|
|
11
13
|
type: z.literal('location'),
|
|
12
14
|
name: z.string(),
|
|
13
15
|
locLat: z.string(),
|
|
14
16
|
locLong: z.string(),
|
|
15
|
-
locTrigger: z.enum(
|
|
17
|
+
locTrigger: z.enum(LOCATION_TRIGGERS),
|
|
16
18
|
radius: z.number().int(),
|
|
17
19
|
}).passthrough();
|
|
18
20
|
export const AbsoluteReminderSchema = ReminderBaseSchema.extend({
|
|
@@ -1,17 +1,21 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
/** Available template types. */
|
|
3
|
+
export const TEMPLATE_TYPES = ['project', 'setup'];
|
|
2
4
|
export const TemplateSuggestionSchema = z
|
|
3
5
|
.object({
|
|
4
6
|
id: z.string(),
|
|
5
7
|
name: z.string(),
|
|
6
|
-
templateType: z.enum(
|
|
8
|
+
templateType: z.enum(TEMPLATE_TYPES),
|
|
7
9
|
})
|
|
8
10
|
.passthrough();
|
|
9
11
|
export const WorkspaceTemplateSuggestionSchema = TemplateSuggestionSchema.extend({
|
|
10
12
|
workspaceId: z.string().nullable(),
|
|
11
13
|
});
|
|
12
|
-
|
|
14
|
+
/** Available suggestion section types. */
|
|
15
|
+
export const SUGGESTION_SECTION_TYPES = ['templates', 'most_used_user_templates'];
|
|
16
|
+
export const SyncTemplateSuggestionsSchema = z
|
|
13
17
|
.object({
|
|
14
|
-
type: z.enum(
|
|
18
|
+
type: z.enum(SUGGESTION_SECTION_TYPES),
|
|
15
19
|
content: z.object({
|
|
16
20
|
templates: z.array(TemplateSuggestionSchema),
|
|
17
21
|
locale: z.string(),
|
|
@@ -19,7 +23,7 @@ const SyncTemplateSuggestionsSchema = z
|
|
|
19
23
|
isDeleted: z.boolean(),
|
|
20
24
|
})
|
|
21
25
|
.passthrough();
|
|
22
|
-
const SyncWorkspaceTemplateSuggestionsSchema = z
|
|
26
|
+
export const SyncWorkspaceTemplateSuggestionsSchema = z
|
|
23
27
|
.object({
|
|
24
28
|
type: z.literal('most_used_workspace_templates'),
|
|
25
29
|
content: z.object({
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
const NavigationFeatureSchema = z.object({
|
|
2
|
+
export const NavigationFeatureSchema = z.object({
|
|
3
3
|
name: z.string(),
|
|
4
4
|
shown: z.boolean(),
|
|
5
5
|
});
|
|
6
|
-
const QuickAddFeatureSchema = z.object({
|
|
6
|
+
export const QuickAddFeatureSchema = z.object({
|
|
7
7
|
name: z.string(),
|
|
8
8
|
shown: z.boolean(),
|
|
9
9
|
});
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { PREMIUM_STATUSES } from '../../entities.js';
|
|
2
3
|
import { BooleanFromZeroOneSchema, DateFormatSchema, DayOfWeekSchema, TimeFormatSchema, } from '../user-preferences.js';
|
|
3
|
-
const FeaturesSchema = z
|
|
4
|
+
export const FeaturesSchema = z
|
|
4
5
|
.object({
|
|
5
6
|
karmaDisabled: z.boolean(),
|
|
6
7
|
restriction: z.number().int(),
|
|
@@ -14,7 +15,7 @@ const FeaturesSchema = z
|
|
|
14
15
|
migratedFromTdb: z.boolean().optional(),
|
|
15
16
|
})
|
|
16
17
|
.passthrough();
|
|
17
|
-
const TzInfoSchema = z
|
|
18
|
+
export const TzInfoSchema = z
|
|
18
19
|
.object({
|
|
19
20
|
timezone: z.string(),
|
|
20
21
|
hours: z.number().int(),
|
|
@@ -23,14 +24,14 @@ const TzInfoSchema = z
|
|
|
23
24
|
gmtString: z.string(),
|
|
24
25
|
})
|
|
25
26
|
.passthrough();
|
|
26
|
-
const JoinableWorkspaceSchema = z
|
|
27
|
+
export const JoinableWorkspaceSchema = z
|
|
27
28
|
.object({
|
|
28
29
|
workspaceId: z.string(),
|
|
29
30
|
workspaceName: z.string(),
|
|
30
31
|
memberCount: z.number().int(),
|
|
31
32
|
})
|
|
32
33
|
.passthrough();
|
|
33
|
-
const GettingStartedGuideProjectSchema = z
|
|
34
|
+
export const GettingStartedGuideProjectSchema = z
|
|
34
35
|
.object({
|
|
35
36
|
onboardingUseCase: z.string(),
|
|
36
37
|
projectId: z.string(),
|
|
@@ -88,12 +89,7 @@ export const SyncUserSchema = z
|
|
|
88
89
|
onboardingSkipped: z.boolean().optional(),
|
|
89
90
|
onboardingTeamMode: z.boolean().nullable().optional(),
|
|
90
91
|
onboardingUseCases: z.array(z.string()).nullable().optional(),
|
|
91
|
-
premiumStatus: z.enum(
|
|
92
|
-
'not_premium',
|
|
93
|
-
'current_personal_plan',
|
|
94
|
-
'legacy_personal_plan',
|
|
95
|
-
'teams_business_member',
|
|
96
|
-
]),
|
|
92
|
+
premiumStatus: z.enum(PREMIUM_STATUSES),
|
|
97
93
|
premiumUntil: z.string().nullable(),
|
|
98
94
|
rambleSessionsUsage: z
|
|
99
95
|
.object({
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
|
|
2
|
+
/** Available view types. */
|
|
3
|
+
export const VIEW_TYPES = [
|
|
3
4
|
'TODAY',
|
|
4
5
|
'UPCOMING',
|
|
5
6
|
'PROJECT',
|
|
@@ -13,10 +14,13 @@ const ViewTypeSchema = z.enum([
|
|
|
13
14
|
'ASSIGNED',
|
|
14
15
|
'OVERDUE',
|
|
15
16
|
'WORKSPACE_OVERVIEW',
|
|
16
|
-
]
|
|
17
|
-
const
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
];
|
|
18
|
+
export const ViewTypeSchema = z.enum(VIEW_TYPES);
|
|
19
|
+
/** Available view modes. */
|
|
20
|
+
export const VIEW_MODES = ['LIST', 'BOARD', 'CALENDAR'];
|
|
21
|
+
export const ViewModeSchema = z.enum(VIEW_MODES);
|
|
22
|
+
/** Available grouping options. */
|
|
23
|
+
export const GROUPED_BY_OPTIONS = [
|
|
20
24
|
'ASSIGNEE',
|
|
21
25
|
'ADDED_DATE',
|
|
22
26
|
'DUE_DATE',
|
|
@@ -25,10 +29,10 @@ const GroupedBySchema = z
|
|
|
25
29
|
'PRIORITY',
|
|
26
30
|
'PROJECT',
|
|
27
31
|
'WORKSPACE',
|
|
28
|
-
]
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
+
];
|
|
33
|
+
export const GroupedBySchema = z.enum(GROUPED_BY_OPTIONS).nullable();
|
|
34
|
+
/** Available sorting options. */
|
|
35
|
+
export const SORTED_BY_OPTIONS = [
|
|
32
36
|
'MANUAL',
|
|
33
37
|
'ALPHABETICALLY',
|
|
34
38
|
'ASSIGNEE',
|
|
@@ -38,12 +42,16 @@ const SortedBySchema = z
|
|
|
38
42
|
'PRIORITY',
|
|
39
43
|
'PROJECT',
|
|
40
44
|
'WORKSPACE',
|
|
41
|
-
]
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
const
|
|
45
|
+
];
|
|
46
|
+
export const SortedBySchema = z.enum(SORTED_BY_OPTIONS).nullable();
|
|
47
|
+
/** Available sort directions. */
|
|
48
|
+
export const SORT_ORDERS = ['ASC', 'DESC'];
|
|
49
|
+
export const SortOrderSchema = z.enum(SORT_ORDERS).nullable();
|
|
50
|
+
/** Available calendar layout modes. */
|
|
51
|
+
export const CALENDAR_LAYOUTS = ['WEEK', 'MONTH'];
|
|
52
|
+
export const CalendarSettingsSchema = z
|
|
45
53
|
.object({
|
|
46
|
-
layout: z.enum(
|
|
54
|
+
layout: z.enum(CALENDAR_LAYOUTS).optional(),
|
|
47
55
|
})
|
|
48
56
|
.passthrough();
|
|
49
57
|
export const ViewOptionsSchema = z
|
|
@@ -12,6 +12,10 @@ export declare const DueDateSchema: z.ZodObject<{
|
|
|
12
12
|
* @see https://todoist.com/api/v1/docs#tag/Tasks/operation/get_tasks_api_v1_tasks_get
|
|
13
13
|
*/
|
|
14
14
|
export type DueDate = z.infer<typeof DueDateSchema>;
|
|
15
|
+
/** Available duration units for task deadlines. */
|
|
16
|
+
export declare const DURATION_UNITS: readonly ["minute", "day"];
|
|
17
|
+
/** Unit of time for a task duration. */
|
|
18
|
+
export type DurationUnit = (typeof DURATION_UNITS)[number];
|
|
15
19
|
export declare const DurationSchema: z.ZodObject<{
|
|
16
20
|
amount: z.ZodNumber;
|
|
17
21
|
unit: z.ZodEnum<{
|
|
@@ -240,12 +244,15 @@ export declare const PersonalProjectSchema: z.ZodPipe<z.ZodObject<{
|
|
|
240
244
|
parentId: string | null;
|
|
241
245
|
inboxProject: boolean;
|
|
242
246
|
}>>;
|
|
247
|
+
/** Available project visibility levels. */
|
|
248
|
+
export declare const PROJECT_VISIBILITIES: readonly ["restricted", "team", "public"];
|
|
249
|
+
/** Visibility level of a workspace project. */
|
|
250
|
+
export type ProjectVisibility = (typeof PROJECT_VISIBILITIES)[number];
|
|
243
251
|
export declare const ProjectVisibilitySchema: z.ZodEnum<{
|
|
244
252
|
restricted: "restricted";
|
|
245
253
|
team: "team";
|
|
246
254
|
public: "public";
|
|
247
255
|
}>;
|
|
248
|
-
export type ProjectVisibility = z.infer<typeof ProjectVisibilitySchema>;
|
|
249
256
|
/**
|
|
250
257
|
* Schema for workspace projects in Todoist.
|
|
251
258
|
*/
|
|
@@ -405,6 +412,10 @@ export declare const LabelSchema: z.ZodObject<{
|
|
|
405
412
|
* @see https://todoist.com/api/v1/docs#tag/Labels
|
|
406
413
|
*/
|
|
407
414
|
export type Label = z.infer<typeof LabelSchema>;
|
|
415
|
+
/** Available file attachment upload states. */
|
|
416
|
+
export declare const UPLOAD_STATES: readonly ["pending", "completed"];
|
|
417
|
+
/** Upload state of a file attachment. */
|
|
418
|
+
export type UploadState = (typeof UPLOAD_STATES)[number];
|
|
408
419
|
export declare const AttachmentSchema: z.ZodObject<{
|
|
409
420
|
resourceType: z.ZodString;
|
|
410
421
|
fileName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -558,6 +569,10 @@ export declare const TimezoneInfoSchema: z.ZodObject<{
|
|
|
558
569
|
minutes: z.ZodNumber;
|
|
559
570
|
timezone: z.ZodString;
|
|
560
571
|
}, z.core.$strip>;
|
|
572
|
+
/** Available user premium statuses. */
|
|
573
|
+
export declare const PREMIUM_STATUSES: readonly ["not_premium", "current_personal_plan", "legacy_personal_plan", "teams_business_member"];
|
|
574
|
+
/** Premium subscription status of a user. */
|
|
575
|
+
export type PremiumStatus = (typeof PREMIUM_STATUSES)[number];
|
|
561
576
|
export declare const CurrentUserSchema: z.ZodObject<{
|
|
562
577
|
id: z.ZodString;
|
|
563
578
|
email: z.ZodString;
|
|
@@ -602,6 +617,30 @@ export declare const CurrentUserSchema: z.ZodObject<{
|
|
|
602
617
|
* @see https://todoist.com/api/v1/docs#tag/User
|
|
603
618
|
*/
|
|
604
619
|
export type CurrentUser = z.infer<typeof CurrentUserSchema>;
|
|
620
|
+
export declare const StreakSchema: z.ZodObject<{
|
|
621
|
+
count: z.ZodNumber;
|
|
622
|
+
start: z.ZodString;
|
|
623
|
+
end: z.ZodString;
|
|
624
|
+
}, z.core.$strip>;
|
|
625
|
+
export declare const CompletedItemSchema: z.ZodObject<{
|
|
626
|
+
id: z.ZodString;
|
|
627
|
+
completed: z.ZodNumber;
|
|
628
|
+
}, z.core.$strip>;
|
|
629
|
+
export declare const ItemsWithDateSchema: z.ZodObject<{
|
|
630
|
+
items: z.ZodArray<z.ZodObject<{
|
|
631
|
+
id: z.ZodString;
|
|
632
|
+
completed: z.ZodNumber;
|
|
633
|
+
}, z.core.$strip>>;
|
|
634
|
+
totalCompleted: z.ZodNumber;
|
|
635
|
+
}, z.core.$strip>;
|
|
636
|
+
export declare const KarmaUpdateSchema: z.ZodObject<{
|
|
637
|
+
time: z.ZodString;
|
|
638
|
+
newKarma: z.ZodNumber;
|
|
639
|
+
positiveKarma: z.ZodNumber;
|
|
640
|
+
negativeKarma: z.ZodNumber;
|
|
641
|
+
positiveKarmaReasons: z.ZodArray<z.ZodAny>;
|
|
642
|
+
negativeKarmaReasons: z.ZodArray<z.ZodAny>;
|
|
643
|
+
}, z.core.$strip>;
|
|
605
644
|
export declare const ProductivityStatsSchema: z.ZodObject<{
|
|
606
645
|
completedCount: z.ZodNumber;
|
|
607
646
|
daysItems: z.ZodArray<z.ZodObject<{
|
|
@@ -805,6 +844,14 @@ export declare const FormattedPriceListingSchema: z.ZodObject<{
|
|
|
805
844
|
* Formatted price listing for workspace plans.
|
|
806
845
|
*/
|
|
807
846
|
export type FormattedPriceListing = z.infer<typeof FormattedPriceListingSchema>;
|
|
847
|
+
/** Available workspace plan names. */
|
|
848
|
+
export declare const WORKSPACE_CURRENT_PLANS: readonly ["Business", "Starter"];
|
|
849
|
+
/** Display name of a workspace plan. */
|
|
850
|
+
export type WorkspaceCurrentPlan = (typeof WORKSPACE_CURRENT_PLANS)[number];
|
|
851
|
+
/** Available workspace plan statuses. */
|
|
852
|
+
export declare const WORKSPACE_PLAN_STATUSES: readonly ["Active", "Downgraded", "Cancelled", "NeverSubscribed"];
|
|
853
|
+
/** Subscription status of a workspace plan. */
|
|
854
|
+
export type WorkspacePlanStatus = (typeof WORKSPACE_PLAN_STATUSES)[number];
|
|
808
855
|
export declare const WorkspacePlanDetailsSchema: z.ZodObject<{
|
|
809
856
|
currentMemberCount: z.ZodNumber;
|
|
810
857
|
currentPlan: z.ZodEnum<{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { ViewMode, GroupedBy, SortedBy, SortOrder } from '
|
|
1
|
+
import type { ViewMode, GroupedBy, SortedBy, SortOrder, CalendarLayout } from '../resources/view-options.js';
|
|
2
2
|
export type CalendarSettings = {
|
|
3
|
-
layout?:
|
|
3
|
+
layout?: CalendarLayout;
|
|
4
4
|
};
|
|
5
5
|
export type ProjectViewOptionsDefaultsSetArgs = {
|
|
6
6
|
projectId: string;
|
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
export type ViewMode = 'LIST' | 'BOARD' | 'CALENDAR';
|
|
3
|
-
export type GroupedBy = null | 'ASSIGNEE' | 'ADDED_DATE' | 'DUE_DATE' | 'DEADLINE' | 'LABEL' | 'PRIORITY' | 'PROJECT' | 'WORKSPACE';
|
|
4
|
-
export type SortedBy = null | 'MANUAL' | 'ALPHABETICALLY' | 'ASSIGNEE' | 'DUE_DATE' | 'DEADLINE' | 'ADDED_DATE' | 'PRIORITY' | 'PROJECT' | 'WORKSPACE';
|
|
5
|
-
export type SortOrder = 'ASC' | 'DESC';
|
|
1
|
+
import type { ViewType, ViewMode, GroupedBy, SortedBy, SortOrder } from '../resources/view-options.js';
|
|
6
2
|
export type ViewOptionsSetArgs = {
|
|
7
3
|
viewType: ViewType;
|
|
8
4
|
objectId?: string;
|
|
9
|
-
groupedBy?: GroupedBy;
|
|
5
|
+
groupedBy?: GroupedBy | null;
|
|
10
6
|
filteredBy?: string | null;
|
|
11
7
|
viewMode?: ViewMode;
|
|
12
8
|
showCompletedTasks?: boolean;
|
|
13
|
-
sortedBy?: SortedBy;
|
|
9
|
+
sortedBy?: SortedBy | null;
|
|
14
10
|
sortOrder?: SortOrder | null;
|
|
15
11
|
};
|
|
16
12
|
export type ViewOptionsDeleteArgs = {
|
|
@@ -8,6 +8,14 @@ export declare const CalendarSchema: z.ZodObject<{
|
|
|
8
8
|
isTaskCalendar: z.ZodOptional<z.ZodBoolean>;
|
|
9
9
|
}, z.core.$loose>;
|
|
10
10
|
export type Calendar = z.infer<typeof CalendarSchema>;
|
|
11
|
+
/** Available calendar account provider types. */
|
|
12
|
+
export declare const CALENDAR_ACCOUNT_TYPES: readonly ["google", "microsoft", "apple"];
|
|
13
|
+
/** Calendar account provider type. */
|
|
14
|
+
export type CalendarAccountType = (typeof CALENDAR_ACCOUNT_TYPES)[number];
|
|
15
|
+
/** Available calendar sync states. */
|
|
16
|
+
export declare const CALENDAR_SYNC_STATES: readonly ["synced", "syncing", "error"];
|
|
17
|
+
/** Sync state of a calendar account. */
|
|
18
|
+
export type CalendarSyncState = (typeof CALENDAR_SYNC_STATES)[number];
|
|
11
19
|
export declare const CalendarAccountSchema: z.ZodObject<{
|
|
12
20
|
id: z.ZodString;
|
|
13
21
|
name: z.ZodString;
|
|
@@ -7,6 +7,10 @@ export declare const CollaboratorSchema: z.ZodObject<{
|
|
|
7
7
|
imageId: z.ZodNullable<z.ZodString>;
|
|
8
8
|
}, z.core.$loose>;
|
|
9
9
|
export type Collaborator = z.infer<typeof CollaboratorSchema>;
|
|
10
|
+
/** Available collaborator statuses. */
|
|
11
|
+
export declare const COLLABORATOR_STATUSES: readonly ["active", "invited"];
|
|
12
|
+
/** Status of a project collaborator. */
|
|
13
|
+
export type CollaboratorStatus = (typeof COLLABORATOR_STATUSES)[number];
|
|
10
14
|
export declare const CollaboratorStateSchema: z.ZodObject<{
|
|
11
15
|
userId: z.ZodString;
|
|
12
16
|
projectId: z.ZodString;
|
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const ReminderBaseSchema: z.ZodObject<{
|
|
3
|
+
id: z.ZodString;
|
|
4
|
+
notifyUid: z.ZodString;
|
|
5
|
+
itemId: z.ZodString;
|
|
6
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
7
|
+
isDeleted: z.ZodBoolean;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
/** Available location reminder triggers. */
|
|
10
|
+
export declare const LOCATION_TRIGGERS: readonly ["on_enter", "on_leave"];
|
|
11
|
+
/** Trigger condition for a location-based reminder. */
|
|
12
|
+
export type LocationTrigger = (typeof LOCATION_TRIGGERS)[number];
|
|
2
13
|
export declare const LocationReminderSchema: z.ZodObject<{
|
|
3
14
|
id: z.ZodString;
|
|
4
15
|
notifyUid: z.ZodString;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
/** Available template types. */
|
|
3
|
+
export declare const TEMPLATE_TYPES: readonly ["project", "setup"];
|
|
4
|
+
/** Type of template suggestion. */
|
|
5
|
+
export type TemplateType = (typeof TEMPLATE_TYPES)[number];
|
|
2
6
|
export declare const TemplateSuggestionSchema: z.ZodObject<{
|
|
3
7
|
id: z.ZodString;
|
|
4
8
|
name: z.ZodString;
|
|
@@ -18,6 +22,44 @@ export declare const WorkspaceTemplateSuggestionSchema: z.ZodObject<{
|
|
|
18
22
|
workspaceId: z.ZodNullable<z.ZodString>;
|
|
19
23
|
}, z.core.$loose>;
|
|
20
24
|
export type WorkspaceTemplateSuggestion = z.infer<typeof WorkspaceTemplateSuggestionSchema>;
|
|
25
|
+
/** Available suggestion section types. */
|
|
26
|
+
export declare const SUGGESTION_SECTION_TYPES: readonly ["templates", "most_used_user_templates"];
|
|
27
|
+
/** Type of suggestion section. */
|
|
28
|
+
export type SuggestionSectionType = (typeof SUGGESTION_SECTION_TYPES)[number];
|
|
29
|
+
export declare const SyncTemplateSuggestionsSchema: z.ZodObject<{
|
|
30
|
+
type: z.ZodEnum<{
|
|
31
|
+
templates: "templates";
|
|
32
|
+
most_used_user_templates: "most_used_user_templates";
|
|
33
|
+
}>;
|
|
34
|
+
content: z.ZodObject<{
|
|
35
|
+
templates: z.ZodArray<z.ZodObject<{
|
|
36
|
+
id: z.ZodString;
|
|
37
|
+
name: z.ZodString;
|
|
38
|
+
templateType: z.ZodEnum<{
|
|
39
|
+
project: "project";
|
|
40
|
+
setup: "setup";
|
|
41
|
+
}>;
|
|
42
|
+
}, z.core.$loose>>;
|
|
43
|
+
locale: z.ZodString;
|
|
44
|
+
}, z.core.$strip>;
|
|
45
|
+
isDeleted: z.ZodBoolean;
|
|
46
|
+
}, z.core.$loose>;
|
|
47
|
+
export declare const SyncWorkspaceTemplateSuggestionsSchema: z.ZodObject<{
|
|
48
|
+
type: z.ZodLiteral<"most_used_workspace_templates">;
|
|
49
|
+
content: z.ZodObject<{
|
|
50
|
+
templates: z.ZodArray<z.ZodObject<{
|
|
51
|
+
id: z.ZodString;
|
|
52
|
+
name: z.ZodString;
|
|
53
|
+
templateType: z.ZodEnum<{
|
|
54
|
+
project: "project";
|
|
55
|
+
setup: "setup";
|
|
56
|
+
}>;
|
|
57
|
+
workspaceId: z.ZodNullable<z.ZodString>;
|
|
58
|
+
}, z.core.$loose>>;
|
|
59
|
+
locale: z.ZodString;
|
|
60
|
+
}, z.core.$strip>;
|
|
61
|
+
isDeleted: z.ZodBoolean;
|
|
62
|
+
}, z.core.$loose>;
|
|
21
63
|
export declare const SuggestionSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
22
64
|
type: z.ZodLiteral<"most_used_workspace_templates">;
|
|
23
65
|
content: z.ZodObject<{
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const NavigationFeatureSchema: z.ZodObject<{
|
|
3
|
+
name: z.ZodString;
|
|
4
|
+
shown: z.ZodBoolean;
|
|
5
|
+
}, z.core.$strip>;
|
|
6
|
+
export declare const QuickAddFeatureSchema: z.ZodObject<{
|
|
7
|
+
name: z.ZodString;
|
|
8
|
+
shown: z.ZodBoolean;
|
|
9
|
+
}, z.core.$strip>;
|
|
2
10
|
/**
|
|
3
11
|
* Sync API user settings resource.
|
|
4
12
|
*/
|
|
@@ -1,4 +1,34 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
export declare const FeaturesSchema: z.ZodObject<{
|
|
3
|
+
karmaDisabled: z.ZodBoolean;
|
|
4
|
+
restriction: z.ZodNumber;
|
|
5
|
+
karmaVacation: z.ZodBoolean;
|
|
6
|
+
dateistLang: z.ZodAny;
|
|
7
|
+
beta: z.ZodPipe<z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>]>, z.ZodTransform<boolean, 0 | 1>>;
|
|
8
|
+
hasPushReminders: z.ZodBoolean;
|
|
9
|
+
dateistInlineDisabled: z.ZodBoolean;
|
|
10
|
+
autoInviteDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
11
|
+
goldTheme: z.ZodOptional<z.ZodBoolean>;
|
|
12
|
+
migratedFromTdb: z.ZodOptional<z.ZodBoolean>;
|
|
13
|
+
}, z.core.$loose>;
|
|
14
|
+
export declare const TzInfoSchema: z.ZodObject<{
|
|
15
|
+
timezone: z.ZodString;
|
|
16
|
+
hours: z.ZodNumber;
|
|
17
|
+
minutes: z.ZodNumber;
|
|
18
|
+
isDst: z.ZodPipe<z.ZodUnion<readonly [z.ZodLiteral<0>, z.ZodLiteral<1>]>, z.ZodTransform<boolean, 0 | 1>>;
|
|
19
|
+
gmtString: z.ZodString;
|
|
20
|
+
}, z.core.$loose>;
|
|
21
|
+
export declare const JoinableWorkspaceSchema: z.ZodObject<{
|
|
22
|
+
workspaceId: z.ZodString;
|
|
23
|
+
workspaceName: z.ZodString;
|
|
24
|
+
memberCount: z.ZodNumber;
|
|
25
|
+
}, z.core.$loose>;
|
|
26
|
+
export declare const GettingStartedGuideProjectSchema: z.ZodObject<{
|
|
27
|
+
onboardingUseCase: z.ZodString;
|
|
28
|
+
projectId: z.ZodString;
|
|
29
|
+
completed: z.ZodBoolean;
|
|
30
|
+
closed: z.ZodBoolean;
|
|
31
|
+
}, z.core.$loose>;
|
|
2
32
|
/**
|
|
3
33
|
* Sync API user resource.
|
|
4
34
|
*
|