@taskless-app/shared 0.1.9 → 0.1.11
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/finishChip.js.map +1 -1
- package/dist/schemas.d.ts +323 -323
- package/dist/userHandle.d.ts +23 -2
- package/dist/userHandle.js +46 -6
- package/dist/userHandle.js.map +1 -1
- package/dist/weight.js.map +1 -1
- package/package.json +1 -5
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;
|
|
@@ -744,7 +744,7 @@ export declare const CallCreate: z.ZodObject<{
|
|
|
744
744
|
soundsEnabled?: boolean | undefined;
|
|
745
745
|
voiceAssistantEnabled?: boolean | undefined;
|
|
746
746
|
timelineEnabled?: boolean | undefined;
|
|
747
|
-
recordingMode?: "
|
|
747
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
748
748
|
durationMinutes?: number | undefined;
|
|
749
749
|
inviteeUserIds?: string[] | undefined;
|
|
750
750
|
inviteEmails?: string[] | undefined;
|
|
@@ -760,7 +760,7 @@ export declare const CallCreate: z.ZodObject<{
|
|
|
760
760
|
soundsEnabled?: boolean | undefined;
|
|
761
761
|
voiceAssistantEnabled?: boolean | undefined;
|
|
762
762
|
timelineEnabled?: boolean | undefined;
|
|
763
|
-
recordingMode?: "
|
|
763
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
764
764
|
durationMinutes?: number | undefined;
|
|
765
765
|
inviteeUserIds?: string[] | undefined;
|
|
766
766
|
inviteEmails?: string[] | undefined;
|
|
@@ -795,7 +795,7 @@ export declare const CallPatch: z.ZodObject<{
|
|
|
795
795
|
soundsEnabled?: boolean | undefined;
|
|
796
796
|
voiceAssistantEnabled?: boolean | undefined;
|
|
797
797
|
timelineEnabled?: boolean | undefined;
|
|
798
|
-
recordingMode?: "
|
|
798
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
799
799
|
durationMinutes?: number | undefined;
|
|
800
800
|
inviteeUserIds?: string[] | undefined;
|
|
801
801
|
inviteEmails?: string[] | undefined;
|
|
@@ -811,7 +811,7 @@ export declare const CallPatch: z.ZodObject<{
|
|
|
811
811
|
soundsEnabled?: boolean | undefined;
|
|
812
812
|
voiceAssistantEnabled?: boolean | undefined;
|
|
813
813
|
timelineEnabled?: boolean | undefined;
|
|
814
|
-
recordingMode?: "
|
|
814
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
815
815
|
durationMinutes?: number | undefined;
|
|
816
816
|
inviteeUserIds?: string[] | undefined;
|
|
817
817
|
inviteEmails?: string[] | undefined;
|
|
@@ -832,20 +832,20 @@ export declare const RoomCreate: z.ZodObject<{
|
|
|
832
832
|
commonInSpaces: z.ZodOptional<z.ZodBoolean>;
|
|
833
833
|
}, "strip", z.ZodTypeAny, {
|
|
834
834
|
name: string;
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
spaceId?: string | undefined;
|
|
835
|
+
kind: "custom" | "project" | "team";
|
|
836
|
+
visibility: "private" | "public" | "unlisted";
|
|
838
837
|
teamId?: string | undefined;
|
|
839
838
|
projectId?: string | undefined;
|
|
839
|
+
spaceId?: string | undefined;
|
|
840
840
|
memberIds?: string[] | undefined;
|
|
841
841
|
commonInSpaces?: boolean | undefined;
|
|
842
842
|
}, {
|
|
843
843
|
name: string;
|
|
844
|
-
|
|
844
|
+
kind?: "custom" | "project" | "team" | undefined;
|
|
845
|
+
visibility?: "private" | "public" | "unlisted" | undefined;
|
|
845
846
|
teamId?: string | undefined;
|
|
846
|
-
visibility?: "public" | "private" | "unlisted" | undefined;
|
|
847
847
|
projectId?: string | undefined;
|
|
848
|
-
|
|
848
|
+
spaceId?: string | undefined;
|
|
849
849
|
memberIds?: string[] | undefined;
|
|
850
850
|
commonInSpaces?: boolean | undefined;
|
|
851
851
|
}>;
|
|
@@ -861,18 +861,18 @@ export declare const RoomUpdate: z.ZodObject<{
|
|
|
861
861
|
commonInSpaces: z.ZodOptional<z.ZodBoolean>;
|
|
862
862
|
}, "strip", z.ZodTypeAny, {
|
|
863
863
|
name?: string | undefined;
|
|
864
|
+
archivedAt?: string | null | undefined;
|
|
865
|
+
visibility?: "private" | "public" | "unlisted" | undefined;
|
|
864
866
|
slug?: string | null | undefined;
|
|
865
867
|
spaceId?: string | null | undefined;
|
|
866
|
-
visibility?: "public" | "private" | "unlisted" | undefined;
|
|
867
868
|
commonInSpaces?: boolean | undefined;
|
|
868
|
-
archivedAt?: string | null | undefined;
|
|
869
869
|
}, {
|
|
870
870
|
name?: string | undefined;
|
|
871
|
+
archivedAt?: string | null | undefined;
|
|
872
|
+
visibility?: "private" | "public" | "unlisted" | undefined;
|
|
871
873
|
slug?: string | null | undefined;
|
|
872
874
|
spaceId?: string | null | undefined;
|
|
873
|
-
visibility?: "public" | "private" | "unlisted" | undefined;
|
|
874
875
|
commonInSpaces?: boolean | undefined;
|
|
875
|
-
archivedAt?: string | null | undefined;
|
|
876
876
|
}>;
|
|
877
877
|
export type RoomUpdate = z.infer<typeof RoomUpdate>;
|
|
878
878
|
export declare const RoomSettingsUpdate: z.ZodObject<{
|
|
@@ -884,21 +884,21 @@ export declare const RoomSettingsUpdate: z.ZodObject<{
|
|
|
884
884
|
guestsRequireKnock: z.ZodOptional<z.ZodBoolean>;
|
|
885
885
|
guestsCanChat: z.ZodOptional<z.ZodBoolean>;
|
|
886
886
|
}, "strip", z.ZodTypeAny, {
|
|
887
|
-
allowGuests?: boolean | undefined;
|
|
888
|
-
guestsRequireKnock?: boolean | undefined;
|
|
889
|
-
guestsCanChat?: boolean | undefined;
|
|
890
887
|
aiEnabled?: boolean | undefined;
|
|
891
888
|
musicEnabled?: boolean | undefined;
|
|
892
889
|
voiceAssistantEnabled?: boolean | undefined;
|
|
893
|
-
recordingMode?: "
|
|
894
|
-
}, {
|
|
890
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
895
891
|
allowGuests?: boolean | undefined;
|
|
896
892
|
guestsRequireKnock?: boolean | undefined;
|
|
897
893
|
guestsCanChat?: boolean | undefined;
|
|
894
|
+
}, {
|
|
898
895
|
aiEnabled?: boolean | undefined;
|
|
899
896
|
musicEnabled?: boolean | undefined;
|
|
900
897
|
voiceAssistantEnabled?: boolean | undefined;
|
|
901
|
-
recordingMode?: "
|
|
898
|
+
recordingMode?: "audio" | "off" | "video" | undefined;
|
|
899
|
+
allowGuests?: boolean | undefined;
|
|
900
|
+
guestsRequireKnock?: boolean | undefined;
|
|
901
|
+
guestsCanChat?: boolean | undefined;
|
|
902
902
|
}>;
|
|
903
903
|
export type RoomSettingsUpdate = z.infer<typeof RoomSettingsUpdate>;
|
|
904
904
|
export declare const CallProposalKind: z.ZodEnum<["task_create", "task_update", "task_done", "meeting", "project", "comment", "absence"]>;
|
|
@@ -914,23 +914,23 @@ export declare const TaskSuggestionCreate: z.ZodObject<{
|
|
|
914
914
|
originSpeakerId: z.ZodOptional<z.ZodString>;
|
|
915
915
|
rationale: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
916
916
|
}, "strip", z.ZodTypeAny, {
|
|
917
|
-
description: string;
|
|
918
917
|
title: string;
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
originEndTs: string;
|
|
922
|
-
rationale: string;
|
|
918
|
+
description: string;
|
|
919
|
+
priority: "high" | "low" | "medium" | "urgent";
|
|
923
920
|
suggestedProjectId?: string | undefined;
|
|
924
921
|
suggestedAssigneeId?: string | undefined;
|
|
922
|
+
originStartTs: string;
|
|
923
|
+
originEndTs: string;
|
|
925
924
|
originSpeakerId?: string | undefined;
|
|
925
|
+
rationale: string;
|
|
926
926
|
}, {
|
|
927
927
|
title: string;
|
|
928
|
-
originStartTs: string;
|
|
929
|
-
originEndTs: string;
|
|
930
928
|
description?: string | undefined;
|
|
931
|
-
priority?: "
|
|
929
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
932
930
|
suggestedProjectId?: string | undefined;
|
|
933
931
|
suggestedAssigneeId?: string | undefined;
|
|
932
|
+
originStartTs: string;
|
|
933
|
+
originEndTs: string;
|
|
934
934
|
originSpeakerId?: string | undefined;
|
|
935
935
|
rationale?: string | undefined;
|
|
936
936
|
}>;
|
|
@@ -950,54 +950,54 @@ export declare const TaskSuggestionBatch: z.ZodObject<{
|
|
|
950
950
|
originSpeakerId: z.ZodOptional<z.ZodString>;
|
|
951
951
|
rationale: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
952
952
|
}, "strip", z.ZodTypeAny, {
|
|
953
|
-
description: string;
|
|
954
953
|
title: string;
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
originEndTs: string;
|
|
958
|
-
rationale: string;
|
|
954
|
+
description: string;
|
|
955
|
+
priority: "high" | "low" | "medium" | "urgent";
|
|
959
956
|
suggestedProjectId?: string | undefined;
|
|
960
957
|
suggestedAssigneeId?: string | undefined;
|
|
958
|
+
originStartTs: string;
|
|
959
|
+
originEndTs: string;
|
|
961
960
|
originSpeakerId?: string | undefined;
|
|
961
|
+
rationale: string;
|
|
962
962
|
}, {
|
|
963
963
|
title: string;
|
|
964
|
-
originStartTs: string;
|
|
965
|
-
originEndTs: string;
|
|
966
964
|
description?: string | undefined;
|
|
967
|
-
priority?: "
|
|
965
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
968
966
|
suggestedProjectId?: string | undefined;
|
|
969
967
|
suggestedAssigneeId?: string | undefined;
|
|
968
|
+
originStartTs: string;
|
|
969
|
+
originEndTs: string;
|
|
970
970
|
originSpeakerId?: string | undefined;
|
|
971
971
|
rationale?: string | undefined;
|
|
972
972
|
}>, "many">;
|
|
973
973
|
}, "strip", z.ZodTypeAny, {
|
|
974
974
|
callId: string;
|
|
975
|
+
roomId?: string | undefined;
|
|
975
976
|
suggestions: {
|
|
976
|
-
description: string;
|
|
977
977
|
title: string;
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
originEndTs: string;
|
|
981
|
-
rationale: string;
|
|
978
|
+
description: string;
|
|
979
|
+
priority: "high" | "low" | "medium" | "urgent";
|
|
982
980
|
suggestedProjectId?: string | undefined;
|
|
983
981
|
suggestedAssigneeId?: string | undefined;
|
|
982
|
+
originStartTs: string;
|
|
983
|
+
originEndTs: string;
|
|
984
984
|
originSpeakerId?: string | undefined;
|
|
985
|
+
rationale: string;
|
|
985
986
|
}[];
|
|
986
|
-
roomId?: string | undefined;
|
|
987
987
|
}, {
|
|
988
988
|
callId: string;
|
|
989
|
+
roomId?: string | undefined;
|
|
989
990
|
suggestions: {
|
|
990
991
|
title: string;
|
|
991
|
-
originStartTs: string;
|
|
992
|
-
originEndTs: string;
|
|
993
992
|
description?: string | undefined;
|
|
994
|
-
priority?: "
|
|
993
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
995
994
|
suggestedProjectId?: string | undefined;
|
|
996
995
|
suggestedAssigneeId?: string | undefined;
|
|
996
|
+
originStartTs: string;
|
|
997
|
+
originEndTs: string;
|
|
997
998
|
originSpeakerId?: string | undefined;
|
|
998
999
|
rationale?: string | undefined;
|
|
999
1000
|
}[];
|
|
1000
|
-
roomId?: string | undefined;
|
|
1001
1001
|
}>;
|
|
1002
1002
|
export type TaskSuggestionBatch = z.infer<typeof TaskSuggestionBatch>;
|
|
1003
1003
|
export declare const TaskSuggestionRejectInput: z.ZodObject<{
|
|
@@ -1024,33 +1024,33 @@ export declare const TaskSuggestionAcceptInput: z.ZodObject<{
|
|
|
1024
1024
|
speakerComment: z.ZodOptional<z.ZodUnknown>;
|
|
1025
1025
|
toNote: z.ZodOptional<z.ZodBoolean>;
|
|
1026
1026
|
}, "strip", z.ZodTypeAny, {
|
|
1027
|
-
deadline?: string | null | undefined;
|
|
1028
|
-
description?: string | null | undefined;
|
|
1029
|
-
teamId?: string | null | undefined;
|
|
1030
1027
|
title?: string | undefined;
|
|
1031
|
-
|
|
1028
|
+
description?: string | null | undefined;
|
|
1029
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1032
1030
|
statusId?: string | undefined;
|
|
1033
|
-
|
|
1031
|
+
projectId?: string | null | undefined;
|
|
1034
1032
|
assigneeId?: string | null | undefined;
|
|
1033
|
+
deadline?: string | null | undefined;
|
|
1035
1034
|
estimateHours?: number | null | undefined;
|
|
1035
|
+
teamId?: string | null | undefined;
|
|
1036
1036
|
labelIds?: string[] | undefined;
|
|
1037
|
-
comment?: unknown;
|
|
1038
1037
|
createTask?: boolean | undefined;
|
|
1038
|
+
comment?: unknown;
|
|
1039
1039
|
speakerComment?: unknown;
|
|
1040
1040
|
toNote?: boolean | undefined;
|
|
1041
1041
|
}, {
|
|
1042
|
-
deadline?: string | null | undefined;
|
|
1043
|
-
description?: string | null | undefined;
|
|
1044
|
-
teamId?: string | null | undefined;
|
|
1045
1042
|
title?: string | undefined;
|
|
1046
|
-
|
|
1043
|
+
description?: string | null | undefined;
|
|
1044
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1047
1045
|
statusId?: string | undefined;
|
|
1048
|
-
|
|
1046
|
+
projectId?: string | null | undefined;
|
|
1049
1047
|
assigneeId?: string | null | undefined;
|
|
1048
|
+
deadline?: string | null | undefined;
|
|
1050
1049
|
estimateHours?: number | null | undefined;
|
|
1050
|
+
teamId?: string | null | undefined;
|
|
1051
1051
|
labelIds?: string[] | undefined;
|
|
1052
|
-
comment?: unknown;
|
|
1053
1052
|
createTask?: boolean | undefined;
|
|
1053
|
+
comment?: unknown;
|
|
1054
1054
|
speakerComment?: unknown;
|
|
1055
1055
|
toNote?: boolean | undefined;
|
|
1056
1056
|
}>;
|
|
@@ -1085,23 +1085,20 @@ export declare const SuggestionPayloadPatch: z.ZodObject<{
|
|
|
1085
1085
|
createChannel: z.ZodOptional<z.ZodBoolean>;
|
|
1086
1086
|
taskPrefix: z.ZodOptional<z.ZodString>;
|
|
1087
1087
|
}, "strict", z.ZodTypeAny, {
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1088
|
+
meetingAt?: string | null | undefined;
|
|
1089
|
+
durationMinutes?: number | undefined;
|
|
1090
|
+
participantIds?: string[] | undefined;
|
|
1091
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1092
1092
|
startAt?: string | null | undefined;
|
|
1093
1093
|
endAt?: string | null | undefined;
|
|
1094
1094
|
body?: string | undefined;
|
|
1095
|
-
|
|
1096
|
-
meetingAt?: string | null | undefined;
|
|
1097
|
-
participantIds?: string[] | undefined;
|
|
1098
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1095
|
+
name?: string | undefined;
|
|
1099
1096
|
summary?: string | undefined;
|
|
1100
1097
|
newTitle?: string | undefined;
|
|
1101
1098
|
newTitleAppend?: string | undefined;
|
|
1102
1099
|
newDescription?: string | undefined;
|
|
1103
1100
|
newDescriptionAppend?: string | undefined;
|
|
1104
|
-
newPriority?: "
|
|
1101
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1105
1102
|
newDeadline?: string | null | undefined;
|
|
1106
1103
|
newStatusName?: string | undefined;
|
|
1107
1104
|
newAssigneeName?: string | undefined;
|
|
@@ -1113,24 +1110,24 @@ export declare const SuggestionPayloadPatch: z.ZodObject<{
|
|
|
1113
1110
|
newEstimate?: string | undefined;
|
|
1114
1111
|
updateSummary?: string | undefined;
|
|
1115
1112
|
newStatusId?: string | undefined;
|
|
1116
|
-
|
|
1117
|
-
name?: string | undefined;
|
|
1118
|
-
taskPrefix?: string | undefined;
|
|
1113
|
+
visibility?: "private" | "public" | undefined;
|
|
1119
1114
|
createChannel?: boolean | undefined;
|
|
1120
|
-
|
|
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;
|
|
1121
1121
|
startAt?: string | null | undefined;
|
|
1122
1122
|
endAt?: string | null | undefined;
|
|
1123
1123
|
body?: string | undefined;
|
|
1124
|
-
|
|
1125
|
-
meetingAt?: string | null | undefined;
|
|
1126
|
-
participantIds?: string[] | undefined;
|
|
1127
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1124
|
+
name?: string | undefined;
|
|
1128
1125
|
summary?: string | undefined;
|
|
1129
1126
|
newTitle?: string | undefined;
|
|
1130
1127
|
newTitleAppend?: string | undefined;
|
|
1131
1128
|
newDescription?: string | undefined;
|
|
1132
1129
|
newDescriptionAppend?: string | undefined;
|
|
1133
|
-
newPriority?: "
|
|
1130
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1134
1131
|
newDeadline?: string | null | undefined;
|
|
1135
1132
|
newStatusName?: string | undefined;
|
|
1136
1133
|
newAssigneeName?: string | undefined;
|
|
@@ -1142,6 +1139,9 @@ export declare const SuggestionPayloadPatch: z.ZodObject<{
|
|
|
1142
1139
|
newEstimate?: string | undefined;
|
|
1143
1140
|
updateSummary?: string | undefined;
|
|
1144
1141
|
newStatusId?: string | undefined;
|
|
1142
|
+
visibility?: "private" | "public" | undefined;
|
|
1143
|
+
createChannel?: boolean | undefined;
|
|
1144
|
+
taskPrefix?: string | undefined;
|
|
1145
1145
|
}>;
|
|
1146
1146
|
export type SuggestionPayloadPatch = z.infer<typeof SuggestionPayloadPatch>;
|
|
1147
1147
|
export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
@@ -1186,23 +1186,20 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1186
1186
|
createChannel: z.ZodOptional<z.ZodBoolean>;
|
|
1187
1187
|
taskPrefix: z.ZodOptional<z.ZodString>;
|
|
1188
1188
|
}, "strict", z.ZodTypeAny, {
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1189
|
+
meetingAt?: string | null | undefined;
|
|
1190
|
+
durationMinutes?: number | undefined;
|
|
1191
|
+
participantIds?: string[] | undefined;
|
|
1192
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1193
1193
|
startAt?: string | null | undefined;
|
|
1194
1194
|
endAt?: string | null | undefined;
|
|
1195
1195
|
body?: string | undefined;
|
|
1196
|
-
|
|
1197
|
-
meetingAt?: string | null | undefined;
|
|
1198
|
-
participantIds?: string[] | undefined;
|
|
1199
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1196
|
+
name?: string | undefined;
|
|
1200
1197
|
summary?: string | undefined;
|
|
1201
1198
|
newTitle?: string | undefined;
|
|
1202
1199
|
newTitleAppend?: string | undefined;
|
|
1203
1200
|
newDescription?: string | undefined;
|
|
1204
1201
|
newDescriptionAppend?: string | undefined;
|
|
1205
|
-
newPriority?: "
|
|
1202
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1206
1203
|
newDeadline?: string | null | undefined;
|
|
1207
1204
|
newStatusName?: string | undefined;
|
|
1208
1205
|
newAssigneeName?: string | undefined;
|
|
@@ -1214,24 +1211,24 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1214
1211
|
newEstimate?: string | undefined;
|
|
1215
1212
|
updateSummary?: string | undefined;
|
|
1216
1213
|
newStatusId?: string | undefined;
|
|
1217
|
-
|
|
1218
|
-
name?: string | undefined;
|
|
1219
|
-
taskPrefix?: string | undefined;
|
|
1214
|
+
visibility?: "private" | "public" | undefined;
|
|
1220
1215
|
createChannel?: boolean | undefined;
|
|
1221
|
-
|
|
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;
|
|
1222
1222
|
startAt?: string | null | undefined;
|
|
1223
1223
|
endAt?: string | null | undefined;
|
|
1224
1224
|
body?: string | undefined;
|
|
1225
|
-
|
|
1226
|
-
meetingAt?: string | null | undefined;
|
|
1227
|
-
participantIds?: string[] | undefined;
|
|
1228
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1225
|
+
name?: string | undefined;
|
|
1229
1226
|
summary?: string | undefined;
|
|
1230
1227
|
newTitle?: string | undefined;
|
|
1231
1228
|
newTitleAppend?: string | undefined;
|
|
1232
1229
|
newDescription?: string | undefined;
|
|
1233
1230
|
newDescriptionAppend?: string | undefined;
|
|
1234
|
-
newPriority?: "
|
|
1231
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1235
1232
|
newDeadline?: string | null | undefined;
|
|
1236
1233
|
newStatusName?: string | undefined;
|
|
1237
1234
|
newAssigneeName?: string | undefined;
|
|
@@ -1243,38 +1240,38 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1243
1240
|
newEstimate?: string | undefined;
|
|
1244
1241
|
updateSummary?: string | undefined;
|
|
1245
1242
|
newStatusId?: string | undefined;
|
|
1243
|
+
visibility?: "private" | "public" | undefined;
|
|
1244
|
+
createChannel?: boolean | undefined;
|
|
1245
|
+
taskPrefix?: string | undefined;
|
|
1246
1246
|
}>>;
|
|
1247
1247
|
candidateExistingTaskId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1248
1248
|
}, "strip", z.ZodTypeAny, {
|
|
1249
|
-
deadline?: string | null | undefined;
|
|
1250
|
-
description?: string | null | undefined;
|
|
1251
|
-
teamId?: string | null | undefined;
|
|
1252
1249
|
title?: string | undefined;
|
|
1250
|
+
description?: string | null | undefined;
|
|
1251
|
+
descriptionDoc?: unknown;
|
|
1252
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1253
1253
|
projectId?: string | null | undefined;
|
|
1254
|
-
statusId?: string | null | undefined;
|
|
1255
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1256
1254
|
assigneeId?: string | null | undefined;
|
|
1255
|
+
deadline?: string | null | undefined;
|
|
1257
1256
|
estimateHours?: number | null | undefined;
|
|
1257
|
+
statusId?: string | null | undefined;
|
|
1258
|
+
teamId?: string | null | undefined;
|
|
1258
1259
|
labelIds?: string[] | undefined;
|
|
1259
|
-
descriptionDoc?: unknown;
|
|
1260
1260
|
payload?: {
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1261
|
+
meetingAt?: string | null | undefined;
|
|
1262
|
+
durationMinutes?: number | undefined;
|
|
1263
|
+
participantIds?: string[] | undefined;
|
|
1264
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1265
1265
|
startAt?: string | null | undefined;
|
|
1266
1266
|
endAt?: string | null | undefined;
|
|
1267
1267
|
body?: string | undefined;
|
|
1268
|
-
|
|
1269
|
-
meetingAt?: string | null | undefined;
|
|
1270
|
-
participantIds?: string[] | undefined;
|
|
1271
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1268
|
+
name?: string | undefined;
|
|
1272
1269
|
summary?: string | undefined;
|
|
1273
1270
|
newTitle?: string | undefined;
|
|
1274
1271
|
newTitleAppend?: string | undefined;
|
|
1275
1272
|
newDescription?: string | undefined;
|
|
1276
1273
|
newDescriptionAppend?: string | undefined;
|
|
1277
|
-
newPriority?: "
|
|
1274
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1278
1275
|
newDeadline?: string | null | undefined;
|
|
1279
1276
|
newStatusName?: string | undefined;
|
|
1280
1277
|
newAssigneeName?: string | undefined;
|
|
@@ -1286,38 +1283,38 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1286
1283
|
newEstimate?: string | undefined;
|
|
1287
1284
|
updateSummary?: string | undefined;
|
|
1288
1285
|
newStatusId?: string | undefined;
|
|
1286
|
+
visibility?: "private" | "public" | undefined;
|
|
1287
|
+
createChannel?: boolean | undefined;
|
|
1288
|
+
taskPrefix?: string | undefined;
|
|
1289
1289
|
} | undefined;
|
|
1290
1290
|
candidateExistingTaskId?: string | null | undefined;
|
|
1291
1291
|
}, {
|
|
1292
|
-
deadline?: string | null | undefined;
|
|
1293
|
-
description?: string | null | undefined;
|
|
1294
|
-
teamId?: string | null | undefined;
|
|
1295
1292
|
title?: string | undefined;
|
|
1293
|
+
description?: string | null | undefined;
|
|
1294
|
+
descriptionDoc?: unknown;
|
|
1295
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1296
1296
|
projectId?: string | null | undefined;
|
|
1297
|
-
statusId?: string | null | undefined;
|
|
1298
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1299
1297
|
assigneeId?: string | null | undefined;
|
|
1298
|
+
deadline?: string | null | undefined;
|
|
1300
1299
|
estimateHours?: number | null | undefined;
|
|
1300
|
+
statusId?: string | null | undefined;
|
|
1301
|
+
teamId?: string | null | undefined;
|
|
1301
1302
|
labelIds?: string[] | undefined;
|
|
1302
|
-
descriptionDoc?: unknown;
|
|
1303
1303
|
payload?: {
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1304
|
+
meetingAt?: string | null | undefined;
|
|
1305
|
+
durationMinutes?: number | undefined;
|
|
1306
|
+
participantIds?: string[] | undefined;
|
|
1307
|
+
absenceKind?: "absent" | "block" | "sick" | "trip" | "vacation" | undefined;
|
|
1308
1308
|
startAt?: string | null | undefined;
|
|
1309
1309
|
endAt?: string | null | undefined;
|
|
1310
1310
|
body?: string | undefined;
|
|
1311
|
-
|
|
1312
|
-
meetingAt?: string | null | undefined;
|
|
1313
|
-
participantIds?: string[] | undefined;
|
|
1314
|
-
absenceKind?: "vacation" | "sick" | "trip" | "absent" | "block" | undefined;
|
|
1311
|
+
name?: string | undefined;
|
|
1315
1312
|
summary?: string | undefined;
|
|
1316
1313
|
newTitle?: string | undefined;
|
|
1317
1314
|
newTitleAppend?: string | undefined;
|
|
1318
1315
|
newDescription?: string | undefined;
|
|
1319
1316
|
newDescriptionAppend?: string | undefined;
|
|
1320
|
-
newPriority?: "
|
|
1317
|
+
newPriority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1321
1318
|
newDeadline?: string | null | undefined;
|
|
1322
1319
|
newStatusName?: string | undefined;
|
|
1323
1320
|
newAssigneeName?: string | undefined;
|
|
@@ -1329,6 +1326,9 @@ export declare const TaskSuggestionUpdateInput: z.ZodObject<{
|
|
|
1329
1326
|
newEstimate?: string | undefined;
|
|
1330
1327
|
updateSummary?: string | undefined;
|
|
1331
1328
|
newStatusId?: string | undefined;
|
|
1329
|
+
visibility?: "private" | "public" | undefined;
|
|
1330
|
+
createChannel?: boolean | undefined;
|
|
1331
|
+
taskPrefix?: string | undefined;
|
|
1332
1332
|
} | undefined;
|
|
1333
1333
|
candidateExistingTaskId?: string | null | undefined;
|
|
1334
1334
|
}>;
|
|
@@ -1356,54 +1356,54 @@ export declare const EventCreate: z.ZodObject<{
|
|
|
1356
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1357
1357
|
title: string;
|
|
1358
1358
|
description?: string | undefined;
|
|
1359
|
-
priority?: "
|
|
1359
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1360
1360
|
assigneeId?: string | null | undefined;
|
|
1361
1361
|
}, {
|
|
1362
1362
|
title: string;
|
|
1363
1363
|
description?: string | undefined;
|
|
1364
|
-
priority?: "
|
|
1364
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1365
1365
|
assigneeId?: string | null | undefined;
|
|
1366
1366
|
}>>;
|
|
1367
1367
|
autoCreateCall: z.ZodOptional<z.ZodBoolean>;
|
|
1368
1368
|
forUserId: z.ZodOptional<z.ZodString>;
|
|
1369
1369
|
}, "strip", z.ZodTypeAny, {
|
|
1370
|
-
type: "
|
|
1370
|
+
type: "absent" | "block" | "external" | "meeting" | "task";
|
|
1371
1371
|
title: string;
|
|
1372
|
+
description?: string | undefined;
|
|
1372
1373
|
startAt: string;
|
|
1373
1374
|
endAt: string;
|
|
1374
|
-
description?: string | undefined;
|
|
1375
|
-
teamId?: string | null | undefined;
|
|
1376
|
-
visibility?: "team" | "personal" | "workspace" | undefined;
|
|
1377
|
-
projectId?: string | null | undefined;
|
|
1378
|
-
participantIds?: string[] | undefined;
|
|
1379
1375
|
allDay?: boolean | undefined;
|
|
1380
1376
|
recurrenceRule?: string | null | undefined;
|
|
1381
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;
|
|
1382
1382
|
taskTemplate?: {
|
|
1383
1383
|
title: string;
|
|
1384
1384
|
description?: string | undefined;
|
|
1385
|
-
priority?: "
|
|
1385
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1386
1386
|
assigneeId?: string | null | undefined;
|
|
1387
1387
|
} | undefined;
|
|
1388
1388
|
autoCreateCall?: boolean | undefined;
|
|
1389
1389
|
forUserId?: string | undefined;
|
|
1390
1390
|
}, {
|
|
1391
|
-
type: "
|
|
1391
|
+
type: "absent" | "block" | "external" | "meeting" | "task";
|
|
1392
1392
|
title: string;
|
|
1393
|
+
description?: string | undefined;
|
|
1393
1394
|
startAt: string;
|
|
1394
1395
|
endAt: string;
|
|
1395
|
-
description?: string | undefined;
|
|
1396
|
-
teamId?: string | null | undefined;
|
|
1397
|
-
visibility?: "team" | "personal" | "workspace" | undefined;
|
|
1398
|
-
projectId?: string | null | undefined;
|
|
1399
|
-
participantIds?: string[] | undefined;
|
|
1400
1396
|
allDay?: boolean | undefined;
|
|
1401
1397
|
recurrenceRule?: string | null | undefined;
|
|
1402
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;
|
|
1403
1403
|
taskTemplate?: {
|
|
1404
1404
|
title: string;
|
|
1405
1405
|
description?: string | undefined;
|
|
1406
|
-
priority?: "
|
|
1406
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1407
1407
|
assigneeId?: string | null | undefined;
|
|
1408
1408
|
} | undefined;
|
|
1409
1409
|
autoCreateCall?: boolean | undefined;
|
|
@@ -1432,44 +1432,44 @@ export declare const EventPatch: z.ZodObject<Omit<{
|
|
|
1432
1432
|
}, "strip", z.ZodTypeAny, {
|
|
1433
1433
|
title: string;
|
|
1434
1434
|
description?: string | undefined;
|
|
1435
|
-
priority?: "
|
|
1435
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1436
1436
|
assigneeId?: string | null | undefined;
|
|
1437
1437
|
}, {
|
|
1438
1438
|
title: string;
|
|
1439
1439
|
description?: string | undefined;
|
|
1440
|
-
priority?: "
|
|
1440
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1441
1441
|
assigneeId?: string | null | undefined;
|
|
1442
1442
|
}>>>;
|
|
1443
1443
|
autoCreateCall: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1444
1444
|
forUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1445
1445
|
}, "taskTemplate">, "strip", z.ZodTypeAny, {
|
|
1446
|
-
type?: "
|
|
1447
|
-
description?: string | undefined;
|
|
1448
|
-
teamId?: string | null | undefined;
|
|
1449
|
-
visibility?: "team" | "personal" | "workspace" | undefined;
|
|
1446
|
+
type?: "absent" | "block" | "external" | "meeting" | "task" | undefined;
|
|
1450
1447
|
title?: string | undefined;
|
|
1451
|
-
|
|
1448
|
+
description?: string | undefined;
|
|
1452
1449
|
startAt?: string | undefined;
|
|
1453
1450
|
endAt?: string | undefined;
|
|
1454
|
-
participantIds?: string[] | undefined;
|
|
1455
1451
|
allDay?: boolean | undefined;
|
|
1456
1452
|
recurrenceRule?: string | null | undefined;
|
|
1457
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;
|
|
1458
1458
|
autoCreateCall?: boolean | undefined;
|
|
1459
1459
|
forUserId?: string | undefined;
|
|
1460
1460
|
}, {
|
|
1461
|
-
type?: "
|
|
1462
|
-
description?: string | undefined;
|
|
1463
|
-
teamId?: string | null | undefined;
|
|
1464
|
-
visibility?: "team" | "personal" | "workspace" | undefined;
|
|
1461
|
+
type?: "absent" | "block" | "external" | "meeting" | "task" | undefined;
|
|
1465
1462
|
title?: string | undefined;
|
|
1466
|
-
|
|
1463
|
+
description?: string | undefined;
|
|
1467
1464
|
startAt?: string | undefined;
|
|
1468
1465
|
endAt?: string | undefined;
|
|
1469
|
-
participantIds?: string[] | undefined;
|
|
1470
1466
|
allDay?: boolean | undefined;
|
|
1471
1467
|
recurrenceRule?: string | null | undefined;
|
|
1472
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;
|
|
1473
1473
|
autoCreateCall?: boolean | undefined;
|
|
1474
1474
|
forUserId?: string | undefined;
|
|
1475
1475
|
}>;
|
|
@@ -1481,17 +1481,17 @@ export declare const OccurrencePatch: z.ZodObject<{
|
|
|
1481
1481
|
description: z.ZodOptional<z.ZodString>;
|
|
1482
1482
|
cancelled: z.ZodOptional<z.ZodBoolean>;
|
|
1483
1483
|
}, "strip", z.ZodTypeAny, {
|
|
1484
|
-
cancelled?: boolean | undefined;
|
|
1485
|
-
description?: string | undefined;
|
|
1486
|
-
title?: string | undefined;
|
|
1487
1484
|
startAt?: string | undefined;
|
|
1488
1485
|
endAt?: string | undefined;
|
|
1489
|
-
}, {
|
|
1490
|
-
cancelled?: boolean | undefined;
|
|
1491
|
-
description?: string | undefined;
|
|
1492
1486
|
title?: string | undefined;
|
|
1487
|
+
description?: string | undefined;
|
|
1488
|
+
cancelled?: boolean | undefined;
|
|
1489
|
+
}, {
|
|
1493
1490
|
startAt?: string | undefined;
|
|
1494
1491
|
endAt?: string | undefined;
|
|
1492
|
+
title?: string | undefined;
|
|
1493
|
+
description?: string | undefined;
|
|
1494
|
+
cancelled?: boolean | undefined;
|
|
1495
1495
|
}>;
|
|
1496
1496
|
export type OccurrencePatch = z.infer<typeof OccurrencePatch>;
|
|
1497
1497
|
export declare const BoardFilters: z.ZodObject<{
|
|
@@ -1513,13 +1513,13 @@ export declare const ColumnOverride: z.ZodObject<{
|
|
|
1513
1513
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1514
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"]>>>;
|
|
1515
1515
|
}, "strict", z.ZodTypeAny, {
|
|
1516
|
-
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;
|
|
1517
|
-
color?: string | null | undefined;
|
|
1518
1516
|
alias?: string | null | undefined;
|
|
1519
|
-
}, {
|
|
1520
|
-
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;
|
|
1521
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
|
+
}, {
|
|
1522
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;
|
|
1523
1523
|
}>;
|
|
1524
1524
|
export type ColumnOverride = z.infer<typeof ColumnOverride>;
|
|
1525
1525
|
export declare const ColumnOverrides: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1527,13 +1527,13 @@ export declare const ColumnOverrides: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
1527
1527
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1528
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"]>>>;
|
|
1529
1529
|
}, "strict", z.ZodTypeAny, {
|
|
1530
|
-
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;
|
|
1531
|
-
color?: string | null | undefined;
|
|
1532
1530
|
alias?: string | null | undefined;
|
|
1533
|
-
}, {
|
|
1534
|
-
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;
|
|
1535
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
|
+
}, {
|
|
1536
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;
|
|
1537
1537
|
}>>;
|
|
1538
1538
|
export type ColumnOverrides = z.infer<typeof ColumnOverrides>;
|
|
1539
1539
|
export declare const BoardCreate: z.ZodObject<{
|
|
@@ -1548,13 +1548,13 @@ export declare const BoardCreate: z.ZodObject<{
|
|
|
1548
1548
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1549
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"]>>>;
|
|
1550
1550
|
}, "strict", z.ZodTypeAny, {
|
|
1551
|
-
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;
|
|
1552
|
-
color?: string | null | undefined;
|
|
1553
1551
|
alias?: string | null | undefined;
|
|
1554
|
-
}, {
|
|
1555
|
-
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;
|
|
1556
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
|
+
}, {
|
|
1557
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;
|
|
1558
1558
|
}>>>;
|
|
1559
1559
|
copyFromBoardId: z.ZodOptional<z.ZodString>;
|
|
1560
1560
|
groupBy: z.ZodOptional<z.ZodEnum<["none", "assignee"]>>;
|
|
@@ -1575,18 +1575,18 @@ export declare const BoardCreate: z.ZodObject<{
|
|
|
1575
1575
|
sprintsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
1576
1576
|
}, "strip", z.ZodTypeAny, {
|
|
1577
1577
|
name: string;
|
|
1578
|
-
projectIds: string[];
|
|
1579
1578
|
slug?: string | undefined;
|
|
1580
1579
|
spaceId?: string | null | undefined;
|
|
1580
|
+
projectIds: string[];
|
|
1581
1581
|
includeSubprojects?: boolean | undefined;
|
|
1582
1582
|
columns?: string[] | undefined;
|
|
1583
1583
|
columnOverrides?: Record<string, {
|
|
1584
|
-
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;
|
|
1585
|
-
color?: string | null | undefined;
|
|
1586
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;
|
|
1587
1587
|
}> | undefined;
|
|
1588
1588
|
copyFromBoardId?: string | undefined;
|
|
1589
|
-
groupBy?: "
|
|
1589
|
+
groupBy?: "assignee" | "none" | undefined;
|
|
1590
1590
|
filters?: {
|
|
1591
1591
|
assigneeFilter?: string[] | undefined;
|
|
1592
1592
|
priorityFilter?: string[] | undefined;
|
|
@@ -1596,18 +1596,18 @@ export declare const BoardCreate: z.ZodObject<{
|
|
|
1596
1596
|
sprintsEnabled?: boolean | undefined;
|
|
1597
1597
|
}, {
|
|
1598
1598
|
name: string;
|
|
1599
|
-
projectIds: string[];
|
|
1600
1599
|
slug?: string | undefined;
|
|
1601
1600
|
spaceId?: string | null | undefined;
|
|
1601
|
+
projectIds: string[];
|
|
1602
1602
|
includeSubprojects?: boolean | undefined;
|
|
1603
1603
|
columns?: string[] | undefined;
|
|
1604
1604
|
columnOverrides?: Record<string, {
|
|
1605
|
-
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;
|
|
1606
|
-
color?: string | null | undefined;
|
|
1607
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;
|
|
1608
1608
|
}> | undefined;
|
|
1609
1609
|
copyFromBoardId?: string | undefined;
|
|
1610
|
-
groupBy?: "
|
|
1610
|
+
groupBy?: "assignee" | "none" | undefined;
|
|
1611
1611
|
filters?: {
|
|
1612
1612
|
assigneeFilter?: string[] | undefined;
|
|
1613
1613
|
priorityFilter?: string[] | undefined;
|
|
@@ -1629,13 +1629,13 @@ export declare const BoardUpdate: z.ZodObject<{
|
|
|
1629
1629
|
color: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1630
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"]>>>;
|
|
1631
1631
|
}, "strict", z.ZodTypeAny, {
|
|
1632
|
-
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;
|
|
1633
|
-
color?: string | null | undefined;
|
|
1634
1632
|
alias?: string | null | undefined;
|
|
1635
|
-
}, {
|
|
1636
|
-
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;
|
|
1637
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
|
+
}, {
|
|
1638
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;
|
|
1639
1639
|
}>>>;
|
|
1640
1640
|
groupBy: z.ZodOptional<z.ZodEnum<["none", "assignee"]>>;
|
|
1641
1641
|
filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1661,11 +1661,11 @@ export declare const BoardUpdate: z.ZodObject<{
|
|
|
1661
1661
|
includeSubprojects?: boolean | undefined;
|
|
1662
1662
|
columns?: string[] | undefined;
|
|
1663
1663
|
columnOverrides?: Record<string, {
|
|
1664
|
-
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;
|
|
1665
|
-
color?: string | null | undefined;
|
|
1666
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;
|
|
1667
1667
|
}> | undefined;
|
|
1668
|
-
groupBy?: "
|
|
1668
|
+
groupBy?: "assignee" | "none" | undefined;
|
|
1669
1669
|
filters?: {
|
|
1670
1670
|
assigneeFilter?: string[] | undefined;
|
|
1671
1671
|
priorityFilter?: string[] | undefined;
|
|
@@ -1681,11 +1681,11 @@ export declare const BoardUpdate: z.ZodObject<{
|
|
|
1681
1681
|
includeSubprojects?: boolean | undefined;
|
|
1682
1682
|
columns?: string[] | undefined;
|
|
1683
1683
|
columnOverrides?: Record<string, {
|
|
1684
|
-
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;
|
|
1685
|
-
color?: string | null | undefined;
|
|
1686
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;
|
|
1687
1687
|
}> | undefined;
|
|
1688
|
-
groupBy?: "
|
|
1688
|
+
groupBy?: "assignee" | "none" | undefined;
|
|
1689
1689
|
filters?: {
|
|
1690
1690
|
assigneeFilter?: string[] | undefined;
|
|
1691
1691
|
priorityFilter?: string[] | undefined;
|
|
@@ -1732,9 +1732,9 @@ export type SprintUpdate = z.infer<typeof SprintUpdate>;
|
|
|
1732
1732
|
export declare const SprintComplete: z.ZodObject<{
|
|
1733
1733
|
carryTo: z.ZodEnum<["next", "new", "backlog"]>;
|
|
1734
1734
|
}, "strict", z.ZodTypeAny, {
|
|
1735
|
-
carryTo: "backlog" | "
|
|
1735
|
+
carryTo: "backlog" | "new" | "next";
|
|
1736
1736
|
}, {
|
|
1737
|
-
carryTo: "backlog" | "
|
|
1737
|
+
carryTo: "backlog" | "new" | "next";
|
|
1738
1738
|
}>;
|
|
1739
1739
|
export type SprintComplete = z.infer<typeof SprintComplete>;
|
|
1740
1740
|
export declare const CompositionBulk: z.ZodEffects<z.ZodObject<{
|
|
@@ -1744,24 +1744,24 @@ export declare const CompositionBulk: z.ZodEffects<z.ZodObject<{
|
|
|
1744
1744
|
spaceId: z.ZodOptional<z.ZodString>;
|
|
1745
1745
|
}, "strict", z.ZodTypeAny, {
|
|
1746
1746
|
userIds: string[];
|
|
1747
|
-
action: "
|
|
1748
|
-
spaceId?: string | undefined;
|
|
1747
|
+
action: "space.add" | "space.remove" | "team.add" | "team.remove" | "team.setLead" | "team.unsetLead";
|
|
1749
1748
|
teamId?: string | undefined;
|
|
1749
|
+
spaceId?: string | undefined;
|
|
1750
1750
|
}, {
|
|
1751
1751
|
userIds: string[];
|
|
1752
|
-
action: "
|
|
1753
|
-
spaceId?: string | undefined;
|
|
1752
|
+
action: "space.add" | "space.remove" | "team.add" | "team.remove" | "team.setLead" | "team.unsetLead";
|
|
1754
1753
|
teamId?: string | undefined;
|
|
1754
|
+
spaceId?: string | undefined;
|
|
1755
1755
|
}>, {
|
|
1756
1756
|
userIds: string[];
|
|
1757
|
-
action: "
|
|
1758
|
-
spaceId?: string | undefined;
|
|
1757
|
+
action: "space.add" | "space.remove" | "team.add" | "team.remove" | "team.setLead" | "team.unsetLead";
|
|
1759
1758
|
teamId?: string | undefined;
|
|
1759
|
+
spaceId?: string | undefined;
|
|
1760
1760
|
}, {
|
|
1761
1761
|
userIds: string[];
|
|
1762
|
-
action: "
|
|
1763
|
-
spaceId?: string | undefined;
|
|
1762
|
+
action: "space.add" | "space.remove" | "team.add" | "team.remove" | "team.setLead" | "team.unsetLead";
|
|
1764
1763
|
teamId?: string | undefined;
|
|
1764
|
+
spaceId?: string | undefined;
|
|
1765
1765
|
}>;
|
|
1766
1766
|
export type CompositionBulk = z.infer<typeof CompositionBulk>;
|
|
1767
1767
|
export declare const BulkTaskUpdate: z.ZodObject<{
|
|
@@ -1774,34 +1774,34 @@ export declare const BulkTaskUpdate: z.ZodObject<{
|
|
|
1774
1774
|
priority: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "urgent"]>>;
|
|
1775
1775
|
}, "strict", z.ZodTypeAny, {
|
|
1776
1776
|
projectId?: string | null | undefined;
|
|
1777
|
+
sprintId?: string | null | undefined;
|
|
1777
1778
|
statusId?: string | undefined;
|
|
1778
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1779
1779
|
assigneeId?: string | null | undefined;
|
|
1780
|
-
|
|
1780
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1781
1781
|
}, {
|
|
1782
1782
|
projectId?: string | null | undefined;
|
|
1783
|
+
sprintId?: string | null | undefined;
|
|
1783
1784
|
statusId?: string | undefined;
|
|
1784
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1785
1785
|
assigneeId?: string | null | undefined;
|
|
1786
|
-
|
|
1786
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1787
1787
|
}>;
|
|
1788
1788
|
}, "strict", z.ZodTypeAny, {
|
|
1789
1789
|
taskIds: string[];
|
|
1790
1790
|
patch: {
|
|
1791
1791
|
projectId?: string | null | undefined;
|
|
1792
|
+
sprintId?: string | null | undefined;
|
|
1792
1793
|
statusId?: string | undefined;
|
|
1793
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1794
1794
|
assigneeId?: string | null | undefined;
|
|
1795
|
-
|
|
1795
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1796
1796
|
};
|
|
1797
1797
|
}, {
|
|
1798
1798
|
taskIds: string[];
|
|
1799
1799
|
patch: {
|
|
1800
1800
|
projectId?: string | null | undefined;
|
|
1801
|
+
sprintId?: string | null | undefined;
|
|
1801
1802
|
statusId?: string | undefined;
|
|
1802
|
-
priority?: "urgent" | "low" | "medium" | "high" | undefined;
|
|
1803
1803
|
assigneeId?: string | null | undefined;
|
|
1804
|
-
|
|
1804
|
+
priority?: "high" | "low" | "medium" | "urgent" | undefined;
|
|
1805
1805
|
};
|
|
1806
1806
|
}>;
|
|
1807
1807
|
export type BulkTaskUpdate = z.infer<typeof BulkTaskUpdate>;
|
|
@@ -1820,18 +1820,18 @@ export declare const BannerButton: z.ZodObject<{
|
|
|
1820
1820
|
}>;
|
|
1821
1821
|
}, "strict", z.ZodTypeAny, {
|
|
1822
1822
|
label: string;
|
|
1823
|
+
variant: "primary" | "secondary";
|
|
1823
1824
|
action: {
|
|
1824
1825
|
type: "navigate";
|
|
1825
1826
|
to: string;
|
|
1826
1827
|
};
|
|
1827
|
-
variant: "primary" | "secondary";
|
|
1828
1828
|
}, {
|
|
1829
1829
|
label: string;
|
|
1830
|
+
variant: "primary" | "secondary";
|
|
1830
1831
|
action: {
|
|
1831
1832
|
type: "navigate";
|
|
1832
1833
|
to: string;
|
|
1833
1834
|
};
|
|
1834
|
-
variant: "primary" | "secondary";
|
|
1835
1835
|
}>;
|
|
1836
1836
|
export type BannerButton = z.infer<typeof BannerButton>;
|
|
1837
1837
|
export declare const CreateBanner: z.ZodObject<{
|
|
@@ -1852,46 +1852,46 @@ export declare const CreateBanner: z.ZodObject<{
|
|
|
1852
1852
|
}>;
|
|
1853
1853
|
}, "strict", z.ZodTypeAny, {
|
|
1854
1854
|
label: string;
|
|
1855
|
+
variant: "primary" | "secondary";
|
|
1855
1856
|
action: {
|
|
1856
1857
|
type: "navigate";
|
|
1857
1858
|
to: string;
|
|
1858
1859
|
};
|
|
1859
|
-
variant: "primary" | "secondary";
|
|
1860
1860
|
}, {
|
|
1861
1861
|
label: string;
|
|
1862
|
+
variant: "primary" | "secondary";
|
|
1862
1863
|
action: {
|
|
1863
1864
|
type: "navigate";
|
|
1864
1865
|
to: string;
|
|
1865
1866
|
};
|
|
1866
|
-
variant: "primary" | "secondary";
|
|
1867
1867
|
}>, "many">>;
|
|
1868
1868
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1869
1869
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
1870
1870
|
}, "strict", z.ZodTypeAny, {
|
|
1871
|
-
text: string;
|
|
1872
1871
|
icon?: string | null | undefined;
|
|
1873
|
-
|
|
1872
|
+
text: string;
|
|
1874
1873
|
buttons?: {
|
|
1875
1874
|
label: string;
|
|
1875
|
+
variant: "primary" | "secondary";
|
|
1876
1876
|
action: {
|
|
1877
1877
|
type: "navigate";
|
|
1878
1878
|
to: string;
|
|
1879
1879
|
};
|
|
1880
|
-
variant: "primary" | "secondary";
|
|
1881
1880
|
}[] | undefined;
|
|
1881
|
+
enabled?: boolean | undefined;
|
|
1882
1882
|
sortOrder?: number | undefined;
|
|
1883
1883
|
}, {
|
|
1884
|
-
text: string;
|
|
1885
1884
|
icon?: string | null | undefined;
|
|
1886
|
-
|
|
1885
|
+
text: string;
|
|
1887
1886
|
buttons?: {
|
|
1888
1887
|
label: string;
|
|
1888
|
+
variant: "primary" | "secondary";
|
|
1889
1889
|
action: {
|
|
1890
1890
|
type: "navigate";
|
|
1891
1891
|
to: string;
|
|
1892
1892
|
};
|
|
1893
|
-
variant: "primary" | "secondary";
|
|
1894
1893
|
}[] | undefined;
|
|
1894
|
+
enabled?: boolean | undefined;
|
|
1895
1895
|
sortOrder?: number | undefined;
|
|
1896
1896
|
}>;
|
|
1897
1897
|
export type CreateBanner = z.infer<typeof CreateBanner>;
|
|
@@ -1913,46 +1913,46 @@ export declare const UpdateBanner: z.ZodObject<{
|
|
|
1913
1913
|
}>;
|
|
1914
1914
|
}, "strict", z.ZodTypeAny, {
|
|
1915
1915
|
label: string;
|
|
1916
|
+
variant: "primary" | "secondary";
|
|
1916
1917
|
action: {
|
|
1917
1918
|
type: "navigate";
|
|
1918
1919
|
to: string;
|
|
1919
1920
|
};
|
|
1920
|
-
variant: "primary" | "secondary";
|
|
1921
1921
|
}, {
|
|
1922
1922
|
label: string;
|
|
1923
|
+
variant: "primary" | "secondary";
|
|
1923
1924
|
action: {
|
|
1924
1925
|
type: "navigate";
|
|
1925
1926
|
to: string;
|
|
1926
1927
|
};
|
|
1927
|
-
variant: "primary" | "secondary";
|
|
1928
1928
|
}>, "many">>;
|
|
1929
1929
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1930
1930
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
1931
1931
|
}, "strict", z.ZodTypeAny, {
|
|
1932
1932
|
icon?: string | null | undefined;
|
|
1933
|
-
enabled?: boolean | undefined;
|
|
1934
1933
|
text?: string | undefined;
|
|
1935
1934
|
buttons?: {
|
|
1936
1935
|
label: string;
|
|
1936
|
+
variant: "primary" | "secondary";
|
|
1937
1937
|
action: {
|
|
1938
1938
|
type: "navigate";
|
|
1939
1939
|
to: string;
|
|
1940
1940
|
};
|
|
1941
|
-
variant: "primary" | "secondary";
|
|
1942
1941
|
}[] | undefined;
|
|
1942
|
+
enabled?: boolean | undefined;
|
|
1943
1943
|
sortOrder?: number | undefined;
|
|
1944
1944
|
}, {
|
|
1945
1945
|
icon?: string | null | undefined;
|
|
1946
|
-
enabled?: boolean | undefined;
|
|
1947
1946
|
text?: string | undefined;
|
|
1948
1947
|
buttons?: {
|
|
1949
1948
|
label: string;
|
|
1949
|
+
variant: "primary" | "secondary";
|
|
1950
1950
|
action: {
|
|
1951
1951
|
type: "navigate";
|
|
1952
1952
|
to: string;
|
|
1953
1953
|
};
|
|
1954
|
-
variant: "primary" | "secondary";
|
|
1955
1954
|
}[] | undefined;
|
|
1955
|
+
enabled?: boolean | undefined;
|
|
1956
1956
|
sortOrder?: number | undefined;
|
|
1957
1957
|
}>;
|
|
1958
1958
|
export type UpdateBanner = z.infer<typeof UpdateBanner>;
|