@taskless-app/shared 0.1.8 → 0.1.10
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/branding.d.ts +2 -2
- package/dist/callQuality.d.ts +1 -1
- package/dist/designTokens.d.ts +2 -0
- package/dist/designTokens.js +6 -0
- package/dist/designTokens.js.map +1 -1
- package/dist/finishChip.js.map +1 -1
- package/dist/schemas.d.ts +329 -323
- package/dist/schemas.js +2 -0
- package/dist/schemas.js.map +1 -1
- package/dist/weight.js.map +1 -1
- package/package.json +2 -2
package/dist/schemas.d.ts
CHANGED
|
@@ -13,16 +13,16 @@ export declare const SignupInput: z.ZodObject<{
|
|
|
13
13
|
displayName: string;
|
|
14
14
|
inviteToken?: string | undefined;
|
|
15
15
|
position?: string | undefined;
|
|
16
|
-
workRole?: "
|
|
17
|
-
gender?: "
|
|
16
|
+
workRole?: "design" | "dev" | "lead" | "other" | "product" | "qa" | undefined;
|
|
17
|
+
gender?: "female" | "male" | undefined;
|
|
18
18
|
}, {
|
|
19
19
|
email: string;
|
|
20
20
|
password: string;
|
|
21
21
|
displayName: string;
|
|
22
22
|
inviteToken?: string | undefined;
|
|
23
23
|
position?: string | undefined;
|
|
24
|
-
workRole?: "
|
|
25
|
-
gender?: "
|
|
24
|
+
workRole?: "design" | "dev" | "lead" | "other" | "product" | "qa" | undefined;
|
|
25
|
+
gender?: "female" | "male" | undefined;
|
|
26
26
|
}>;
|
|
27
27
|
export type SignupInput = z.infer<typeof SignupInput>;
|
|
28
28
|
export declare const LoginInput: z.ZodObject<{
|
|
@@ -57,11 +57,11 @@ export declare const CreateInviteInput: z.ZodObject<{
|
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
58
|
email: string;
|
|
59
59
|
role: "admin" | "member";
|
|
60
|
-
workRole?: "
|
|
60
|
+
workRole?: "design" | "dev" | "lead" | "other" | "product" | "qa" | null | undefined;
|
|
61
61
|
}, {
|
|
62
62
|
email: string;
|
|
63
63
|
role: "admin" | "member";
|
|
64
|
-
workRole?: "
|
|
64
|
+
workRole?: "design" | "dev" | "lead" | "other" | "product" | "qa" | null | undefined;
|
|
65
65
|
}>;
|
|
66
66
|
export type CreateInviteInput = z.infer<typeof CreateInviteInput>;
|
|
67
67
|
export declare const AcceptInviteInput: z.ZodObject<{
|
|
@@ -84,11 +84,11 @@ export declare const PasswordResetConfirmInput: z.ZodObject<{
|
|
|
84
84
|
token: z.ZodString;
|
|
85
85
|
password: z.ZodString;
|
|
86
86
|
}, "strip", z.ZodTypeAny, {
|
|
87
|
-
password: string;
|
|
88
87
|
token: string;
|
|
89
|
-
}, {
|
|
90
88
|
password: string;
|
|
89
|
+
}, {
|
|
91
90
|
token: string;
|
|
91
|
+
password: string;
|
|
92
92
|
}>;
|
|
93
93
|
export type PasswordResetConfirmInput = z.infer<typeof PasswordResetConfirmInput>;
|
|
94
94
|
export declare const WorkflowCategory: z.ZodEnum<["backlog", "unstarted", "started", "completed", "cancelled", "archived"]>;
|
|
@@ -107,24 +107,24 @@ export declare const WorkflowStateCreate: z.ZodObject<{
|
|
|
107
107
|
icon: z.ZodOptional<z.ZodNullable<z.ZodEnum<["circle", "circle-dashed", "circle-dot", "circle-half", "circle-check", "circle-x", "circle-plus", "clock", "timer", "hourglass", "play", "pause", "package", "inbox", "archive", "arrow-right", "wrench", "eye", "flask-conical", "check", "x", "ban", "bug", "code", "search", "target", "lightbulb", "zap", "rocket", "flag"]>>>;
|
|
108
108
|
ownerBoardId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
|
-
position: number;
|
|
111
110
|
name: string;
|
|
112
|
-
category: "
|
|
111
|
+
category: "archived" | "backlog" | "cancelled" | "completed" | "started" | "unstarted";
|
|
112
|
+
position: number;
|
|
113
113
|
color: string;
|
|
114
114
|
isDefault: boolean;
|
|
115
115
|
enabled: boolean;
|
|
116
116
|
isReadyForRelease: boolean;
|
|
117
|
-
icon?: "
|
|
117
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
118
118
|
ownerBoardId?: string | null | undefined;
|
|
119
119
|
}, {
|
|
120
|
-
position: number;
|
|
121
120
|
name: string;
|
|
122
|
-
category: "
|
|
121
|
+
category: "archived" | "backlog" | "cancelled" | "completed" | "started" | "unstarted";
|
|
122
|
+
position: number;
|
|
123
123
|
color: string;
|
|
124
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
125
124
|
isDefault?: boolean | undefined;
|
|
126
125
|
enabled?: boolean | undefined;
|
|
127
126
|
isReadyForRelease?: boolean | undefined;
|
|
127
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
128
128
|
ownerBoardId?: string | null | undefined;
|
|
129
129
|
}>;
|
|
130
130
|
export type WorkflowStateCreate = z.infer<typeof WorkflowStateCreate>;
|
|
@@ -140,24 +140,24 @@ export declare const WorkflowStateUpdate: z.ZodObject<{
|
|
|
140
140
|
icon: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["circle", "circle-dashed", "circle-dot", "circle-half", "circle-check", "circle-x", "circle-plus", "clock", "timer", "hourglass", "play", "pause", "package", "inbox", "archive", "arrow-right", "wrench", "eye", "flask-conical", "check", "x", "ban", "bug", "code", "search", "target", "lightbulb", "zap", "rocket", "flag"]>>>>;
|
|
141
141
|
ownerBoardId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
144
|
-
position?: number | undefined;
|
|
145
143
|
name?: string | undefined;
|
|
146
|
-
category?: "
|
|
144
|
+
category?: "archived" | "backlog" | "cancelled" | "completed" | "started" | "unstarted" | undefined;
|
|
145
|
+
position?: number | undefined;
|
|
147
146
|
color?: string | undefined;
|
|
148
147
|
isDefault?: boolean | undefined;
|
|
149
148
|
enabled?: boolean | undefined;
|
|
150
149
|
isReadyForRelease?: boolean | undefined;
|
|
150
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
151
151
|
ownerBoardId?: string | null | undefined;
|
|
152
152
|
}, {
|
|
153
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
154
|
-
position?: number | undefined;
|
|
155
153
|
name?: string | undefined;
|
|
156
|
-
category?: "
|
|
154
|
+
category?: "archived" | "backlog" | "cancelled" | "completed" | "started" | "unstarted" | undefined;
|
|
155
|
+
position?: number | undefined;
|
|
157
156
|
color?: string | undefined;
|
|
158
157
|
isDefault?: boolean | undefined;
|
|
159
158
|
enabled?: boolean | undefined;
|
|
160
159
|
isReadyForRelease?: boolean | undefined;
|
|
160
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
161
161
|
ownerBoardId?: string | null | undefined;
|
|
162
162
|
}>;
|
|
163
163
|
export type WorkflowStateUpdate = z.infer<typeof WorkflowStateUpdate>;
|
|
@@ -225,26 +225,26 @@ export declare const ProjectCreate: z.ZodObject<{
|
|
|
225
225
|
brief: z.ZodOptional<z.ZodString>;
|
|
226
226
|
}, "strip", z.ZodTypeAny, {
|
|
227
227
|
name: string;
|
|
228
|
-
avatarUrl?: string | undefined;
|
|
229
|
-
spaceId?: string | null | undefined;
|
|
230
228
|
description?: string | undefined;
|
|
231
229
|
teamId?: string | undefined;
|
|
232
230
|
parentId?: string | null | undefined;
|
|
231
|
+
spaceId?: string | null | undefined;
|
|
233
232
|
taskPrefix?: string | undefined;
|
|
233
|
+
avatarUrl?: string | undefined;
|
|
234
234
|
createChannel?: boolean | undefined;
|
|
235
|
-
visibility?: "
|
|
235
|
+
visibility?: "private" | "public" | undefined;
|
|
236
236
|
openToSpace?: boolean | undefined;
|
|
237
237
|
brief?: string | undefined;
|
|
238
238
|
}, {
|
|
239
239
|
name: string;
|
|
240
|
-
avatarUrl?: string | undefined;
|
|
241
|
-
spaceId?: string | null | undefined;
|
|
242
240
|
description?: string | undefined;
|
|
243
241
|
teamId?: string | undefined;
|
|
244
242
|
parentId?: string | null | undefined;
|
|
243
|
+
spaceId?: string | null | undefined;
|
|
245
244
|
taskPrefix?: string | undefined;
|
|
245
|
+
avatarUrl?: string | undefined;
|
|
246
246
|
createChannel?: boolean | undefined;
|
|
247
|
-
visibility?: "
|
|
247
|
+
visibility?: "private" | "public" | undefined;
|
|
248
248
|
openToSpace?: boolean | undefined;
|
|
249
249
|
brief?: string | undefined;
|
|
250
250
|
}>;
|
|
@@ -280,19 +280,19 @@ export declare const ProjectUpdate: z.ZodObject<{
|
|
|
280
280
|
agent: boolean;
|
|
281
281
|
}>>>;
|
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
|
283
|
-
status?: "archived" | "active" | undefined;
|
|
284
283
|
name?: string | undefined;
|
|
285
|
-
avatarUrl?: string | undefined;
|
|
286
|
-
spaceId?: string | null | undefined;
|
|
287
284
|
description?: string | undefined;
|
|
288
|
-
teamId?: string | null | undefined;
|
|
289
285
|
parentId?: string | null | undefined;
|
|
290
|
-
|
|
286
|
+
spaceId?: string | null | undefined;
|
|
287
|
+
avatarUrl?: string | undefined;
|
|
291
288
|
createChannel?: boolean | undefined;
|
|
292
|
-
visibility?: "
|
|
289
|
+
visibility?: "private" | "public" | undefined;
|
|
293
290
|
openToSpace?: boolean | undefined;
|
|
294
291
|
brief?: string | undefined;
|
|
295
|
-
|
|
292
|
+
status?: "active" | "archived" | undefined;
|
|
293
|
+
teamId?: string | null | undefined;
|
|
294
|
+
taskPrefix?: string | undefined;
|
|
295
|
+
releaseFlow?: "prod_only" | "stage_then_prod" | null | undefined;
|
|
296
296
|
order?: number | null | undefined;
|
|
297
297
|
deployWorkflow?: string | null | undefined;
|
|
298
298
|
releaseAllowedSources?: {
|
|
@@ -301,19 +301,19 @@ export declare const ProjectUpdate: z.ZodObject<{
|
|
|
301
301
|
agent: boolean;
|
|
302
302
|
} | null | undefined;
|
|
303
303
|
}, {
|
|
304
|
-
status?: "archived" | "active" | undefined;
|
|
305
304
|
name?: string | undefined;
|
|
306
|
-
avatarUrl?: string | undefined;
|
|
307
|
-
spaceId?: string | null | undefined;
|
|
308
305
|
description?: string | undefined;
|
|
309
|
-
teamId?: string | null | undefined;
|
|
310
306
|
parentId?: string | null | undefined;
|
|
311
|
-
|
|
307
|
+
spaceId?: string | null | undefined;
|
|
308
|
+
avatarUrl?: string | undefined;
|
|
312
309
|
createChannel?: boolean | undefined;
|
|
313
|
-
visibility?: "
|
|
310
|
+
visibility?: "private" | "public" | undefined;
|
|
314
311
|
openToSpace?: boolean | undefined;
|
|
315
312
|
brief?: string | undefined;
|
|
316
|
-
|
|
313
|
+
status?: "active" | "archived" | undefined;
|
|
314
|
+
teamId?: string | null | undefined;
|
|
315
|
+
taskPrefix?: string | undefined;
|
|
316
|
+
releaseFlow?: "prod_only" | "stage_then_prod" | null | undefined;
|
|
317
317
|
order?: number | null | undefined;
|
|
318
318
|
deployWorkflow?: string | null | undefined;
|
|
319
319
|
releaseAllowedSources?: {
|
|
@@ -344,11 +344,11 @@ export declare const TaskRelationBody: z.ZodObject<{
|
|
|
344
344
|
targetTaskId: z.ZodString;
|
|
345
345
|
type: z.ZodEnum<["blocks", "depends_on", "duplicates", "relates_to"]>;
|
|
346
346
|
}, "strip", z.ZodTypeAny, {
|
|
347
|
-
type: "blocks" | "depends_on" | "duplicates" | "relates_to";
|
|
348
347
|
targetTaskId: string;
|
|
349
|
-
}, {
|
|
350
348
|
type: "blocks" | "depends_on" | "duplicates" | "relates_to";
|
|
349
|
+
}, {
|
|
351
350
|
targetTaskId: string;
|
|
351
|
+
type: "blocks" | "depends_on" | "duplicates" | "relates_to";
|
|
352
352
|
}>;
|
|
353
353
|
export type TaskRelationBody = z.infer<typeof TaskRelationBody>;
|
|
354
354
|
export declare const TaskCreate: z.ZodObject<{
|
|
@@ -370,32 +370,32 @@ export declare const TaskCreate: z.ZodObject<{
|
|
|
370
370
|
createBranch: z.ZodOptional<z.ZodBoolean>;
|
|
371
371
|
}, "strip", z.ZodTypeAny, {
|
|
372
372
|
title: string;
|
|
373
|
-
priority: "urgent" | "low" | "medium" | "high";
|
|
374
|
-
labelIds: string[];
|
|
375
|
-
deadline?: string | undefined;
|
|
376
|
-
spaceId?: string | undefined;
|
|
377
373
|
description?: unknown;
|
|
378
|
-
parentId?: string | undefined;
|
|
379
374
|
projectId?: string | undefined;
|
|
375
|
+
spaceId?: string | undefined;
|
|
376
|
+
parentId?: string | undefined;
|
|
380
377
|
statusId?: string | undefined;
|
|
378
|
+
priority: "high" | "low" | "medium" | "urgent";
|
|
381
379
|
assigneeId?: string | undefined;
|
|
382
380
|
assigneeTeamId?: string | undefined;
|
|
381
|
+
deadline?: string | undefined;
|
|
383
382
|
estimateHours?: number | undefined;
|
|
384
383
|
startAt?: string | undefined;
|
|
384
|
+
labelIds: string[];
|
|
385
385
|
boardOrder?: number | undefined;
|
|
386
386
|
sprintId?: string | undefined;
|
|
387
387
|
createBranch?: boolean | undefined;
|
|
388
388
|
}, {
|
|
389
389
|
title: string;
|
|
390
|
-
deadline?: string | undefined;
|
|
391
|
-
spaceId?: string | undefined;
|
|
392
390
|
description?: unknown;
|
|
393
|
-
parentId?: string | undefined;
|
|
394
391
|
projectId?: string | undefined;
|
|
392
|
+
spaceId?: string | undefined;
|
|
393
|
+
parentId?: string | undefined;
|
|
395
394
|
statusId?: string | undefined;
|
|
396
|
-
priority?: "
|
|
395
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
397
396
|
assigneeId?: string | undefined;
|
|
398
397
|
assigneeTeamId?: string | undefined;
|
|
398
|
+
deadline?: string | undefined;
|
|
399
399
|
estimateHours?: number | undefined;
|
|
400
400
|
startAt?: string | undefined;
|
|
401
401
|
labelIds?: string[] | undefined;
|
|
@@ -423,39 +423,39 @@ export declare const TaskUpdate: z.ZodObject<{
|
|
|
423
423
|
pinnedUntil: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
424
424
|
sprintId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
425
425
|
}, "strip", z.ZodTypeAny, {
|
|
426
|
-
deadline?: string | null | undefined;
|
|
427
|
-
description?: unknown;
|
|
428
|
-
parentId?: string | null | undefined;
|
|
429
426
|
title?: string | undefined;
|
|
427
|
+
description?: unknown;
|
|
430
428
|
projectId?: string | null | undefined;
|
|
429
|
+
parentId?: string | null | undefined;
|
|
431
430
|
statusId?: string | undefined;
|
|
432
|
-
priority?: "
|
|
431
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
433
432
|
assigneeId?: string | null | undefined;
|
|
434
433
|
assigneeTeamId?: string | null | undefined;
|
|
434
|
+
deadline?: string | null | undefined;
|
|
435
435
|
estimateHours?: number | null | undefined;
|
|
436
436
|
startAt?: string | null | undefined;
|
|
437
|
+
endAt?: string | null | undefined;
|
|
437
438
|
labelIds?: string[] | undefined;
|
|
438
439
|
boardOrder?: number | null | undefined;
|
|
439
|
-
sprintId?: string | null | undefined;
|
|
440
|
-
endAt?: string | null | undefined;
|
|
441
440
|
pinnedUntil?: string | null | undefined;
|
|
441
|
+
sprintId?: string | null | undefined;
|
|
442
442
|
}, {
|
|
443
|
-
deadline?: string | null | undefined;
|
|
444
|
-
description?: unknown;
|
|
445
|
-
parentId?: string | null | undefined;
|
|
446
443
|
title?: string | undefined;
|
|
444
|
+
description?: unknown;
|
|
447
445
|
projectId?: string | null | undefined;
|
|
446
|
+
parentId?: string | null | undefined;
|
|
448
447
|
statusId?: string | undefined;
|
|
449
|
-
priority?: "
|
|
448
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
450
449
|
assigneeId?: string | null | undefined;
|
|
451
450
|
assigneeTeamId?: string | null | undefined;
|
|
451
|
+
deadline?: string | null | undefined;
|
|
452
452
|
estimateHours?: number | null | undefined;
|
|
453
453
|
startAt?: string | null | undefined;
|
|
454
|
+
endAt?: string | null | undefined;
|
|
454
455
|
labelIds?: string[] | undefined;
|
|
455
456
|
boardOrder?: number | null | undefined;
|
|
456
|
-
sprintId?: string | null | undefined;
|
|
457
|
-
endAt?: string | null | undefined;
|
|
458
457
|
pinnedUntil?: string | null | undefined;
|
|
458
|
+
sprintId?: string | null | undefined;
|
|
459
459
|
}>;
|
|
460
460
|
export type TaskUpdate = z.infer<typeof TaskUpdate>;
|
|
461
461
|
export declare const HierarchyMode: z.ZodEnum<["flat", "projects", "teams_and_projects"]>;
|
|
@@ -475,27 +475,27 @@ export declare const WorkspaceUpdate: z.ZodObject<{
|
|
|
475
475
|
}, "strip", z.ZodTypeAny, {
|
|
476
476
|
name?: string | undefined;
|
|
477
477
|
slug?: string | undefined;
|
|
478
|
-
avatarUrl?: string | null | undefined;
|
|
479
|
-
taskPrefix?: string | undefined;
|
|
480
478
|
hierarchyMode?: "flat" | "projects" | "teams_and_projects" | undefined;
|
|
479
|
+
taskPrefix?: string | undefined;
|
|
480
|
+
avatarUrl?: string | null | undefined;
|
|
481
481
|
logoDarkUrl?: string | null | undefined;
|
|
482
482
|
faviconUrl?: string | null | undefined;
|
|
483
483
|
githubDeleteBranchAfterMerge?: boolean | undefined;
|
|
484
484
|
autoCreateBranchOnTask?: boolean | undefined;
|
|
485
485
|
telegramCardsEnabled?: boolean | undefined;
|
|
486
|
-
taskUnfurlLevel?: "
|
|
486
|
+
taskUnfurlLevel?: "full" | "minimal" | "off" | undefined;
|
|
487
487
|
}, {
|
|
488
488
|
name?: string | undefined;
|
|
489
489
|
slug?: string | undefined;
|
|
490
|
-
avatarUrl?: string | null | undefined;
|
|
491
|
-
taskPrefix?: string | undefined;
|
|
492
490
|
hierarchyMode?: "flat" | "projects" | "teams_and_projects" | undefined;
|
|
491
|
+
taskPrefix?: string | undefined;
|
|
492
|
+
avatarUrl?: string | null | undefined;
|
|
493
493
|
logoDarkUrl?: string | null | undefined;
|
|
494
494
|
faviconUrl?: string | null | undefined;
|
|
495
495
|
githubDeleteBranchAfterMerge?: boolean | undefined;
|
|
496
496
|
autoCreateBranchOnTask?: boolean | undefined;
|
|
497
497
|
telegramCardsEnabled?: boolean | undefined;
|
|
498
|
-
taskUnfurlLevel?: "
|
|
498
|
+
taskUnfurlLevel?: "full" | "minimal" | "off" | undefined;
|
|
499
499
|
}>;
|
|
500
500
|
export type WorkspaceUpdate = z.infer<typeof WorkspaceUpdate>;
|
|
501
501
|
export declare const ChatAttachmentInput: z.ZodObject<{
|
|
@@ -509,23 +509,23 @@ export declare const ChatAttachmentInput: z.ZodObject<{
|
|
|
509
509
|
width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
510
510
|
height: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
511
511
|
}, "strip", z.ZodTypeAny, {
|
|
512
|
+
uploadId?: string | undefined;
|
|
512
513
|
url: string;
|
|
514
|
+
thumbUrl?: string | null | undefined;
|
|
513
515
|
mimetype: string;
|
|
514
516
|
size: number;
|
|
515
517
|
fileName: string;
|
|
516
|
-
kind: "
|
|
517
|
-
uploadId?: string | undefined;
|
|
518
|
-
thumbUrl?: string | null | undefined;
|
|
518
|
+
kind: "file" | "image";
|
|
519
519
|
width?: number | null | undefined;
|
|
520
520
|
height?: number | null | undefined;
|
|
521
521
|
}, {
|
|
522
|
+
uploadId?: string | undefined;
|
|
522
523
|
url: string;
|
|
524
|
+
thumbUrl?: string | null | undefined;
|
|
523
525
|
mimetype: string;
|
|
524
526
|
size: number;
|
|
525
527
|
fileName: string;
|
|
526
|
-
kind: "
|
|
527
|
-
uploadId?: string | undefined;
|
|
528
|
-
thumbUrl?: string | null | undefined;
|
|
528
|
+
kind: "file" | "image";
|
|
529
529
|
width?: number | null | undefined;
|
|
530
530
|
height?: number | null | undefined;
|
|
531
531
|
}>;
|
|
@@ -549,23 +549,23 @@ export declare const TaskCommentCreate: z.ZodObject<{
|
|
|
549
549
|
width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
550
550
|
height: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
551
551
|
}, "strip", z.ZodTypeAny, {
|
|
552
|
+
uploadId?: string | undefined;
|
|
552
553
|
url: string;
|
|
554
|
+
thumbUrl?: string | null | undefined;
|
|
553
555
|
mimetype: string;
|
|
554
556
|
size: number;
|
|
555
557
|
fileName: string;
|
|
556
|
-
kind: "
|
|
557
|
-
uploadId?: string | undefined;
|
|
558
|
-
thumbUrl?: string | null | undefined;
|
|
558
|
+
kind: "file" | "image";
|
|
559
559
|
width?: number | null | undefined;
|
|
560
560
|
height?: number | null | undefined;
|
|
561
561
|
}, {
|
|
562
|
+
uploadId?: string | undefined;
|
|
562
563
|
url: string;
|
|
564
|
+
thumbUrl?: string | null | undefined;
|
|
563
565
|
mimetype: string;
|
|
564
566
|
size: number;
|
|
565
567
|
fileName: string;
|
|
566
|
-
kind: "
|
|
567
|
-
uploadId?: string | undefined;
|
|
568
|
-
thumbUrl?: string | null | undefined;
|
|
568
|
+
kind: "file" | "image";
|
|
569
569
|
width?: number | null | undefined;
|
|
570
570
|
height?: number | null | undefined;
|
|
571
571
|
}>, "many">>;
|
|
@@ -577,13 +577,13 @@ export declare const TaskCommentCreate: z.ZodObject<{
|
|
|
577
577
|
body?: unknown;
|
|
578
578
|
parentCommentId?: string | undefined;
|
|
579
579
|
attachments?: {
|
|
580
|
+
uploadId?: string | undefined;
|
|
580
581
|
url: string;
|
|
582
|
+
thumbUrl?: string | null | undefined;
|
|
581
583
|
mimetype: string;
|
|
582
584
|
size: number;
|
|
583
585
|
fileName: string;
|
|
584
|
-
kind: "
|
|
585
|
-
uploadId?: string | undefined;
|
|
586
|
-
thumbUrl?: string | null | undefined;
|
|
586
|
+
kind: "file" | "image";
|
|
587
587
|
width?: number | null | undefined;
|
|
588
588
|
height?: number | null | undefined;
|
|
589
589
|
}[] | undefined;
|
|
@@ -595,13 +595,13 @@ export declare const TaskCommentCreate: z.ZodObject<{
|
|
|
595
595
|
body?: unknown;
|
|
596
596
|
parentCommentId?: string | undefined;
|
|
597
597
|
attachments?: {
|
|
598
|
+
uploadId?: string | undefined;
|
|
598
599
|
url: string;
|
|
600
|
+
thumbUrl?: string | null | undefined;
|
|
599
601
|
mimetype: string;
|
|
600
602
|
size: number;
|
|
601
603
|
fileName: string;
|
|
602
|
-
kind: "
|
|
603
|
-
uploadId?: string | undefined;
|
|
604
|
-
thumbUrl?: string | null | undefined;
|
|
604
|
+
kind: "file" | "image";
|
|
605
605
|
width?: number | null | undefined;
|
|
606
606
|
height?: number | null | undefined;
|
|
607
607
|
}[] | undefined;
|
|
@@ -624,49 +624,49 @@ export declare const TaskCommentUpdate: z.ZodObject<{
|
|
|
624
624
|
width: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
625
625
|
height: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
626
626
|
}, "strip", z.ZodTypeAny, {
|
|
627
|
+
uploadId?: string | undefined;
|
|
627
628
|
url: string;
|
|
629
|
+
thumbUrl?: string | null | undefined;
|
|
628
630
|
mimetype: string;
|
|
629
631
|
size: number;
|
|
630
632
|
fileName: string;
|
|
631
|
-
kind: "
|
|
632
|
-
uploadId?: string | undefined;
|
|
633
|
-
thumbUrl?: string | null | undefined;
|
|
633
|
+
kind: "file" | "image";
|
|
634
634
|
width?: number | null | undefined;
|
|
635
635
|
height?: number | null | undefined;
|
|
636
636
|
}, {
|
|
637
|
+
uploadId?: string | undefined;
|
|
637
638
|
url: string;
|
|
639
|
+
thumbUrl?: string | null | undefined;
|
|
638
640
|
mimetype: string;
|
|
639
641
|
size: number;
|
|
640
642
|
fileName: string;
|
|
641
|
-
kind: "
|
|
642
|
-
uploadId?: string | undefined;
|
|
643
|
-
thumbUrl?: string | null | undefined;
|
|
643
|
+
kind: "file" | "image";
|
|
644
644
|
width?: number | null | undefined;
|
|
645
645
|
height?: number | null | undefined;
|
|
646
646
|
}>, "many">>;
|
|
647
647
|
}, "strip", z.ZodTypeAny, {
|
|
648
648
|
body?: unknown;
|
|
649
649
|
attachments?: {
|
|
650
|
+
uploadId?: string | undefined;
|
|
650
651
|
url: string;
|
|
652
|
+
thumbUrl?: string | null | undefined;
|
|
651
653
|
mimetype: string;
|
|
652
654
|
size: number;
|
|
653
655
|
fileName: string;
|
|
654
|
-
kind: "
|
|
655
|
-
uploadId?: string | undefined;
|
|
656
|
-
thumbUrl?: string | null | undefined;
|
|
656
|
+
kind: "file" | "image";
|
|
657
657
|
width?: number | null | undefined;
|
|
658
658
|
height?: number | null | undefined;
|
|
659
659
|
}[] | undefined;
|
|
660
660
|
}, {
|
|
661
661
|
body?: unknown;
|
|
662
662
|
attachments?: {
|
|
663
|
+
uploadId?: string | undefined;
|
|
663
664
|
url: string;
|
|
665
|
+
thumbUrl?: string | null | undefined;
|
|
664
666
|
mimetype: string;
|
|
665
667
|
size: number;
|
|
666
668
|
fileName: string;
|
|
667
|
-
kind: "
|
|
668
|
-
uploadId?: string | undefined;
|
|
669
|
-
thumbUrl?: string | null | undefined;
|
|
669
|
+
kind: "file" | "image";
|
|
670
670
|
width?: number | null | undefined;
|
|
671
671
|
height?: number | null | undefined;
|
|
672
672
|
}[] | undefined;
|
|
@@ -725,6 +725,7 @@ export declare const CallCreate: z.ZodObject<{
|
|
|
725
725
|
aiEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
726
726
|
agentTrustGuests: z.ZodOptional<z.ZodBoolean>;
|
|
727
727
|
musicEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
728
|
+
soundsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
728
729
|
voiceAssistantEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
729
730
|
timelineEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
730
731
|
recordingMode: z.ZodOptional<z.ZodEnum<["off", "audio", "video"]>>;
|
|
@@ -740,9 +741,10 @@ export declare const CallCreate: z.ZodObject<{
|
|
|
740
741
|
aiEnabled?: boolean | undefined;
|
|
741
742
|
agentTrustGuests?: boolean | undefined;
|
|
742
743
|
musicEnabled?: boolean | undefined;
|
|
744
|
+
soundsEnabled?: boolean | undefined;
|
|
743
745
|
voiceAssistantEnabled?: boolean | undefined;
|
|
744
746
|
timelineEnabled?: boolean | undefined;
|
|
745
|
-
recordingMode?: "
|
|
747
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
746
748
|
durationMinutes?: number | undefined;
|
|
747
749
|
inviteeUserIds?: string[] | undefined;
|
|
748
750
|
inviteEmails?: string[] | undefined;
|
|
@@ -755,9 +757,10 @@ export declare const CallCreate: z.ZodObject<{
|
|
|
755
757
|
aiEnabled?: boolean | undefined;
|
|
756
758
|
agentTrustGuests?: boolean | undefined;
|
|
757
759
|
musicEnabled?: boolean | undefined;
|
|
760
|
+
soundsEnabled?: boolean | undefined;
|
|
758
761
|
voiceAssistantEnabled?: boolean | undefined;
|
|
759
762
|
timelineEnabled?: boolean | undefined;
|
|
760
|
-
recordingMode?: "
|
|
763
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
761
764
|
durationMinutes?: number | undefined;
|
|
762
765
|
inviteeUserIds?: string[] | undefined;
|
|
763
766
|
inviteEmails?: string[] | undefined;
|
|
@@ -773,6 +776,7 @@ export declare const CallPatch: z.ZodObject<{
|
|
|
773
776
|
aiEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
774
777
|
agentTrustGuests: z.ZodOptional<z.ZodBoolean>;
|
|
775
778
|
musicEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
779
|
+
soundsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
776
780
|
voiceAssistantEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
777
781
|
timelineEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
778
782
|
recordingMode: z.ZodOptional<z.ZodEnum<["off", "audio", "video"]>>;
|
|
@@ -788,9 +792,10 @@ export declare const CallPatch: z.ZodObject<{
|
|
|
788
792
|
aiEnabled?: boolean | undefined;
|
|
789
793
|
agentTrustGuests?: boolean | undefined;
|
|
790
794
|
musicEnabled?: boolean | undefined;
|
|
795
|
+
soundsEnabled?: boolean | undefined;
|
|
791
796
|
voiceAssistantEnabled?: boolean | undefined;
|
|
792
797
|
timelineEnabled?: boolean | undefined;
|
|
793
|
-
recordingMode?: "
|
|
798
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
794
799
|
durationMinutes?: number | undefined;
|
|
795
800
|
inviteeUserIds?: string[] | undefined;
|
|
796
801
|
inviteEmails?: string[] | undefined;
|
|
@@ -803,9 +808,10 @@ export declare const CallPatch: z.ZodObject<{
|
|
|
803
808
|
aiEnabled?: boolean | undefined;
|
|
804
809
|
agentTrustGuests?: boolean | undefined;
|
|
805
810
|
musicEnabled?: boolean | undefined;
|
|
811
|
+
soundsEnabled?: boolean | undefined;
|
|
806
812
|
voiceAssistantEnabled?: boolean | undefined;
|
|
807
813
|
timelineEnabled?: boolean | undefined;
|
|
808
|
-
recordingMode?: "
|
|
814
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
809
815
|
durationMinutes?: number | undefined;
|
|
810
816
|
inviteeUserIds?: string[] | undefined;
|
|
811
817
|
inviteEmails?: string[] | undefined;
|
|
@@ -826,20 +832,20 @@ export declare const RoomCreate: z.ZodObject<{
|
|
|
826
832
|
commonInSpaces: z.ZodOptional<z.ZodBoolean>;
|
|
827
833
|
}, "strip", z.ZodTypeAny, {
|
|
828
834
|
name: string;
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
spaceId?: string | undefined;
|
|
835
|
+
kind: "custom" | "project" | "team";
|
|
836
|
+
visibility: "private" | "public" | "unlisted";
|
|
832
837
|
teamId?: string | undefined;
|
|
833
838
|
projectId?: string | undefined;
|
|
839
|
+
spaceId?: string | undefined;
|
|
834
840
|
memberIds?: string[] | undefined;
|
|
835
841
|
commonInSpaces?: boolean | undefined;
|
|
836
842
|
}, {
|
|
837
843
|
name: string;
|
|
838
|
-
|
|
844
|
+
kind?: "custom" | "project" | "team" | undefined;
|
|
845
|
+
visibility?: "private" | "public" | "unlisted" | undefined;
|
|
839
846
|
teamId?: string | undefined;
|
|
840
|
-
visibility?: "public" | "private" | "unlisted" | undefined;
|
|
841
847
|
projectId?: string | undefined;
|
|
842
|
-
|
|
848
|
+
spaceId?: string | undefined;
|
|
843
849
|
memberIds?: string[] | undefined;
|
|
844
850
|
commonInSpaces?: boolean | undefined;
|
|
845
851
|
}>;
|
|
@@ -855,18 +861,18 @@ export declare const RoomUpdate: z.ZodObject<{
|
|
|
855
861
|
commonInSpaces: z.ZodOptional<z.ZodBoolean>;
|
|
856
862
|
}, "strip", z.ZodTypeAny, {
|
|
857
863
|
name?: string | undefined;
|
|
864
|
+
archivedAt?: string | null | undefined;
|
|
865
|
+
visibility?: "private" | "public" | "unlisted" | undefined;
|
|
858
866
|
slug?: string | null | undefined;
|
|
859
867
|
spaceId?: string | null | undefined;
|
|
860
|
-
visibility?: "public" | "private" | "unlisted" | undefined;
|
|
861
868
|
commonInSpaces?: boolean | undefined;
|
|
862
|
-
archivedAt?: string | null | undefined;
|
|
863
869
|
}, {
|
|
864
870
|
name?: string | undefined;
|
|
871
|
+
archivedAt?: string | null | undefined;
|
|
872
|
+
visibility?: "private" | "public" | "unlisted" | undefined;
|
|
865
873
|
slug?: string | null | undefined;
|
|
866
874
|
spaceId?: string | null | undefined;
|
|
867
|
-
visibility?: "public" | "private" | "unlisted" | undefined;
|
|
868
875
|
commonInSpaces?: boolean | undefined;
|
|
869
|
-
archivedAt?: string | null | undefined;
|
|
870
876
|
}>;
|
|
871
877
|
export type RoomUpdate = z.infer<typeof RoomUpdate>;
|
|
872
878
|
export declare const RoomSettingsUpdate: z.ZodObject<{
|
|
@@ -878,21 +884,21 @@ export declare const RoomSettingsUpdate: z.ZodObject<{
|
|
|
878
884
|
guestsRequireKnock: z.ZodOptional<z.ZodBoolean>;
|
|
879
885
|
guestsCanChat: z.ZodOptional<z.ZodBoolean>;
|
|
880
886
|
}, "strip", z.ZodTypeAny, {
|
|
881
|
-
allowGuests?: boolean | undefined;
|
|
882
|
-
guestsRequireKnock?: boolean | undefined;
|
|
883
|
-
guestsCanChat?: boolean | undefined;
|
|
884
887
|
aiEnabled?: boolean | undefined;
|
|
885
888
|
musicEnabled?: boolean | undefined;
|
|
886
889
|
voiceAssistantEnabled?: boolean | undefined;
|
|
887
|
-
recordingMode?: "
|
|
888
|
-
}, {
|
|
890
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
889
891
|
allowGuests?: boolean | undefined;
|
|
890
892
|
guestsRequireKnock?: boolean | undefined;
|
|
891
893
|
guestsCanChat?: boolean | undefined;
|
|
894
|
+
}, {
|
|
892
895
|
aiEnabled?: boolean | undefined;
|
|
893
896
|
musicEnabled?: boolean | undefined;
|
|
894
897
|
voiceAssistantEnabled?: boolean | undefined;
|
|
895
|
-
recordingMode?: "
|
|
898
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
899
|
+
allowGuests?: boolean | undefined;
|
|
900
|
+
guestsRequireKnock?: boolean | undefined;
|
|
901
|
+
guestsCanChat?: boolean | undefined;
|
|
896
902
|
}>;
|
|
897
903
|
export type RoomSettingsUpdate = z.infer<typeof RoomSettingsUpdate>;
|
|
898
904
|
export declare const CallProposalKind: z.ZodEnum<["task_create", "task_update", "task_done", "meeting", "project", "comment", "absence"]>;
|
|
@@ -908,23 +914,23 @@ export declare const TaskSuggestionCreate: z.ZodObject<{
|
|
|
908
914
|
originSpeakerId: z.ZodOptional<z.ZodString>;
|
|
909
915
|
rationale: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
910
916
|
}, "strip", z.ZodTypeAny, {
|
|
911
|
-
description: string;
|
|
912
917
|
title: string;
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
originEndTs: string;
|
|
916
|
-
rationale: string;
|
|
918
|
+
description: string;
|
|
919
|
+
priority: "high" | "low" | "medium" | "urgent";
|
|
917
920
|
suggestedProjectId?: string | undefined;
|
|
918
921
|
suggestedAssigneeId?: string | undefined;
|
|
922
|
+
originStartTs: string;
|
|
923
|
+
originEndTs: string;
|
|
919
924
|
originSpeakerId?: string | undefined;
|
|
925
|
+
rationale: string;
|
|
920
926
|
}, {
|
|
921
927
|
title: string;
|
|
922
|
-
originStartTs: string;
|
|
923
|
-
originEndTs: string;
|
|
924
928
|
description?: string | undefined;
|
|
925
|
-
priority?: "
|
|
929
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
926
930
|
suggestedProjectId?: string | undefined;
|
|
927
931
|
suggestedAssigneeId?: string | undefined;
|
|
932
|
+
originStartTs: string;
|
|
933
|
+
originEndTs: string;
|
|
928
934
|
originSpeakerId?: string | undefined;
|
|
929
935
|
rationale?: string | undefined;
|
|
930
936
|
}>;
|
|
@@ -944,54 +950,54 @@ export declare const TaskSuggestionBatch: z.ZodObject<{
|
|
|
944
950
|
originSpeakerId: z.ZodOptional<z.ZodString>;
|
|
945
951
|
rationale: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
946
952
|
}, "strip", z.ZodTypeAny, {
|
|
947
|
-
description: string;
|
|
948
953
|
title: string;
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
originEndTs: string;
|
|
952
|
-
rationale: string;
|
|
954
|
+
description: string;
|
|
955
|
+
priority: "high" | "low" | "medium" | "urgent";
|
|
953
956
|
suggestedProjectId?: string | undefined;
|
|
954
957
|
suggestedAssigneeId?: string | undefined;
|
|
958
|
+
originStartTs: string;
|
|
959
|
+
originEndTs: string;
|
|
955
960
|
originSpeakerId?: string | undefined;
|
|
961
|
+
rationale: string;
|
|
956
962
|
}, {
|
|
957
963
|
title: string;
|
|
958
|
-
originStartTs: string;
|
|
959
|
-
originEndTs: string;
|
|
960
964
|
description?: string | undefined;
|
|
961
|
-
priority?: "
|
|
965
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
962
966
|
suggestedProjectId?: string | undefined;
|
|
963
967
|
suggestedAssigneeId?: string | undefined;
|
|
968
|
+
originStartTs: string;
|
|
969
|
+
originEndTs: string;
|
|
964
970
|
originSpeakerId?: string | undefined;
|
|
965
971
|
rationale?: string | undefined;
|
|
966
972
|
}>, "many">;
|
|
967
973
|
}, "strip", z.ZodTypeAny, {
|
|
968
974
|
callId: string;
|
|
975
|
+
roomId?: string | undefined;
|
|
969
976
|
suggestions: {
|
|
970
|
-
description: string;
|
|
971
977
|
title: string;
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
originEndTs: string;
|
|
975
|
-
rationale: string;
|
|
978
|
+
description: string;
|
|
979
|
+
priority: "high" | "low" | "medium" | "urgent";
|
|
976
980
|
suggestedProjectId?: string | undefined;
|
|
977
981
|
suggestedAssigneeId?: string | undefined;
|
|
982
|
+
originStartTs: string;
|
|
983
|
+
originEndTs: string;
|
|
978
984
|
originSpeakerId?: string | undefined;
|
|
985
|
+
rationale: string;
|
|
979
986
|
}[];
|
|
980
|
-
roomId?: string | undefined;
|
|
981
987
|
}, {
|
|
982
988
|
callId: string;
|
|
989
|
+
roomId?: string | undefined;
|
|
983
990
|
suggestions: {
|
|
984
991
|
title: string;
|
|
985
|
-
originStartTs: string;
|
|
986
|
-
originEndTs: string;
|
|
987
992
|
description?: string | undefined;
|
|
988
|
-
priority?: "
|
|
993
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
989
994
|
suggestedProjectId?: string | undefined;
|
|
990
995
|
suggestedAssigneeId?: string | undefined;
|
|
996
|
+
originStartTs: string;
|
|
997
|
+
originEndTs: string;
|
|
991
998
|
originSpeakerId?: string | undefined;
|
|
992
999
|
rationale?: string | undefined;
|
|
993
1000
|
}[];
|
|
994
|
-
roomId?: string | undefined;
|
|
995
1001
|
}>;
|
|
996
1002
|
export type TaskSuggestionBatch = z.infer<typeof TaskSuggestionBatch>;
|
|
997
1003
|
export declare const TaskSuggestionRejectInput: z.ZodObject<{
|
|
@@ -1018,33 +1024,33 @@ export declare const TaskSuggestionAcceptInput: z.ZodObject<{
|
|
|
1018
1024
|
speakerComment: z.ZodOptional<z.ZodUnknown>;
|
|
1019
1025
|
toNote: z.ZodOptional<z.ZodBoolean>;
|
|
1020
1026
|
}, "strip", z.ZodTypeAny, {
|
|
1021
|
-
deadline?: string | null | undefined;
|
|
1022
|
-
description?: string | null | undefined;
|
|
1023
|
-
teamId?: string | null | undefined;
|
|
1024
1027
|
title?: string | undefined;
|
|
1025
|
-
|
|
1028
|
+
description?: string | null | undefined;
|
|
1029
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1026
1030
|
statusId?: string | undefined;
|
|
1027
|
-
|
|
1031
|
+
projectId?: string | null | undefined;
|
|
1028
1032
|
assigneeId?: string | null | undefined;
|
|
1033
|
+
deadline?: string | null | undefined;
|
|
1029
1034
|
estimateHours?: number | null | undefined;
|
|
1035
|
+
teamId?: string | null | undefined;
|
|
1030
1036
|
labelIds?: string[] | undefined;
|
|
1031
|
-
comment?: unknown;
|
|
1032
1037
|
createTask?: boolean | undefined;
|
|
1038
|
+
comment?: unknown;
|
|
1033
1039
|
speakerComment?: unknown;
|
|
1034
1040
|
toNote?: boolean | undefined;
|
|
1035
1041
|
}, {
|
|
1036
|
-
deadline?: string | null | undefined;
|
|
1037
|
-
description?: string | null | undefined;
|
|
1038
|
-
teamId?: string | null | undefined;
|
|
1039
1042
|
title?: string | undefined;
|
|
1040
|
-
|
|
1043
|
+
description?: string | null | undefined;
|
|
1044
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1041
1045
|
statusId?: string | undefined;
|
|
1042
|
-
|
|
1046
|
+
projectId?: string | null | undefined;
|
|
1043
1047
|
assigneeId?: string | null | undefined;
|
|
1048
|
+
deadline?: string | null | undefined;
|
|
1044
1049
|
estimateHours?: number | null | undefined;
|
|
1050
|
+
teamId?: string | null | undefined;
|
|
1045
1051
|
labelIds?: string[] | undefined;
|
|
1046
|
-
comment?: unknown;
|
|
1047
1052
|
createTask?: boolean | undefined;
|
|
1053
|
+
comment?: unknown;
|
|
1048
1054
|
speakerComment?: unknown;
|
|
1049
1055
|
toNote?: boolean | undefined;
|
|
1050
1056
|
}>;
|
|
@@ -1079,23 +1085,20 @@ export declare const SuggestionPayloadPatch: z.ZodObject<{
|
|
|
1079
1085
|
createChannel: z.ZodOptional<z.ZodBoolean>;
|
|
1080
1086
|
taskPrefix: z.ZodOptional<z.ZodString>;
|
|
1081
1087
|
}, "strict", z.ZodTypeAny, {
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1088
|
+
meetingAt?: string | null | undefined;
|
|
1089
|
+
durationMinutes?: number | undefined;
|
|
1090
|
+
participantIds?: string[] | undefined;
|
|
1091
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1086
1092
|
startAt?: string | null | undefined;
|
|
1087
1093
|
endAt?: string | null | undefined;
|
|
1088
1094
|
body?: string | undefined;
|
|
1089
|
-
|
|
1090
|
-
meetingAt?: string | null | undefined;
|
|
1091
|
-
participantIds?: string[] | undefined;
|
|
1092
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1095
|
+
name?: string | undefined;
|
|
1093
1096
|
summary?: string | undefined;
|
|
1094
1097
|
newTitle?: string | undefined;
|
|
1095
1098
|
newTitleAppend?: string | undefined;
|
|
1096
1099
|
newDescription?: string | undefined;
|
|
1097
1100
|
newDescriptionAppend?: string | undefined;
|
|
1098
|
-
newPriority?: "
|
|
1101
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1099
1102
|
newDeadline?: string | null | undefined;
|
|
1100
1103
|
newStatusName?: string | undefined;
|
|
1101
1104
|
newAssigneeName?: string | undefined;
|
|
@@ -1107,24 +1110,24 @@ export declare const SuggestionPayloadPatch: z.ZodObject<{
|
|
|
1107
1110
|
newEstimate?: string | undefined;
|
|
1108
1111
|
updateSummary?: string | undefined;
|
|
1109
1112
|
newStatusId?: string | undefined;
|
|
1110
|
-
|
|
1111
|
-
name?: string | undefined;
|
|
1112
|
-
taskPrefix?: string | undefined;
|
|
1113
|
+
visibility?: "private" | "public" | undefined;
|
|
1113
1114
|
createChannel?: boolean | undefined;
|
|
1114
|
-
|
|
1115
|
+
taskPrefix?: string | undefined;
|
|
1116
|
+
}, {
|
|
1117
|
+
meetingAt?: string | null | undefined;
|
|
1118
|
+
durationMinutes?: number | undefined;
|
|
1119
|
+
participantIds?: string[] | undefined;
|
|
1120
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1115
1121
|
startAt?: string | null | undefined;
|
|
1116
1122
|
endAt?: string | null | undefined;
|
|
1117
1123
|
body?: string | undefined;
|
|
1118
|
-
|
|
1119
|
-
meetingAt?: string | null | undefined;
|
|
1120
|
-
participantIds?: string[] | undefined;
|
|
1121
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1124
|
+
name?: string | undefined;
|
|
1122
1125
|
summary?: string | undefined;
|
|
1123
1126
|
newTitle?: string | undefined;
|
|
1124
1127
|
newTitleAppend?: string | undefined;
|
|
1125
1128
|
newDescription?: string | undefined;
|
|
1126
1129
|
newDescriptionAppend?: string | undefined;
|
|
1127
|
-
newPriority?: "
|
|
1130
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1128
1131
|
newDeadline?: string | null | undefined;
|
|
1129
1132
|
newStatusName?: string | undefined;
|
|
1130
1133
|
newAssigneeName?: string | undefined;
|
|
@@ -1136,6 +1139,9 @@ export declare const SuggestionPayloadPatch: z.ZodObject<{
|
|
|
1136
1139
|
newEstimate?: string | undefined;
|
|
1137
1140
|
updateSummary?: string | undefined;
|
|
1138
1141
|
newStatusId?: string | undefined;
|
|
1142
|
+
visibility?: "private" | "public" | undefined;
|
|
1143
|
+
createChannel?: boolean | undefined;
|
|
1144
|
+
taskPrefix?: string | undefined;
|
|
1139
1145
|
}>;
|
|
1140
1146
|
export type SuggestionPayloadPatch = z.infer<typeof SuggestionPayloadPatch>;
|
|
1141
1147
|
export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
@@ -1180,23 +1186,20 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1180
1186
|
createChannel: z.ZodOptional<z.ZodBoolean>;
|
|
1181
1187
|
taskPrefix: z.ZodOptional<z.ZodString>;
|
|
1182
1188
|
}, "strict", z.ZodTypeAny, {
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1189
|
+
meetingAt?: string | null | undefined;
|
|
1190
|
+
durationMinutes?: number | undefined;
|
|
1191
|
+
participantIds?: string[] | undefined;
|
|
1192
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1187
1193
|
startAt?: string | null | undefined;
|
|
1188
1194
|
endAt?: string | null | undefined;
|
|
1189
1195
|
body?: string | undefined;
|
|
1190
|
-
|
|
1191
|
-
meetingAt?: string | null | undefined;
|
|
1192
|
-
participantIds?: string[] | undefined;
|
|
1193
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1196
|
+
name?: string | undefined;
|
|
1194
1197
|
summary?: string | undefined;
|
|
1195
1198
|
newTitle?: string | undefined;
|
|
1196
1199
|
newTitleAppend?: string | undefined;
|
|
1197
1200
|
newDescription?: string | undefined;
|
|
1198
1201
|
newDescriptionAppend?: string | undefined;
|
|
1199
|
-
newPriority?: "
|
|
1202
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1200
1203
|
newDeadline?: string | null | undefined;
|
|
1201
1204
|
newStatusName?: string | undefined;
|
|
1202
1205
|
newAssigneeName?: string | undefined;
|
|
@@ -1208,24 +1211,24 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1208
1211
|
newEstimate?: string | undefined;
|
|
1209
1212
|
updateSummary?: string | undefined;
|
|
1210
1213
|
newStatusId?: string | undefined;
|
|
1211
|
-
|
|
1212
|
-
name?: string | undefined;
|
|
1213
|
-
taskPrefix?: string | undefined;
|
|
1214
|
+
visibility?: "private" | "public" | undefined;
|
|
1214
1215
|
createChannel?: boolean | undefined;
|
|
1215
|
-
|
|
1216
|
+
taskPrefix?: string | undefined;
|
|
1217
|
+
}, {
|
|
1218
|
+
meetingAt?: string | null | undefined;
|
|
1219
|
+
durationMinutes?: number | undefined;
|
|
1220
|
+
participantIds?: string[] | undefined;
|
|
1221
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1216
1222
|
startAt?: string | null | undefined;
|
|
1217
1223
|
endAt?: string | null | undefined;
|
|
1218
1224
|
body?: string | undefined;
|
|
1219
|
-
|
|
1220
|
-
meetingAt?: string | null | undefined;
|
|
1221
|
-
participantIds?: string[] | undefined;
|
|
1222
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1225
|
+
name?: string | undefined;
|
|
1223
1226
|
summary?: string | undefined;
|
|
1224
1227
|
newTitle?: string | undefined;
|
|
1225
1228
|
newTitleAppend?: string | undefined;
|
|
1226
1229
|
newDescription?: string | undefined;
|
|
1227
1230
|
newDescriptionAppend?: string | undefined;
|
|
1228
|
-
newPriority?: "
|
|
1231
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1229
1232
|
newDeadline?: string | null | undefined;
|
|
1230
1233
|
newStatusName?: string | undefined;
|
|
1231
1234
|
newAssigneeName?: string | undefined;
|
|
@@ -1237,38 +1240,38 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1237
1240
|
newEstimate?: string | undefined;
|
|
1238
1241
|
updateSummary?: string | undefined;
|
|
1239
1242
|
newStatusId?: string | undefined;
|
|
1243
|
+
visibility?: "private" | "public" | undefined;
|
|
1244
|
+
createChannel?: boolean | undefined;
|
|
1245
|
+
taskPrefix?: string | undefined;
|
|
1240
1246
|
}>>;
|
|
1241
1247
|
candidateExistingTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1242
1248
|
}, "strip", z.ZodTypeAny, {
|
|
1243
|
-
deadline?: string | null | undefined;
|
|
1244
|
-
description?: string | null | undefined;
|
|
1245
|
-
teamId?: string | null | undefined;
|
|
1246
1249
|
title?: string | undefined;
|
|
1250
|
+
description?: string | null | undefined;
|
|
1251
|
+
descriptionDoc?: unknown;
|
|
1252
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1247
1253
|
projectId?: string | null | undefined;
|
|
1248
|
-
statusId?: string | null | undefined;
|
|
1249
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1250
1254
|
assigneeId?: string | null | undefined;
|
|
1255
|
+
deadline?: string | null | undefined;
|
|
1251
1256
|
estimateHours?: number | null | undefined;
|
|
1257
|
+
statusId?: string | null | undefined;
|
|
1258
|
+
teamId?: string | null | undefined;
|
|
1252
1259
|
labelIds?: string[] | undefined;
|
|
1253
|
-
descriptionDoc?: unknown;
|
|
1254
1260
|
payload?: {
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1261
|
+
meetingAt?: string | null | undefined;
|
|
1262
|
+
durationMinutes?: number | undefined;
|
|
1263
|
+
participantIds?: string[] | undefined;
|
|
1264
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1259
1265
|
startAt?: string | null | undefined;
|
|
1260
1266
|
endAt?: string | null | undefined;
|
|
1261
1267
|
body?: string | undefined;
|
|
1262
|
-
|
|
1263
|
-
meetingAt?: string | null | undefined;
|
|
1264
|
-
participantIds?: string[] | undefined;
|
|
1265
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1268
|
+
name?: string | undefined;
|
|
1266
1269
|
summary?: string | undefined;
|
|
1267
1270
|
newTitle?: string | undefined;
|
|
1268
1271
|
newTitleAppend?: string | undefined;
|
|
1269
1272
|
newDescription?: string | undefined;
|
|
1270
1273
|
newDescriptionAppend?: string | undefined;
|
|
1271
|
-
newPriority?: "
|
|
1274
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1272
1275
|
newDeadline?: string | null | undefined;
|
|
1273
1276
|
newStatusName?: string | undefined;
|
|
1274
1277
|
newAssigneeName?: string | undefined;
|
|
@@ -1280,38 +1283,38 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1280
1283
|
newEstimate?: string | undefined;
|
|
1281
1284
|
updateSummary?: string | undefined;
|
|
1282
1285
|
newStatusId?: string | undefined;
|
|
1286
|
+
visibility?: "private" | "public" | undefined;
|
|
1287
|
+
createChannel?: boolean | undefined;
|
|
1288
|
+
taskPrefix?: string | undefined;
|
|
1283
1289
|
} | undefined;
|
|
1284
1290
|
candidateExistingTaskId?: string | null | undefined;
|
|
1285
1291
|
}, {
|
|
1286
|
-
deadline?: string | null | undefined;
|
|
1287
|
-
description?: string | null | undefined;
|
|
1288
|
-
teamId?: string | null | undefined;
|
|
1289
1292
|
title?: string | undefined;
|
|
1293
|
+
description?: string | null | undefined;
|
|
1294
|
+
descriptionDoc?: unknown;
|
|
1295
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1290
1296
|
projectId?: string | null | undefined;
|
|
1291
|
-
statusId?: string | null | undefined;
|
|
1292
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1293
1297
|
assigneeId?: string | null | undefined;
|
|
1298
|
+
deadline?: string | null | undefined;
|
|
1294
1299
|
estimateHours?: number | null | undefined;
|
|
1300
|
+
statusId?: string | null | undefined;
|
|
1301
|
+
teamId?: string | null | undefined;
|
|
1295
1302
|
labelIds?: string[] | undefined;
|
|
1296
|
-
descriptionDoc?: unknown;
|
|
1297
1303
|
payload?: {
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1304
|
+
meetingAt?: string | null | undefined;
|
|
1305
|
+
durationMinutes?: number | undefined;
|
|
1306
|
+
participantIds?: string[] | undefined;
|
|
1307
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1302
1308
|
startAt?: string | null | undefined;
|
|
1303
1309
|
endAt?: string | null | undefined;
|
|
1304
1310
|
body?: string | undefined;
|
|
1305
|
-
|
|
1306
|
-
meetingAt?: string | null | undefined;
|
|
1307
|
-
participantIds?: string[] | undefined;
|
|
1308
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1311
|
+
name?: string | undefined;
|
|
1309
1312
|
summary?: string | undefined;
|
|
1310
1313
|
newTitle?: string | undefined;
|
|
1311
1314
|
newTitleAppend?: string | undefined;
|
|
1312
1315
|
newDescription?: string | undefined;
|
|
1313
1316
|
newDescriptionAppend?: string | undefined;
|
|
1314
|
-
newPriority?: "
|
|
1317
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1315
1318
|
newDeadline?: string | null | undefined;
|
|
1316
1319
|
newStatusName?: string | undefined;
|
|
1317
1320
|
newAssigneeName?: string | undefined;
|
|
@@ -1323,6 +1326,9 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1323
1326
|
newEstimate?: string | undefined;
|
|
1324
1327
|
updateSummary?: string | undefined;
|
|
1325
1328
|
newStatusId?: string | undefined;
|
|
1329
|
+
visibility?: "private" | "public" | undefined;
|
|
1330
|
+
createChannel?: boolean | undefined;
|
|
1331
|
+
taskPrefix?: string | undefined;
|
|
1326
1332
|
} | undefined;
|
|
1327
1333
|
candidateExistingTaskId?: string | null | undefined;
|
|
1328
1334
|
}>;
|
|
@@ -1350,54 +1356,54 @@ export declare const EventCreate: z.ZodObject<{
|
|
|
1350
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1351
1357
|
title: string;
|
|
1352
1358
|
description?: string | undefined;
|
|
1353
|
-
priority?: "
|
|
1359
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1354
1360
|
assigneeId?: string | null | undefined;
|
|
1355
1361
|
}, {
|
|
1356
1362
|
title: string;
|
|
1357
1363
|
description?: string | undefined;
|
|
1358
|
-
priority?: "
|
|
1364
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1359
1365
|
assigneeId?: string | null | undefined;
|
|
1360
1366
|
}>>;
|
|
1361
1367
|
autoCreateCall: z.ZodOptional<z.ZodBoolean>;
|
|
1362
1368
|
forUserId: z.ZodOptional<z.ZodString>;
|
|
1363
1369
|
}, "strip", z.ZodTypeAny, {
|
|
1364
|
-
type: "
|
|
1370
|
+
type: "absent" | "block" | "external" | "meeting" | "task";
|
|
1365
1371
|
title: string;
|
|
1372
|
+
description?: string | undefined;
|
|
1366
1373
|
startAt: string;
|
|
1367
1374
|
endAt: string;
|
|
1368
|
-
description?: string | undefined;
|
|
1369
|
-
teamId?: string | null | undefined;
|
|
1370
|
-
visibility?: "team" | "personal" | "workspace" | undefined;
|
|
1371
|
-
projectId?: string | null | undefined;
|
|
1372
|
-
participantIds?: string[] | undefined;
|
|
1373
1375
|
allDay?: boolean | undefined;
|
|
1374
1376
|
recurrenceRule?: string | null | undefined;
|
|
1375
1377
|
recurrenceUntil?: string | null | undefined;
|
|
1378
|
+
visibility?: "personal" | "team" | "workspace" | undefined;
|
|
1379
|
+
teamId?: string | null | undefined;
|
|
1380
|
+
projectId?: string | null | undefined;
|
|
1381
|
+
participantIds?: string[] | undefined;
|
|
1376
1382
|
taskTemplate?: {
|
|
1377
1383
|
title: string;
|
|
1378
1384
|
description?: string | undefined;
|
|
1379
|
-
priority?: "
|
|
1385
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1380
1386
|
assigneeId?: string | null | undefined;
|
|
1381
1387
|
} | undefined;
|
|
1382
1388
|
autoCreateCall?: boolean | undefined;
|
|
1383
1389
|
forUserId?: string | undefined;
|
|
1384
1390
|
}, {
|
|
1385
|
-
type: "
|
|
1391
|
+
type: "absent" | "block" | "external" | "meeting" | "task";
|
|
1386
1392
|
title: string;
|
|
1393
|
+
description?: string | undefined;
|
|
1387
1394
|
startAt: string;
|
|
1388
1395
|
endAt: string;
|
|
1389
|
-
description?: string | undefined;
|
|
1390
|
-
teamId?: string | null | undefined;
|
|
1391
|
-
visibility?: "team" | "personal" | "workspace" | undefined;
|
|
1392
|
-
projectId?: string | null | undefined;
|
|
1393
|
-
participantIds?: string[] | undefined;
|
|
1394
1396
|
allDay?: boolean | undefined;
|
|
1395
1397
|
recurrenceRule?: string | null | undefined;
|
|
1396
1398
|
recurrenceUntil?: string | null | undefined;
|
|
1399
|
+
visibility?: "personal" | "team" | "workspace" | undefined;
|
|
1400
|
+
teamId?: string | null | undefined;
|
|
1401
|
+
projectId?: string | null | undefined;
|
|
1402
|
+
participantIds?: string[] | undefined;
|
|
1397
1403
|
taskTemplate?: {
|
|
1398
1404
|
title: string;
|
|
1399
1405
|
description?: string | undefined;
|
|
1400
|
-
priority?: "
|
|
1406
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1401
1407
|
assigneeId?: string | null | undefined;
|
|
1402
1408
|
} | undefined;
|
|
1403
1409
|
autoCreateCall?: boolean | undefined;
|
|
@@ -1426,44 +1432,44 @@ export declare const EventPatch: z.ZodObject<Omit<{
|
|
|
1426
1432
|
}, "strip", z.ZodTypeAny, {
|
|
1427
1433
|
title: string;
|
|
1428
1434
|
description?: string | undefined;
|
|
1429
|
-
priority?: "
|
|
1435
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1430
1436
|
assigneeId?: string | null | undefined;
|
|
1431
1437
|
}, {
|
|
1432
1438
|
title: string;
|
|
1433
1439
|
description?: string | undefined;
|
|
1434
|
-
priority?: "
|
|
1440
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1435
1441
|
assigneeId?: string | null | undefined;
|
|
1436
1442
|
}>>>;
|
|
1437
1443
|
autoCreateCall: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1438
1444
|
forUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1439
1445
|
}, "taskTemplate">, "strip", z.ZodTypeAny, {
|
|
1440
|
-
type?: "
|
|
1441
|
-
description?: string | undefined;
|
|
1442
|
-
teamId?: string | null | undefined;
|
|
1443
|
-
visibility?: "team" | "personal" | "workspace" | undefined;
|
|
1446
|
+
type?: "absent" | "block" | "external" | "meeting" | "task" | undefined;
|
|
1444
1447
|
title?: string | undefined;
|
|
1445
|
-
|
|
1448
|
+
description?: string | undefined;
|
|
1446
1449
|
startAt?: string | undefined;
|
|
1447
1450
|
endAt?: string | undefined;
|
|
1448
|
-
participantIds?: string[] | undefined;
|
|
1449
1451
|
allDay?: boolean | undefined;
|
|
1450
1452
|
recurrenceRule?: string | null | undefined;
|
|
1451
1453
|
recurrenceUntil?: string | null | undefined;
|
|
1454
|
+
visibility?: "personal" | "team" | "workspace" | undefined;
|
|
1455
|
+
teamId?: string | null | undefined;
|
|
1456
|
+
projectId?: string | null | undefined;
|
|
1457
|
+
participantIds?: string[] | undefined;
|
|
1452
1458
|
autoCreateCall?: boolean | undefined;
|
|
1453
1459
|
forUserId?: string | undefined;
|
|
1454
1460
|
}, {
|
|
1455
|
-
type?: "
|
|
1456
|
-
description?: string | undefined;
|
|
1457
|
-
teamId?: string | null | undefined;
|
|
1458
|
-
visibility?: "team" | "personal" | "workspace" | undefined;
|
|
1461
|
+
type?: "absent" | "block" | "external" | "meeting" | "task" | undefined;
|
|
1459
1462
|
title?: string | undefined;
|
|
1460
|
-
|
|
1463
|
+
description?: string | undefined;
|
|
1461
1464
|
startAt?: string | undefined;
|
|
1462
1465
|
endAt?: string | undefined;
|
|
1463
|
-
participantIds?: string[] | undefined;
|
|
1464
1466
|
allDay?: boolean | undefined;
|
|
1465
1467
|
recurrenceRule?: string | null | undefined;
|
|
1466
1468
|
recurrenceUntil?: string | null | undefined;
|
|
1469
|
+
visibility?: "personal" | "team" | "workspace" | undefined;
|
|
1470
|
+
teamId?: string | null | undefined;
|
|
1471
|
+
projectId?: string | null | undefined;
|
|
1472
|
+
participantIds?: string[] | undefined;
|
|
1467
1473
|
autoCreateCall?: boolean | undefined;
|
|
1468
1474
|
forUserId?: string | undefined;
|
|
1469
1475
|
}>;
|
|
@@ -1475,17 +1481,17 @@ export declare const OccurrencePatch: z.ZodObject<{
|
|
|
1475
1481
|
description: z.ZodOptional<z.ZodString>;
|
|
1476
1482
|
cancelled: z.ZodOptional<z.ZodBoolean>;
|
|
1477
1483
|
}, "strip", z.ZodTypeAny, {
|
|
1478
|
-
cancelled?: boolean | undefined;
|
|
1479
|
-
description?: string | undefined;
|
|
1480
|
-
title?: string | undefined;
|
|
1481
1484
|
startAt?: string | undefined;
|
|
1482
1485
|
endAt?: string | undefined;
|
|
1483
|
-
}, {
|
|
1484
|
-
cancelled?: boolean | undefined;
|
|
1485
|
-
description?: string | undefined;
|
|
1486
1486
|
title?: string | undefined;
|
|
1487
|
+
description?: string | undefined;
|
|
1488
|
+
cancelled?: boolean | undefined;
|
|
1489
|
+
}, {
|
|
1487
1490
|
startAt?: string | undefined;
|
|
1488
1491
|
endAt?: string | undefined;
|
|
1492
|
+
title?: string | undefined;
|
|
1493
|
+
description?: string | undefined;
|
|
1494
|
+
cancelled?: boolean | undefined;
|
|
1489
1495
|
}>;
|
|
1490
1496
|
export type OccurrencePatch = z.infer<typeof OccurrencePatch>;
|
|
1491
1497
|
export declare const BoardFilters: z.ZodObject<{
|
|
@@ -1507,13 +1513,13 @@ export declare const ColumnOverride: z.ZodObject<{
|
|
|
1507
1513
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1508
1514
|
icon: z.ZodOptional<z.ZodNullable<z.ZodEnum<["circle", "circle-dashed", "circle-dot", "circle-half", "circle-check", "circle-x", "circle-plus", "clock", "timer", "hourglass", "play", "pause", "package", "inbox", "archive", "arrow-right", "wrench", "eye", "flask-conical", "check", "x", "ban", "bug", "code", "search", "target", "lightbulb", "zap", "rocket", "flag"]>>>;
|
|
1509
1515
|
}, "strict", z.ZodTypeAny, {
|
|
1510
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1511
|
-
color?: string | null | undefined;
|
|
1512
1516
|
alias?: string | null | undefined;
|
|
1513
|
-
}, {
|
|
1514
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1515
1517
|
color?: string | null | undefined;
|
|
1518
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1519
|
+
}, {
|
|
1516
1520
|
alias?: string | null | undefined;
|
|
1521
|
+
color?: string | null | undefined;
|
|
1522
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1517
1523
|
}>;
|
|
1518
1524
|
export type ColumnOverride = z.infer<typeof ColumnOverride>;
|
|
1519
1525
|
export declare const ColumnOverrides: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1521,13 +1527,13 @@ export declare const ColumnOverrides: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
1521
1527
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1522
1528
|
icon: z.ZodOptional<z.ZodNullable<z.ZodEnum<["circle", "circle-dashed", "circle-dot", "circle-half", "circle-check", "circle-x", "circle-plus", "clock", "timer", "hourglass", "play", "pause", "package", "inbox", "archive", "arrow-right", "wrench", "eye", "flask-conical", "check", "x", "ban", "bug", "code", "search", "target", "lightbulb", "zap", "rocket", "flag"]>>>;
|
|
1523
1529
|
}, "strict", z.ZodTypeAny, {
|
|
1524
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1525
|
-
color?: string | null | undefined;
|
|
1526
1530
|
alias?: string | null | undefined;
|
|
1527
|
-
}, {
|
|
1528
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1529
1531
|
color?: string | null | undefined;
|
|
1532
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1533
|
+
}, {
|
|
1530
1534
|
alias?: string | null | undefined;
|
|
1535
|
+
color?: string | null | undefined;
|
|
1536
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1531
1537
|
}>>;
|
|
1532
1538
|
export type ColumnOverrides = z.infer<typeof ColumnOverrides>;
|
|
1533
1539
|
export declare const BoardCreate: z.ZodObject<{
|
|
@@ -1542,13 +1548,13 @@ export declare const BoardCreate: z.ZodObject<{
|
|
|
1542
1548
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1543
1549
|
icon: z.ZodOptional<z.ZodNullable<z.ZodEnum<["circle", "circle-dashed", "circle-dot", "circle-half", "circle-check", "circle-x", "circle-plus", "clock", "timer", "hourglass", "play", "pause", "package", "inbox", "archive", "arrow-right", "wrench", "eye", "flask-conical", "check", "x", "ban", "bug", "code", "search", "target", "lightbulb", "zap", "rocket", "flag"]>>>;
|
|
1544
1550
|
}, "strict", z.ZodTypeAny, {
|
|
1545
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1546
|
-
color?: string | null | undefined;
|
|
1547
1551
|
alias?: string | null | undefined;
|
|
1548
|
-
}, {
|
|
1549
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1550
1552
|
color?: string | null | undefined;
|
|
1553
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1554
|
+
}, {
|
|
1551
1555
|
alias?: string | null | undefined;
|
|
1556
|
+
color?: string | null | undefined;
|
|
1557
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1552
1558
|
}>>>;
|
|
1553
1559
|
copyFromBoardId: z.ZodOptional<z.ZodString>;
|
|
1554
1560
|
groupBy: z.ZodOptional<z.ZodEnum<["none", "assignee"]>>;
|
|
@@ -1569,18 +1575,18 @@ export declare const BoardCreate: z.ZodObject<{
|
|
|
1569
1575
|
sprintsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1570
1576
|
}, "strip", z.ZodTypeAny, {
|
|
1571
1577
|
name: string;
|
|
1572
|
-
projectIds: string[];
|
|
1573
1578
|
slug?: string | undefined;
|
|
1574
1579
|
spaceId?: string | null | undefined;
|
|
1580
|
+
projectIds: string[];
|
|
1575
1581
|
includeSubprojects?: boolean | undefined;
|
|
1576
1582
|
columns?: string[] | undefined;
|
|
1577
1583
|
columnOverrides?: Record<string, {
|
|
1578
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1579
|
-
color?: string | null | undefined;
|
|
1580
1584
|
alias?: string | null | undefined;
|
|
1585
|
+
color?: string | null | undefined;
|
|
1586
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1581
1587
|
}> | undefined;
|
|
1582
1588
|
copyFromBoardId?: string | undefined;
|
|
1583
|
-
groupBy?: "
|
|
1589
|
+
groupBy?: "assignee" | "none" | undefined;
|
|
1584
1590
|
filters?: {
|
|
1585
1591
|
assigneeFilter?: string[] | undefined;
|
|
1586
1592
|
priorityFilter?: string[] | undefined;
|
|
@@ -1590,18 +1596,18 @@ export declare const BoardCreate: z.ZodObject<{
|
|
|
1590
1596
|
sprintsEnabled?: boolean | undefined;
|
|
1591
1597
|
}, {
|
|
1592
1598
|
name: string;
|
|
1593
|
-
projectIds: string[];
|
|
1594
1599
|
slug?: string | undefined;
|
|
1595
1600
|
spaceId?: string | null | undefined;
|
|
1601
|
+
projectIds: string[];
|
|
1596
1602
|
includeSubprojects?: boolean | undefined;
|
|
1597
1603
|
columns?: string[] | undefined;
|
|
1598
1604
|
columnOverrides?: Record<string, {
|
|
1599
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1600
|
-
color?: string | null | undefined;
|
|
1601
1605
|
alias?: string | null | undefined;
|
|
1606
|
+
color?: string | null | undefined;
|
|
1607
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1602
1608
|
}> | undefined;
|
|
1603
1609
|
copyFromBoardId?: string | undefined;
|
|
1604
|
-
groupBy?: "
|
|
1610
|
+
groupBy?: "assignee" | "none" | undefined;
|
|
1605
1611
|
filters?: {
|
|
1606
1612
|
assigneeFilter?: string[] | undefined;
|
|
1607
1613
|
priorityFilter?: string[] | undefined;
|
|
@@ -1623,13 +1629,13 @@ export declare const BoardUpdate: z.ZodObject<{
|
|
|
1623
1629
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1624
1630
|
icon: z.ZodOptional<z.ZodNullable<z.ZodEnum<["circle", "circle-dashed", "circle-dot", "circle-half", "circle-check", "circle-x", "circle-plus", "clock", "timer", "hourglass", "play", "pause", "package", "inbox", "archive", "arrow-right", "wrench", "eye", "flask-conical", "check", "x", "ban", "bug", "code", "search", "target", "lightbulb", "zap", "rocket", "flag"]>>>;
|
|
1625
1631
|
}, "strict", z.ZodTypeAny, {
|
|
1626
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1627
|
-
color?: string | null | undefined;
|
|
1628
1632
|
alias?: string | null | undefined;
|
|
1629
|
-
}, {
|
|
1630
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1631
1633
|
color?: string | null | undefined;
|
|
1634
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1635
|
+
}, {
|
|
1632
1636
|
alias?: string | null | undefined;
|
|
1637
|
+
color?: string | null | undefined;
|
|
1638
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1633
1639
|
}>>>;
|
|
1634
1640
|
groupBy: z.ZodOptional<z.ZodEnum<["none", "assignee"]>>;
|
|
1635
1641
|
filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1655,11 +1661,11 @@ export declare const BoardUpdate: z.ZodObject<{
|
|
|
1655
1661
|
includeSubprojects?: boolean | undefined;
|
|
1656
1662
|
columns?: string[] | undefined;
|
|
1657
1663
|
columnOverrides?: Record<string, {
|
|
1658
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1659
|
-
color?: string | null | undefined;
|
|
1660
1664
|
alias?: string | null | undefined;
|
|
1665
|
+
color?: string | null | undefined;
|
|
1666
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1661
1667
|
}> | undefined;
|
|
1662
|
-
groupBy?: "
|
|
1668
|
+
groupBy?: "assignee" | "none" | undefined;
|
|
1663
1669
|
filters?: {
|
|
1664
1670
|
assigneeFilter?: string[] | undefined;
|
|
1665
1671
|
priorityFilter?: string[] | undefined;
|
|
@@ -1675,11 +1681,11 @@ export declare const BoardUpdate: z.ZodObject<{
|
|
|
1675
1681
|
includeSubprojects?: boolean | undefined;
|
|
1676
1682
|
columns?: string[] | undefined;
|
|
1677
1683
|
columnOverrides?: Record<string, {
|
|
1678
|
-
icon?: "code" | "circle" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-check" | "circle-x" | "circle-plus" | "clock" | "timer" | "hourglass" | "play" | "pause" | "package" | "inbox" | "archive" | "arrow-right" | "wrench" | "eye" | "flask-conical" | "check" | "x" | "ban" | "bug" | "search" | "target" | "lightbulb" | "zap" | "rocket" | "flag" | null | undefined;
|
|
1679
|
-
color?: string | null | undefined;
|
|
1680
1684
|
alias?: string | null | undefined;
|
|
1685
|
+
color?: string | null | undefined;
|
|
1686
|
+
icon?: "archive" | "arrow-right" | "ban" | "bug" | "check" | "circle" | "circle-check" | "circle-dashed" | "circle-dot" | "circle-half" | "circle-plus" | "circle-x" | "clock" | "code" | "eye" | "flag" | "flask-conical" | "hourglass" | "inbox" | "lightbulb" | "package" | "pause" | "play" | "rocket" | "search" | "target" | "timer" | "wrench" | "x" | "zap" | null | undefined;
|
|
1681
1687
|
}> | undefined;
|
|
1682
|
-
groupBy?: "
|
|
1688
|
+
groupBy?: "assignee" | "none" | undefined;
|
|
1683
1689
|
filters?: {
|
|
1684
1690
|
assigneeFilter?: string[] | undefined;
|
|
1685
1691
|
priorityFilter?: string[] | undefined;
|
|
@@ -1726,9 +1732,9 @@ export type SprintUpdate = z.infer<typeof SprintUpdate>;
|
|
|
1726
1732
|
export declare const SprintComplete: z.ZodObject<{
|
|
1727
1733
|
carryTo: z.ZodEnum<["next", "new", "backlog"]>;
|
|
1728
1734
|
}, "strict", z.ZodTypeAny, {
|
|
1729
|
-
carryTo: "backlog" | "
|
|
1735
|
+
carryTo: "backlog" | "new" | "next";
|
|
1730
1736
|
}, {
|
|
1731
|
-
carryTo: "backlog" | "
|
|
1737
|
+
carryTo: "backlog" | "new" | "next";
|
|
1732
1738
|
}>;
|
|
1733
1739
|
export type SprintComplete = z.infer<typeof SprintComplete>;
|
|
1734
1740
|
export declare const CompositionBulk: z.ZodEffects<z.ZodObject<{
|
|
@@ -1738,24 +1744,24 @@ export declare const CompositionBulk: z.ZodEffects<z.ZodObject<{
|
|
|
1738
1744
|
spaceId: z.ZodOptional<z.ZodString>;
|
|
1739
1745
|
}, "strict", z.ZodTypeAny, {
|
|
1740
1746
|
userIds: string[];
|
|
1741
|
-
action: "
|
|
1742
|
-
spaceId?: string | undefined;
|
|
1747
|
+
action: "space.add" | "space.remove" | "team.add" | "team.remove" | "team.setLead" | "team.unsetLead";
|
|
1743
1748
|
teamId?: string | undefined;
|
|
1749
|
+
spaceId?: string | undefined;
|
|
1744
1750
|
}, {
|
|
1745
1751
|
userIds: string[];
|
|
1746
|
-
action: "
|
|
1747
|
-
spaceId?: string | undefined;
|
|
1752
|
+
action: "space.add" | "space.remove" | "team.add" | "team.remove" | "team.setLead" | "team.unsetLead";
|
|
1748
1753
|
teamId?: string | undefined;
|
|
1754
|
+
spaceId?: string | undefined;
|
|
1749
1755
|
}>, {
|
|
1750
1756
|
userIds: string[];
|
|
1751
|
-
action: "
|
|
1752
|
-
spaceId?: string | undefined;
|
|
1757
|
+
action: "space.add" | "space.remove" | "team.add" | "team.remove" | "team.setLead" | "team.unsetLead";
|
|
1753
1758
|
teamId?: string | undefined;
|
|
1759
|
+
spaceId?: string | undefined;
|
|
1754
1760
|
}, {
|
|
1755
1761
|
userIds: string[];
|
|
1756
|
-
action: "
|
|
1757
|
-
spaceId?: string | undefined;
|
|
1762
|
+
action: "space.add" | "space.remove" | "team.add" | "team.remove" | "team.setLead" | "team.unsetLead";
|
|
1758
1763
|
teamId?: string | undefined;
|
|
1764
|
+
spaceId?: string | undefined;
|
|
1759
1765
|
}>;
|
|
1760
1766
|
export type CompositionBulk = z.infer<typeof CompositionBulk>;
|
|
1761
1767
|
export declare const BulkTaskUpdate: z.ZodObject<{
|
|
@@ -1768,34 +1774,34 @@ export declare const BulkTaskUpdate: z.ZodObject<{
|
|
|
1768
1774
|
priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "urgent"]>>;
|
|
1769
1775
|
}, "strict", z.ZodTypeAny, {
|
|
1770
1776
|
projectId?: string | null | undefined;
|
|
1777
|
+
sprintId?: string | null | undefined;
|
|
1771
1778
|
statusId?: string | undefined;
|
|
1772
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1773
1779
|
assigneeId?: string | null | undefined;
|
|
1774
|
-
|
|
1780
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1775
1781
|
}, {
|
|
1776
1782
|
projectId?: string | null | undefined;
|
|
1783
|
+
sprintId?: string | null | undefined;
|
|
1777
1784
|
statusId?: string | undefined;
|
|
1778
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1779
1785
|
assigneeId?: string | null | undefined;
|
|
1780
|
-
|
|
1786
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1781
1787
|
}>;
|
|
1782
1788
|
}, "strict", z.ZodTypeAny, {
|
|
1783
1789
|
taskIds: string[];
|
|
1784
1790
|
patch: {
|
|
1785
1791
|
projectId?: string | null | undefined;
|
|
1792
|
+
sprintId?: string | null | undefined;
|
|
1786
1793
|
statusId?: string | undefined;
|
|
1787
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1788
1794
|
assigneeId?: string | null | undefined;
|
|
1789
|
-
|
|
1795
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1790
1796
|
};
|
|
1791
1797
|
}, {
|
|
1792
1798
|
taskIds: string[];
|
|
1793
1799
|
patch: {
|
|
1794
1800
|
projectId?: string | null | undefined;
|
|
1801
|
+
sprintId?: string | null | undefined;
|
|
1795
1802
|
statusId?: string | undefined;
|
|
1796
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1797
1803
|
assigneeId?: string | null | undefined;
|
|
1798
|
-
|
|
1804
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1799
1805
|
};
|
|
1800
1806
|
}>;
|
|
1801
1807
|
export type BulkTaskUpdate = z.infer<typeof BulkTaskUpdate>;
|
|
@@ -1814,18 +1820,18 @@ export declare const BannerButton: z.ZodObject<{
|
|
|
1814
1820
|
}>;
|
|
1815
1821
|
}, "strict", z.ZodTypeAny, {
|
|
1816
1822
|
label: string;
|
|
1823
|
+
variant: "primary" | "secondary";
|
|
1817
1824
|
action: {
|
|
1818
1825
|
type: "navigate";
|
|
1819
1826
|
to: string;
|
|
1820
1827
|
};
|
|
1821
|
-
variant: "primary" | "secondary";
|
|
1822
1828
|
}, {
|
|
1823
1829
|
label: string;
|
|
1830
|
+
variant: "primary" | "secondary";
|
|
1824
1831
|
action: {
|
|
1825
1832
|
type: "navigate";
|
|
1826
1833
|
to: string;
|
|
1827
1834
|
};
|
|
1828
|
-
variant: "primary" | "secondary";
|
|
1829
1835
|
}>;
|
|
1830
1836
|
export type BannerButton = z.infer<typeof BannerButton>;
|
|
1831
1837
|
export declare const CreateBanner: z.ZodObject<{
|
|
@@ -1846,46 +1852,46 @@ export declare const CreateBanner: z.ZodObject<{
|
|
|
1846
1852
|
}>;
|
|
1847
1853
|
}, "strict", z.ZodTypeAny, {
|
|
1848
1854
|
label: string;
|
|
1855
|
+
variant: "primary" | "secondary";
|
|
1849
1856
|
action: {
|
|
1850
1857
|
type: "navigate";
|
|
1851
1858
|
to: string;
|
|
1852
1859
|
};
|
|
1853
|
-
variant: "primary" | "secondary";
|
|
1854
1860
|
}, {
|
|
1855
1861
|
label: string;
|
|
1862
|
+
variant: "primary" | "secondary";
|
|
1856
1863
|
action: {
|
|
1857
1864
|
type: "navigate";
|
|
1858
1865
|
to: string;
|
|
1859
1866
|
};
|
|
1860
|
-
variant: "primary" | "secondary";
|
|
1861
1867
|
}>, "many">>;
|
|
1862
1868
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1863
1869
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
1864
1870
|
}, "strict", z.ZodTypeAny, {
|
|
1865
|
-
text: string;
|
|
1866
1871
|
icon?: string | null | undefined;
|
|
1867
|
-
|
|
1872
|
+
text: string;
|
|
1868
1873
|
buttons?: {
|
|
1869
1874
|
label: string;
|
|
1875
|
+
variant: "primary" | "secondary";
|
|
1870
1876
|
action: {
|
|
1871
1877
|
type: "navigate";
|
|
1872
1878
|
to: string;
|
|
1873
1879
|
};
|
|
1874
|
-
variant: "primary" | "secondary";
|
|
1875
1880
|
}[] | undefined;
|
|
1881
|
+
enabled?: boolean | undefined;
|
|
1876
1882
|
sortOrder?: number | undefined;
|
|
1877
1883
|
}, {
|
|
1878
|
-
text: string;
|
|
1879
1884
|
icon?: string | null | undefined;
|
|
1880
|
-
|
|
1885
|
+
text: string;
|
|
1881
1886
|
buttons?: {
|
|
1882
1887
|
label: string;
|
|
1888
|
+
variant: "primary" | "secondary";
|
|
1883
1889
|
action: {
|
|
1884
1890
|
type: "navigate";
|
|
1885
1891
|
to: string;
|
|
1886
1892
|
};
|
|
1887
|
-
variant: "primary" | "secondary";
|
|
1888
1893
|
}[] | undefined;
|
|
1894
|
+
enabled?: boolean | undefined;
|
|
1889
1895
|
sortOrder?: number | undefined;
|
|
1890
1896
|
}>;
|
|
1891
1897
|
export type CreateBanner = z.infer<typeof CreateBanner>;
|
|
@@ -1907,46 +1913,46 @@ export declare const UpdateBanner: z.ZodObject<{
|
|
|
1907
1913
|
}>;
|
|
1908
1914
|
}, "strict", z.ZodTypeAny, {
|
|
1909
1915
|
label: string;
|
|
1916
|
+
variant: "primary" | "secondary";
|
|
1910
1917
|
action: {
|
|
1911
1918
|
type: "navigate";
|
|
1912
1919
|
to: string;
|
|
1913
1920
|
};
|
|
1914
|
-
variant: "primary" | "secondary";
|
|
1915
1921
|
}, {
|
|
1916
1922
|
label: string;
|
|
1923
|
+
variant: "primary" | "secondary";
|
|
1917
1924
|
action: {
|
|
1918
1925
|
type: "navigate";
|
|
1919
1926
|
to: string;
|
|
1920
1927
|
};
|
|
1921
|
-
variant: "primary" | "secondary";
|
|
1922
1928
|
}>, "many">>;
|
|
1923
1929
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1924
1930
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
1925
1931
|
}, "strict", z.ZodTypeAny, {
|
|
1926
1932
|
icon?: string | null | undefined;
|
|
1927
|
-
enabled?: boolean | undefined;
|
|
1928
1933
|
text?: string | undefined;
|
|
1929
1934
|
buttons?: {
|
|
1930
1935
|
label: string;
|
|
1936
|
+
variant: "primary" | "secondary";
|
|
1931
1937
|
action: {
|
|
1932
1938
|
type: "navigate";
|
|
1933
1939
|
to: string;
|
|
1934
1940
|
};
|
|
1935
|
-
variant: "primary" | "secondary";
|
|
1936
1941
|
}[] | undefined;
|
|
1942
|
+
enabled?: boolean | undefined;
|
|
1937
1943
|
sortOrder?: number | undefined;
|
|
1938
1944
|
}, {
|
|
1939
1945
|
icon?: string | null | undefined;
|
|
1940
|
-
enabled?: boolean | undefined;
|
|
1941
1946
|
text?: string | undefined;
|
|
1942
1947
|
buttons?: {
|
|
1943
1948
|
label: string;
|
|
1949
|
+
variant: "primary" | "secondary";
|
|
1944
1950
|
action: {
|
|
1945
1951
|
type: "navigate";
|
|
1946
1952
|
to: string;
|
|
1947
1953
|
};
|
|
1948
|
-
variant: "primary" | "secondary";
|
|
1949
1954
|
}[] | undefined;
|
|
1955
|
+
enabled?: boolean | undefined;
|
|
1950
1956
|
sortOrder?: number | undefined;
|
|
1951
1957
|
}>;
|
|
1952
1958
|
export type UpdateBanner = z.infer<typeof UpdateBanner>;
|