@dragonmastery/dragoncore-shared 0.0.2 → 0.0.5
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/LICENSE +2 -2
- package/dist/index.d.mts +1107 -521
- package/dist/index.mjs +349 -64
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,74 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
|
-
//#region src/validation/app_settings/notification_emails_zod.d.ts
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Schema for individual email entry
|
|
7
|
-
*/
|
|
8
|
-
declare const EmailEntrySchema: z.ZodObject<{
|
|
9
|
-
id: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
10
|
-
email: z.ZodString;
|
|
11
|
-
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
email: string;
|
|
13
|
-
id?: string | undefined;
|
|
14
|
-
}, {
|
|
15
|
-
email: string;
|
|
16
|
-
id?: string | undefined;
|
|
17
|
-
}>;
|
|
18
|
-
type EmailEntry = z.infer<typeof EmailEntrySchema>;
|
|
19
|
-
/**
|
|
20
|
-
* Schema for updating support ticket notification emails
|
|
21
|
-
* Uses an array of email objects for proper validation and UX
|
|
22
|
-
*/
|
|
23
|
-
declare const UpdateNotificationEmailsSchema: z.ZodObject<{
|
|
24
|
-
emails: z.ZodArray<z.ZodObject<{
|
|
25
|
-
id: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
26
|
-
email: z.ZodString;
|
|
27
|
-
}, "strip", z.ZodTypeAny, {
|
|
28
|
-
email: string;
|
|
29
|
-
id?: string | undefined;
|
|
30
|
-
}, {
|
|
31
|
-
email: string;
|
|
32
|
-
id?: string | undefined;
|
|
33
|
-
}>, "many">;
|
|
34
|
-
}, "strip", z.ZodTypeAny, {
|
|
35
|
-
emails: {
|
|
36
|
-
email: string;
|
|
37
|
-
id?: string | undefined;
|
|
38
|
-
}[];
|
|
39
|
-
}, {
|
|
40
|
-
emails: {
|
|
41
|
-
email: string;
|
|
42
|
-
id?: string | undefined;
|
|
43
|
-
}[];
|
|
44
|
-
}>;
|
|
45
|
-
/**
|
|
46
|
-
* Schema for reading support ticket notification emails
|
|
47
|
-
*/
|
|
48
|
-
declare const ReadNotificationEmailsSchema: z.ZodObject<{
|
|
49
|
-
emails: z.ZodArray<z.ZodObject<{
|
|
50
|
-
email: z.ZodString;
|
|
51
|
-
}, "strip", z.ZodTypeAny, {
|
|
52
|
-
email: string;
|
|
53
|
-
}, {
|
|
54
|
-
email: string;
|
|
55
|
-
}>, "many">;
|
|
56
|
-
}, "strip", z.ZodTypeAny, {
|
|
57
|
-
emails: {
|
|
58
|
-
email: string;
|
|
59
|
-
}[];
|
|
60
|
-
}, {
|
|
61
|
-
emails: {
|
|
62
|
-
email: string;
|
|
63
|
-
}[];
|
|
64
|
-
}>;
|
|
65
|
-
type UpdateNotificationEmails = z.infer<typeof UpdateNotificationEmailsSchema>;
|
|
66
|
-
type ReadNotificationEmails = z.infer<typeof ReadNotificationEmailsSchema>;
|
|
67
|
-
/**
|
|
68
|
-
* Helper function to create a new email entry
|
|
69
|
-
*/
|
|
70
|
-
declare function createNewEmailEntry(): EmailEntry;
|
|
71
|
-
//#endregion
|
|
72
3
|
//#region src/validation/attachment/attachment_filters_zod.d.ts
|
|
73
4
|
declare const AttachmentFiltersSchema: z.ZodObject<{
|
|
74
5
|
record_id: z.ZodString;
|
|
@@ -216,12 +147,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
216
147
|
updated_at?: string | null | undefined;
|
|
217
148
|
updated_by?: string | null | undefined;
|
|
218
149
|
metadata?: string | null | undefined;
|
|
219
|
-
parent_folder_id?: string | null | undefined;
|
|
220
|
-
file_count?: number | undefined;
|
|
221
150
|
archived_at?: string | null | undefined;
|
|
222
151
|
archived_by?: string | null | undefined;
|
|
223
152
|
deleted_at?: string | null | undefined;
|
|
224
153
|
deleted_by?: string | null | undefined;
|
|
154
|
+
parent_folder_id?: string | null | undefined;
|
|
155
|
+
file_count?: number | undefined;
|
|
225
156
|
}, {
|
|
226
157
|
created_at: string;
|
|
227
158
|
created_by: string;
|
|
@@ -234,12 +165,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
234
165
|
updated_at?: string | null | undefined;
|
|
235
166
|
updated_by?: string | null | undefined;
|
|
236
167
|
metadata?: string | null | undefined;
|
|
237
|
-
parent_folder_id?: string | null | undefined;
|
|
238
|
-
file_count?: number | undefined;
|
|
239
168
|
archived_at?: string | null | undefined;
|
|
240
169
|
archived_by?: string | null | undefined;
|
|
241
170
|
deleted_at?: string | null | undefined;
|
|
242
171
|
deleted_by?: string | null | undefined;
|
|
172
|
+
parent_folder_id?: string | null | undefined;
|
|
173
|
+
file_count?: number | undefined;
|
|
243
174
|
}>;
|
|
244
175
|
type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
|
|
245
176
|
//#endregion
|
|
@@ -262,8 +193,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
262
193
|
content_type: string;
|
|
263
194
|
file_size: string;
|
|
264
195
|
description?: string | null | undefined;
|
|
265
|
-
folder_id?: string | null | undefined;
|
|
266
196
|
metadata?: string | null | undefined;
|
|
197
|
+
folder_id?: string | null | undefined;
|
|
267
198
|
}, {
|
|
268
199
|
record_id: string;
|
|
269
200
|
record_type: string;
|
|
@@ -272,8 +203,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
272
203
|
content_type: string;
|
|
273
204
|
file_size: string;
|
|
274
205
|
description?: string | null | undefined;
|
|
275
|
-
folder_id?: string | null | undefined;
|
|
276
206
|
metadata?: string | null | undefined;
|
|
207
|
+
folder_id?: string | null | undefined;
|
|
277
208
|
}>;
|
|
278
209
|
type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
|
|
279
210
|
declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
@@ -293,23 +224,23 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
293
224
|
description?: string | null | undefined;
|
|
294
225
|
record_id?: string | undefined;
|
|
295
226
|
record_type?: string | undefined;
|
|
296
|
-
folder_id?: string | null | undefined;
|
|
297
227
|
sanitized_name?: string | undefined;
|
|
298
228
|
original_name?: string | undefined;
|
|
299
|
-
metadata?: string | null | undefined;
|
|
300
229
|
content_type?: string | undefined;
|
|
301
230
|
file_size?: string | undefined;
|
|
231
|
+
metadata?: string | null | undefined;
|
|
232
|
+
folder_id?: string | null | undefined;
|
|
302
233
|
}, {
|
|
303
234
|
id: string;
|
|
304
235
|
description?: string | null | undefined;
|
|
305
236
|
record_id?: string | undefined;
|
|
306
237
|
record_type?: string | undefined;
|
|
307
|
-
folder_id?: string | null | undefined;
|
|
308
238
|
sanitized_name?: string | undefined;
|
|
309
239
|
original_name?: string | undefined;
|
|
310
|
-
metadata?: string | null | undefined;
|
|
311
240
|
content_type?: string | undefined;
|
|
312
241
|
file_size?: string | undefined;
|
|
242
|
+
metadata?: string | null | undefined;
|
|
243
|
+
folder_id?: string | null | undefined;
|
|
313
244
|
}>;
|
|
314
245
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
315
246
|
//#endregion
|
|
@@ -348,8 +279,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
348
279
|
description?: string | null | undefined;
|
|
349
280
|
updated_at?: string | null | undefined;
|
|
350
281
|
updated_by?: string | null | undefined;
|
|
351
|
-
folder_id?: string | null | undefined;
|
|
352
282
|
metadata?: string | null | undefined;
|
|
283
|
+
folder_id?: string | null | undefined;
|
|
353
284
|
archived_at?: string | null | undefined;
|
|
354
285
|
archived_by?: string | null | undefined;
|
|
355
286
|
deleted_at?: string | null | undefined;
|
|
@@ -367,8 +298,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
367
298
|
description?: string | null | undefined;
|
|
368
299
|
updated_at?: string | null | undefined;
|
|
369
300
|
updated_by?: string | null | undefined;
|
|
370
|
-
folder_id?: string | null | undefined;
|
|
371
301
|
metadata?: string | null | undefined;
|
|
302
|
+
folder_id?: string | null | undefined;
|
|
372
303
|
archived_at?: string | null | undefined;
|
|
373
304
|
archived_by?: string | null | undefined;
|
|
374
305
|
deleted_at?: string | null | undefined;
|
|
@@ -405,12 +336,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
405
336
|
updated_at?: string | null | undefined;
|
|
406
337
|
updated_by?: string | null | undefined;
|
|
407
338
|
metadata?: string | null | undefined;
|
|
408
|
-
parent_folder_id?: string | null | undefined;
|
|
409
|
-
file_count?: number | undefined;
|
|
410
339
|
archived_at?: string | null | undefined;
|
|
411
340
|
archived_by?: string | null | undefined;
|
|
412
341
|
deleted_at?: string | null | undefined;
|
|
413
342
|
deleted_by?: string | null | undefined;
|
|
343
|
+
parent_folder_id?: string | null | undefined;
|
|
344
|
+
file_count?: number | undefined;
|
|
414
345
|
}, {
|
|
415
346
|
created_at: string;
|
|
416
347
|
created_by: string;
|
|
@@ -423,12 +354,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
423
354
|
updated_at?: string | null | undefined;
|
|
424
355
|
updated_by?: string | null | undefined;
|
|
425
356
|
metadata?: string | null | undefined;
|
|
426
|
-
parent_folder_id?: string | null | undefined;
|
|
427
|
-
file_count?: number | undefined;
|
|
428
357
|
archived_at?: string | null | undefined;
|
|
429
358
|
archived_by?: string | null | undefined;
|
|
430
359
|
deleted_at?: string | null | undefined;
|
|
431
360
|
deleted_by?: string | null | undefined;
|
|
361
|
+
parent_folder_id?: string | null | undefined;
|
|
362
|
+
file_count?: number | undefined;
|
|
432
363
|
}>, "many">;
|
|
433
364
|
pageInfo: z.ZodObject<{
|
|
434
365
|
hasNextPage: z.ZodBoolean;
|
|
@@ -458,8 +389,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
458
389
|
description?: string | null | undefined;
|
|
459
390
|
updated_at?: string | null | undefined;
|
|
460
391
|
updated_by?: string | null | undefined;
|
|
461
|
-
folder_id?: string | null | undefined;
|
|
462
392
|
metadata?: string | null | undefined;
|
|
393
|
+
folder_id?: string | null | undefined;
|
|
463
394
|
archived_at?: string | null | undefined;
|
|
464
395
|
archived_by?: string | null | undefined;
|
|
465
396
|
deleted_at?: string | null | undefined;
|
|
@@ -477,12 +408,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
477
408
|
updated_at?: string | null | undefined;
|
|
478
409
|
updated_by?: string | null | undefined;
|
|
479
410
|
metadata?: string | null | undefined;
|
|
480
|
-
parent_folder_id?: string | null | undefined;
|
|
481
|
-
file_count?: number | undefined;
|
|
482
411
|
archived_at?: string | null | undefined;
|
|
483
412
|
archived_by?: string | null | undefined;
|
|
484
413
|
deleted_at?: string | null | undefined;
|
|
485
414
|
deleted_by?: string | null | undefined;
|
|
415
|
+
parent_folder_id?: string | null | undefined;
|
|
416
|
+
file_count?: number | undefined;
|
|
486
417
|
}[];
|
|
487
418
|
}, {
|
|
488
419
|
pageInfo: {
|
|
@@ -502,8 +433,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
502
433
|
description?: string | null | undefined;
|
|
503
434
|
updated_at?: string | null | undefined;
|
|
504
435
|
updated_by?: string | null | undefined;
|
|
505
|
-
folder_id?: string | null | undefined;
|
|
506
436
|
metadata?: string | null | undefined;
|
|
437
|
+
folder_id?: string | null | undefined;
|
|
507
438
|
archived_at?: string | null | undefined;
|
|
508
439
|
archived_by?: string | null | undefined;
|
|
509
440
|
deleted_at?: string | null | undefined;
|
|
@@ -521,12 +452,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
521
452
|
updated_at?: string | null | undefined;
|
|
522
453
|
updated_by?: string | null | undefined;
|
|
523
454
|
metadata?: string | null | undefined;
|
|
524
|
-
parent_folder_id?: string | null | undefined;
|
|
525
|
-
file_count?: number | undefined;
|
|
526
455
|
archived_at?: string | null | undefined;
|
|
527
456
|
archived_by?: string | null | undefined;
|
|
528
457
|
deleted_at?: string | null | undefined;
|
|
529
458
|
deleted_by?: string | null | undefined;
|
|
459
|
+
parent_folder_id?: string | null | undefined;
|
|
460
|
+
file_count?: number | undefined;
|
|
530
461
|
}[];
|
|
531
462
|
}>;
|
|
532
463
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -565,8 +496,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
565
496
|
description?: string | null | undefined;
|
|
566
497
|
updated_at?: string | null | undefined;
|
|
567
498
|
updated_by?: string | null | undefined;
|
|
568
|
-
folder_id?: string | null | undefined;
|
|
569
499
|
metadata?: string | null | undefined;
|
|
500
|
+
folder_id?: string | null | undefined;
|
|
570
501
|
archived_at?: string | null | undefined;
|
|
571
502
|
archived_by?: string | null | undefined;
|
|
572
503
|
deleted_at?: string | null | undefined;
|
|
@@ -584,8 +515,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
584
515
|
description?: string | null | undefined;
|
|
585
516
|
updated_at?: string | null | undefined;
|
|
586
517
|
updated_by?: string | null | undefined;
|
|
587
|
-
folder_id?: string | null | undefined;
|
|
588
518
|
metadata?: string | null | undefined;
|
|
519
|
+
folder_id?: string | null | undefined;
|
|
589
520
|
archived_at?: string | null | undefined;
|
|
590
521
|
archived_by?: string | null | undefined;
|
|
591
522
|
deleted_at?: string | null | undefined;
|
|
@@ -1068,7 +999,7 @@ declare const PaginationFiltersSchema: z.ZodObject<{
|
|
|
1068
999
|
declare const PageInfoSchema: z.ZodObject<{
|
|
1069
1000
|
hasNextPage: z.ZodBoolean;
|
|
1070
1001
|
hasPreviousPage: z.ZodBoolean;
|
|
1071
|
-
prevPageCursor: z.ZodOptional<z.ZodString
|
|
1002
|
+
prevPageCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1072
1003
|
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
1073
1004
|
currentPageIndex: z.ZodOptional<z.ZodNumber>;
|
|
1074
1005
|
paginationToken: z.ZodOptional<z.ZodString>;
|
|
@@ -1076,14 +1007,14 @@ declare const PageInfoSchema: z.ZodObject<{
|
|
|
1076
1007
|
hasNextPage: boolean;
|
|
1077
1008
|
hasPreviousPage: boolean;
|
|
1078
1009
|
paginationToken?: string | undefined;
|
|
1079
|
-
prevPageCursor?: string | undefined;
|
|
1010
|
+
prevPageCursor?: string | null | undefined;
|
|
1080
1011
|
nextPageCursor?: string | undefined;
|
|
1081
1012
|
currentPageIndex?: number | undefined;
|
|
1082
1013
|
}, {
|
|
1083
1014
|
hasNextPage: boolean;
|
|
1084
1015
|
hasPreviousPage: boolean;
|
|
1085
1016
|
paginationToken?: string | undefined;
|
|
1086
|
-
prevPageCursor?: string | undefined;
|
|
1017
|
+
prevPageCursor?: string | null | undefined;
|
|
1087
1018
|
nextPageCursor?: string | undefined;
|
|
1088
1019
|
currentPageIndex?: number | undefined;
|
|
1089
1020
|
}>;
|
|
@@ -1092,7 +1023,7 @@ declare function createPaginatedSchema<T extends z.ZodType>(itemSchema: T): z.Zo
|
|
|
1092
1023
|
pageInfo: z.ZodObject<{
|
|
1093
1024
|
hasNextPage: z.ZodBoolean;
|
|
1094
1025
|
hasPreviousPage: z.ZodBoolean;
|
|
1095
|
-
prevPageCursor: z.ZodOptional<z.ZodString
|
|
1026
|
+
prevPageCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1096
1027
|
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
1097
1028
|
currentPageIndex: z.ZodOptional<z.ZodNumber>;
|
|
1098
1029
|
paginationToken: z.ZodOptional<z.ZodString>;
|
|
@@ -1100,14 +1031,14 @@ declare function createPaginatedSchema<T extends z.ZodType>(itemSchema: T): z.Zo
|
|
|
1100
1031
|
hasNextPage: boolean;
|
|
1101
1032
|
hasPreviousPage: boolean;
|
|
1102
1033
|
paginationToken?: string | undefined;
|
|
1103
|
-
prevPageCursor?: string | undefined;
|
|
1034
|
+
prevPageCursor?: string | null | undefined;
|
|
1104
1035
|
nextPageCursor?: string | undefined;
|
|
1105
1036
|
currentPageIndex?: number | undefined;
|
|
1106
1037
|
}, {
|
|
1107
1038
|
hasNextPage: boolean;
|
|
1108
1039
|
hasPreviousPage: boolean;
|
|
1109
1040
|
paginationToken?: string | undefined;
|
|
1110
|
-
prevPageCursor?: string | undefined;
|
|
1041
|
+
prevPageCursor?: string | null | undefined;
|
|
1111
1042
|
nextPageCursor?: string | undefined;
|
|
1112
1043
|
currentPageIndex?: number | undefined;
|
|
1113
1044
|
}>;
|
|
@@ -1117,7 +1048,7 @@ declare function createPaginatedSchema<T extends z.ZodType>(itemSchema: T): z.Zo
|
|
|
1117
1048
|
hasNextPage: boolean;
|
|
1118
1049
|
hasPreviousPage: boolean;
|
|
1119
1050
|
paginationToken?: string | undefined;
|
|
1120
|
-
prevPageCursor?: string | undefined;
|
|
1051
|
+
prevPageCursor?: string | null | undefined;
|
|
1121
1052
|
nextPageCursor?: string | undefined;
|
|
1122
1053
|
currentPageIndex?: number | undefined;
|
|
1123
1054
|
};
|
|
@@ -1127,7 +1058,7 @@ declare function createPaginatedSchema<T extends z.ZodType>(itemSchema: T): z.Zo
|
|
|
1127
1058
|
hasNextPage: boolean;
|
|
1128
1059
|
hasPreviousPage: boolean;
|
|
1129
1060
|
paginationToken?: string | undefined;
|
|
1130
|
-
prevPageCursor?: string | undefined;
|
|
1061
|
+
prevPageCursor?: string | null | undefined;
|
|
1131
1062
|
nextPageCursor?: string | undefined;
|
|
1132
1063
|
currentPageIndex?: number | undefined;
|
|
1133
1064
|
};
|
|
@@ -1688,7 +1619,7 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1688
1619
|
pageInfo: z.ZodObject<{
|
|
1689
1620
|
hasNextPage: z.ZodBoolean;
|
|
1690
1621
|
hasPreviousPage: z.ZodBoolean;
|
|
1691
|
-
prevPageCursor: z.ZodOptional<z.ZodString
|
|
1622
|
+
prevPageCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1692
1623
|
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
1693
1624
|
currentPageIndex: z.ZodOptional<z.ZodNumber>;
|
|
1694
1625
|
paginationToken: z.ZodOptional<z.ZodString>;
|
|
@@ -1696,14 +1627,14 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1696
1627
|
hasNextPage: boolean;
|
|
1697
1628
|
hasPreviousPage: boolean;
|
|
1698
1629
|
paginationToken?: string | undefined;
|
|
1699
|
-
prevPageCursor?: string | undefined;
|
|
1630
|
+
prevPageCursor?: string | null | undefined;
|
|
1700
1631
|
nextPageCursor?: string | undefined;
|
|
1701
1632
|
currentPageIndex?: number | undefined;
|
|
1702
1633
|
}, {
|
|
1703
1634
|
hasNextPage: boolean;
|
|
1704
1635
|
hasPreviousPage: boolean;
|
|
1705
1636
|
paginationToken?: string | undefined;
|
|
1706
|
-
prevPageCursor?: string | undefined;
|
|
1637
|
+
prevPageCursor?: string | null | undefined;
|
|
1707
1638
|
nextPageCursor?: string | undefined;
|
|
1708
1639
|
currentPageIndex?: number | undefined;
|
|
1709
1640
|
}>;
|
|
@@ -1722,7 +1653,7 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1722
1653
|
hasNextPage: boolean;
|
|
1723
1654
|
hasPreviousPage: boolean;
|
|
1724
1655
|
paginationToken?: string | undefined;
|
|
1725
|
-
prevPageCursor?: string | undefined;
|
|
1656
|
+
prevPageCursor?: string | null | undefined;
|
|
1726
1657
|
nextPageCursor?: string | undefined;
|
|
1727
1658
|
currentPageIndex?: number | undefined;
|
|
1728
1659
|
};
|
|
@@ -1741,7 +1672,7 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1741
1672
|
hasNextPage: boolean;
|
|
1742
1673
|
hasPreviousPage: boolean;
|
|
1743
1674
|
paginationToken?: string | undefined;
|
|
1744
|
-
prevPageCursor?: string | undefined;
|
|
1675
|
+
prevPageCursor?: string | null | undefined;
|
|
1745
1676
|
nextPageCursor?: string | undefined;
|
|
1746
1677
|
currentPageIndex?: number | undefined;
|
|
1747
1678
|
};
|
|
@@ -2150,15 +2081,17 @@ type LoginInputDto = z.infer<typeof loginSchema>;
|
|
|
2150
2081
|
declare const NoteReadSchema: z.ZodObject<{
|
|
2151
2082
|
id: z.ZodString;
|
|
2152
2083
|
record_id: z.ZodString;
|
|
2153
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "team", "quote", "note", "followup"]>;
|
|
2084
|
+
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
2154
2085
|
tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2155
2086
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2156
2087
|
body: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2157
2088
|
original_id: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2158
2089
|
is_internal: z.ZodBoolean;
|
|
2159
2090
|
created_by: z.ZodString;
|
|
2091
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2160
2092
|
created_at: z.ZodString;
|
|
2161
2093
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2094
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2162
2095
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2163
2096
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2164
2097
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2169,7 +2102,7 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2169
2102
|
created_by: string;
|
|
2170
2103
|
id: string;
|
|
2171
2104
|
record_id: string;
|
|
2172
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
2105
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2173
2106
|
is_internal: boolean;
|
|
2174
2107
|
updated_at?: string | null | undefined;
|
|
2175
2108
|
updated_by?: string | null | undefined;
|
|
@@ -2177,16 +2110,18 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2177
2110
|
archived_by?: string | null | undefined;
|
|
2178
2111
|
deleted_at?: string | null | undefined;
|
|
2179
2112
|
deleted_by?: string | null | undefined;
|
|
2180
|
-
tag?: string | null | undefined;
|
|
2181
2113
|
title?: string | null | undefined;
|
|
2182
2114
|
body?: string | null | undefined;
|
|
2115
|
+
tag?: string | null | undefined;
|
|
2183
2116
|
original_id?: number | null | undefined;
|
|
2117
|
+
created_by_display_name?: string | null | undefined;
|
|
2118
|
+
updated_by_display_name?: string | null | undefined;
|
|
2184
2119
|
}, {
|
|
2185
2120
|
created_at: string;
|
|
2186
2121
|
created_by: string;
|
|
2187
2122
|
id: string;
|
|
2188
2123
|
record_id: string;
|
|
2189
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
2124
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2190
2125
|
is_internal: boolean;
|
|
2191
2126
|
updated_at?: string | null | undefined;
|
|
2192
2127
|
updated_by?: string | null | undefined;
|
|
@@ -2194,17 +2129,19 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2194
2129
|
archived_by?: string | null | undefined;
|
|
2195
2130
|
deleted_at?: string | null | undefined;
|
|
2196
2131
|
deleted_by?: string | null | undefined;
|
|
2197
|
-
tag?: string | null | undefined;
|
|
2198
2132
|
title?: string | null | undefined;
|
|
2199
2133
|
body?: string | null | undefined;
|
|
2134
|
+
tag?: string | null | undefined;
|
|
2200
2135
|
original_id?: number | null | undefined;
|
|
2136
|
+
created_by_display_name?: string | null | undefined;
|
|
2137
|
+
updated_by_display_name?: string | null | undefined;
|
|
2201
2138
|
}>;
|
|
2202
2139
|
type NoteReadDto = z.infer<typeof NoteReadSchema>;
|
|
2203
2140
|
//#endregion
|
|
2204
2141
|
//#region src/validation/note/note_create_zod.d.ts
|
|
2205
2142
|
declare const NoteCreateSchema: z.ZodObject<{
|
|
2206
2143
|
record_id: z.ZodString;
|
|
2207
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "team", "quote", "note", "followup"]>;
|
|
2144
|
+
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
2208
2145
|
tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2209
2146
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2210
2147
|
body: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2212,20 +2149,20 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2212
2149
|
is_internal: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2213
2150
|
}, "strip", z.ZodTypeAny, {
|
|
2214
2151
|
record_id: string;
|
|
2215
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
2152
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2216
2153
|
is_internal: boolean;
|
|
2217
|
-
tag?: string | null | undefined;
|
|
2218
2154
|
title?: string | null | undefined;
|
|
2219
2155
|
body?: string | null | undefined;
|
|
2156
|
+
tag?: string | null | undefined;
|
|
2220
2157
|
original_id?: number | null | undefined;
|
|
2221
2158
|
}, {
|
|
2222
2159
|
record_id: string;
|
|
2223
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
2224
|
-
tag?: string | null | undefined;
|
|
2160
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2225
2161
|
title?: string | null | undefined;
|
|
2226
2162
|
body?: string | null | undefined;
|
|
2227
|
-
|
|
2163
|
+
tag?: string | null | undefined;
|
|
2228
2164
|
is_internal?: boolean | undefined;
|
|
2165
|
+
original_id?: number | null | undefined;
|
|
2229
2166
|
}>;
|
|
2230
2167
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2231
2168
|
//#endregion
|
|
@@ -2233,7 +2170,7 @@ type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
|
2233
2170
|
declare const NoteUpdateSchema: z.ZodObject<{
|
|
2234
2171
|
id: z.ZodString;
|
|
2235
2172
|
record_id: z.ZodOptional<z.ZodString>;
|
|
2236
|
-
record_type: z.ZodOptional<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "team", "quote", "note", "followup"]>>;
|
|
2173
|
+
record_type: z.ZodOptional<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>>;
|
|
2237
2174
|
tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2238
2175
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2239
2176
|
body: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2242,21 +2179,21 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2242
2179
|
}, "strip", z.ZodTypeAny, {
|
|
2243
2180
|
id: string;
|
|
2244
2181
|
record_id?: string | undefined;
|
|
2245
|
-
record_type?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup" | undefined;
|
|
2246
|
-
tag?: string | null | undefined;
|
|
2182
|
+
record_type?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2247
2183
|
title?: string | null | undefined;
|
|
2248
2184
|
body?: string | null | undefined;
|
|
2249
|
-
|
|
2185
|
+
tag?: string | null | undefined;
|
|
2250
2186
|
is_internal?: boolean | undefined;
|
|
2187
|
+
original_id?: number | null | undefined;
|
|
2251
2188
|
}, {
|
|
2252
2189
|
id: string;
|
|
2253
2190
|
record_id?: string | undefined;
|
|
2254
|
-
record_type?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup" | undefined;
|
|
2255
|
-
tag?: string | null | undefined;
|
|
2191
|
+
record_type?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2256
2192
|
title?: string | null | undefined;
|
|
2257
2193
|
body?: string | null | undefined;
|
|
2258
|
-
|
|
2194
|
+
tag?: string | null | undefined;
|
|
2259
2195
|
is_internal?: boolean | undefined;
|
|
2196
|
+
original_id?: number | null | undefined;
|
|
2260
2197
|
}>;
|
|
2261
2198
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2262
2199
|
//#endregion
|
|
@@ -2311,27 +2248,27 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2311
2248
|
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
2312
2249
|
} & {
|
|
2313
2250
|
operator: z.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
2314
|
-
value: z.ZodOptional<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "team", "quote", "note", "followup"]>>;
|
|
2315
|
-
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "team", "quote", "note", "followup"]>, "many">>;
|
|
2251
|
+
value: z.ZodOptional<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>>;
|
|
2252
|
+
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>, "many">>;
|
|
2316
2253
|
}, "strip", z.ZodTypeAny, {
|
|
2317
2254
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2318
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup" | undefined;
|
|
2319
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup")[] | undefined;
|
|
2255
|
+
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2256
|
+
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2320
2257
|
caseSensitive?: boolean | undefined;
|
|
2321
2258
|
}, {
|
|
2322
2259
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2323
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup" | undefined;
|
|
2324
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup")[] | undefined;
|
|
2260
|
+
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2261
|
+
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2325
2262
|
caseSensitive?: boolean | undefined;
|
|
2326
2263
|
}>, {
|
|
2327
2264
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2328
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup" | undefined;
|
|
2329
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup")[] | undefined;
|
|
2265
|
+
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2266
|
+
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2330
2267
|
caseSensitive?: boolean | undefined;
|
|
2331
2268
|
}, {
|
|
2332
2269
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2333
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup" | undefined;
|
|
2334
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup")[] | undefined;
|
|
2270
|
+
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2271
|
+
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2335
2272
|
caseSensitive?: boolean | undefined;
|
|
2336
2273
|
}>>;
|
|
2337
2274
|
title: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
@@ -2651,8 +2588,8 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2651
2588
|
} | undefined;
|
|
2652
2589
|
record_type?: {
|
|
2653
2590
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2654
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup" | undefined;
|
|
2655
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup")[] | undefined;
|
|
2591
|
+
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2592
|
+
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2656
2593
|
caseSensitive?: boolean | undefined;
|
|
2657
2594
|
} | undefined;
|
|
2658
2595
|
updated_at?: {
|
|
@@ -2671,19 +2608,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2671
2608
|
values?: any[] | undefined;
|
|
2672
2609
|
caseSensitive?: boolean | undefined;
|
|
2673
2610
|
} | undefined;
|
|
2674
|
-
|
|
2611
|
+
title?: {
|
|
2675
2612
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2676
2613
|
value?: string | undefined;
|
|
2677
2614
|
values?: string[] | undefined;
|
|
2678
2615
|
caseSensitive?: boolean | undefined;
|
|
2679
2616
|
} | undefined;
|
|
2680
|
-
|
|
2617
|
+
body?: {
|
|
2681
2618
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2682
2619
|
value?: string | undefined;
|
|
2683
2620
|
values?: string[] | undefined;
|
|
2684
2621
|
caseSensitive?: boolean | undefined;
|
|
2685
2622
|
} | undefined;
|
|
2686
|
-
|
|
2623
|
+
tag?: {
|
|
2687
2624
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2688
2625
|
value?: string | undefined;
|
|
2689
2626
|
values?: string[] | undefined;
|
|
@@ -2729,8 +2666,8 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2729
2666
|
} | undefined;
|
|
2730
2667
|
record_type?: {
|
|
2731
2668
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2732
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup" | undefined;
|
|
2733
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup")[] | undefined;
|
|
2669
|
+
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2670
|
+
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2734
2671
|
caseSensitive?: boolean | undefined;
|
|
2735
2672
|
} | undefined;
|
|
2736
2673
|
updated_at?: {
|
|
@@ -2749,19 +2686,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2749
2686
|
values?: any[] | undefined;
|
|
2750
2687
|
caseSensitive?: boolean | undefined;
|
|
2751
2688
|
} | undefined;
|
|
2752
|
-
|
|
2689
|
+
title?: {
|
|
2753
2690
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2754
2691
|
value?: string | undefined;
|
|
2755
2692
|
values?: string[] | undefined;
|
|
2756
2693
|
caseSensitive?: boolean | undefined;
|
|
2757
2694
|
} | undefined;
|
|
2758
|
-
|
|
2695
|
+
body?: {
|
|
2759
2696
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2760
2697
|
value?: string | undefined;
|
|
2761
2698
|
values?: string[] | undefined;
|
|
2762
2699
|
caseSensitive?: boolean | undefined;
|
|
2763
2700
|
} | undefined;
|
|
2764
|
-
|
|
2701
|
+
tag?: {
|
|
2765
2702
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2766
2703
|
value?: string | undefined;
|
|
2767
2704
|
values?: string[] | undefined;
|
|
@@ -2922,7 +2859,8 @@ declare const recordVersionFiltersSchema: z.ZodObject<{
|
|
|
2922
2859
|
}>;
|
|
2923
2860
|
declare const recordVersionFiltersInputSchema: z.ZodObject<{
|
|
2924
2861
|
record_id: z.ZodString;
|
|
2925
|
-
|
|
2862
|
+
/** @deprecated Use record_types in filters instead. record_types takes priority when both are provided. */
|
|
2863
|
+
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
2926
2864
|
filters: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2927
2865
|
start_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2928
2866
|
end_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2941,7 +2879,7 @@ declare const recordVersionFiltersInputSchema: z.ZodObject<{
|
|
|
2941
2879
|
}>>>;
|
|
2942
2880
|
}, "strip", z.ZodTypeAny, {
|
|
2943
2881
|
record_id: string;
|
|
2944
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
2882
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2945
2883
|
filters?: {
|
|
2946
2884
|
start_date?: string | null | undefined;
|
|
2947
2885
|
end_date?: string | null | undefined;
|
|
@@ -2950,7 +2888,7 @@ declare const recordVersionFiltersInputSchema: z.ZodObject<{
|
|
|
2950
2888
|
} | null | undefined;
|
|
2951
2889
|
}, {
|
|
2952
2890
|
record_id: string;
|
|
2953
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
2891
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2954
2892
|
filters?: {
|
|
2955
2893
|
start_date?: string | null | undefined;
|
|
2956
2894
|
end_date?: string | null | undefined;
|
|
@@ -2964,6 +2902,7 @@ type RecordVersionPageInfoDto = z.infer<typeof pageInfoSchema>;
|
|
|
2964
2902
|
/**
|
|
2965
2903
|
* NEW: Breadcrumb-paginated record version response
|
|
2966
2904
|
* Use this for new implementations
|
|
2905
|
+
* user_display_map: optional map of user_id -> display_name for timeline display (assigned_to, created_by, etc.)
|
|
2967
2906
|
*/
|
|
2968
2907
|
declare const recordVersionPageBreadcrumbSchema: z.ZodObject<{
|
|
2969
2908
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -3003,7 +2942,7 @@ declare const recordVersionPageBreadcrumbSchema: z.ZodObject<{
|
|
|
3003
2942
|
pageInfo: z.ZodObject<{
|
|
3004
2943
|
hasNextPage: z.ZodBoolean;
|
|
3005
2944
|
hasPreviousPage: z.ZodBoolean;
|
|
3006
|
-
prevPageCursor: z.ZodOptional<z.ZodString
|
|
2945
|
+
prevPageCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3007
2946
|
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
3008
2947
|
currentPageIndex: z.ZodOptional<z.ZodNumber>;
|
|
3009
2948
|
paginationToken: z.ZodOptional<z.ZodString>;
|
|
@@ -3011,17 +2950,19 @@ declare const recordVersionPageBreadcrumbSchema: z.ZodObject<{
|
|
|
3011
2950
|
hasNextPage: boolean;
|
|
3012
2951
|
hasPreviousPage: boolean;
|
|
3013
2952
|
paginationToken?: string | undefined;
|
|
3014
|
-
prevPageCursor?: string | undefined;
|
|
2953
|
+
prevPageCursor?: string | null | undefined;
|
|
3015
2954
|
nextPageCursor?: string | undefined;
|
|
3016
2955
|
currentPageIndex?: number | undefined;
|
|
3017
2956
|
}, {
|
|
3018
2957
|
hasNextPage: boolean;
|
|
3019
2958
|
hasPreviousPage: boolean;
|
|
3020
2959
|
paginationToken?: string | undefined;
|
|
3021
|
-
prevPageCursor?: string | undefined;
|
|
2960
|
+
prevPageCursor?: string | null | undefined;
|
|
3022
2961
|
nextPageCursor?: string | undefined;
|
|
3023
2962
|
currentPageIndex?: number | undefined;
|
|
3024
2963
|
}>;
|
|
2964
|
+
} & {
|
|
2965
|
+
user_display_map: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3025
2966
|
}, "strip", z.ZodTypeAny, {
|
|
3026
2967
|
items: {
|
|
3027
2968
|
id: string;
|
|
@@ -3039,10 +2980,11 @@ declare const recordVersionPageBreadcrumbSchema: z.ZodObject<{
|
|
|
3039
2980
|
hasNextPage: boolean;
|
|
3040
2981
|
hasPreviousPage: boolean;
|
|
3041
2982
|
paginationToken?: string | undefined;
|
|
3042
|
-
prevPageCursor?: string | undefined;
|
|
2983
|
+
prevPageCursor?: string | null | undefined;
|
|
3043
2984
|
nextPageCursor?: string | undefined;
|
|
3044
2985
|
currentPageIndex?: number | undefined;
|
|
3045
2986
|
};
|
|
2987
|
+
user_display_map?: Record<string, string> | undefined;
|
|
3046
2988
|
}, {
|
|
3047
2989
|
items: {
|
|
3048
2990
|
id: string;
|
|
@@ -3060,10 +3002,11 @@ declare const recordVersionPageBreadcrumbSchema: z.ZodObject<{
|
|
|
3060
3002
|
hasNextPage: boolean;
|
|
3061
3003
|
hasPreviousPage: boolean;
|
|
3062
3004
|
paginationToken?: string | undefined;
|
|
3063
|
-
prevPageCursor?: string | undefined;
|
|
3005
|
+
prevPageCursor?: string | null | undefined;
|
|
3064
3006
|
nextPageCursor?: string | undefined;
|
|
3065
3007
|
currentPageIndex?: number | undefined;
|
|
3066
3008
|
};
|
|
3009
|
+
user_display_map?: Record<string, string> | undefined;
|
|
3067
3010
|
}>;
|
|
3068
3011
|
/**
|
|
3069
3012
|
* NEW: Filters with breadcrumb pagination support
|
|
@@ -3079,6 +3022,10 @@ declare const recordVersionFiltersBreadcrumbSchema: z.ZodObject<{
|
|
|
3079
3022
|
paginationToken: z.ZodOptional<z.ZodString>;
|
|
3080
3023
|
start_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3081
3024
|
end_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3025
|
+
/** When provided, fetches versions for these record types and merges. Takes priority over record_type. */
|
|
3026
|
+
record_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>, "many">>;
|
|
3027
|
+
/** When provided, fetches versions for these record IDs (e.g. tracker + followup IDs). Used for activity views. */
|
|
3028
|
+
record_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3082
3029
|
}, "strip", z.ZodTypeAny, {
|
|
3083
3030
|
first?: number | undefined;
|
|
3084
3031
|
after?: string | undefined;
|
|
@@ -3089,6 +3036,8 @@ declare const recordVersionFiltersBreadcrumbSchema: z.ZodObject<{
|
|
|
3089
3036
|
end_date?: string | null | undefined;
|
|
3090
3037
|
last?: number | undefined;
|
|
3091
3038
|
before?: string | undefined;
|
|
3039
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3040
|
+
record_ids?: string[] | undefined;
|
|
3092
3041
|
}, {
|
|
3093
3042
|
first?: number | undefined;
|
|
3094
3043
|
after?: string | undefined;
|
|
@@ -3099,10 +3048,13 @@ declare const recordVersionFiltersBreadcrumbSchema: z.ZodObject<{
|
|
|
3099
3048
|
end_date?: string | null | undefined;
|
|
3100
3049
|
last?: number | undefined;
|
|
3101
3050
|
before?: string | undefined;
|
|
3051
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3052
|
+
record_ids?: string[] | undefined;
|
|
3102
3053
|
}>;
|
|
3103
3054
|
declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
3104
3055
|
record_id: z.ZodString;
|
|
3105
|
-
|
|
3056
|
+
/** @deprecated Use record_types in filters instead. record_types takes priority when both are provided. */
|
|
3057
|
+
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3106
3058
|
filters: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3107
3059
|
first: z.ZodOptional<z.ZodNumber>;
|
|
3108
3060
|
after: z.ZodOptional<z.ZodString>;
|
|
@@ -3113,6 +3065,10 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3113
3065
|
paginationToken: z.ZodOptional<z.ZodString>;
|
|
3114
3066
|
start_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3115
3067
|
end_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3068
|
+
/** When provided, fetches versions for these record types and merges. Takes priority over record_type. */
|
|
3069
|
+
record_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>, "many">>;
|
|
3070
|
+
/** When provided, fetches versions for these record IDs (e.g. tracker + followup IDs). Used for activity views. */
|
|
3071
|
+
record_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3116
3072
|
}, "strip", z.ZodTypeAny, {
|
|
3117
3073
|
first?: number | undefined;
|
|
3118
3074
|
after?: string | undefined;
|
|
@@ -3123,6 +3079,8 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3123
3079
|
end_date?: string | null | undefined;
|
|
3124
3080
|
last?: number | undefined;
|
|
3125
3081
|
before?: string | undefined;
|
|
3082
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3083
|
+
record_ids?: string[] | undefined;
|
|
3126
3084
|
}, {
|
|
3127
3085
|
first?: number | undefined;
|
|
3128
3086
|
after?: string | undefined;
|
|
@@ -3133,10 +3091,12 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3133
3091
|
end_date?: string | null | undefined;
|
|
3134
3092
|
last?: number | undefined;
|
|
3135
3093
|
before?: string | undefined;
|
|
3094
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3095
|
+
record_ids?: string[] | undefined;
|
|
3136
3096
|
}>>>;
|
|
3137
3097
|
}, "strip", z.ZodTypeAny, {
|
|
3138
3098
|
record_id: string;
|
|
3139
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
3099
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3140
3100
|
filters?: {
|
|
3141
3101
|
first?: number | undefined;
|
|
3142
3102
|
after?: string | undefined;
|
|
@@ -3147,10 +3107,85 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3147
3107
|
end_date?: string | null | undefined;
|
|
3148
3108
|
last?: number | undefined;
|
|
3149
3109
|
before?: string | undefined;
|
|
3110
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3111
|
+
record_ids?: string[] | undefined;
|
|
3150
3112
|
} | null | undefined;
|
|
3151
3113
|
}, {
|
|
3152
3114
|
record_id: string;
|
|
3153
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "team" | "quote" | "note" | "followup";
|
|
3115
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3116
|
+
filters?: {
|
|
3117
|
+
first?: number | undefined;
|
|
3118
|
+
after?: string | undefined;
|
|
3119
|
+
sortBy?: string | undefined;
|
|
3120
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
3121
|
+
paginationToken?: string | undefined;
|
|
3122
|
+
start_date?: string | null | undefined;
|
|
3123
|
+
end_date?: string | null | undefined;
|
|
3124
|
+
last?: number | undefined;
|
|
3125
|
+
before?: string | undefined;
|
|
3126
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3127
|
+
record_ids?: string[] | undefined;
|
|
3128
|
+
} | null | undefined;
|
|
3129
|
+
}>;
|
|
3130
|
+
/** Input for listTrackerActivityVersions - tracker ID + optional filters */
|
|
3131
|
+
declare const recordVersionTrackerActivityInputSchema: z.ZodObject<{
|
|
3132
|
+
tracker_id: z.ZodString;
|
|
3133
|
+
filters: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3134
|
+
first: z.ZodOptional<z.ZodNumber>;
|
|
3135
|
+
after: z.ZodOptional<z.ZodString>;
|
|
3136
|
+
last: z.ZodOptional<z.ZodNumber>;
|
|
3137
|
+
before: z.ZodOptional<z.ZodString>;
|
|
3138
|
+
sortBy: z.ZodOptional<z.ZodString>;
|
|
3139
|
+
sortDirection: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
3140
|
+
paginationToken: z.ZodOptional<z.ZodString>;
|
|
3141
|
+
start_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3142
|
+
end_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3143
|
+
/** When provided, fetches versions for these record types and merges. Takes priority over record_type. */
|
|
3144
|
+
record_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>, "many">>;
|
|
3145
|
+
/** When provided, fetches versions for these record IDs (e.g. tracker + followup IDs). Used for activity views. */
|
|
3146
|
+
record_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3147
|
+
}, "strip", z.ZodTypeAny, {
|
|
3148
|
+
first?: number | undefined;
|
|
3149
|
+
after?: string | undefined;
|
|
3150
|
+
sortBy?: string | undefined;
|
|
3151
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
3152
|
+
paginationToken?: string | undefined;
|
|
3153
|
+
start_date?: string | null | undefined;
|
|
3154
|
+
end_date?: string | null | undefined;
|
|
3155
|
+
last?: number | undefined;
|
|
3156
|
+
before?: string | undefined;
|
|
3157
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3158
|
+
record_ids?: string[] | undefined;
|
|
3159
|
+
}, {
|
|
3160
|
+
first?: number | undefined;
|
|
3161
|
+
after?: string | undefined;
|
|
3162
|
+
sortBy?: string | undefined;
|
|
3163
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
3164
|
+
paginationToken?: string | undefined;
|
|
3165
|
+
start_date?: string | null | undefined;
|
|
3166
|
+
end_date?: string | null | undefined;
|
|
3167
|
+
last?: number | undefined;
|
|
3168
|
+
before?: string | undefined;
|
|
3169
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3170
|
+
record_ids?: string[] | undefined;
|
|
3171
|
+
}>>>;
|
|
3172
|
+
}, "strip", z.ZodTypeAny, {
|
|
3173
|
+
tracker_id: string;
|
|
3174
|
+
filters?: {
|
|
3175
|
+
first?: number | undefined;
|
|
3176
|
+
after?: string | undefined;
|
|
3177
|
+
sortBy?: string | undefined;
|
|
3178
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
3179
|
+
paginationToken?: string | undefined;
|
|
3180
|
+
start_date?: string | null | undefined;
|
|
3181
|
+
end_date?: string | null | undefined;
|
|
3182
|
+
last?: number | undefined;
|
|
3183
|
+
before?: string | undefined;
|
|
3184
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3185
|
+
record_ids?: string[] | undefined;
|
|
3186
|
+
} | null | undefined;
|
|
3187
|
+
}, {
|
|
3188
|
+
tracker_id: string;
|
|
3154
3189
|
filters?: {
|
|
3155
3190
|
first?: number | undefined;
|
|
3156
3191
|
after?: string | undefined;
|
|
@@ -3161,11 +3196,108 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3161
3196
|
end_date?: string | null | undefined;
|
|
3162
3197
|
last?: number | undefined;
|
|
3163
3198
|
before?: string | undefined;
|
|
3199
|
+
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3200
|
+
record_ids?: string[] | undefined;
|
|
3164
3201
|
} | null | undefined;
|
|
3165
3202
|
}>;
|
|
3166
3203
|
type RecordVersionFiltersBreadcrumbDto = z.infer<typeof recordVersionFiltersBreadcrumbSchema>;
|
|
3167
3204
|
type RecordVersionPageBreadcrumbDto = z.infer<typeof recordVersionPageBreadcrumbSchema>;
|
|
3168
3205
|
//#endregion
|
|
3206
|
+
//#region src/validation/saved_filter/saved_filter_create_zod.d.ts
|
|
3207
|
+
/**
|
|
3208
|
+
* Schema for creating a saved filter preset
|
|
3209
|
+
*/
|
|
3210
|
+
declare const SavedFilterCreateSchema: z.ZodObject<{
|
|
3211
|
+
name: z.ZodString;
|
|
3212
|
+
context: z.ZodString;
|
|
3213
|
+
route_path: z.ZodString;
|
|
3214
|
+
filters: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
3215
|
+
sort_by: z.ZodOptional<z.ZodString>;
|
|
3216
|
+
sort_direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
3217
|
+
}, "strip", z.ZodTypeAny, {
|
|
3218
|
+
filters: Record<string, string | string[]>;
|
|
3219
|
+
name: string;
|
|
3220
|
+
context: string;
|
|
3221
|
+
route_path: string;
|
|
3222
|
+
sort_by?: string | undefined;
|
|
3223
|
+
sort_direction?: "asc" | "desc" | undefined;
|
|
3224
|
+
}, {
|
|
3225
|
+
filters: Record<string, string | string[]>;
|
|
3226
|
+
name: string;
|
|
3227
|
+
context: string;
|
|
3228
|
+
route_path: string;
|
|
3229
|
+
sort_by?: string | undefined;
|
|
3230
|
+
sort_direction?: "asc" | "desc" | undefined;
|
|
3231
|
+
}>;
|
|
3232
|
+
type SavedFilterCreateDto = z.infer<typeof SavedFilterCreateSchema>;
|
|
3233
|
+
//#endregion
|
|
3234
|
+
//#region src/validation/saved_filter/saved_filter_read_zod.d.ts
|
|
3235
|
+
declare const SavedFilterReadSchema: z.ZodObject<{
|
|
3236
|
+
name: z.ZodString;
|
|
3237
|
+
context: z.ZodString;
|
|
3238
|
+
route_path: z.ZodString;
|
|
3239
|
+
filters: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
3240
|
+
sort_by: z.ZodOptional<z.ZodString>;
|
|
3241
|
+
sort_direction: z.ZodOptional<z.ZodEnum<["asc", "desc"]>>;
|
|
3242
|
+
} & {
|
|
3243
|
+
id: z.ZodString;
|
|
3244
|
+
user_id: z.ZodString;
|
|
3245
|
+
created_at: z.ZodString;
|
|
3246
|
+
updated_at: z.ZodOptional<z.ZodString>;
|
|
3247
|
+
}, "strip", z.ZodTypeAny, {
|
|
3248
|
+
created_at: string;
|
|
3249
|
+
id: string;
|
|
3250
|
+
filters: Record<string, string | string[]>;
|
|
3251
|
+
user_id: string;
|
|
3252
|
+
name: string;
|
|
3253
|
+
context: string;
|
|
3254
|
+
route_path: string;
|
|
3255
|
+
updated_at?: string | undefined;
|
|
3256
|
+
sort_by?: string | undefined;
|
|
3257
|
+
sort_direction?: "asc" | "desc" | undefined;
|
|
3258
|
+
}, {
|
|
3259
|
+
created_at: string;
|
|
3260
|
+
id: string;
|
|
3261
|
+
filters: Record<string, string | string[]>;
|
|
3262
|
+
user_id: string;
|
|
3263
|
+
name: string;
|
|
3264
|
+
context: string;
|
|
3265
|
+
route_path: string;
|
|
3266
|
+
updated_at?: string | undefined;
|
|
3267
|
+
sort_by?: string | undefined;
|
|
3268
|
+
sort_direction?: "asc" | "desc" | undefined;
|
|
3269
|
+
}>;
|
|
3270
|
+
type SavedFilterReadDto = z.infer<typeof SavedFilterReadSchema>;
|
|
3271
|
+
//#endregion
|
|
3272
|
+
//#region src/validation/saved_filter/saved_filter_update_zod.d.ts
|
|
3273
|
+
declare const SavedFilterUpdateSchema: z.ZodObject<{
|
|
3274
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3275
|
+
context: z.ZodOptional<z.ZodString>;
|
|
3276
|
+
route_path: z.ZodOptional<z.ZodString>;
|
|
3277
|
+
filters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
3278
|
+
sort_by: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3279
|
+
sort_direction: z.ZodOptional<z.ZodOptional<z.ZodEnum<["asc", "desc"]>>>;
|
|
3280
|
+
} & {
|
|
3281
|
+
id: z.ZodString;
|
|
3282
|
+
}, "strip", z.ZodTypeAny, {
|
|
3283
|
+
id: string;
|
|
3284
|
+
filters?: Record<string, string | string[]> | undefined;
|
|
3285
|
+
name?: string | undefined;
|
|
3286
|
+
context?: string | undefined;
|
|
3287
|
+
route_path?: string | undefined;
|
|
3288
|
+
sort_by?: string | undefined;
|
|
3289
|
+
sort_direction?: "asc" | "desc" | undefined;
|
|
3290
|
+
}, {
|
|
3291
|
+
id: string;
|
|
3292
|
+
filters?: Record<string, string | string[]> | undefined;
|
|
3293
|
+
name?: string | undefined;
|
|
3294
|
+
context?: string | undefined;
|
|
3295
|
+
route_path?: string | undefined;
|
|
3296
|
+
sort_by?: string | undefined;
|
|
3297
|
+
sort_direction?: "asc" | "desc" | undefined;
|
|
3298
|
+
}>;
|
|
3299
|
+
type SavedFilterUpdateDto = z.infer<typeof SavedFilterUpdateSchema>;
|
|
3300
|
+
//#endregion
|
|
3169
3301
|
//#region src/validation/reset_password_zod.d.ts
|
|
3170
3302
|
declare const resetPasswordInputSchema: z.ZodObject<{
|
|
3171
3303
|
passwords: z.ZodEffects<z.ZodObject<{
|
|
@@ -3264,26 +3396,130 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3264
3396
|
}>;
|
|
3265
3397
|
type SignupInputDto = z.infer<typeof signupSchema>;
|
|
3266
3398
|
//#endregion
|
|
3399
|
+
//#region src/validation/record_subscriber/record_subscriber_create_zod.d.ts
|
|
3400
|
+
declare const RecordSubscriberCreateSchema: z.ZodObject<{
|
|
3401
|
+
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3402
|
+
record_id: z.ZodString;
|
|
3403
|
+
user_id: z.ZodString;
|
|
3404
|
+
subscribed_events: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3405
|
+
}, "strip", z.ZodTypeAny, {
|
|
3406
|
+
record_id: string;
|
|
3407
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3408
|
+
user_id: string;
|
|
3409
|
+
subscribed_events?: string[] | null | undefined;
|
|
3410
|
+
}, {
|
|
3411
|
+
record_id: string;
|
|
3412
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3413
|
+
user_id: string;
|
|
3414
|
+
subscribed_events?: string[] | null | undefined;
|
|
3415
|
+
}>;
|
|
3416
|
+
type RecordSubscriberCreateDto = z.infer<typeof RecordSubscriberCreateSchema>;
|
|
3417
|
+
//#endregion
|
|
3418
|
+
//#region src/validation/record_subscriber/record_subscriber_read_zod.d.ts
|
|
3419
|
+
declare const RecordSubscriberReadSchema: z.ZodObject<{
|
|
3420
|
+
id: z.ZodString;
|
|
3421
|
+
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3422
|
+
record_id: z.ZodString;
|
|
3423
|
+
user_id: z.ZodString;
|
|
3424
|
+
user_id_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3425
|
+
subscribed_events: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3426
|
+
created_at: z.ZodString;
|
|
3427
|
+
created_by: z.ZodString;
|
|
3428
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3429
|
+
}, "strip", z.ZodTypeAny, {
|
|
3430
|
+
created_at: string;
|
|
3431
|
+
created_by: string;
|
|
3432
|
+
id: string;
|
|
3433
|
+
record_id: string;
|
|
3434
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3435
|
+
user_id: string;
|
|
3436
|
+
created_by_display_name?: string | null | undefined;
|
|
3437
|
+
subscribed_events?: string[] | null | undefined;
|
|
3438
|
+
user_id_display_name?: string | null | undefined;
|
|
3439
|
+
}, {
|
|
3440
|
+
created_at: string;
|
|
3441
|
+
created_by: string;
|
|
3442
|
+
id: string;
|
|
3443
|
+
record_id: string;
|
|
3444
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3445
|
+
user_id: string;
|
|
3446
|
+
created_by_display_name?: string | null | undefined;
|
|
3447
|
+
subscribed_events?: string[] | null | undefined;
|
|
3448
|
+
user_id_display_name?: string | null | undefined;
|
|
3449
|
+
}>;
|
|
3450
|
+
type RecordSubscriberReadDto = z.infer<typeof RecordSubscriberReadSchema>;
|
|
3451
|
+
//#endregion
|
|
3452
|
+
//#region src/validation/record_subscriber/record_subscriber_update_zod.d.ts
|
|
3453
|
+
declare const RecordSubscriberUpdateSchema: z.ZodObject<{
|
|
3454
|
+
id: z.ZodString;
|
|
3455
|
+
subscribed_events: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3456
|
+
}, "strip", z.ZodTypeAny, {
|
|
3457
|
+
id: string;
|
|
3458
|
+
subscribed_events?: string[] | null | undefined;
|
|
3459
|
+
}, {
|
|
3460
|
+
id: string;
|
|
3461
|
+
subscribed_events?: string[] | null | undefined;
|
|
3462
|
+
}>;
|
|
3463
|
+
type RecordSubscriberUpdateDto = z.infer<typeof RecordSubscriberUpdateSchema>;
|
|
3464
|
+
//#endregion
|
|
3267
3465
|
//#region src/validation/support_ticket/support_ticket_shared/support_ticket_enums_zod.d.ts
|
|
3268
3466
|
declare const SupportTicketTypeEnum: readonly ["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"];
|
|
3269
3467
|
declare const SupportTicketTypeSchema: z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
3270
3468
|
type SupportTicketType = z.infer<typeof SupportTicketTypeSchema>;
|
|
3271
3469
|
declare const SupportTicketPriorityEnum: readonly ["LOW", "MEDIUM", "HIGH", "CRITICAL"];
|
|
3470
|
+
declare const SupportTicketPriorityNumberEnum: readonly [1, 2, 3, 4];
|
|
3471
|
+
type SupportTicketPriorityNumberType = (typeof SupportTicketPriorityNumberEnum)[number];
|
|
3272
3472
|
/**
|
|
3273
3473
|
* Enum for feature request priority levels
|
|
3274
3474
|
*/
|
|
3275
3475
|
declare const SupportTicketPrioritySchema: z.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
3276
3476
|
type SupportTicketPriority = z.infer<typeof SupportTicketPrioritySchema>;
|
|
3477
|
+
/**
|
|
3478
|
+
* Numeric priority for create/update DTOs (1–4).
|
|
3479
|
+
* Used in forms and API input; read DTOs still return string for display.
|
|
3480
|
+
*/
|
|
3481
|
+
declare const SupportTicketPriorityNumberSchema: z.ZodNumber;
|
|
3482
|
+
type SupportTicketPriorityNumber = z.infer<typeof SupportTicketPriorityNumberSchema>;
|
|
3483
|
+
/**
|
|
3484
|
+
* Numeric mapping for DB storage and proper sorting.
|
|
3485
|
+
* Higher number = higher priority.
|
|
3486
|
+
*/
|
|
3487
|
+
declare const SUPPORT_TICKET_PRIORITY_TO_NUMBER: Record<SupportTicketPriority, SupportTicketPriorityNumberType>;
|
|
3488
|
+
declare const SUPPORT_TICKET_NUMBER_TO_PRIORITY: Record<number, SupportTicketPriority>;
|
|
3489
|
+
declare function supportTicketPriorityToNumber(priority: SupportTicketPriority): number;
|
|
3490
|
+
declare function supportTicketNumberToPriority(num: number): SupportTicketPriority;
|
|
3491
|
+
/**
|
|
3492
|
+
* Label/value options for priority filter dropdowns (Zinia columns)
|
|
3493
|
+
*/
|
|
3494
|
+
declare const SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS: readonly [{
|
|
3495
|
+
readonly label: "Low";
|
|
3496
|
+
readonly value: 1;
|
|
3497
|
+
}, {
|
|
3498
|
+
readonly label: "Medium";
|
|
3499
|
+
readonly value: 2;
|
|
3500
|
+
}, {
|
|
3501
|
+
readonly label: "High";
|
|
3502
|
+
readonly value: 3;
|
|
3503
|
+
}, {
|
|
3504
|
+
readonly label: "Critical";
|
|
3505
|
+
readonly value: 4;
|
|
3506
|
+
}];
|
|
3507
|
+
/**
|
|
3508
|
+
* Maps numeric priority (1–4) to display label for Zinia SelectField.
|
|
3509
|
+
* Use with valueToLabel + valueType: 'number' for number-backed select fields.
|
|
3510
|
+
*/
|
|
3511
|
+
declare const SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL: Record<number, string>;
|
|
3277
3512
|
/**
|
|
3278
3513
|
* Enum for customer-facing support_ticket status (computed from approval_status + dev_lifecycle)
|
|
3279
3514
|
* - PENDING: Awaiting admin review
|
|
3280
3515
|
* - FOLLOWUP: Approved but not started
|
|
3281
3516
|
* - IN_PROGRESS: Actively being worked on
|
|
3282
|
-
* -
|
|
3517
|
+
* - VERIFICATION: Work deployed; consumer should verify and leave a comment
|
|
3518
|
+
* - COMPLETED: Deployed to production and verified
|
|
3283
3519
|
* - CANCELLED: Rejected by admin
|
|
3284
3520
|
*/
|
|
3285
|
-
declare const SupportTicketStatusEnum: readonly ["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"];
|
|
3286
|
-
declare const SupportTicketStatusSchema: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>;
|
|
3521
|
+
declare const SupportTicketStatusEnum: readonly ["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"];
|
|
3522
|
+
declare const SupportTicketStatusSchema: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
3287
3523
|
type SupportTicketStatus = z.infer<typeof SupportTicketStatusSchema>;
|
|
3288
3524
|
/**
|
|
3289
3525
|
* Enum for feature request approval status
|
|
@@ -3304,22 +3540,42 @@ type SupportTicketApproval = z.infer<typeof SupportTicketApprovalSchema>;
|
|
|
3304
3540
|
* - TESTING: QA testing
|
|
3305
3541
|
* - STAGING: On staging environment
|
|
3306
3542
|
* - PO_APPROVAL: Waiting for PO/customer sign-off
|
|
3307
|
-
* -
|
|
3543
|
+
* - VERIFICATION: Deployed; waiting for consumer to verify and leave a comment
|
|
3544
|
+
* - DEPLOYED: Live in production and verified
|
|
3308
3545
|
* - CANCELLED: Internal task cancelled (only for INTERNAL approval status)
|
|
3309
3546
|
*/
|
|
3310
|
-
declare const SupportTicketDevLifecycleEnum: readonly ["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "DEPLOYED", "CANCELLED"];
|
|
3311
|
-
declare const SupportTicketDevLifecycleSchema: z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "DEPLOYED", "CANCELLED"]>;
|
|
3547
|
+
declare const SupportTicketDevLifecycleEnum: readonly ["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"];
|
|
3548
|
+
declare const SupportTicketDevLifecycleSchema: z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>;
|
|
3312
3549
|
type SupportTicketDevLifecycle = z.infer<typeof SupportTicketDevLifecycleSchema>;
|
|
3313
3550
|
/**
|
|
3314
3551
|
* Dev lifecycle stages that can be manually set via update form
|
|
3315
3552
|
* Excludes workflow-only stages:
|
|
3316
3553
|
* - PENDING: Set by revert workflow
|
|
3317
3554
|
* - DEPLOYED: Set by completeSupportTicket workflow
|
|
3318
|
-
* Staff can manually progress through: BACKLOG → PLANNING → DEVELOPMENT → CODE_REVIEW → TESTING → STAGING → PO_APPROVAL
|
|
3555
|
+
* Staff can manually progress through: BACKLOG → PLANNING → DEVELOPMENT → CODE_REVIEW → TESTING → STAGING → PO_APPROVAL → VERIFICATION
|
|
3319
3556
|
*/
|
|
3320
|
-
declare const SupportTicketDevLifecycleUpdateEnum: readonly ["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL"];
|
|
3321
|
-
declare const SupportTicketDevLifecycleUpdateSchema: z.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL"]>;
|
|
3557
|
+
declare const SupportTicketDevLifecycleUpdateEnum: readonly ["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION"];
|
|
3558
|
+
declare const SupportTicketDevLifecycleUpdateSchema: z.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION"]>;
|
|
3322
3559
|
type SupportTicketDevLifecycleUpdate = z.infer<typeof SupportTicketDevLifecycleUpdateSchema>;
|
|
3560
|
+
/**
|
|
3561
|
+
* Label/value options for type, approval, dev lifecycle, and status filter dropdowns
|
|
3562
|
+
*/
|
|
3563
|
+
declare const SUPPORT_TICKET_TYPE_FILTER_OPTIONS: Array<{
|
|
3564
|
+
label: string;
|
|
3565
|
+
value: (typeof SupportTicketTypeEnum)[number];
|
|
3566
|
+
}>;
|
|
3567
|
+
declare const SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS: Array<{
|
|
3568
|
+
label: string;
|
|
3569
|
+
value: (typeof SupportTicketApprovalEnum)[number];
|
|
3570
|
+
}>;
|
|
3571
|
+
declare const SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS: Array<{
|
|
3572
|
+
label: string;
|
|
3573
|
+
value: (typeof SupportTicketDevLifecycleEnum)[number];
|
|
3574
|
+
}>;
|
|
3575
|
+
declare const SUPPORT_TICKET_STATUS_FILTER_OPTIONS: Array<{
|
|
3576
|
+
label: string;
|
|
3577
|
+
value: (typeof SupportTicketStatusEnum)[number];
|
|
3578
|
+
}>;
|
|
3323
3579
|
/**
|
|
3324
3580
|
* Filter-specific enum instances
|
|
3325
3581
|
* These are separate Zod objects with the same values as above,
|
|
@@ -3327,9 +3583,9 @@ type SupportTicketDevLifecycleUpdate = z.infer<typeof SupportTicketDevLifecycleU
|
|
|
3327
3583
|
*/
|
|
3328
3584
|
declare const SupportTicketTypeFilterSchema: z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
3329
3585
|
declare const SupportTicketPriorityFilterSchema: z.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
3330
|
-
declare const SupportTicketStatusFilterSchema: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>;
|
|
3586
|
+
declare const SupportTicketStatusFilterSchema: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
3331
3587
|
declare const SupportTicketApprovalFilterSchema: z.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>;
|
|
3332
|
-
declare const SupportTicketDevLifecycleFilterSchema: z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "DEPLOYED", "CANCELLED"]>;
|
|
3588
|
+
declare const SupportTicketDevLifecycleFilterSchema: z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>;
|
|
3333
3589
|
//#endregion
|
|
3334
3590
|
//#region src/validation/support_ticket/support_ticket_customer/customer_input_zod.d.ts
|
|
3335
3591
|
/**
|
|
@@ -3339,17 +3595,17 @@ declare const CustomerSupportTicketCreateSchema: z.ZodObject<{
|
|
|
3339
3595
|
title: z.ZodString;
|
|
3340
3596
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3341
3597
|
type: z.ZodDefault<z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
3342
|
-
priority: z.ZodDefault<z.
|
|
3598
|
+
priority: z.ZodDefault<z.ZodNumber>;
|
|
3343
3599
|
}, "strip", z.ZodTypeAny, {
|
|
3344
3600
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3345
3601
|
title: string;
|
|
3346
|
-
priority:
|
|
3602
|
+
priority: number;
|
|
3347
3603
|
description?: string | null | undefined;
|
|
3348
3604
|
}, {
|
|
3349
3605
|
title: string;
|
|
3350
3606
|
type?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
3351
3607
|
description?: string | null | undefined;
|
|
3352
|
-
priority?:
|
|
3608
|
+
priority?: number | undefined;
|
|
3353
3609
|
}>;
|
|
3354
3610
|
type CustomerSupportTicketCreateDto = z.infer<typeof CustomerSupportTicketCreateSchema>;
|
|
3355
3611
|
/**
|
|
@@ -3359,21 +3615,21 @@ declare const CustomerSupportTicketUpdateSchema: z.ZodObject<{
|
|
|
3359
3615
|
title: z.ZodString;
|
|
3360
3616
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3361
3617
|
type: z.ZodDefault<z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>>;
|
|
3362
|
-
priority: z.ZodDefault<z.
|
|
3618
|
+
priority: z.ZodDefault<z.ZodNumber>;
|
|
3363
3619
|
} & {
|
|
3364
3620
|
id: z.ZodString;
|
|
3365
3621
|
}, "strip", z.ZodTypeAny, {
|
|
3366
3622
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3367
3623
|
id: string;
|
|
3368
3624
|
title: string;
|
|
3369
|
-
priority:
|
|
3625
|
+
priority: number;
|
|
3370
3626
|
description?: string | null | undefined;
|
|
3371
3627
|
}, {
|
|
3372
3628
|
id: string;
|
|
3373
3629
|
title: string;
|
|
3374
3630
|
type?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
3375
3631
|
description?: string | null | undefined;
|
|
3376
|
-
priority?:
|
|
3632
|
+
priority?: number | undefined;
|
|
3377
3633
|
}>;
|
|
3378
3634
|
type CustomerSupportTicketUpdateDto = z.infer<typeof CustomerSupportTicketUpdateSchema>;
|
|
3379
3635
|
//#endregion
|
|
@@ -3390,10 +3646,9 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3390
3646
|
description: z.ZodString;
|
|
3391
3647
|
type: z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
3392
3648
|
priority: z.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
3393
|
-
status: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>;
|
|
3649
|
+
status: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
3394
3650
|
is_locked: z.ZodBoolean;
|
|
3395
|
-
|
|
3396
|
-
requester_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3651
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3397
3652
|
credit_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3398
3653
|
start_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3399
3654
|
target_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3403,9 +3658,41 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3403
3658
|
created_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3404
3659
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3405
3660
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3661
|
+
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3662
|
+
my_subscription: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3663
|
+
id: z.ZodString;
|
|
3664
|
+
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3665
|
+
record_id: z.ZodString;
|
|
3666
|
+
user_id: z.ZodString;
|
|
3667
|
+
user_id_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3668
|
+
subscribed_events: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3669
|
+
created_at: z.ZodString;
|
|
3670
|
+
created_by: z.ZodString;
|
|
3671
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3672
|
+
}, "strip", z.ZodTypeAny, {
|
|
3673
|
+
created_at: string;
|
|
3674
|
+
created_by: string;
|
|
3675
|
+
id: string;
|
|
3676
|
+
record_id: string;
|
|
3677
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3678
|
+
user_id: string;
|
|
3679
|
+
created_by_display_name?: string | null | undefined;
|
|
3680
|
+
subscribed_events?: string[] | null | undefined;
|
|
3681
|
+
user_id_display_name?: string | null | undefined;
|
|
3682
|
+
}, {
|
|
3683
|
+
created_at: string;
|
|
3684
|
+
created_by: string;
|
|
3685
|
+
id: string;
|
|
3686
|
+
record_id: string;
|
|
3687
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3688
|
+
user_id: string;
|
|
3689
|
+
created_by_display_name?: string | null | undefined;
|
|
3690
|
+
subscribed_events?: string[] | null | undefined;
|
|
3691
|
+
user_id_display_name?: string | null | undefined;
|
|
3692
|
+
}>>>;
|
|
3406
3693
|
}, "strip", z.ZodTypeAny, {
|
|
3407
3694
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3408
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
3695
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3409
3696
|
id: string;
|
|
3410
3697
|
description: string;
|
|
3411
3698
|
title: string;
|
|
@@ -3415,18 +3702,29 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3415
3702
|
created_by?: string | null | undefined;
|
|
3416
3703
|
updated_at?: string | null | undefined;
|
|
3417
3704
|
updated_by?: string | null | undefined;
|
|
3705
|
+
archived_at?: string | null | undefined;
|
|
3706
|
+
created_by_display_name?: string | null | undefined;
|
|
3418
3707
|
display_id?: string | null | undefined;
|
|
3419
|
-
requester_name?: string | null | undefined;
|
|
3420
|
-
requester_email?: string | null | undefined;
|
|
3421
3708
|
credit_value?: string | null | undefined;
|
|
3422
3709
|
start_at?: string | null | undefined;
|
|
3423
3710
|
target_at?: string | null | undefined;
|
|
3424
3711
|
completed_at?: string | null | undefined;
|
|
3425
3712
|
display_id_prefix?: string | null | undefined;
|
|
3426
3713
|
locked_approval_at?: string | null | undefined;
|
|
3714
|
+
my_subscription?: {
|
|
3715
|
+
created_at: string;
|
|
3716
|
+
created_by: string;
|
|
3717
|
+
id: string;
|
|
3718
|
+
record_id: string;
|
|
3719
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3720
|
+
user_id: string;
|
|
3721
|
+
created_by_display_name?: string | null | undefined;
|
|
3722
|
+
subscribed_events?: string[] | null | undefined;
|
|
3723
|
+
user_id_display_name?: string | null | undefined;
|
|
3724
|
+
} | null | undefined;
|
|
3427
3725
|
}, {
|
|
3428
3726
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3429
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
3727
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3430
3728
|
id: string;
|
|
3431
3729
|
description: string;
|
|
3432
3730
|
title: string;
|
|
@@ -3436,15 +3734,26 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3436
3734
|
created_by?: string | null | undefined;
|
|
3437
3735
|
updated_at?: string | null | undefined;
|
|
3438
3736
|
updated_by?: string | null | undefined;
|
|
3737
|
+
archived_at?: string | null | undefined;
|
|
3738
|
+
created_by_display_name?: string | null | undefined;
|
|
3439
3739
|
display_id?: string | null | undefined;
|
|
3440
|
-
requester_name?: string | null | undefined;
|
|
3441
|
-
requester_email?: string | null | undefined;
|
|
3442
3740
|
credit_value?: string | null | undefined;
|
|
3443
3741
|
start_at?: string | null | undefined;
|
|
3444
3742
|
target_at?: string | null | undefined;
|
|
3445
3743
|
completed_at?: string | null | undefined;
|
|
3446
3744
|
display_id_prefix?: string | null | undefined;
|
|
3447
3745
|
locked_approval_at?: string | null | undefined;
|
|
3746
|
+
my_subscription?: {
|
|
3747
|
+
created_at: string;
|
|
3748
|
+
created_by: string;
|
|
3749
|
+
id: string;
|
|
3750
|
+
record_id: string;
|
|
3751
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3752
|
+
user_id: string;
|
|
3753
|
+
created_by_display_name?: string | null | undefined;
|
|
3754
|
+
subscribed_events?: string[] | null | undefined;
|
|
3755
|
+
user_id_display_name?: string | null | undefined;
|
|
3756
|
+
} | null | undefined;
|
|
3448
3757
|
}>;
|
|
3449
3758
|
type CustomerSupportTicketReadDto = z.infer<typeof CustomerSupportTicketReadSchema>;
|
|
3450
3759
|
/**
|
|
@@ -3459,10 +3768,9 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3459
3768
|
description: z.ZodString;
|
|
3460
3769
|
type: z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
3461
3770
|
priority: z.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
3462
|
-
status: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>;
|
|
3771
|
+
status: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
3463
3772
|
is_locked: z.ZodBoolean;
|
|
3464
|
-
|
|
3465
|
-
requester_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3773
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3466
3774
|
credit_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3467
3775
|
start_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3468
3776
|
target_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3472,9 +3780,41 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3472
3780
|
created_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3473
3781
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3474
3782
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3783
|
+
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3784
|
+
my_subscription: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3785
|
+
id: z.ZodString;
|
|
3786
|
+
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3787
|
+
record_id: z.ZodString;
|
|
3788
|
+
user_id: z.ZodString;
|
|
3789
|
+
user_id_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3790
|
+
subscribed_events: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3791
|
+
created_at: z.ZodString;
|
|
3792
|
+
created_by: z.ZodString;
|
|
3793
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3794
|
+
}, "strip", z.ZodTypeAny, {
|
|
3795
|
+
created_at: string;
|
|
3796
|
+
created_by: string;
|
|
3797
|
+
id: string;
|
|
3798
|
+
record_id: string;
|
|
3799
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3800
|
+
user_id: string;
|
|
3801
|
+
created_by_display_name?: string | null | undefined;
|
|
3802
|
+
subscribed_events?: string[] | null | undefined;
|
|
3803
|
+
user_id_display_name?: string | null | undefined;
|
|
3804
|
+
}, {
|
|
3805
|
+
created_at: string;
|
|
3806
|
+
created_by: string;
|
|
3807
|
+
id: string;
|
|
3808
|
+
record_id: string;
|
|
3809
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3810
|
+
user_id: string;
|
|
3811
|
+
created_by_display_name?: string | null | undefined;
|
|
3812
|
+
subscribed_events?: string[] | null | undefined;
|
|
3813
|
+
user_id_display_name?: string | null | undefined;
|
|
3814
|
+
}>>>;
|
|
3475
3815
|
}, "strip", z.ZodTypeAny, {
|
|
3476
3816
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3477
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
3817
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3478
3818
|
id: string;
|
|
3479
3819
|
description: string;
|
|
3480
3820
|
title: string;
|
|
@@ -3484,18 +3824,29 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3484
3824
|
created_by?: string | null | undefined;
|
|
3485
3825
|
updated_at?: string | null | undefined;
|
|
3486
3826
|
updated_by?: string | null | undefined;
|
|
3827
|
+
archived_at?: string | null | undefined;
|
|
3828
|
+
created_by_display_name?: string | null | undefined;
|
|
3487
3829
|
display_id?: string | null | undefined;
|
|
3488
|
-
requester_name?: string | null | undefined;
|
|
3489
|
-
requester_email?: string | null | undefined;
|
|
3490
3830
|
credit_value?: string | null | undefined;
|
|
3491
3831
|
start_at?: string | null | undefined;
|
|
3492
3832
|
target_at?: string | null | undefined;
|
|
3493
3833
|
completed_at?: string | null | undefined;
|
|
3494
3834
|
display_id_prefix?: string | null | undefined;
|
|
3495
3835
|
locked_approval_at?: string | null | undefined;
|
|
3836
|
+
my_subscription?: {
|
|
3837
|
+
created_at: string;
|
|
3838
|
+
created_by: string;
|
|
3839
|
+
id: string;
|
|
3840
|
+
record_id: string;
|
|
3841
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3842
|
+
user_id: string;
|
|
3843
|
+
created_by_display_name?: string | null | undefined;
|
|
3844
|
+
subscribed_events?: string[] | null | undefined;
|
|
3845
|
+
user_id_display_name?: string | null | undefined;
|
|
3846
|
+
} | null | undefined;
|
|
3496
3847
|
}, {
|
|
3497
3848
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3498
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
3849
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3499
3850
|
id: string;
|
|
3500
3851
|
description: string;
|
|
3501
3852
|
title: string;
|
|
@@ -3505,20 +3856,31 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3505
3856
|
created_by?: string | null | undefined;
|
|
3506
3857
|
updated_at?: string | null | undefined;
|
|
3507
3858
|
updated_by?: string | null | undefined;
|
|
3859
|
+
archived_at?: string | null | undefined;
|
|
3860
|
+
created_by_display_name?: string | null | undefined;
|
|
3508
3861
|
display_id?: string | null | undefined;
|
|
3509
|
-
requester_name?: string | null | undefined;
|
|
3510
|
-
requester_email?: string | null | undefined;
|
|
3511
3862
|
credit_value?: string | null | undefined;
|
|
3512
3863
|
start_at?: string | null | undefined;
|
|
3513
3864
|
target_at?: string | null | undefined;
|
|
3514
3865
|
completed_at?: string | null | undefined;
|
|
3515
3866
|
display_id_prefix?: string | null | undefined;
|
|
3516
3867
|
locked_approval_at?: string | null | undefined;
|
|
3868
|
+
my_subscription?: {
|
|
3869
|
+
created_at: string;
|
|
3870
|
+
created_by: string;
|
|
3871
|
+
id: string;
|
|
3872
|
+
record_id: string;
|
|
3873
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3874
|
+
user_id: string;
|
|
3875
|
+
created_by_display_name?: string | null | undefined;
|
|
3876
|
+
subscribed_events?: string[] | null | undefined;
|
|
3877
|
+
user_id_display_name?: string | null | undefined;
|
|
3878
|
+
} | null | undefined;
|
|
3517
3879
|
}>, "many">;
|
|
3518
3880
|
pageInfo: z.ZodObject<{
|
|
3519
3881
|
hasNextPage: z.ZodBoolean;
|
|
3520
3882
|
hasPreviousPage: z.ZodBoolean;
|
|
3521
|
-
prevPageCursor: z.ZodOptional<z.ZodString
|
|
3883
|
+
prevPageCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3522
3884
|
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
3523
3885
|
currentPageIndex: z.ZodOptional<z.ZodNumber>;
|
|
3524
3886
|
paginationToken: z.ZodOptional<z.ZodString>;
|
|
@@ -3526,21 +3888,21 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3526
3888
|
hasNextPage: boolean;
|
|
3527
3889
|
hasPreviousPage: boolean;
|
|
3528
3890
|
paginationToken?: string | undefined;
|
|
3529
|
-
prevPageCursor?: string | undefined;
|
|
3891
|
+
prevPageCursor?: string | null | undefined;
|
|
3530
3892
|
nextPageCursor?: string | undefined;
|
|
3531
3893
|
currentPageIndex?: number | undefined;
|
|
3532
3894
|
}, {
|
|
3533
3895
|
hasNextPage: boolean;
|
|
3534
3896
|
hasPreviousPage: boolean;
|
|
3535
3897
|
paginationToken?: string | undefined;
|
|
3536
|
-
prevPageCursor?: string | undefined;
|
|
3898
|
+
prevPageCursor?: string | null | undefined;
|
|
3537
3899
|
nextPageCursor?: string | undefined;
|
|
3538
3900
|
currentPageIndex?: number | undefined;
|
|
3539
3901
|
}>;
|
|
3540
3902
|
}, "strip", z.ZodTypeAny, {
|
|
3541
3903
|
items: {
|
|
3542
3904
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3543
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
3905
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3544
3906
|
id: string;
|
|
3545
3907
|
description: string;
|
|
3546
3908
|
title: string;
|
|
@@ -3550,28 +3912,39 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3550
3912
|
created_by?: string | null | undefined;
|
|
3551
3913
|
updated_at?: string | null | undefined;
|
|
3552
3914
|
updated_by?: string | null | undefined;
|
|
3915
|
+
archived_at?: string | null | undefined;
|
|
3916
|
+
created_by_display_name?: string | null | undefined;
|
|
3553
3917
|
display_id?: string | null | undefined;
|
|
3554
|
-
requester_name?: string | null | undefined;
|
|
3555
|
-
requester_email?: string | null | undefined;
|
|
3556
3918
|
credit_value?: string | null | undefined;
|
|
3557
3919
|
start_at?: string | null | undefined;
|
|
3558
3920
|
target_at?: string | null | undefined;
|
|
3559
3921
|
completed_at?: string | null | undefined;
|
|
3560
3922
|
display_id_prefix?: string | null | undefined;
|
|
3561
3923
|
locked_approval_at?: string | null | undefined;
|
|
3924
|
+
my_subscription?: {
|
|
3925
|
+
created_at: string;
|
|
3926
|
+
created_by: string;
|
|
3927
|
+
id: string;
|
|
3928
|
+
record_id: string;
|
|
3929
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3930
|
+
user_id: string;
|
|
3931
|
+
created_by_display_name?: string | null | undefined;
|
|
3932
|
+
subscribed_events?: string[] | null | undefined;
|
|
3933
|
+
user_id_display_name?: string | null | undefined;
|
|
3934
|
+
} | null | undefined;
|
|
3562
3935
|
}[];
|
|
3563
3936
|
pageInfo: {
|
|
3564
3937
|
hasNextPage: boolean;
|
|
3565
3938
|
hasPreviousPage: boolean;
|
|
3566
3939
|
paginationToken?: string | undefined;
|
|
3567
|
-
prevPageCursor?: string | undefined;
|
|
3940
|
+
prevPageCursor?: string | null | undefined;
|
|
3568
3941
|
nextPageCursor?: string | undefined;
|
|
3569
3942
|
currentPageIndex?: number | undefined;
|
|
3570
3943
|
};
|
|
3571
3944
|
}, {
|
|
3572
3945
|
items: {
|
|
3573
3946
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3574
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
3947
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3575
3948
|
id: string;
|
|
3576
3949
|
description: string;
|
|
3577
3950
|
title: string;
|
|
@@ -3581,21 +3954,32 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3581
3954
|
created_by?: string | null | undefined;
|
|
3582
3955
|
updated_at?: string | null | undefined;
|
|
3583
3956
|
updated_by?: string | null | undefined;
|
|
3957
|
+
archived_at?: string | null | undefined;
|
|
3958
|
+
created_by_display_name?: string | null | undefined;
|
|
3584
3959
|
display_id?: string | null | undefined;
|
|
3585
|
-
requester_name?: string | null | undefined;
|
|
3586
|
-
requester_email?: string | null | undefined;
|
|
3587
3960
|
credit_value?: string | null | undefined;
|
|
3588
3961
|
start_at?: string | null | undefined;
|
|
3589
3962
|
target_at?: string | null | undefined;
|
|
3590
3963
|
completed_at?: string | null | undefined;
|
|
3591
3964
|
display_id_prefix?: string | null | undefined;
|
|
3592
3965
|
locked_approval_at?: string | null | undefined;
|
|
3966
|
+
my_subscription?: {
|
|
3967
|
+
created_at: string;
|
|
3968
|
+
created_by: string;
|
|
3969
|
+
id: string;
|
|
3970
|
+
record_id: string;
|
|
3971
|
+
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3972
|
+
user_id: string;
|
|
3973
|
+
created_by_display_name?: string | null | undefined;
|
|
3974
|
+
subscribed_events?: string[] | null | undefined;
|
|
3975
|
+
user_id_display_name?: string | null | undefined;
|
|
3976
|
+
} | null | undefined;
|
|
3593
3977
|
}[];
|
|
3594
3978
|
pageInfo: {
|
|
3595
3979
|
hasNextPage: boolean;
|
|
3596
3980
|
hasPreviousPage: boolean;
|
|
3597
3981
|
paginationToken?: string | undefined;
|
|
3598
|
-
prevPageCursor?: string | undefined;
|
|
3982
|
+
prevPageCursor?: string | null | undefined;
|
|
3599
3983
|
nextPageCursor?: string | undefined;
|
|
3600
3984
|
currentPageIndex?: number | undefined;
|
|
3601
3985
|
};
|
|
@@ -3648,83 +4032,67 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
3648
4032
|
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3649
4033
|
} & {
|
|
3650
4034
|
operator: z.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
3651
|
-
value: z.ZodOptional<z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>>;
|
|
3652
|
-
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>, "many">>;
|
|
4035
|
+
value: z.ZodOptional<z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>>;
|
|
4036
|
+
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>, "many">>;
|
|
3653
4037
|
}, "strip", z.ZodTypeAny, {
|
|
3654
4038
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
3655
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
3656
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4039
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4040
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
3657
4041
|
caseSensitive?: boolean | undefined;
|
|
3658
4042
|
}, {
|
|
3659
4043
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
3660
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
3661
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4044
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4045
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
3662
4046
|
caseSensitive?: boolean | undefined;
|
|
3663
4047
|
}>, {
|
|
3664
4048
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
3665
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
3666
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4049
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4050
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
3667
4051
|
caseSensitive?: boolean | undefined;
|
|
3668
4052
|
}, {
|
|
3669
4053
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
3670
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
3671
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4054
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4055
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
3672
4056
|
caseSensitive?: boolean | undefined;
|
|
3673
4057
|
}>>;
|
|
3674
|
-
priority: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
4058
|
+
priority: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
3675
4059
|
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3676
4060
|
} & {
|
|
3677
|
-
operator: z.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
3678
|
-
value: z.ZodOptional<z.
|
|
3679
|
-
values: z.ZodOptional<z.ZodArray<z.
|
|
4061
|
+
operator: z.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
4062
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
4063
|
+
values: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
3680
4064
|
}, "strip", z.ZodTypeAny, {
|
|
3681
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
3682
|
-
value?:
|
|
3683
|
-
values?:
|
|
4065
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4066
|
+
value?: number | undefined;
|
|
4067
|
+
values?: number[] | undefined;
|
|
3684
4068
|
caseSensitive?: boolean | undefined;
|
|
3685
4069
|
}, {
|
|
3686
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
3687
|
-
value?:
|
|
3688
|
-
values?:
|
|
4070
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4071
|
+
value?: number | undefined;
|
|
4072
|
+
values?: number[] | undefined;
|
|
3689
4073
|
caseSensitive?: boolean | undefined;
|
|
3690
4074
|
}>, {
|
|
3691
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
3692
|
-
value?:
|
|
3693
|
-
values?:
|
|
3694
|
-
caseSensitive?: boolean | undefined;
|
|
3695
|
-
}, {
|
|
3696
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
3697
|
-
value?: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL" | undefined;
|
|
3698
|
-
values?: ("LOW" | "MEDIUM" | "HIGH" | "CRITICAL")[] | undefined;
|
|
3699
|
-
caseSensitive?: boolean | undefined;
|
|
3700
|
-
}>>;
|
|
3701
|
-
title: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
3702
|
-
operator: z.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3703
|
-
value: z.ZodOptional<z.ZodString>;
|
|
3704
|
-
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3705
|
-
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
3706
|
-
}, "strip", z.ZodTypeAny, {
|
|
3707
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
3708
|
-
value?: string | undefined;
|
|
3709
|
-
values?: string[] | undefined;
|
|
4075
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4076
|
+
value?: number | undefined;
|
|
4077
|
+
values?: number[] | undefined;
|
|
3710
4078
|
caseSensitive?: boolean | undefined;
|
|
3711
4079
|
}, {
|
|
3712
|
-
operator: "eq" | "ne" | "
|
|
3713
|
-
value?:
|
|
3714
|
-
values?:
|
|
4080
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4081
|
+
value?: number | undefined;
|
|
4082
|
+
values?: number[] | undefined;
|
|
3715
4083
|
caseSensitive?: boolean | undefined;
|
|
3716
4084
|
}>, {
|
|
3717
|
-
operator: "eq" | "ne" | "
|
|
3718
|
-
value?:
|
|
3719
|
-
values?:
|
|
4085
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4086
|
+
value?: number | undefined;
|
|
4087
|
+
values?: number[] | undefined;
|
|
3720
4088
|
caseSensitive?: boolean | undefined;
|
|
3721
4089
|
}, {
|
|
3722
|
-
operator: "eq" | "ne" | "
|
|
3723
|
-
value?:
|
|
3724
|
-
values?:
|
|
4090
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4091
|
+
value?: number | undefined;
|
|
4092
|
+
values?: number[] | undefined;
|
|
3725
4093
|
caseSensitive?: boolean | undefined;
|
|
3726
4094
|
}>>;
|
|
3727
|
-
|
|
4095
|
+
title: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
3728
4096
|
operator: z.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3729
4097
|
value: z.ZodOptional<z.ZodString>;
|
|
3730
4098
|
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3750,7 +4118,7 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
3750
4118
|
values?: string[] | undefined;
|
|
3751
4119
|
caseSensitive?: boolean | undefined;
|
|
3752
4120
|
}>>;
|
|
3753
|
-
|
|
4121
|
+
description: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
3754
4122
|
operator: z.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3755
4123
|
value: z.ZodOptional<z.ZodString>;
|
|
3756
4124
|
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3776,7 +4144,7 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
3776
4144
|
values?: string[] | undefined;
|
|
3777
4145
|
caseSensitive?: boolean | undefined;
|
|
3778
4146
|
}>>;
|
|
3779
|
-
|
|
4147
|
+
created_by: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
3780
4148
|
operator: z.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
3781
4149
|
value: z.ZodOptional<z.ZodString>;
|
|
3782
4150
|
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4320,8 +4688,8 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4320
4688
|
} | undefined;
|
|
4321
4689
|
status?: {
|
|
4322
4690
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4323
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4324
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4691
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4692
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4325
4693
|
caseSensitive?: boolean | undefined;
|
|
4326
4694
|
} | undefined;
|
|
4327
4695
|
first?: number | undefined;
|
|
@@ -4345,6 +4713,12 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4345
4713
|
values?: any[] | undefined;
|
|
4346
4714
|
caseSensitive?: boolean | undefined;
|
|
4347
4715
|
} | undefined;
|
|
4716
|
+
created_by?: {
|
|
4717
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4718
|
+
value?: string | undefined;
|
|
4719
|
+
values?: string[] | undefined;
|
|
4720
|
+
caseSensitive?: boolean | undefined;
|
|
4721
|
+
} | undefined;
|
|
4348
4722
|
search?: {
|
|
4349
4723
|
query: string;
|
|
4350
4724
|
searchableFields: string[];
|
|
@@ -4377,22 +4751,16 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4377
4751
|
values?: string[] | undefined;
|
|
4378
4752
|
caseSensitive?: boolean | undefined;
|
|
4379
4753
|
} | undefined;
|
|
4380
|
-
|
|
4381
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4382
|
-
value?:
|
|
4383
|
-
values?:
|
|
4384
|
-
caseSensitive?: boolean | undefined;
|
|
4385
|
-
} | undefined;
|
|
4386
|
-
requester_name?: {
|
|
4387
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4388
|
-
value?: string | undefined;
|
|
4389
|
-
values?: string[] | undefined;
|
|
4754
|
+
credit_value?: {
|
|
4755
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4756
|
+
value?: number | undefined;
|
|
4757
|
+
values?: number[] | undefined;
|
|
4390
4758
|
caseSensitive?: boolean | undefined;
|
|
4391
4759
|
} | undefined;
|
|
4392
|
-
|
|
4393
|
-
operator: "eq" | "ne" | "
|
|
4394
|
-
value?:
|
|
4395
|
-
values?:
|
|
4760
|
+
priority?: {
|
|
4761
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4762
|
+
value?: number | undefined;
|
|
4763
|
+
values?: number[] | undefined;
|
|
4396
4764
|
caseSensitive?: boolean | undefined;
|
|
4397
4765
|
} | undefined;
|
|
4398
4766
|
is_locked?: {
|
|
@@ -4401,12 +4769,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4401
4769
|
values?: any[] | undefined;
|
|
4402
4770
|
caseSensitive?: boolean | undefined;
|
|
4403
4771
|
} | undefined;
|
|
4404
|
-
credit_value?: {
|
|
4405
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4406
|
-
value?: number | undefined;
|
|
4407
|
-
values?: number[] | undefined;
|
|
4408
|
-
caseSensitive?: boolean | undefined;
|
|
4409
|
-
} | undefined;
|
|
4410
4772
|
start_at?: {
|
|
4411
4773
|
operator: "isEmpty" | "isNotEmpty";
|
|
4412
4774
|
value?: any;
|
|
@@ -4464,8 +4826,8 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4464
4826
|
} | undefined;
|
|
4465
4827
|
status?: {
|
|
4466
4828
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4467
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4468
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4829
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4830
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4469
4831
|
caseSensitive?: boolean | undefined;
|
|
4470
4832
|
} | undefined;
|
|
4471
4833
|
first?: number | undefined;
|
|
@@ -4489,6 +4851,12 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4489
4851
|
values?: any[] | undefined;
|
|
4490
4852
|
caseSensitive?: boolean | undefined;
|
|
4491
4853
|
} | undefined;
|
|
4854
|
+
created_by?: {
|
|
4855
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4856
|
+
value?: string | undefined;
|
|
4857
|
+
values?: string[] | undefined;
|
|
4858
|
+
caseSensitive?: boolean | undefined;
|
|
4859
|
+
} | undefined;
|
|
4492
4860
|
search?: {
|
|
4493
4861
|
query: string;
|
|
4494
4862
|
searchableFields: string[];
|
|
@@ -4521,22 +4889,16 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4521
4889
|
values?: string[] | undefined;
|
|
4522
4890
|
caseSensitive?: boolean | undefined;
|
|
4523
4891
|
} | undefined;
|
|
4524
|
-
|
|
4525
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4526
|
-
value?:
|
|
4527
|
-
values?:
|
|
4528
|
-
caseSensitive?: boolean | undefined;
|
|
4529
|
-
} | undefined;
|
|
4530
|
-
requester_name?: {
|
|
4531
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4532
|
-
value?: string | undefined;
|
|
4533
|
-
values?: string[] | undefined;
|
|
4892
|
+
credit_value?: {
|
|
4893
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4894
|
+
value?: number | undefined;
|
|
4895
|
+
values?: number[] | undefined;
|
|
4534
4896
|
caseSensitive?: boolean | undefined;
|
|
4535
4897
|
} | undefined;
|
|
4536
|
-
|
|
4537
|
-
operator: "eq" | "ne" | "
|
|
4538
|
-
value?:
|
|
4539
|
-
values?:
|
|
4898
|
+
priority?: {
|
|
4899
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4900
|
+
value?: number | undefined;
|
|
4901
|
+
values?: number[] | undefined;
|
|
4540
4902
|
caseSensitive?: boolean | undefined;
|
|
4541
4903
|
} | undefined;
|
|
4542
4904
|
is_locked?: {
|
|
@@ -4545,12 +4907,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4545
4907
|
values?: any[] | undefined;
|
|
4546
4908
|
caseSensitive?: boolean | undefined;
|
|
4547
4909
|
} | undefined;
|
|
4548
|
-
credit_value?: {
|
|
4549
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4550
|
-
value?: number | undefined;
|
|
4551
|
-
values?: number[] | undefined;
|
|
4552
|
-
caseSensitive?: boolean | undefined;
|
|
4553
|
-
} | undefined;
|
|
4554
4910
|
start_at?: {
|
|
4555
4911
|
operator: "isEmpty" | "isNotEmpty";
|
|
4556
4912
|
value?: any;
|
|
@@ -4615,13 +4971,14 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
4615
4971
|
description: z.ZodString;
|
|
4616
4972
|
type: z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
4617
4973
|
priority: z.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
4618
|
-
status: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>;
|
|
4974
|
+
status: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
4619
4975
|
approval_status: z.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>;
|
|
4620
4976
|
is_locked: z.ZodBoolean;
|
|
4621
4977
|
can_delete: z.ZodBoolean;
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4978
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4979
|
+
assigned_to: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4980
|
+
assigned_to_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4981
|
+
dev_lifecycle: z.ZodNullable<z.ZodOptional<z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>>>;
|
|
4625
4982
|
credit_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4626
4983
|
delivered_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4627
4984
|
start_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -4631,10 +4988,13 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
4631
4988
|
created_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4632
4989
|
created_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4633
4990
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4991
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4634
4992
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4993
|
+
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4994
|
+
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4635
4995
|
}, "strip", z.ZodTypeAny, {
|
|
4636
4996
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4637
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
4997
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4638
4998
|
id: string;
|
|
4639
4999
|
description: string;
|
|
4640
5000
|
title: string;
|
|
@@ -4646,20 +5006,24 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
4646
5006
|
created_by?: string | null | undefined;
|
|
4647
5007
|
updated_at?: string | null | undefined;
|
|
4648
5008
|
updated_by?: string | null | undefined;
|
|
5009
|
+
archived_at?: string | null | undefined;
|
|
5010
|
+
archived_by?: string | null | undefined;
|
|
5011
|
+
created_by_display_name?: string | null | undefined;
|
|
5012
|
+
updated_by_display_name?: string | null | undefined;
|
|
4649
5013
|
display_id?: string | null | undefined;
|
|
4650
|
-
delivered_value?: string | null | undefined;
|
|
4651
|
-
requester_name?: string | null | undefined;
|
|
4652
|
-
requester_email?: string | null | undefined;
|
|
4653
5014
|
credit_value?: string | null | undefined;
|
|
5015
|
+
delivered_value?: string | null | undefined;
|
|
4654
5016
|
start_at?: string | null | undefined;
|
|
4655
5017
|
target_at?: string | null | undefined;
|
|
4656
5018
|
completed_at?: string | null | undefined;
|
|
4657
|
-
dev_lifecycle?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4658
5019
|
display_id_prefix?: string | null | undefined;
|
|
4659
5020
|
locked_approval_at?: string | null | undefined;
|
|
5021
|
+
assigned_to?: string | null | undefined;
|
|
5022
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5023
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4660
5024
|
}, {
|
|
4661
5025
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4662
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
5026
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4663
5027
|
id: string;
|
|
4664
5028
|
description: string;
|
|
4665
5029
|
title: string;
|
|
@@ -4671,17 +5035,21 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
4671
5035
|
created_by?: string | null | undefined;
|
|
4672
5036
|
updated_at?: string | null | undefined;
|
|
4673
5037
|
updated_by?: string | null | undefined;
|
|
5038
|
+
archived_at?: string | null | undefined;
|
|
5039
|
+
archived_by?: string | null | undefined;
|
|
5040
|
+
created_by_display_name?: string | null | undefined;
|
|
5041
|
+
updated_by_display_name?: string | null | undefined;
|
|
4674
5042
|
display_id?: string | null | undefined;
|
|
4675
|
-
delivered_value?: string | null | undefined;
|
|
4676
|
-
requester_name?: string | null | undefined;
|
|
4677
|
-
requester_email?: string | null | undefined;
|
|
4678
5043
|
credit_value?: string | null | undefined;
|
|
5044
|
+
delivered_value?: string | null | undefined;
|
|
4679
5045
|
start_at?: string | null | undefined;
|
|
4680
5046
|
target_at?: string | null | undefined;
|
|
4681
5047
|
completed_at?: string | null | undefined;
|
|
4682
|
-
dev_lifecycle?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4683
5048
|
display_id_prefix?: string | null | undefined;
|
|
4684
5049
|
locked_approval_at?: string | null | undefined;
|
|
5050
|
+
assigned_to?: string | null | undefined;
|
|
5051
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5052
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4685
5053
|
}>;
|
|
4686
5054
|
type StaffSupportTicketReadDto = z.infer<typeof StaffSupportTicketReadSchema>;
|
|
4687
5055
|
/**
|
|
@@ -4696,13 +5064,14 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
4696
5064
|
description: z.ZodString;
|
|
4697
5065
|
type: z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
4698
5066
|
priority: z.ZodEnum<["LOW", "MEDIUM", "HIGH", "CRITICAL"]>;
|
|
4699
|
-
status: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>;
|
|
5067
|
+
status: z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>;
|
|
4700
5068
|
approval_status: z.ZodEnum<["PENDING", "APPROVED", "REJECTED", "INTERNAL"]>;
|
|
4701
5069
|
is_locked: z.ZodBoolean;
|
|
4702
5070
|
can_delete: z.ZodBoolean;
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
5071
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5072
|
+
assigned_to: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5073
|
+
assigned_to_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5074
|
+
dev_lifecycle: z.ZodNullable<z.ZodOptional<z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>>>;
|
|
4706
5075
|
credit_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4707
5076
|
delivered_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4708
5077
|
start_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -4712,10 +5081,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
4712
5081
|
created_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4713
5082
|
created_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4714
5083
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5084
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4715
5085
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5086
|
+
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5087
|
+
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4716
5088
|
}, "strip", z.ZodTypeAny, {
|
|
4717
5089
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4718
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
5090
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4719
5091
|
id: string;
|
|
4720
5092
|
description: string;
|
|
4721
5093
|
title: string;
|
|
@@ -4727,20 +5099,24 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
4727
5099
|
created_by?: string | null | undefined;
|
|
4728
5100
|
updated_at?: string | null | undefined;
|
|
4729
5101
|
updated_by?: string | null | undefined;
|
|
5102
|
+
archived_at?: string | null | undefined;
|
|
5103
|
+
archived_by?: string | null | undefined;
|
|
5104
|
+
created_by_display_name?: string | null | undefined;
|
|
5105
|
+
updated_by_display_name?: string | null | undefined;
|
|
4730
5106
|
display_id?: string | null | undefined;
|
|
4731
|
-
delivered_value?: string | null | undefined;
|
|
4732
|
-
requester_name?: string | null | undefined;
|
|
4733
|
-
requester_email?: string | null | undefined;
|
|
4734
5107
|
credit_value?: string | null | undefined;
|
|
5108
|
+
delivered_value?: string | null | undefined;
|
|
4735
5109
|
start_at?: string | null | undefined;
|
|
4736
5110
|
target_at?: string | null | undefined;
|
|
4737
5111
|
completed_at?: string | null | undefined;
|
|
4738
|
-
dev_lifecycle?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4739
5112
|
display_id_prefix?: string | null | undefined;
|
|
4740
5113
|
locked_approval_at?: string | null | undefined;
|
|
5114
|
+
assigned_to?: string | null | undefined;
|
|
5115
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5116
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4741
5117
|
}, {
|
|
4742
5118
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4743
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
5119
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4744
5120
|
id: string;
|
|
4745
5121
|
description: string;
|
|
4746
5122
|
title: string;
|
|
@@ -4752,22 +5128,26 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
4752
5128
|
created_by?: string | null | undefined;
|
|
4753
5129
|
updated_at?: string | null | undefined;
|
|
4754
5130
|
updated_by?: string | null | undefined;
|
|
5131
|
+
archived_at?: string | null | undefined;
|
|
5132
|
+
archived_by?: string | null | undefined;
|
|
5133
|
+
created_by_display_name?: string | null | undefined;
|
|
5134
|
+
updated_by_display_name?: string | null | undefined;
|
|
4755
5135
|
display_id?: string | null | undefined;
|
|
4756
|
-
delivered_value?: string | null | undefined;
|
|
4757
|
-
requester_name?: string | null | undefined;
|
|
4758
|
-
requester_email?: string | null | undefined;
|
|
4759
5136
|
credit_value?: string | null | undefined;
|
|
5137
|
+
delivered_value?: string | null | undefined;
|
|
4760
5138
|
start_at?: string | null | undefined;
|
|
4761
5139
|
target_at?: string | null | undefined;
|
|
4762
5140
|
completed_at?: string | null | undefined;
|
|
4763
|
-
dev_lifecycle?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4764
5141
|
display_id_prefix?: string | null | undefined;
|
|
4765
5142
|
locked_approval_at?: string | null | undefined;
|
|
5143
|
+
assigned_to?: string | null | undefined;
|
|
5144
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5145
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4766
5146
|
}>, "many">;
|
|
4767
5147
|
pageInfo: z.ZodObject<{
|
|
4768
5148
|
hasNextPage: z.ZodBoolean;
|
|
4769
5149
|
hasPreviousPage: z.ZodBoolean;
|
|
4770
|
-
prevPageCursor: z.ZodOptional<z.ZodString
|
|
5150
|
+
prevPageCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4771
5151
|
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
4772
5152
|
currentPageIndex: z.ZodOptional<z.ZodNumber>;
|
|
4773
5153
|
paginationToken: z.ZodOptional<z.ZodString>;
|
|
@@ -4775,21 +5155,21 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
4775
5155
|
hasNextPage: boolean;
|
|
4776
5156
|
hasPreviousPage: boolean;
|
|
4777
5157
|
paginationToken?: string | undefined;
|
|
4778
|
-
prevPageCursor?: string | undefined;
|
|
5158
|
+
prevPageCursor?: string | null | undefined;
|
|
4779
5159
|
nextPageCursor?: string | undefined;
|
|
4780
5160
|
currentPageIndex?: number | undefined;
|
|
4781
5161
|
}, {
|
|
4782
5162
|
hasNextPage: boolean;
|
|
4783
5163
|
hasPreviousPage: boolean;
|
|
4784
5164
|
paginationToken?: string | undefined;
|
|
4785
|
-
prevPageCursor?: string | undefined;
|
|
5165
|
+
prevPageCursor?: string | null | undefined;
|
|
4786
5166
|
nextPageCursor?: string | undefined;
|
|
4787
5167
|
currentPageIndex?: number | undefined;
|
|
4788
5168
|
}>;
|
|
4789
5169
|
}, "strip", z.ZodTypeAny, {
|
|
4790
5170
|
items: {
|
|
4791
5171
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4792
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
5172
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4793
5173
|
id: string;
|
|
4794
5174
|
description: string;
|
|
4795
5175
|
title: string;
|
|
@@ -4801,30 +5181,34 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
4801
5181
|
created_by?: string | null | undefined;
|
|
4802
5182
|
updated_at?: string | null | undefined;
|
|
4803
5183
|
updated_by?: string | null | undefined;
|
|
5184
|
+
archived_at?: string | null | undefined;
|
|
5185
|
+
archived_by?: string | null | undefined;
|
|
5186
|
+
created_by_display_name?: string | null | undefined;
|
|
5187
|
+
updated_by_display_name?: string | null | undefined;
|
|
4804
5188
|
display_id?: string | null | undefined;
|
|
4805
|
-
delivered_value?: string | null | undefined;
|
|
4806
|
-
requester_name?: string | null | undefined;
|
|
4807
|
-
requester_email?: string | null | undefined;
|
|
4808
5189
|
credit_value?: string | null | undefined;
|
|
5190
|
+
delivered_value?: string | null | undefined;
|
|
4809
5191
|
start_at?: string | null | undefined;
|
|
4810
5192
|
target_at?: string | null | undefined;
|
|
4811
5193
|
completed_at?: string | null | undefined;
|
|
4812
|
-
dev_lifecycle?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4813
5194
|
display_id_prefix?: string | null | undefined;
|
|
4814
5195
|
locked_approval_at?: string | null | undefined;
|
|
5196
|
+
assigned_to?: string | null | undefined;
|
|
5197
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5198
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4815
5199
|
}[];
|
|
4816
5200
|
pageInfo: {
|
|
4817
5201
|
hasNextPage: boolean;
|
|
4818
5202
|
hasPreviousPage: boolean;
|
|
4819
5203
|
paginationToken?: string | undefined;
|
|
4820
|
-
prevPageCursor?: string | undefined;
|
|
5204
|
+
prevPageCursor?: string | null | undefined;
|
|
4821
5205
|
nextPageCursor?: string | undefined;
|
|
4822
5206
|
currentPageIndex?: number | undefined;
|
|
4823
5207
|
};
|
|
4824
5208
|
}, {
|
|
4825
5209
|
items: {
|
|
4826
5210
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4827
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED";
|
|
5211
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4828
5212
|
id: string;
|
|
4829
5213
|
description: string;
|
|
4830
5214
|
title: string;
|
|
@@ -4836,23 +5220,27 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
4836
5220
|
created_by?: string | null | undefined;
|
|
4837
5221
|
updated_at?: string | null | undefined;
|
|
4838
5222
|
updated_by?: string | null | undefined;
|
|
5223
|
+
archived_at?: string | null | undefined;
|
|
5224
|
+
archived_by?: string | null | undefined;
|
|
5225
|
+
created_by_display_name?: string | null | undefined;
|
|
5226
|
+
updated_by_display_name?: string | null | undefined;
|
|
4839
5227
|
display_id?: string | null | undefined;
|
|
4840
|
-
delivered_value?: string | null | undefined;
|
|
4841
|
-
requester_name?: string | null | undefined;
|
|
4842
|
-
requester_email?: string | null | undefined;
|
|
4843
5228
|
credit_value?: string | null | undefined;
|
|
5229
|
+
delivered_value?: string | null | undefined;
|
|
4844
5230
|
start_at?: string | null | undefined;
|
|
4845
5231
|
target_at?: string | null | undefined;
|
|
4846
5232
|
completed_at?: string | null | undefined;
|
|
4847
|
-
dev_lifecycle?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4848
5233
|
display_id_prefix?: string | null | undefined;
|
|
4849
5234
|
locked_approval_at?: string | null | undefined;
|
|
5235
|
+
assigned_to?: string | null | undefined;
|
|
5236
|
+
assigned_to_display_name?: string | null | undefined;
|
|
5237
|
+
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
4850
5238
|
}[];
|
|
4851
5239
|
pageInfo: {
|
|
4852
5240
|
hasNextPage: boolean;
|
|
4853
5241
|
hasPreviousPage: boolean;
|
|
4854
5242
|
paginationToken?: string | undefined;
|
|
4855
|
-
prevPageCursor?: string | undefined;
|
|
5243
|
+
prevPageCursor?: string | null | undefined;
|
|
4856
5244
|
nextPageCursor?: string | undefined;
|
|
4857
5245
|
currentPageIndex?: number | undefined;
|
|
4858
5246
|
};
|
|
@@ -4916,27 +5304,27 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4916
5304
|
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
4917
5305
|
} & {
|
|
4918
5306
|
operator: z.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4919
|
-
value: z.ZodOptional<z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>>;
|
|
4920
|
-
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "COMPLETED", "CANCELLED"]>, "many">>;
|
|
5307
|
+
value: z.ZodOptional<z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>>;
|
|
5308
|
+
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["PENDING", "FOLLOWUP", "IN_PROGRESS", "VERIFICATION", "COMPLETED", "CANCELLED"]>, "many">>;
|
|
4921
5309
|
}, "strip", z.ZodTypeAny, {
|
|
4922
5310
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4923
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4924
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5311
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5312
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4925
5313
|
caseSensitive?: boolean | undefined;
|
|
4926
5314
|
}, {
|
|
4927
5315
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4928
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4929
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5316
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5317
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4930
5318
|
caseSensitive?: boolean | undefined;
|
|
4931
5319
|
}>, {
|
|
4932
5320
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4933
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4934
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5321
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5322
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4935
5323
|
caseSensitive?: boolean | undefined;
|
|
4936
5324
|
}, {
|
|
4937
5325
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
4938
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4939
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5326
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5327
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4940
5328
|
caseSensitive?: boolean | undefined;
|
|
4941
5329
|
}>>;
|
|
4942
5330
|
approval_status: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
@@ -4966,87 +5354,71 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4966
5354
|
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
4967
5355
|
caseSensitive?: boolean | undefined;
|
|
4968
5356
|
}>>;
|
|
4969
|
-
priority: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
5357
|
+
priority: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
4970
5358
|
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
4971
5359
|
} & {
|
|
4972
|
-
operator: z.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
4973
|
-
value: z.ZodOptional<z.
|
|
4974
|
-
values: z.ZodOptional<z.ZodArray<z.
|
|
5360
|
+
operator: z.ZodEnum<["eq", "ne", "gt", "gte", "lt", "lte", "between", "in", "notIn"]>;
|
|
5361
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
5362
|
+
values: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
4975
5363
|
}, "strip", z.ZodTypeAny, {
|
|
4976
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4977
|
-
value?:
|
|
4978
|
-
values?:
|
|
5364
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5365
|
+
value?: number | undefined;
|
|
5366
|
+
values?: number[] | undefined;
|
|
5367
|
+
caseSensitive?: boolean | undefined;
|
|
5368
|
+
}, {
|
|
5369
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5370
|
+
value?: number | undefined;
|
|
5371
|
+
values?: number[] | undefined;
|
|
5372
|
+
caseSensitive?: boolean | undefined;
|
|
5373
|
+
}>, {
|
|
5374
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5375
|
+
value?: number | undefined;
|
|
5376
|
+
values?: number[] | undefined;
|
|
4979
5377
|
caseSensitive?: boolean | undefined;
|
|
4980
5378
|
}, {
|
|
4981
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4982
|
-
value?:
|
|
4983
|
-
values?:
|
|
5379
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5380
|
+
value?: number | undefined;
|
|
5381
|
+
values?: number[] | undefined;
|
|
4984
5382
|
caseSensitive?: boolean | undefined;
|
|
4985
5383
|
}>, {
|
|
4986
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4987
|
-
value?:
|
|
4988
|
-
values?:
|
|
5384
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5385
|
+
value?: number | undefined;
|
|
5386
|
+
values?: number[] | undefined;
|
|
4989
5387
|
caseSensitive?: boolean | undefined;
|
|
4990
5388
|
}, {
|
|
4991
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4992
|
-
value?:
|
|
4993
|
-
values?:
|
|
5389
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5390
|
+
value?: number | undefined;
|
|
5391
|
+
values?: number[] | undefined;
|
|
4994
5392
|
caseSensitive?: boolean | undefined;
|
|
4995
5393
|
}>>;
|
|
4996
5394
|
dev_lifecycle: z.ZodOptional<z.ZodEffects<z.ZodObject<{
|
|
4997
5395
|
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
4998
5396
|
} & {
|
|
4999
5397
|
operator: z.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
5000
|
-
value: z.ZodOptional<z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "DEPLOYED", "CANCELLED"]>>;
|
|
5001
|
-
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "DEPLOYED", "CANCELLED"]>, "many">>;
|
|
5398
|
+
value: z.ZodOptional<z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>>;
|
|
5399
|
+
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["PENDING", "BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION", "DEPLOYED", "CANCELLED"]>, "many">>;
|
|
5002
5400
|
}, "strip", z.ZodTypeAny, {
|
|
5003
5401
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5004
|
-
value?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5005
|
-
values?: ("PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5402
|
+
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5403
|
+
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5006
5404
|
caseSensitive?: boolean | undefined;
|
|
5007
5405
|
}, {
|
|
5008
5406
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5009
|
-
value?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5010
|
-
values?: ("PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5407
|
+
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5408
|
+
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5011
5409
|
caseSensitive?: boolean | undefined;
|
|
5012
5410
|
}>, {
|
|
5013
5411
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5014
|
-
value?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5015
|
-
values?: ("PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5412
|
+
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5413
|
+
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5016
5414
|
caseSensitive?: boolean | undefined;
|
|
5017
5415
|
}, {
|
|
5018
5416
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5019
|
-
value?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5020
|
-
values?: ("PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5021
|
-
caseSensitive?: boolean | undefined;
|
|
5022
|
-
}>>;
|
|
5023
|
-
title: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
5024
|
-
operator: z.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
5025
|
-
value: z.ZodOptional<z.ZodString>;
|
|
5026
|
-
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5027
|
-
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
5028
|
-
}, "strip", z.ZodTypeAny, {
|
|
5029
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5030
|
-
value?: string | undefined;
|
|
5031
|
-
values?: string[] | undefined;
|
|
5032
|
-
caseSensitive?: boolean | undefined;
|
|
5033
|
-
}, {
|
|
5034
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5035
|
-
value?: string | undefined;
|
|
5036
|
-
values?: string[] | undefined;
|
|
5037
|
-
caseSensitive?: boolean | undefined;
|
|
5038
|
-
}>, {
|
|
5039
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5040
|
-
value?: string | undefined;
|
|
5041
|
-
values?: string[] | undefined;
|
|
5042
|
-
caseSensitive?: boolean | undefined;
|
|
5043
|
-
}, {
|
|
5044
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5045
|
-
value?: string | undefined;
|
|
5046
|
-
values?: string[] | undefined;
|
|
5417
|
+
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5418
|
+
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5047
5419
|
caseSensitive?: boolean | undefined;
|
|
5048
5420
|
}>>;
|
|
5049
|
-
|
|
5421
|
+
created_by: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
5050
5422
|
operator: z.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
5051
5423
|
value: z.ZodOptional<z.ZodString>;
|
|
5052
5424
|
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5072,7 +5444,7 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5072
5444
|
values?: string[] | undefined;
|
|
5073
5445
|
caseSensitive?: boolean | undefined;
|
|
5074
5446
|
}>>;
|
|
5075
|
-
|
|
5447
|
+
title: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
5076
5448
|
operator: z.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
5077
5449
|
value: z.ZodOptional<z.ZodString>;
|
|
5078
5450
|
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5098,7 +5470,7 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5098
5470
|
values?: string[] | undefined;
|
|
5099
5471
|
caseSensitive?: boolean | undefined;
|
|
5100
5472
|
}>>;
|
|
5101
|
-
|
|
5473
|
+
description: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
5102
5474
|
operator: z.ZodEnum<["eq", "ne", "contains", "sw", "ew", "in", "notIn"]>;
|
|
5103
5475
|
value: z.ZodOptional<z.ZodString>;
|
|
5104
5476
|
values: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5679,8 +6051,8 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5679
6051
|
} | undefined;
|
|
5680
6052
|
status?: {
|
|
5681
6053
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5682
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5683
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6054
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6055
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5684
6056
|
caseSensitive?: boolean | undefined;
|
|
5685
6057
|
} | undefined;
|
|
5686
6058
|
first?: number | undefined;
|
|
@@ -5704,6 +6076,12 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5704
6076
|
values?: any[] | undefined;
|
|
5705
6077
|
caseSensitive?: boolean | undefined;
|
|
5706
6078
|
} | undefined;
|
|
6079
|
+
created_by?: {
|
|
6080
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6081
|
+
value?: string | undefined;
|
|
6082
|
+
values?: string[] | undefined;
|
|
6083
|
+
caseSensitive?: boolean | undefined;
|
|
6084
|
+
} | undefined;
|
|
5707
6085
|
search?: {
|
|
5708
6086
|
query: string;
|
|
5709
6087
|
searchableFields: string[];
|
|
@@ -5736,28 +6114,22 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5736
6114
|
values?: string[] | undefined;
|
|
5737
6115
|
caseSensitive?: boolean | undefined;
|
|
5738
6116
|
} | undefined;
|
|
5739
|
-
|
|
6117
|
+
credit_value?: {
|
|
5740
6118
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5741
6119
|
value?: number | undefined;
|
|
5742
6120
|
values?: number[] | undefined;
|
|
5743
6121
|
caseSensitive?: boolean | undefined;
|
|
5744
6122
|
} | undefined;
|
|
5745
|
-
|
|
5746
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5747
|
-
value?:
|
|
5748
|
-
values?:
|
|
5749
|
-
caseSensitive?: boolean | undefined;
|
|
5750
|
-
} | undefined;
|
|
5751
|
-
requester_name?: {
|
|
5752
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5753
|
-
value?: string | undefined;
|
|
5754
|
-
values?: string[] | undefined;
|
|
6123
|
+
delivered_value?: {
|
|
6124
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6125
|
+
value?: number | undefined;
|
|
6126
|
+
values?: number[] | undefined;
|
|
5755
6127
|
caseSensitive?: boolean | undefined;
|
|
5756
6128
|
} | undefined;
|
|
5757
|
-
|
|
5758
|
-
operator: "eq" | "ne" | "
|
|
5759
|
-
value?:
|
|
5760
|
-
values?:
|
|
6129
|
+
priority?: {
|
|
6130
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6131
|
+
value?: number | undefined;
|
|
6132
|
+
values?: number[] | undefined;
|
|
5761
6133
|
caseSensitive?: boolean | undefined;
|
|
5762
6134
|
} | undefined;
|
|
5763
6135
|
is_locked?: {
|
|
@@ -5766,12 +6138,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5766
6138
|
values?: any[] | undefined;
|
|
5767
6139
|
caseSensitive?: boolean | undefined;
|
|
5768
6140
|
} | undefined;
|
|
5769
|
-
credit_value?: {
|
|
5770
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5771
|
-
value?: number | undefined;
|
|
5772
|
-
values?: number[] | undefined;
|
|
5773
|
-
caseSensitive?: boolean | undefined;
|
|
5774
|
-
} | undefined;
|
|
5775
6141
|
start_at?: {
|
|
5776
6142
|
operator: "isEmpty" | "isNotEmpty";
|
|
5777
6143
|
value?: any;
|
|
@@ -5820,18 +6186,18 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5820
6186
|
values?: any[] | undefined;
|
|
5821
6187
|
caseSensitive?: boolean | undefined;
|
|
5822
6188
|
} | undefined;
|
|
5823
|
-
dev_lifecycle?: {
|
|
5824
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5825
|
-
value?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5826
|
-
values?: ("PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5827
|
-
caseSensitive?: boolean | undefined;
|
|
5828
|
-
} | undefined;
|
|
5829
6189
|
approval_status?: {
|
|
5830
6190
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5831
6191
|
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
5832
6192
|
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
5833
6193
|
caseSensitive?: boolean | undefined;
|
|
5834
6194
|
} | undefined;
|
|
6195
|
+
dev_lifecycle?: {
|
|
6196
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6197
|
+
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
6198
|
+
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
6199
|
+
caseSensitive?: boolean | undefined;
|
|
6200
|
+
} | undefined;
|
|
5835
6201
|
}, {
|
|
5836
6202
|
type?: {
|
|
5837
6203
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
@@ -5841,8 +6207,8 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5841
6207
|
} | undefined;
|
|
5842
6208
|
status?: {
|
|
5843
6209
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5844
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5845
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6210
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6211
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5846
6212
|
caseSensitive?: boolean | undefined;
|
|
5847
6213
|
} | undefined;
|
|
5848
6214
|
first?: number | undefined;
|
|
@@ -5866,6 +6232,12 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5866
6232
|
values?: any[] | undefined;
|
|
5867
6233
|
caseSensitive?: boolean | undefined;
|
|
5868
6234
|
} | undefined;
|
|
6235
|
+
created_by?: {
|
|
6236
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6237
|
+
value?: string | undefined;
|
|
6238
|
+
values?: string[] | undefined;
|
|
6239
|
+
caseSensitive?: boolean | undefined;
|
|
6240
|
+
} | undefined;
|
|
5869
6241
|
search?: {
|
|
5870
6242
|
query: string;
|
|
5871
6243
|
searchableFields: string[];
|
|
@@ -5898,28 +6270,22 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5898
6270
|
values?: string[] | undefined;
|
|
5899
6271
|
caseSensitive?: boolean | undefined;
|
|
5900
6272
|
} | undefined;
|
|
5901
|
-
|
|
6273
|
+
credit_value?: {
|
|
5902
6274
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5903
6275
|
value?: number | undefined;
|
|
5904
6276
|
values?: number[] | undefined;
|
|
5905
6277
|
caseSensitive?: boolean | undefined;
|
|
5906
6278
|
} | undefined;
|
|
5907
|
-
|
|
5908
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5909
|
-
value?:
|
|
5910
|
-
values?:
|
|
5911
|
-
caseSensitive?: boolean | undefined;
|
|
5912
|
-
} | undefined;
|
|
5913
|
-
requester_name?: {
|
|
5914
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5915
|
-
value?: string | undefined;
|
|
5916
|
-
values?: string[] | undefined;
|
|
6279
|
+
delivered_value?: {
|
|
6280
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6281
|
+
value?: number | undefined;
|
|
6282
|
+
values?: number[] | undefined;
|
|
5917
6283
|
caseSensitive?: boolean | undefined;
|
|
5918
6284
|
} | undefined;
|
|
5919
|
-
|
|
5920
|
-
operator: "eq" | "ne" | "
|
|
5921
|
-
value?:
|
|
5922
|
-
values?:
|
|
6285
|
+
priority?: {
|
|
6286
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6287
|
+
value?: number | undefined;
|
|
6288
|
+
values?: number[] | undefined;
|
|
5923
6289
|
caseSensitive?: boolean | undefined;
|
|
5924
6290
|
} | undefined;
|
|
5925
6291
|
is_locked?: {
|
|
@@ -5928,12 +6294,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5928
6294
|
values?: any[] | undefined;
|
|
5929
6295
|
caseSensitive?: boolean | undefined;
|
|
5930
6296
|
} | undefined;
|
|
5931
|
-
credit_value?: {
|
|
5932
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5933
|
-
value?: number | undefined;
|
|
5934
|
-
values?: number[] | undefined;
|
|
5935
|
-
caseSensitive?: boolean | undefined;
|
|
5936
|
-
} | undefined;
|
|
5937
6297
|
start_at?: {
|
|
5938
6298
|
operator: "isEmpty" | "isNotEmpty";
|
|
5939
6299
|
value?: any;
|
|
@@ -5982,18 +6342,18 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5982
6342
|
values?: any[] | undefined;
|
|
5983
6343
|
caseSensitive?: boolean | undefined;
|
|
5984
6344
|
} | undefined;
|
|
5985
|
-
dev_lifecycle?: {
|
|
5986
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5987
|
-
value?: "PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
5988
|
-
values?: ("PENDING" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
5989
|
-
caseSensitive?: boolean | undefined;
|
|
5990
|
-
} | undefined;
|
|
5991
6345
|
approval_status?: {
|
|
5992
6346
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
5993
6347
|
value?: "PENDING" | "APPROVED" | "REJECTED" | "INTERNAL" | undefined;
|
|
5994
6348
|
values?: ("PENDING" | "APPROVED" | "REJECTED" | "INTERNAL")[] | undefined;
|
|
5995
6349
|
caseSensitive?: boolean | undefined;
|
|
5996
6350
|
} | undefined;
|
|
6351
|
+
dev_lifecycle?: {
|
|
6352
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6353
|
+
value?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | undefined;
|
|
6354
|
+
values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
|
|
6355
|
+
caseSensitive?: boolean | undefined;
|
|
6356
|
+
} | undefined;
|
|
5997
6357
|
}>;
|
|
5998
6358
|
type StaffSupportTicketFiltersDto = z.infer<typeof StaffSupportTicketFiltersSchema>;
|
|
5999
6359
|
//#endregion
|
|
@@ -6002,117 +6362,126 @@ declare const StaffSupportTicketCreateSchema: z.ZodObject<{
|
|
|
6002
6362
|
title: z.ZodString;
|
|
6003
6363
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6004
6364
|
type: z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
6005
|
-
priority: z.
|
|
6006
|
-
dev_lifecycle: z.ZodOptional<z.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL"]>>;
|
|
6365
|
+
priority: z.ZodNumber;
|
|
6366
|
+
dev_lifecycle: z.ZodOptional<z.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION"]>>;
|
|
6007
6367
|
credit_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6008
6368
|
delivered_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6009
6369
|
start_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6010
6370
|
target_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6011
6371
|
completed_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6372
|
+
assigned_to: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6012
6373
|
} & {
|
|
6013
6374
|
is_internal: z.ZodOptional<z.ZodBoolean>;
|
|
6014
6375
|
}, "strip", z.ZodTypeAny, {
|
|
6015
6376
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6016
6377
|
title: string;
|
|
6017
|
-
priority:
|
|
6378
|
+
priority: number;
|
|
6018
6379
|
description?: string | null | undefined;
|
|
6019
6380
|
is_internal?: boolean | undefined;
|
|
6020
|
-
delivered_value?: string | null | undefined;
|
|
6021
6381
|
credit_value?: string | null | undefined;
|
|
6382
|
+
delivered_value?: string | null | undefined;
|
|
6022
6383
|
start_at?: string | null | undefined;
|
|
6023
6384
|
target_at?: string | null | undefined;
|
|
6024
6385
|
completed_at?: string | null | undefined;
|
|
6025
|
-
|
|
6386
|
+
assigned_to?: string | null | undefined;
|
|
6387
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6026
6388
|
}, {
|
|
6027
6389
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6028
6390
|
title: string;
|
|
6029
|
-
priority:
|
|
6391
|
+
priority: number;
|
|
6030
6392
|
description?: string | null | undefined;
|
|
6031
6393
|
is_internal?: boolean | undefined;
|
|
6032
|
-
delivered_value?: string | null | undefined;
|
|
6033
6394
|
credit_value?: string | null | undefined;
|
|
6395
|
+
delivered_value?: string | null | undefined;
|
|
6034
6396
|
start_at?: string | null | undefined;
|
|
6035
6397
|
target_at?: string | null | undefined;
|
|
6036
6398
|
completed_at?: string | null | undefined;
|
|
6037
|
-
|
|
6399
|
+
assigned_to?: string | null | undefined;
|
|
6400
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6038
6401
|
}>;
|
|
6039
6402
|
type StaffSupportTicketCreateDto = z.infer<typeof StaffSupportTicketCreateSchema>;
|
|
6040
6403
|
declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
|
|
6041
6404
|
title: z.ZodString;
|
|
6042
6405
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6043
6406
|
type: z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
6044
|
-
priority: z.
|
|
6045
|
-
dev_lifecycle: z.ZodOptional<z.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL"]>>;
|
|
6407
|
+
priority: z.ZodNumber;
|
|
6408
|
+
dev_lifecycle: z.ZodOptional<z.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION"]>>;
|
|
6046
6409
|
credit_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6047
6410
|
delivered_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6048
6411
|
start_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6049
6412
|
target_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6050
6413
|
completed_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6414
|
+
assigned_to: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6051
6415
|
} & {
|
|
6052
6416
|
id: z.ZodString;
|
|
6053
6417
|
}, "strip", z.ZodTypeAny, {
|
|
6054
6418
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6055
6419
|
id: string;
|
|
6056
6420
|
title: string;
|
|
6057
|
-
priority:
|
|
6421
|
+
priority: number;
|
|
6058
6422
|
description?: string | null | undefined;
|
|
6059
|
-
delivered_value?: string | null | undefined;
|
|
6060
6423
|
credit_value?: string | null | undefined;
|
|
6424
|
+
delivered_value?: string | null | undefined;
|
|
6061
6425
|
start_at?: string | null | undefined;
|
|
6062
6426
|
target_at?: string | null | undefined;
|
|
6063
6427
|
completed_at?: string | null | undefined;
|
|
6064
|
-
|
|
6428
|
+
assigned_to?: string | null | undefined;
|
|
6429
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6065
6430
|
}, {
|
|
6066
6431
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6067
6432
|
id: string;
|
|
6068
6433
|
title: string;
|
|
6069
|
-
priority:
|
|
6434
|
+
priority: number;
|
|
6070
6435
|
description?: string | null | undefined;
|
|
6071
|
-
delivered_value?: string | null | undefined;
|
|
6072
6436
|
credit_value?: string | null | undefined;
|
|
6437
|
+
delivered_value?: string | null | undefined;
|
|
6073
6438
|
start_at?: string | null | undefined;
|
|
6074
6439
|
target_at?: string | null | undefined;
|
|
6075
6440
|
completed_at?: string | null | undefined;
|
|
6076
|
-
|
|
6441
|
+
assigned_to?: string | null | undefined;
|
|
6442
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6077
6443
|
}>;
|
|
6078
6444
|
type StaffSupportTicketUpdateDto = z.infer<typeof StaffSupportTicketUpdateSchema>;
|
|
6079
6445
|
declare const StaffSupportTicketInputSchema: z.ZodObject<{
|
|
6080
6446
|
title: z.ZodString;
|
|
6081
6447
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6082
6448
|
type: z.ZodEnum<["IMPROVEMENT", "BUG", "FEATURE_REQUEST", "OPERATIONAL"]>;
|
|
6083
|
-
priority: z.
|
|
6084
|
-
dev_lifecycle: z.ZodOptional<z.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL"]>>;
|
|
6449
|
+
priority: z.ZodNumber;
|
|
6450
|
+
dev_lifecycle: z.ZodOptional<z.ZodEnum<["BACKLOG", "PLANNING", "DEVELOPMENT", "CODE_REVIEW", "TESTING", "STAGING", "PO_APPROVAL", "VERIFICATION"]>>;
|
|
6085
6451
|
credit_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6086
6452
|
delivered_value: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6087
6453
|
start_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6088
6454
|
target_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6089
6455
|
completed_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6456
|
+
assigned_to: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6090
6457
|
} & {
|
|
6091
6458
|
id: z.ZodString;
|
|
6092
6459
|
}, "strip", z.ZodTypeAny, {
|
|
6093
6460
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6094
6461
|
id: string;
|
|
6095
6462
|
title: string;
|
|
6096
|
-
priority:
|
|
6463
|
+
priority: number;
|
|
6097
6464
|
description?: string | null | undefined;
|
|
6098
|
-
delivered_value?: string | null | undefined;
|
|
6099
6465
|
credit_value?: string | null | undefined;
|
|
6466
|
+
delivered_value?: string | null | undefined;
|
|
6100
6467
|
start_at?: string | null | undefined;
|
|
6101
6468
|
target_at?: string | null | undefined;
|
|
6102
6469
|
completed_at?: string | null | undefined;
|
|
6103
|
-
|
|
6470
|
+
assigned_to?: string | null | undefined;
|
|
6471
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6104
6472
|
}, {
|
|
6105
6473
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6106
6474
|
id: string;
|
|
6107
6475
|
title: string;
|
|
6108
|
-
priority:
|
|
6476
|
+
priority: number;
|
|
6109
6477
|
description?: string | null | undefined;
|
|
6110
|
-
delivered_value?: string | null | undefined;
|
|
6111
6478
|
credit_value?: string | null | undefined;
|
|
6479
|
+
delivered_value?: string | null | undefined;
|
|
6112
6480
|
start_at?: string | null | undefined;
|
|
6113
6481
|
target_at?: string | null | undefined;
|
|
6114
6482
|
completed_at?: string | null | undefined;
|
|
6115
|
-
|
|
6483
|
+
assigned_to?: string | null | undefined;
|
|
6484
|
+
dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
|
|
6116
6485
|
}>;
|
|
6117
6486
|
type StaffSupportTicketInputDto = StaffSupportTicketUpdateDto;
|
|
6118
6487
|
//#endregion
|
|
@@ -6124,13 +6493,17 @@ type StaffSupportTicketInputDto = StaffSupportTicketUpdateDto;
|
|
|
6124
6493
|
/**
|
|
6125
6494
|
* Approve support_ticket (PENDING → APPROVED)
|
|
6126
6495
|
* Deducts credits and sets dev_lifecycle to BACKLOG
|
|
6496
|
+
* credit_value is required - can be set/updated in the approve flow
|
|
6127
6497
|
*/
|
|
6128
6498
|
declare const ApproveSupportTicketSchema: z.ZodObject<{
|
|
6129
6499
|
id: z.ZodString;
|
|
6500
|
+
credit_value: z.ZodEffects<z.ZodString, string, string>;
|
|
6130
6501
|
}, "strip", z.ZodTypeAny, {
|
|
6131
6502
|
id: string;
|
|
6503
|
+
credit_value: string;
|
|
6132
6504
|
}, {
|
|
6133
6505
|
id: string;
|
|
6506
|
+
credit_value: string;
|
|
6134
6507
|
}>;
|
|
6135
6508
|
type ApproveSupportTicketDto = z.infer<typeof ApproveSupportTicketSchema>;
|
|
6136
6509
|
/**
|
|
@@ -6212,6 +6585,41 @@ declare const ReactivateInternalTaskSchema: z.ZodObject<{
|
|
|
6212
6585
|
id: string;
|
|
6213
6586
|
}>;
|
|
6214
6587
|
type ReactivateInternalTaskDto = z.infer<typeof ReactivateInternalTaskSchema>;
|
|
6588
|
+
/**
|
|
6589
|
+
* Archive support ticket (COMPLETED only)
|
|
6590
|
+
* Only completed tickets (dev_lifecycle = DEPLOYED) can be archived.
|
|
6591
|
+
* Archiving locks comments for both customer and staff.
|
|
6592
|
+
*/
|
|
6593
|
+
declare const ArchiveSupportTicketSchema: z.ZodObject<{
|
|
6594
|
+
id: z.ZodString;
|
|
6595
|
+
}, "strip", z.ZodTypeAny, {
|
|
6596
|
+
id: string;
|
|
6597
|
+
}, {
|
|
6598
|
+
id: string;
|
|
6599
|
+
}>;
|
|
6600
|
+
type ArchiveSupportTicketDto = z.infer<typeof ArchiveSupportTicketSchema>;
|
|
6601
|
+
//#endregion
|
|
6602
|
+
//#region src/validation/support_ticket/support_ticket_staff/support_ticket_event_types_zod.d.ts
|
|
6603
|
+
declare const SupportTicketEventTypeValues: readonly ["TICKET_CREATED", "TICKET_ASSIGNED", "TICKET_UPDATED", "APPROVAL_STATUS_CHANGED", "DEV_LIFECYCLE_CHANGED", "PRIORITY_CHANGED", "NEW_CUSTOMER_NOTE", "NEW_INTERNAL_NOTE", "NEW_FOLLOWUP", "FOLLOWUP_COMPLETED"];
|
|
6604
|
+
declare const SupportTicketEventTypeEnum: z.ZodEnum<["TICKET_CREATED", "TICKET_ASSIGNED", "TICKET_UPDATED", "APPROVAL_STATUS_CHANGED", "DEV_LIFECYCLE_CHANGED", "PRIORITY_CHANGED", "NEW_CUSTOMER_NOTE", "NEW_INTERNAL_NOTE", "NEW_FOLLOWUP", "FOLLOWUP_COMPLETED"]>;
|
|
6605
|
+
type SupportTicketEventType = (typeof SupportTicketEventTypeValues)[number];
|
|
6606
|
+
//#endregion
|
|
6607
|
+
//#region src/validation/support_ticket/support_ticket_staff/support_ticket_subscriber_zod.d.ts
|
|
6608
|
+
/** Support-ticket-specific create input: uses support_ticket_id instead of generic record_type/record_id */
|
|
6609
|
+
declare const SupportTicketSubscriberCreateSchema: z.ZodObject<{
|
|
6610
|
+
support_ticket_id: z.ZodString;
|
|
6611
|
+
user_id: z.ZodString;
|
|
6612
|
+
subscribed_events: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodEnum<["TICKET_CREATED", "TICKET_ASSIGNED", "TICKET_UPDATED", "APPROVAL_STATUS_CHANGED", "DEV_LIFECYCLE_CHANGED", "PRIORITY_CHANGED", "NEW_CUSTOMER_NOTE", "NEW_INTERNAL_NOTE", "NEW_FOLLOWUP", "FOLLOWUP_COMPLETED"]>, "many">>>;
|
|
6613
|
+
}, "strip", z.ZodTypeAny, {
|
|
6614
|
+
support_ticket_id: string;
|
|
6615
|
+
user_id: string;
|
|
6616
|
+
subscribed_events?: ("TICKET_CREATED" | "TICKET_ASSIGNED" | "TICKET_UPDATED" | "APPROVAL_STATUS_CHANGED" | "DEV_LIFECYCLE_CHANGED" | "PRIORITY_CHANGED" | "NEW_CUSTOMER_NOTE" | "NEW_INTERNAL_NOTE" | "NEW_FOLLOWUP" | "FOLLOWUP_COMPLETED")[] | null | undefined;
|
|
6617
|
+
}, {
|
|
6618
|
+
support_ticket_id: string;
|
|
6619
|
+
user_id: string;
|
|
6620
|
+
subscribed_events?: ("TICKET_CREATED" | "TICKET_ASSIGNED" | "TICKET_UPDATED" | "APPROVAL_STATUS_CHANGED" | "DEV_LIFECYCLE_CHANGED" | "PRIORITY_CHANGED" | "NEW_CUSTOMER_NOTE" | "NEW_INTERNAL_NOTE" | "NEW_FOLLOWUP" | "FOLLOWUP_COMPLETED")[] | null | undefined;
|
|
6621
|
+
}>;
|
|
6622
|
+
type SupportTicketSubscriberCreateDto = z.infer<typeof SupportTicketSubscriberCreateSchema>;
|
|
6215
6623
|
//#endregion
|
|
6216
6624
|
//#region src/validation/support_ticket/support_ticket_enrichment.d.ts
|
|
6217
6625
|
/**
|
|
@@ -6937,6 +7345,7 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
6937
7345
|
}, "strip", z.ZodTypeAny, {
|
|
6938
7346
|
display_name: string;
|
|
6939
7347
|
description?: string | null | undefined;
|
|
7348
|
+
url?: string | null | undefined;
|
|
6940
7349
|
unique_name?: string | null | undefined;
|
|
6941
7350
|
legal_name?: string | null | undefined;
|
|
6942
7351
|
contact_name?: string | null | undefined;
|
|
@@ -6948,13 +7357,13 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
6948
7357
|
address_city?: string | null | undefined;
|
|
6949
7358
|
address_zip?: string | null | undefined;
|
|
6950
7359
|
twitter_username?: string | null | undefined;
|
|
6951
|
-
url?: string | null | undefined;
|
|
6952
7360
|
logo?: string | null | undefined;
|
|
6953
7361
|
email_sent_from?: string | null | undefined;
|
|
6954
7362
|
email_reply_to?: string | null | undefined;
|
|
6955
7363
|
}, {
|
|
6956
7364
|
display_name: string;
|
|
6957
7365
|
description?: string | null | undefined;
|
|
7366
|
+
url?: string | null | undefined;
|
|
6958
7367
|
unique_name?: string | null | undefined;
|
|
6959
7368
|
legal_name?: string | null | undefined;
|
|
6960
7369
|
contact_name?: string | null | undefined;
|
|
@@ -6966,7 +7375,6 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
6966
7375
|
address_city?: string | null | undefined;
|
|
6967
7376
|
address_zip?: string | null | undefined;
|
|
6968
7377
|
twitter_username?: string | null | undefined;
|
|
6969
|
-
url?: string | null | undefined;
|
|
6970
7378
|
logo?: string | null | undefined;
|
|
6971
7379
|
email_sent_from?: string | null | undefined;
|
|
6972
7380
|
email_reply_to?: string | null | undefined;
|
|
@@ -6992,6 +7400,7 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
6992
7400
|
}, "strip", z.ZodTypeAny, {
|
|
6993
7401
|
display_name: string;
|
|
6994
7402
|
description?: string | null | undefined;
|
|
7403
|
+
url?: string | null | undefined;
|
|
6995
7404
|
unique_name?: string | null | undefined;
|
|
6996
7405
|
legal_name?: string | null | undefined;
|
|
6997
7406
|
contact_name?: string | null | undefined;
|
|
@@ -7003,13 +7412,13 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7003
7412
|
address_city?: string | null | undefined;
|
|
7004
7413
|
address_zip?: string | null | undefined;
|
|
7005
7414
|
twitter_username?: string | null | undefined;
|
|
7006
|
-
url?: string | null | undefined;
|
|
7007
7415
|
logo?: string | null | undefined;
|
|
7008
7416
|
email_sent_from?: string | null | undefined;
|
|
7009
7417
|
email_reply_to?: string | null | undefined;
|
|
7010
7418
|
}, {
|
|
7011
7419
|
display_name: string;
|
|
7012
7420
|
description?: string | null | undefined;
|
|
7421
|
+
url?: string | null | undefined;
|
|
7013
7422
|
unique_name?: string | null | undefined;
|
|
7014
7423
|
legal_name?: string | null | undefined;
|
|
7015
7424
|
contact_name?: string | null | undefined;
|
|
@@ -7021,7 +7430,6 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7021
7430
|
address_city?: string | null | undefined;
|
|
7022
7431
|
address_zip?: string | null | undefined;
|
|
7023
7432
|
twitter_username?: string | null | undefined;
|
|
7024
|
-
url?: string | null | undefined;
|
|
7025
7433
|
logo?: string | null | undefined;
|
|
7026
7434
|
email_sent_from?: string | null | undefined;
|
|
7027
7435
|
email_reply_to?: string | null | undefined;
|
|
@@ -7051,6 +7459,7 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
7051
7459
|
id: string;
|
|
7052
7460
|
display_name: string;
|
|
7053
7461
|
description?: string | null | undefined;
|
|
7462
|
+
url?: string | null | undefined;
|
|
7054
7463
|
unique_name?: string | null | undefined;
|
|
7055
7464
|
legal_name?: string | null | undefined;
|
|
7056
7465
|
contact_name?: string | null | undefined;
|
|
@@ -7062,7 +7471,6 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
7062
7471
|
address_city?: string | null | undefined;
|
|
7063
7472
|
address_zip?: string | null | undefined;
|
|
7064
7473
|
twitter_username?: string | null | undefined;
|
|
7065
|
-
url?: string | null | undefined;
|
|
7066
7474
|
logo?: string | null | undefined;
|
|
7067
7475
|
email_sent_from?: string | null | undefined;
|
|
7068
7476
|
email_reply_to?: string | null | undefined;
|
|
@@ -7070,6 +7478,7 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
7070
7478
|
id: string;
|
|
7071
7479
|
display_name: string;
|
|
7072
7480
|
description?: string | null | undefined;
|
|
7481
|
+
url?: string | null | undefined;
|
|
7073
7482
|
unique_name?: string | null | undefined;
|
|
7074
7483
|
legal_name?: string | null | undefined;
|
|
7075
7484
|
contact_name?: string | null | undefined;
|
|
@@ -7081,7 +7490,6 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
7081
7490
|
address_city?: string | null | undefined;
|
|
7082
7491
|
address_zip?: string | null | undefined;
|
|
7083
7492
|
twitter_username?: string | null | undefined;
|
|
7084
|
-
url?: string | null | undefined;
|
|
7085
7493
|
logo?: string | null | undefined;
|
|
7086
7494
|
email_sent_from?: string | null | undefined;
|
|
7087
7495
|
email_reply_to?: string | null | undefined;
|
|
@@ -7115,7 +7523,9 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7115
7523
|
created_at: z.ZodString;
|
|
7116
7524
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7117
7525
|
created_by: z.ZodString;
|
|
7526
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7118
7527
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7528
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7119
7529
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7120
7530
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7121
7531
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7125,11 +7535,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7125
7535
|
display_name: string;
|
|
7126
7536
|
path?: string | null | undefined;
|
|
7127
7537
|
description?: string | null | undefined;
|
|
7538
|
+
url?: string | null | undefined;
|
|
7128
7539
|
updated_at?: string | null | undefined;
|
|
7129
7540
|
updated_by?: string | null | undefined;
|
|
7130
7541
|
archived_at?: string | null | undefined;
|
|
7131
7542
|
archived_by?: string | null | undefined;
|
|
7132
7543
|
original_id?: string | null | undefined;
|
|
7544
|
+
created_by_display_name?: string | null | undefined;
|
|
7545
|
+
updated_by_display_name?: string | null | undefined;
|
|
7133
7546
|
unique_name?: string | null | undefined;
|
|
7134
7547
|
legal_name?: string | null | undefined;
|
|
7135
7548
|
contact_name?: string | null | undefined;
|
|
@@ -7141,7 +7554,6 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7141
7554
|
address_city?: string | null | undefined;
|
|
7142
7555
|
address_zip?: string | null | undefined;
|
|
7143
7556
|
twitter_username?: string | null | undefined;
|
|
7144
|
-
url?: string | null | undefined;
|
|
7145
7557
|
logo?: string | null | undefined;
|
|
7146
7558
|
email_sent_from?: string | null | undefined;
|
|
7147
7559
|
email_reply_to?: string | null | undefined;
|
|
@@ -7152,11 +7564,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7152
7564
|
display_name: string;
|
|
7153
7565
|
path?: string | null | undefined;
|
|
7154
7566
|
description?: string | null | undefined;
|
|
7567
|
+
url?: string | null | undefined;
|
|
7155
7568
|
updated_at?: string | null | undefined;
|
|
7156
7569
|
updated_by?: string | null | undefined;
|
|
7157
7570
|
archived_at?: string | null | undefined;
|
|
7158
7571
|
archived_by?: string | null | undefined;
|
|
7159
7572
|
original_id?: string | null | undefined;
|
|
7573
|
+
created_by_display_name?: string | null | undefined;
|
|
7574
|
+
updated_by_display_name?: string | null | undefined;
|
|
7160
7575
|
unique_name?: string | null | undefined;
|
|
7161
7576
|
legal_name?: string | null | undefined;
|
|
7162
7577
|
contact_name?: string | null | undefined;
|
|
@@ -7168,7 +7583,6 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7168
7583
|
address_city?: string | null | undefined;
|
|
7169
7584
|
address_zip?: string | null | undefined;
|
|
7170
7585
|
twitter_username?: string | null | undefined;
|
|
7171
|
-
url?: string | null | undefined;
|
|
7172
7586
|
logo?: string | null | undefined;
|
|
7173
7587
|
email_sent_from?: string | null | undefined;
|
|
7174
7588
|
email_reply_to?: string | null | undefined;
|
|
@@ -7176,7 +7590,7 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7176
7590
|
pageInfo: z.ZodObject<{
|
|
7177
7591
|
hasNextPage: z.ZodBoolean;
|
|
7178
7592
|
hasPreviousPage: z.ZodBoolean;
|
|
7179
|
-
prevPageCursor: z.ZodOptional<z.ZodString
|
|
7593
|
+
prevPageCursor: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7180
7594
|
nextPageCursor: z.ZodOptional<z.ZodString>;
|
|
7181
7595
|
currentPageIndex: z.ZodOptional<z.ZodNumber>;
|
|
7182
7596
|
paginationToken: z.ZodOptional<z.ZodString>;
|
|
@@ -7184,14 +7598,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7184
7598
|
hasNextPage: boolean;
|
|
7185
7599
|
hasPreviousPage: boolean;
|
|
7186
7600
|
paginationToken?: string | undefined;
|
|
7187
|
-
prevPageCursor?: string | undefined;
|
|
7601
|
+
prevPageCursor?: string | null | undefined;
|
|
7188
7602
|
nextPageCursor?: string | undefined;
|
|
7189
7603
|
currentPageIndex?: number | undefined;
|
|
7190
7604
|
}, {
|
|
7191
7605
|
hasNextPage: boolean;
|
|
7192
7606
|
hasPreviousPage: boolean;
|
|
7193
7607
|
paginationToken?: string | undefined;
|
|
7194
|
-
prevPageCursor?: string | undefined;
|
|
7608
|
+
prevPageCursor?: string | null | undefined;
|
|
7195
7609
|
nextPageCursor?: string | undefined;
|
|
7196
7610
|
currentPageIndex?: number | undefined;
|
|
7197
7611
|
}>;
|
|
@@ -7203,11 +7617,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7203
7617
|
display_name: string;
|
|
7204
7618
|
path?: string | null | undefined;
|
|
7205
7619
|
description?: string | null | undefined;
|
|
7620
|
+
url?: string | null | undefined;
|
|
7206
7621
|
updated_at?: string | null | undefined;
|
|
7207
7622
|
updated_by?: string | null | undefined;
|
|
7208
7623
|
archived_at?: string | null | undefined;
|
|
7209
7624
|
archived_by?: string | null | undefined;
|
|
7210
7625
|
original_id?: string | null | undefined;
|
|
7626
|
+
created_by_display_name?: string | null | undefined;
|
|
7627
|
+
updated_by_display_name?: string | null | undefined;
|
|
7211
7628
|
unique_name?: string | null | undefined;
|
|
7212
7629
|
legal_name?: string | null | undefined;
|
|
7213
7630
|
contact_name?: string | null | undefined;
|
|
@@ -7219,7 +7636,6 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7219
7636
|
address_city?: string | null | undefined;
|
|
7220
7637
|
address_zip?: string | null | undefined;
|
|
7221
7638
|
twitter_username?: string | null | undefined;
|
|
7222
|
-
url?: string | null | undefined;
|
|
7223
7639
|
logo?: string | null | undefined;
|
|
7224
7640
|
email_sent_from?: string | null | undefined;
|
|
7225
7641
|
email_reply_to?: string | null | undefined;
|
|
@@ -7228,7 +7644,7 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7228
7644
|
hasNextPage: boolean;
|
|
7229
7645
|
hasPreviousPage: boolean;
|
|
7230
7646
|
paginationToken?: string | undefined;
|
|
7231
|
-
prevPageCursor?: string | undefined;
|
|
7647
|
+
prevPageCursor?: string | null | undefined;
|
|
7232
7648
|
nextPageCursor?: string | undefined;
|
|
7233
7649
|
currentPageIndex?: number | undefined;
|
|
7234
7650
|
};
|
|
@@ -7240,11 +7656,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7240
7656
|
display_name: string;
|
|
7241
7657
|
path?: string | null | undefined;
|
|
7242
7658
|
description?: string | null | undefined;
|
|
7659
|
+
url?: string | null | undefined;
|
|
7243
7660
|
updated_at?: string | null | undefined;
|
|
7244
7661
|
updated_by?: string | null | undefined;
|
|
7245
7662
|
archived_at?: string | null | undefined;
|
|
7246
7663
|
archived_by?: string | null | undefined;
|
|
7247
7664
|
original_id?: string | null | undefined;
|
|
7665
|
+
created_by_display_name?: string | null | undefined;
|
|
7666
|
+
updated_by_display_name?: string | null | undefined;
|
|
7248
7667
|
unique_name?: string | null | undefined;
|
|
7249
7668
|
legal_name?: string | null | undefined;
|
|
7250
7669
|
contact_name?: string | null | undefined;
|
|
@@ -7256,7 +7675,6 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7256
7675
|
address_city?: string | null | undefined;
|
|
7257
7676
|
address_zip?: string | null | undefined;
|
|
7258
7677
|
twitter_username?: string | null | undefined;
|
|
7259
|
-
url?: string | null | undefined;
|
|
7260
7678
|
logo?: string | null | undefined;
|
|
7261
7679
|
email_sent_from?: string | null | undefined;
|
|
7262
7680
|
email_reply_to?: string | null | undefined;
|
|
@@ -7265,7 +7683,7 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7265
7683
|
hasNextPage: boolean;
|
|
7266
7684
|
hasPreviousPage: boolean;
|
|
7267
7685
|
paginationToken?: string | undefined;
|
|
7268
|
-
prevPageCursor?: string | undefined;
|
|
7686
|
+
prevPageCursor?: string | null | undefined;
|
|
7269
7687
|
nextPageCursor?: string | undefined;
|
|
7270
7688
|
currentPageIndex?: number | undefined;
|
|
7271
7689
|
};
|
|
@@ -7298,7 +7716,9 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
7298
7716
|
created_at: z.ZodString;
|
|
7299
7717
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7300
7718
|
created_by: z.ZodString;
|
|
7719
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7301
7720
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7721
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7302
7722
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7303
7723
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7304
7724
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7308,11 +7728,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
7308
7728
|
display_name: string;
|
|
7309
7729
|
path?: string | null | undefined;
|
|
7310
7730
|
description?: string | null | undefined;
|
|
7731
|
+
url?: string | null | undefined;
|
|
7311
7732
|
updated_at?: string | null | undefined;
|
|
7312
7733
|
updated_by?: string | null | undefined;
|
|
7313
7734
|
archived_at?: string | null | undefined;
|
|
7314
7735
|
archived_by?: string | null | undefined;
|
|
7315
7736
|
original_id?: string | null | undefined;
|
|
7737
|
+
created_by_display_name?: string | null | undefined;
|
|
7738
|
+
updated_by_display_name?: string | null | undefined;
|
|
7316
7739
|
unique_name?: string | null | undefined;
|
|
7317
7740
|
legal_name?: string | null | undefined;
|
|
7318
7741
|
contact_name?: string | null | undefined;
|
|
@@ -7324,7 +7747,6 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
7324
7747
|
address_city?: string | null | undefined;
|
|
7325
7748
|
address_zip?: string | null | undefined;
|
|
7326
7749
|
twitter_username?: string | null | undefined;
|
|
7327
|
-
url?: string | null | undefined;
|
|
7328
7750
|
logo?: string | null | undefined;
|
|
7329
7751
|
email_sent_from?: string | null | undefined;
|
|
7330
7752
|
email_reply_to?: string | null | undefined;
|
|
@@ -7335,11 +7757,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
7335
7757
|
display_name: string;
|
|
7336
7758
|
path?: string | null | undefined;
|
|
7337
7759
|
description?: string | null | undefined;
|
|
7760
|
+
url?: string | null | undefined;
|
|
7338
7761
|
updated_at?: string | null | undefined;
|
|
7339
7762
|
updated_by?: string | null | undefined;
|
|
7340
7763
|
archived_at?: string | null | undefined;
|
|
7341
7764
|
archived_by?: string | null | undefined;
|
|
7342
7765
|
original_id?: string | null | undefined;
|
|
7766
|
+
created_by_display_name?: string | null | undefined;
|
|
7767
|
+
updated_by_display_name?: string | null | undefined;
|
|
7343
7768
|
unique_name?: string | null | undefined;
|
|
7344
7769
|
legal_name?: string | null | undefined;
|
|
7345
7770
|
contact_name?: string | null | undefined;
|
|
@@ -7351,7 +7776,6 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
7351
7776
|
address_city?: string | null | undefined;
|
|
7352
7777
|
address_zip?: string | null | undefined;
|
|
7353
7778
|
twitter_username?: string | null | undefined;
|
|
7354
|
-
url?: string | null | undefined;
|
|
7355
7779
|
logo?: string | null | undefined;
|
|
7356
7780
|
email_sent_from?: string | null | undefined;
|
|
7357
7781
|
email_reply_to?: string | null | undefined;
|
|
@@ -7388,7 +7812,9 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
7388
7812
|
created_at: z.ZodString;
|
|
7389
7813
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7390
7814
|
created_by: z.ZodString;
|
|
7815
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7391
7816
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7817
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7392
7818
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7393
7819
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7394
7820
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7398,11 +7824,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
7398
7824
|
display_name: string;
|
|
7399
7825
|
path?: string | null | undefined;
|
|
7400
7826
|
description?: string | null | undefined;
|
|
7827
|
+
url?: string | null | undefined;
|
|
7401
7828
|
updated_at?: string | null | undefined;
|
|
7402
7829
|
updated_by?: string | null | undefined;
|
|
7403
7830
|
archived_at?: string | null | undefined;
|
|
7404
7831
|
archived_by?: string | null | undefined;
|
|
7405
7832
|
original_id?: string | null | undefined;
|
|
7833
|
+
created_by_display_name?: string | null | undefined;
|
|
7834
|
+
updated_by_display_name?: string | null | undefined;
|
|
7406
7835
|
unique_name?: string | null | undefined;
|
|
7407
7836
|
legal_name?: string | null | undefined;
|
|
7408
7837
|
contact_name?: string | null | undefined;
|
|
@@ -7414,7 +7843,6 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
7414
7843
|
address_city?: string | null | undefined;
|
|
7415
7844
|
address_zip?: string | null | undefined;
|
|
7416
7845
|
twitter_username?: string | null | undefined;
|
|
7417
|
-
url?: string | null | undefined;
|
|
7418
7846
|
logo?: string | null | undefined;
|
|
7419
7847
|
email_sent_from?: string | null | undefined;
|
|
7420
7848
|
email_reply_to?: string | null | undefined;
|
|
@@ -7425,11 +7853,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
7425
7853
|
display_name: string;
|
|
7426
7854
|
path?: string | null | undefined;
|
|
7427
7855
|
description?: string | null | undefined;
|
|
7856
|
+
url?: string | null | undefined;
|
|
7428
7857
|
updated_at?: string | null | undefined;
|
|
7429
7858
|
updated_by?: string | null | undefined;
|
|
7430
7859
|
archived_at?: string | null | undefined;
|
|
7431
7860
|
archived_by?: string | null | undefined;
|
|
7432
7861
|
original_id?: string | null | undefined;
|
|
7862
|
+
created_by_display_name?: string | null | undefined;
|
|
7863
|
+
updated_by_display_name?: string | null | undefined;
|
|
7433
7864
|
unique_name?: string | null | undefined;
|
|
7434
7865
|
legal_name?: string | null | undefined;
|
|
7435
7866
|
contact_name?: string | null | undefined;
|
|
@@ -7441,7 +7872,6 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
7441
7872
|
address_city?: string | null | undefined;
|
|
7442
7873
|
address_zip?: string | null | undefined;
|
|
7443
7874
|
twitter_username?: string | null | undefined;
|
|
7444
|
-
url?: string | null | undefined;
|
|
7445
7875
|
logo?: string | null | undefined;
|
|
7446
7876
|
email_sent_from?: string | null | undefined;
|
|
7447
7877
|
email_reply_to?: string | null | undefined;
|
|
@@ -7476,7 +7906,9 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7476
7906
|
created_at: z.ZodString;
|
|
7477
7907
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7478
7908
|
created_by: z.ZodString;
|
|
7909
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7479
7910
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7911
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7480
7912
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7481
7913
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
7482
7914
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7486,11 +7918,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7486
7918
|
display_name: string;
|
|
7487
7919
|
path?: string | null | undefined;
|
|
7488
7920
|
description?: string | null | undefined;
|
|
7921
|
+
url?: string | null | undefined;
|
|
7489
7922
|
updated_at?: string | null | undefined;
|
|
7490
7923
|
updated_by?: string | null | undefined;
|
|
7491
7924
|
archived_at?: string | null | undefined;
|
|
7492
7925
|
archived_by?: string | null | undefined;
|
|
7493
7926
|
original_id?: string | null | undefined;
|
|
7927
|
+
created_by_display_name?: string | null | undefined;
|
|
7928
|
+
updated_by_display_name?: string | null | undefined;
|
|
7494
7929
|
unique_name?: string | null | undefined;
|
|
7495
7930
|
legal_name?: string | null | undefined;
|
|
7496
7931
|
contact_name?: string | null | undefined;
|
|
@@ -7502,7 +7937,6 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7502
7937
|
address_city?: string | null | undefined;
|
|
7503
7938
|
address_zip?: string | null | undefined;
|
|
7504
7939
|
twitter_username?: string | null | undefined;
|
|
7505
|
-
url?: string | null | undefined;
|
|
7506
7940
|
logo?: string | null | undefined;
|
|
7507
7941
|
email_sent_from?: string | null | undefined;
|
|
7508
7942
|
email_reply_to?: string | null | undefined;
|
|
@@ -7513,11 +7947,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7513
7947
|
display_name: string;
|
|
7514
7948
|
path?: string | null | undefined;
|
|
7515
7949
|
description?: string | null | undefined;
|
|
7950
|
+
url?: string | null | undefined;
|
|
7516
7951
|
updated_at?: string | null | undefined;
|
|
7517
7952
|
updated_by?: string | null | undefined;
|
|
7518
7953
|
archived_at?: string | null | undefined;
|
|
7519
7954
|
archived_by?: string | null | undefined;
|
|
7520
7955
|
original_id?: string | null | undefined;
|
|
7956
|
+
created_by_display_name?: string | null | undefined;
|
|
7957
|
+
updated_by_display_name?: string | null | undefined;
|
|
7521
7958
|
unique_name?: string | null | undefined;
|
|
7522
7959
|
legal_name?: string | null | undefined;
|
|
7523
7960
|
contact_name?: string | null | undefined;
|
|
@@ -7529,7 +7966,6 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7529
7966
|
address_city?: string | null | undefined;
|
|
7530
7967
|
address_zip?: string | null | undefined;
|
|
7531
7968
|
twitter_username?: string | null | undefined;
|
|
7532
|
-
url?: string | null | undefined;
|
|
7533
7969
|
logo?: string | null | undefined;
|
|
7534
7970
|
email_sent_from?: string | null | undefined;
|
|
7535
7971
|
email_reply_to?: string | null | undefined;
|
|
@@ -7542,11 +7978,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7542
7978
|
display_name: string;
|
|
7543
7979
|
path?: string | null | undefined;
|
|
7544
7980
|
description?: string | null | undefined;
|
|
7981
|
+
url?: string | null | undefined;
|
|
7545
7982
|
updated_at?: string | null | undefined;
|
|
7546
7983
|
updated_by?: string | null | undefined;
|
|
7547
7984
|
archived_at?: string | null | undefined;
|
|
7548
7985
|
archived_by?: string | null | undefined;
|
|
7549
7986
|
original_id?: string | null | undefined;
|
|
7987
|
+
created_by_display_name?: string | null | undefined;
|
|
7988
|
+
updated_by_display_name?: string | null | undefined;
|
|
7550
7989
|
unique_name?: string | null | undefined;
|
|
7551
7990
|
legal_name?: string | null | undefined;
|
|
7552
7991
|
contact_name?: string | null | undefined;
|
|
@@ -7558,7 +7997,6 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7558
7997
|
address_city?: string | null | undefined;
|
|
7559
7998
|
address_zip?: string | null | undefined;
|
|
7560
7999
|
twitter_username?: string | null | undefined;
|
|
7561
|
-
url?: string | null | undefined;
|
|
7562
8000
|
logo?: string | null | undefined;
|
|
7563
8001
|
email_sent_from?: string | null | undefined;
|
|
7564
8002
|
email_reply_to?: string | null | undefined;
|
|
@@ -7571,11 +8009,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7571
8009
|
display_name: string;
|
|
7572
8010
|
path?: string | null | undefined;
|
|
7573
8011
|
description?: string | null | undefined;
|
|
8012
|
+
url?: string | null | undefined;
|
|
7574
8013
|
updated_at?: string | null | undefined;
|
|
7575
8014
|
updated_by?: string | null | undefined;
|
|
7576
8015
|
archived_at?: string | null | undefined;
|
|
7577
8016
|
archived_by?: string | null | undefined;
|
|
7578
8017
|
original_id?: string | null | undefined;
|
|
8018
|
+
created_by_display_name?: string | null | undefined;
|
|
8019
|
+
updated_by_display_name?: string | null | undefined;
|
|
7579
8020
|
unique_name?: string | null | undefined;
|
|
7580
8021
|
legal_name?: string | null | undefined;
|
|
7581
8022
|
contact_name?: string | null | undefined;
|
|
@@ -7587,7 +8028,6 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7587
8028
|
address_city?: string | null | undefined;
|
|
7588
8029
|
address_zip?: string | null | undefined;
|
|
7589
8030
|
twitter_username?: string | null | undefined;
|
|
7590
|
-
url?: string | null | undefined;
|
|
7591
8031
|
logo?: string | null | undefined;
|
|
7592
8032
|
email_sent_from?: string | null | undefined;
|
|
7593
8033
|
email_reply_to?: string | null | undefined;
|
|
@@ -8587,8 +9027,10 @@ declare const TeamMemberReadSchema: z.ZodObject<{
|
|
|
8587
9027
|
time_zone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8588
9028
|
created_at: z.ZodString;
|
|
8589
9029
|
created_by: z.ZodString;
|
|
9030
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8590
9031
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8591
9032
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9033
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8592
9034
|
deleted_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8593
9035
|
deleted_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8594
9036
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8604,6 +9046,8 @@ declare const TeamMemberReadSchema: z.ZodObject<{
|
|
|
8604
9046
|
deleted_at?: string | null | undefined;
|
|
8605
9047
|
deleted_by?: string | null | undefined;
|
|
8606
9048
|
original_id?: number | null | undefined;
|
|
9049
|
+
created_by_display_name?: string | null | undefined;
|
|
9050
|
+
updated_by_display_name?: string | null | undefined;
|
|
8607
9051
|
display_name?: string | null | undefined;
|
|
8608
9052
|
original_team_id?: string | null | undefined;
|
|
8609
9053
|
original_user_id?: string | null | undefined;
|
|
@@ -8624,6 +9068,8 @@ declare const TeamMemberReadSchema: z.ZodObject<{
|
|
|
8624
9068
|
deleted_at?: string | null | undefined;
|
|
8625
9069
|
deleted_by?: string | null | undefined;
|
|
8626
9070
|
original_id?: number | null | undefined;
|
|
9071
|
+
created_by_display_name?: string | null | undefined;
|
|
9072
|
+
updated_by_display_name?: string | null | undefined;
|
|
8627
9073
|
display_name?: string | null | undefined;
|
|
8628
9074
|
original_team_id?: string | null | undefined;
|
|
8629
9075
|
original_user_id?: string | null | undefined;
|
|
@@ -8655,8 +9101,10 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
|
|
|
8655
9101
|
time_zone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8656
9102
|
created_at: z.ZodString;
|
|
8657
9103
|
created_by: z.ZodString;
|
|
9104
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8658
9105
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8659
9106
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9107
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8660
9108
|
deleted_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8661
9109
|
deleted_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8662
9110
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8672,6 +9120,8 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
|
|
|
8672
9120
|
deleted_at?: string | null | undefined;
|
|
8673
9121
|
deleted_by?: string | null | undefined;
|
|
8674
9122
|
original_id?: number | null | undefined;
|
|
9123
|
+
created_by_display_name?: string | null | undefined;
|
|
9124
|
+
updated_by_display_name?: string | null | undefined;
|
|
8675
9125
|
display_name?: string | null | undefined;
|
|
8676
9126
|
original_team_id?: string | null | undefined;
|
|
8677
9127
|
original_user_id?: string | null | undefined;
|
|
@@ -8692,6 +9142,8 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
|
|
|
8692
9142
|
deleted_at?: string | null | undefined;
|
|
8693
9143
|
deleted_by?: string | null | undefined;
|
|
8694
9144
|
original_id?: number | null | undefined;
|
|
9145
|
+
created_by_display_name?: string | null | undefined;
|
|
9146
|
+
updated_by_display_name?: string | null | undefined;
|
|
8695
9147
|
display_name?: string | null | undefined;
|
|
8696
9148
|
original_team_id?: string | null | undefined;
|
|
8697
9149
|
original_user_id?: string | null | undefined;
|
|
@@ -8721,8 +9173,10 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
8721
9173
|
time_zone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8722
9174
|
created_at: z.ZodString;
|
|
8723
9175
|
created_by: z.ZodString;
|
|
9176
|
+
created_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8724
9177
|
updated_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8725
9178
|
updated_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9179
|
+
updated_by_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8726
9180
|
deleted_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8727
9181
|
deleted_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8728
9182
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8738,6 +9192,8 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
8738
9192
|
deleted_at?: string | null | undefined;
|
|
8739
9193
|
deleted_by?: string | null | undefined;
|
|
8740
9194
|
original_id?: number | null | undefined;
|
|
9195
|
+
created_by_display_name?: string | null | undefined;
|
|
9196
|
+
updated_by_display_name?: string | null | undefined;
|
|
8741
9197
|
display_name?: string | null | undefined;
|
|
8742
9198
|
original_team_id?: string | null | undefined;
|
|
8743
9199
|
original_user_id?: string | null | undefined;
|
|
@@ -8758,6 +9214,8 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
8758
9214
|
deleted_at?: string | null | undefined;
|
|
8759
9215
|
deleted_by?: string | null | undefined;
|
|
8760
9216
|
original_id?: number | null | undefined;
|
|
9217
|
+
created_by_display_name?: string | null | undefined;
|
|
9218
|
+
updated_by_display_name?: string | null | undefined;
|
|
8761
9219
|
display_name?: string | null | undefined;
|
|
8762
9220
|
original_team_id?: string | null | undefined;
|
|
8763
9221
|
original_user_id?: string | null | undefined;
|
|
@@ -8780,6 +9238,8 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
8780
9238
|
deleted_at?: string | null | undefined;
|
|
8781
9239
|
deleted_by?: string | null | undefined;
|
|
8782
9240
|
original_id?: number | null | undefined;
|
|
9241
|
+
created_by_display_name?: string | null | undefined;
|
|
9242
|
+
updated_by_display_name?: string | null | undefined;
|
|
8783
9243
|
display_name?: string | null | undefined;
|
|
8784
9244
|
original_team_id?: string | null | undefined;
|
|
8785
9245
|
original_user_id?: string | null | undefined;
|
|
@@ -8802,6 +9262,8 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
8802
9262
|
deleted_at?: string | null | undefined;
|
|
8803
9263
|
deleted_by?: string | null | undefined;
|
|
8804
9264
|
original_id?: number | null | undefined;
|
|
9265
|
+
created_by_display_name?: string | null | undefined;
|
|
9266
|
+
updated_by_display_name?: string | null | undefined;
|
|
8805
9267
|
display_name?: string | null | undefined;
|
|
8806
9268
|
original_team_id?: string | null | undefined;
|
|
8807
9269
|
original_user_id?: string | null | undefined;
|
|
@@ -8815,6 +9277,7 @@ type UserTeamMembersDto = z.infer<typeof UserTeamMembersSchema>;
|
|
|
8815
9277
|
//#endregion
|
|
8816
9278
|
//#region src/validation/user/user_enums_zod.d.ts
|
|
8817
9279
|
declare const USER_TYPES: readonly ["consumer", "lead", "staff", "super_admin"];
|
|
9280
|
+
declare const DEFAULT_USER_TYPE: "consumer";
|
|
8818
9281
|
declare const UserTypeEnum: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
8819
9282
|
type UserTypeValues = (typeof USER_TYPES)[number];
|
|
8820
9283
|
//#endregion
|
|
@@ -8867,14 +9330,17 @@ declare const UserProfileBaseSchema: z.ZodObject<{
|
|
|
8867
9330
|
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8868
9331
|
last_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8869
9332
|
bio: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9333
|
+
notification_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8870
9334
|
}, "strip", z.ZodTypeAny, {
|
|
8871
9335
|
first_name?: string | null | undefined;
|
|
8872
9336
|
last_name?: string | null | undefined;
|
|
8873
9337
|
bio?: string | null | undefined;
|
|
9338
|
+
notification_email?: string | null | undefined;
|
|
8874
9339
|
}, {
|
|
8875
9340
|
first_name?: string | null | undefined;
|
|
8876
9341
|
last_name?: string | null | undefined;
|
|
8877
9342
|
bio?: string | null | undefined;
|
|
9343
|
+
notification_email?: string | null | undefined;
|
|
8878
9344
|
}>;
|
|
8879
9345
|
/**
|
|
8880
9346
|
* Schema for updating a user profile
|
|
@@ -8883,6 +9349,7 @@ declare const UserProfileUpdateSchema: z.ZodObject<{
|
|
|
8883
9349
|
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8884
9350
|
last_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8885
9351
|
bio: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9352
|
+
notification_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8886
9353
|
} & {
|
|
8887
9354
|
user_id: z.ZodString;
|
|
8888
9355
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8890,11 +9357,13 @@ declare const UserProfileUpdateSchema: z.ZodObject<{
|
|
|
8890
9357
|
first_name?: string | null | undefined;
|
|
8891
9358
|
last_name?: string | null | undefined;
|
|
8892
9359
|
bio?: string | null | undefined;
|
|
9360
|
+
notification_email?: string | null | undefined;
|
|
8893
9361
|
}, {
|
|
8894
9362
|
user_id: string;
|
|
8895
9363
|
first_name?: string | null | undefined;
|
|
8896
9364
|
last_name?: string | null | undefined;
|
|
8897
9365
|
bio?: string | null | undefined;
|
|
9366
|
+
notification_email?: string | null | undefined;
|
|
8898
9367
|
}>;
|
|
8899
9368
|
type UserProfileUpdateDto = z.infer<typeof UserProfileUpdateSchema>;
|
|
8900
9369
|
/**
|
|
@@ -8904,6 +9373,7 @@ declare const UserProfileReadSchema: z.ZodObject<{
|
|
|
8904
9373
|
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8905
9374
|
last_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8906
9375
|
bio: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9376
|
+
notification_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8907
9377
|
} & {
|
|
8908
9378
|
id: z.ZodString;
|
|
8909
9379
|
user_id: z.ZodString;
|
|
@@ -8921,6 +9391,7 @@ declare const UserProfileReadSchema: z.ZodObject<{
|
|
|
8921
9391
|
first_name?: string | null | undefined;
|
|
8922
9392
|
last_name?: string | null | undefined;
|
|
8923
9393
|
bio?: string | null | undefined;
|
|
9394
|
+
notification_email?: string | null | undefined;
|
|
8924
9395
|
}, {
|
|
8925
9396
|
created_at: string;
|
|
8926
9397
|
created_by: string;
|
|
@@ -8931,6 +9402,7 @@ declare const UserProfileReadSchema: z.ZodObject<{
|
|
|
8931
9402
|
first_name?: string | null | undefined;
|
|
8932
9403
|
last_name?: string | null | undefined;
|
|
8933
9404
|
bio?: string | null | undefined;
|
|
9405
|
+
notification_email?: string | null | undefined;
|
|
8934
9406
|
}>;
|
|
8935
9407
|
type UserProfileReadDto = z.infer<typeof UserProfileReadSchema>;
|
|
8936
9408
|
//#endregion
|
|
@@ -8939,7 +9411,7 @@ type UserProfileReadDto = z.infer<typeof UserProfileReadSchema>;
|
|
|
8939
9411
|
* Record type constants and types for the application
|
|
8940
9412
|
* These define all the different types of records that can exist in the system
|
|
8941
9413
|
*/
|
|
8942
|
-
declare const RecordTypeValues: readonly ["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "team", "quote", "note", "followup"];
|
|
9414
|
+
declare const RecordTypeValues: readonly ["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"];
|
|
8943
9415
|
declare const RecordConst: {
|
|
8944
9416
|
readonly ATTACHMENT: "attachment";
|
|
8945
9417
|
readonly ATTACHMENT_FOLDER: "attachment_folder";
|
|
@@ -8952,6 +9424,7 @@ declare const RecordConst: {
|
|
|
8952
9424
|
readonly PASSWORD_RESET: "password_reset";
|
|
8953
9425
|
readonly RECORD_VERSION: "record_version";
|
|
8954
9426
|
readonly SUPPORT_TICKET: "support_ticket";
|
|
9427
|
+
readonly SUPPORT_TICKET_ACTIVITY: "support_ticket_activity";
|
|
8955
9428
|
readonly CREDIT_TRANSACTION: "credit_transaction";
|
|
8956
9429
|
readonly TEAM_MEMBER: "team_member";
|
|
8957
9430
|
readonly CLIENT_CONTACT: "client_contact";
|
|
@@ -8959,9 +9432,14 @@ declare const RecordConst: {
|
|
|
8959
9432
|
readonly CLIENT_PROFILE: "client_profile";
|
|
8960
9433
|
readonly BUSINESS_PROFILE: "business_profile";
|
|
8961
9434
|
readonly TRACKER: "tracker";
|
|
9435
|
+
readonly TRACKER_ACTIVITY: "tracker_activity";
|
|
8962
9436
|
readonly TEAM: "team";
|
|
8963
9437
|
readonly NOTE: "note";
|
|
8964
9438
|
readonly FOLLOWUP: "followup";
|
|
9439
|
+
readonly SAVED_FILTER: "saved_filter";
|
|
9440
|
+
readonly USER_PINNED_PRESET: "user_pinned_preset";
|
|
9441
|
+
readonly RECORD_SUBSCRIBER: "record_subscriber";
|
|
9442
|
+
readonly SUPPORT_STAFF: "support_staff";
|
|
8965
9443
|
};
|
|
8966
9444
|
type RecordType = (typeof RecordTypeValues)[number];
|
|
8967
9445
|
//#endregion
|
|
@@ -8969,17 +9447,10 @@ type RecordType = (typeof RecordTypeValues)[number];
|
|
|
8969
9447
|
/**
|
|
8970
9448
|
* AppSettings API - Cap'n Web RPC interface
|
|
8971
9449
|
* Admin-only configuration management
|
|
9450
|
+
*
|
|
9451
|
+
* Note: Notification emails were removed in favor of assignee-based triage.
|
|
8972
9452
|
*/
|
|
8973
|
-
interface AppSettingsApi {
|
|
8974
|
-
/**
|
|
8975
|
-
* Get notification email settings
|
|
8976
|
-
*/
|
|
8977
|
-
getNotificationEmails(): Promise<ReadNotificationEmails>;
|
|
8978
|
-
/**
|
|
8979
|
-
* Update notification email settings
|
|
8980
|
-
*/
|
|
8981
|
-
updateNotificationEmails(input: UpdateNotificationEmails): Promise<UpdateNotificationEmails>;
|
|
8982
|
-
}
|
|
9453
|
+
interface AppSettingsApi {}
|
|
8983
9454
|
//#endregion
|
|
8984
9455
|
//#region src/api/attachment-api.d.ts
|
|
8985
9456
|
/**
|
|
@@ -9102,12 +9573,63 @@ interface RecordVersionApi {
|
|
|
9102
9573
|
listRecordVersions(recordId: string, recordType: RecordType, filters?: RecordVersionFiltersDto): Promise<RecordVersionPageDto>;
|
|
9103
9574
|
/**
|
|
9104
9575
|
* List record versions for a record (breadcrumb pagination)
|
|
9576
|
+
* @param recordType - Legacy; use filters.record_types instead. When filters.record_types is provided, it takes priority.
|
|
9105
9577
|
*/
|
|
9106
9578
|
listRecordVersionsPaginated(recordId: string, recordType: RecordType, filters?: RecordVersionFiltersBreadcrumbDto): Promise<RecordVersionPageBreadcrumbDto>;
|
|
9107
9579
|
/**
|
|
9108
9580
|
* List record versions for customer view (breadcrumb pagination)
|
|
9581
|
+
* @param recordType - Legacy; use filters.record_types instead. When filters.record_types is provided, it takes priority.
|
|
9109
9582
|
*/
|
|
9110
9583
|
listRecordVersionsCustomer(recordId: string, recordType: RecordType, filters?: RecordVersionFiltersBreadcrumbDto): Promise<RecordVersionPageBreadcrumbDto>;
|
|
9584
|
+
/**
|
|
9585
|
+
* List record versions for tracker activity (tracker + followups merged)
|
|
9586
|
+
* Shows tracker field changes and followup create/update/complete/delete
|
|
9587
|
+
*/
|
|
9588
|
+
listTrackerActivityVersions(trackerId: string, filters?: RecordVersionFiltersBreadcrumbDto): Promise<RecordVersionPageBreadcrumbDto>;
|
|
9589
|
+
}
|
|
9590
|
+
//#endregion
|
|
9591
|
+
//#region src/api/saved-filter-api.d.ts
|
|
9592
|
+
/** Maximum presets per context (e.g. per page like trackers, followups) */
|
|
9593
|
+
declare const MAX_PRESETS_PER_CONTEXT = 10;
|
|
9594
|
+
/**
|
|
9595
|
+
* Saved Filter API - CRUD for custom filter presets
|
|
9596
|
+
*/
|
|
9597
|
+
interface SavedFilterApi {
|
|
9598
|
+
listSavedFilters(context: string): Promise<SavedFilterReadDto[]>;
|
|
9599
|
+
listAllSavedFilters(): Promise<SavedFilterReadDto[]>;
|
|
9600
|
+
createSavedFilter(input: SavedFilterCreateDto): Promise<SavedFilterReadDto>;
|
|
9601
|
+
updateSavedFilter(input: SavedFilterUpdateDto): Promise<SavedFilterReadDto | null>;
|
|
9602
|
+
deleteSavedFilter(id: string): Promise<boolean>;
|
|
9603
|
+
listPinnedPresets(): Promise<SavedFilterReadDto[]>;
|
|
9604
|
+
addPinnedPreset(presetId: string): Promise<SavedFilterReadDto | null>;
|
|
9605
|
+
removePinnedPreset(presetId: string): Promise<boolean>;
|
|
9606
|
+
reorderPinnedPresets(presetIds: string[]): Promise<void>;
|
|
9607
|
+
}
|
|
9608
|
+
//#endregion
|
|
9609
|
+
//#region src/api/support-staff-api.d.ts
|
|
9610
|
+
/**
|
|
9611
|
+
* Support Staff API - super admin only
|
|
9612
|
+
* Manage which users can triage support tickets.
|
|
9613
|
+
*/
|
|
9614
|
+
interface SupportStaffMember {
|
|
9615
|
+
id: string;
|
|
9616
|
+
user_id: string;
|
|
9617
|
+
email: string;
|
|
9618
|
+
created_at: string;
|
|
9619
|
+
}
|
|
9620
|
+
interface SupportStaffApi {
|
|
9621
|
+
/**
|
|
9622
|
+
* List all support staff (super admin only)
|
|
9623
|
+
*/
|
|
9624
|
+
listSupportStaff(): Promise<SupportStaffMember[]>;
|
|
9625
|
+
/**
|
|
9626
|
+
* Add a user to support staff (super admin only)
|
|
9627
|
+
*/
|
|
9628
|
+
addSupportStaff(userId: string): Promise<SupportStaffMember>;
|
|
9629
|
+
/**
|
|
9630
|
+
* Remove a user from support staff (super admin only)
|
|
9631
|
+
*/
|
|
9632
|
+
removeSupportStaff(userId: string): Promise<void>;
|
|
9111
9633
|
}
|
|
9112
9634
|
//#endregion
|
|
9113
9635
|
//#region src/api/support-ticket-api.d.ts
|
|
@@ -9132,6 +9654,22 @@ interface SupportTicketApi {
|
|
|
9132
9654
|
* List support tickets (customer view)
|
|
9133
9655
|
*/
|
|
9134
9656
|
listTickets(filters: CustomerSupportTicketFiltersDto): Promise<CustomerSupportTicketPageDto>;
|
|
9657
|
+
/**
|
|
9658
|
+
* Toggle the current user's subscription to a support ticket. Returns the new state.
|
|
9659
|
+
* Subscription status is also included in getTicket response as my_subscription.
|
|
9660
|
+
*/
|
|
9661
|
+
toggleSubscription(supportTicketId: string): Promise<{
|
|
9662
|
+
subscribed: boolean;
|
|
9663
|
+
}>;
|
|
9664
|
+
/**
|
|
9665
|
+
* Get requestors (created_by) for active support tickets (customer view).
|
|
9666
|
+
* Active = not archived. Excludes internal tickets.
|
|
9667
|
+
* Used for the Requester filter dropdown.
|
|
9668
|
+
*/
|
|
9669
|
+
getRequestorsForActiveTickets(): Promise<Array<{
|
|
9670
|
+
id: string;
|
|
9671
|
+
email: string;
|
|
9672
|
+
}>>;
|
|
9135
9673
|
/**
|
|
9136
9674
|
* Create a support ticket (staff/admin)
|
|
9137
9675
|
*/
|
|
@@ -9148,6 +9686,15 @@ interface SupportTicketApi {
|
|
|
9148
9686
|
* List support tickets (staff view)
|
|
9149
9687
|
*/
|
|
9150
9688
|
staffListTickets(filters: StaffSupportTicketFiltersDto): Promise<StaffSupportTicketPageDto>;
|
|
9689
|
+
/**
|
|
9690
|
+
* Get requestors (created_by) for active support tickets.
|
|
9691
|
+
* Active = not archived (archived_at IS NULL).
|
|
9692
|
+
* Used for the Requester filter dropdown.
|
|
9693
|
+
*/
|
|
9694
|
+
staffGetRequestorsForActiveTickets(): Promise<Array<{
|
|
9695
|
+
id: string;
|
|
9696
|
+
email: string;
|
|
9697
|
+
}>>;
|
|
9151
9698
|
/**
|
|
9152
9699
|
* Approve a support ticket
|
|
9153
9700
|
*/
|
|
@@ -9188,6 +9735,36 @@ interface SupportTicketApi {
|
|
|
9188
9735
|
* Delete a support ticket (staff only)
|
|
9189
9736
|
*/
|
|
9190
9737
|
deleteTicket(id: string): Promise<void>;
|
|
9738
|
+
/**
|
|
9739
|
+
* Archive or unarchive a completed support ticket (toggle, staff only).
|
|
9740
|
+
* Archive: locks comments for both customer and staff.
|
|
9741
|
+
* Unarchive: unlocks comments.
|
|
9742
|
+
*/
|
|
9743
|
+
archiveTicket(input: ArchiveSupportTicketDto): Promise<StaffSupportTicketReadDto>;
|
|
9744
|
+
/**
|
|
9745
|
+
* List subscribers for a support ticket (staff only)
|
|
9746
|
+
*/
|
|
9747
|
+
staffListSubscribers(supportTicketId: string): Promise<RecordSubscriberReadDto[]>;
|
|
9748
|
+
/**
|
|
9749
|
+
* Add a subscriber to a support ticket (staff only)
|
|
9750
|
+
*/
|
|
9751
|
+
staffAddSubscriber(input: SupportTicketSubscriberCreateDto): Promise<RecordSubscriberReadDto>;
|
|
9752
|
+
/**
|
|
9753
|
+
* Remove a subscriber from a support ticket (staff only)
|
|
9754
|
+
*/
|
|
9755
|
+
staffRemoveSubscriber(input: {
|
|
9756
|
+
supportTicketId: string;
|
|
9757
|
+
subscriberId: string;
|
|
9758
|
+
}): Promise<void>;
|
|
9759
|
+
/**
|
|
9760
|
+
* Fix support tickets with emails in user ID fields (admin only).
|
|
9761
|
+
* Replaces email values with user IDs where a matching user exists.
|
|
9762
|
+
*/
|
|
9763
|
+
staffFixSupportTicketUserIds(): Promise<{
|
|
9764
|
+
ticketsScanned: number;
|
|
9765
|
+
ticketsFixed: number;
|
|
9766
|
+
ticketsSkipped: number;
|
|
9767
|
+
}>;
|
|
9191
9768
|
}
|
|
9192
9769
|
//#endregion
|
|
9193
9770
|
//#region src/api/team-api.d.ts
|
|
@@ -9292,6 +9869,13 @@ interface UserApi {
|
|
|
9292
9869
|
id: string;
|
|
9293
9870
|
email: string;
|
|
9294
9871
|
}>>;
|
|
9872
|
+
/**
|
|
9873
|
+
* Get triage users (staff/super_admin with can_triage) for assignee selection
|
|
9874
|
+
*/
|
|
9875
|
+
getTriageUsers(): Promise<Array<{
|
|
9876
|
+
id: string;
|
|
9877
|
+
email: string;
|
|
9878
|
+
}>>;
|
|
9295
9879
|
}
|
|
9296
9880
|
//#endregion
|
|
9297
9881
|
//#region src/api/user-profile-api.d.ts
|
|
@@ -9356,6 +9940,8 @@ interface DragoncoreApi {
|
|
|
9356
9940
|
customer: CustomerApi;
|
|
9357
9941
|
recordVersions: RecordVersionApi;
|
|
9358
9942
|
appSettings: AppSettingsApi;
|
|
9943
|
+
savedFilters: SavedFilterApi;
|
|
9944
|
+
supportStaff: SupportStaffApi;
|
|
9359
9945
|
supportTickets: SupportTicketApi;
|
|
9360
9946
|
}
|
|
9361
9947
|
//#endregion
|
|
@@ -9500,5 +10086,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
9500
10086
|
*/
|
|
9501
10087
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
9502
10088
|
//#endregion
|
|
9503
|
-
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi,
|
|
10089
|
+
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SignupInputDto, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
9504
10090
|
//# sourceMappingURL=index.d.mts.map
|