@dragonmastery/dragoncore-shared 0.0.1 → 0.0.4
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 +1326 -740
- package/dist/index.mjs +349 -64
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
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;
|
|
150
|
+
parent_folder_id?: string | null | undefined;
|
|
151
|
+
file_count?: number | undefined;
|
|
219
152
|
archived_at?: string | null | undefined;
|
|
220
153
|
archived_by?: string | null | undefined;
|
|
221
154
|
deleted_at?: string | null | undefined;
|
|
222
155
|
deleted_by?: string | null | undefined;
|
|
223
|
-
parent_folder_id?: string | null | undefined;
|
|
224
|
-
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;
|
|
168
|
+
parent_folder_id?: string | null | undefined;
|
|
169
|
+
file_count?: number | undefined;
|
|
237
170
|
archived_at?: string | null | undefined;
|
|
238
171
|
archived_by?: string | null | undefined;
|
|
239
172
|
deleted_at?: string | null | undefined;
|
|
240
173
|
deleted_by?: string | null | undefined;
|
|
241
|
-
parent_folder_id?: string | null | undefined;
|
|
242
|
-
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
|
-
metadata?: string | null | undefined;
|
|
266
196
|
folder_id?: string | null | undefined;
|
|
197
|
+
metadata?: 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
|
-
metadata?: string | null | undefined;
|
|
276
206
|
folder_id?: string | null | undefined;
|
|
207
|
+
metadata?: 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;
|
|
227
|
+
folder_id?: string | null | undefined;
|
|
296
228
|
sanitized_name?: string | undefined;
|
|
297
229
|
original_name?: string | undefined;
|
|
230
|
+
metadata?: string | null | undefined;
|
|
298
231
|
content_type?: string | undefined;
|
|
299
232
|
file_size?: string | undefined;
|
|
300
|
-
metadata?: string | null | undefined;
|
|
301
|
-
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;
|
|
238
|
+
folder_id?: string | null | undefined;
|
|
307
239
|
sanitized_name?: string | undefined;
|
|
308
240
|
original_name?: string | undefined;
|
|
241
|
+
metadata?: string | null | undefined;
|
|
309
242
|
content_type?: string | undefined;
|
|
310
243
|
file_size?: string | undefined;
|
|
311
|
-
metadata?: string | null | undefined;
|
|
312
|
-
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
|
-
metadata?: string | null | undefined;
|
|
352
282
|
folder_id?: string | null | undefined;
|
|
283
|
+
metadata?: 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
|
-
metadata?: string | null | undefined;
|
|
371
301
|
folder_id?: string | null | undefined;
|
|
302
|
+
metadata?: 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;
|
|
339
|
+
parent_folder_id?: string | null | undefined;
|
|
340
|
+
file_count?: number | undefined;
|
|
408
341
|
archived_at?: string | null | undefined;
|
|
409
342
|
archived_by?: string | null | undefined;
|
|
410
343
|
deleted_at?: string | null | undefined;
|
|
411
344
|
deleted_by?: string | null | undefined;
|
|
412
|
-
parent_folder_id?: string | null | undefined;
|
|
413
|
-
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;
|
|
357
|
+
parent_folder_id?: string | null | undefined;
|
|
358
|
+
file_count?: number | undefined;
|
|
426
359
|
archived_at?: string | null | undefined;
|
|
427
360
|
archived_by?: string | null | undefined;
|
|
428
361
|
deleted_at?: string | null | undefined;
|
|
429
362
|
deleted_by?: string | null | undefined;
|
|
430
|
-
parent_folder_id?: string | null | undefined;
|
|
431
|
-
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
|
-
metadata?: string | null | undefined;
|
|
462
392
|
folder_id?: string | null | undefined;
|
|
393
|
+
metadata?: 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;
|
|
411
|
+
parent_folder_id?: string | null | undefined;
|
|
412
|
+
file_count?: number | undefined;
|
|
480
413
|
archived_at?: string | null | undefined;
|
|
481
414
|
archived_by?: string | null | undefined;
|
|
482
415
|
deleted_at?: string | null | undefined;
|
|
483
416
|
deleted_by?: string | null | undefined;
|
|
484
|
-
parent_folder_id?: string | null | undefined;
|
|
485
|
-
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
|
-
metadata?: string | null | undefined;
|
|
506
436
|
folder_id?: string | null | undefined;
|
|
437
|
+
metadata?: 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;
|
|
455
|
+
parent_folder_id?: string | null | undefined;
|
|
456
|
+
file_count?: number | undefined;
|
|
524
457
|
archived_at?: string | null | undefined;
|
|
525
458
|
archived_by?: string | null | undefined;
|
|
526
459
|
deleted_at?: string | null | undefined;
|
|
527
460
|
deleted_by?: string | null | undefined;
|
|
528
|
-
parent_folder_id?: string | null | undefined;
|
|
529
|
-
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
|
-
metadata?: string | null | undefined;
|
|
569
499
|
folder_id?: string | null | undefined;
|
|
500
|
+
metadata?: 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
|
-
metadata?: string | null | undefined;
|
|
588
518
|
folder_id?: string | null | undefined;
|
|
519
|
+
metadata?: 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
|
};
|
|
@@ -1183,11 +1114,11 @@ declare const createUserSchemaOutput: z.ZodObject<{
|
|
|
1183
1114
|
id: z.ZodString;
|
|
1184
1115
|
email: z.ZodString;
|
|
1185
1116
|
}, "strip", z.ZodTypeAny, {
|
|
1186
|
-
id: string;
|
|
1187
1117
|
email: string;
|
|
1188
|
-
}, {
|
|
1189
1118
|
id: string;
|
|
1119
|
+
}, {
|
|
1190
1120
|
email: string;
|
|
1121
|
+
id: string;
|
|
1191
1122
|
}>;
|
|
1192
1123
|
type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
|
|
1193
1124
|
//#endregion
|
|
@@ -1501,6 +1432,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1501
1432
|
searchableFields: string[];
|
|
1502
1433
|
}>>;
|
|
1503
1434
|
}, "strip", z.ZodTypeAny, {
|
|
1435
|
+
created_at?: {
|
|
1436
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
1437
|
+
value?: any;
|
|
1438
|
+
values?: any[] | undefined;
|
|
1439
|
+
caseSensitive?: boolean | undefined;
|
|
1440
|
+
} | {
|
|
1441
|
+
values: string[];
|
|
1442
|
+
operator: "between";
|
|
1443
|
+
value?: any;
|
|
1444
|
+
caseSensitive?: boolean | undefined;
|
|
1445
|
+
} | {
|
|
1446
|
+
value: string;
|
|
1447
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1448
|
+
values?: any[] | undefined;
|
|
1449
|
+
caseSensitive?: boolean | undefined;
|
|
1450
|
+
} | undefined;
|
|
1504
1451
|
type?: {
|
|
1505
1452
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1506
1453
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1530,6 +1477,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1530
1477
|
values?: number[] | undefined;
|
|
1531
1478
|
caseSensitive?: boolean | undefined;
|
|
1532
1479
|
} | undefined;
|
|
1480
|
+
created_by?: {
|
|
1481
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1482
|
+
value?: string | undefined;
|
|
1483
|
+
values?: string[] | undefined;
|
|
1484
|
+
caseSensitive?: boolean | undefined;
|
|
1485
|
+
} | undefined;
|
|
1486
|
+
search?: {
|
|
1487
|
+
query: string;
|
|
1488
|
+
searchableFields: string[];
|
|
1489
|
+
} | undefined;
|
|
1490
|
+
}, {
|
|
1533
1491
|
created_at?: {
|
|
1534
1492
|
operator: "isEmpty" | "isNotEmpty";
|
|
1535
1493
|
value?: any;
|
|
@@ -1546,17 +1504,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1546
1504
|
values?: any[] | undefined;
|
|
1547
1505
|
caseSensitive?: boolean | undefined;
|
|
1548
1506
|
} | undefined;
|
|
1549
|
-
created_by?: {
|
|
1550
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1551
|
-
value?: string | undefined;
|
|
1552
|
-
values?: string[] | undefined;
|
|
1553
|
-
caseSensitive?: boolean | undefined;
|
|
1554
|
-
} | undefined;
|
|
1555
|
-
search?: {
|
|
1556
|
-
query: string;
|
|
1557
|
-
searchableFields: string[];
|
|
1558
|
-
} | undefined;
|
|
1559
|
-
}, {
|
|
1560
1507
|
type?: {
|
|
1561
1508
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1562
1509
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1586,22 +1533,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1586
1533
|
values?: number[] | undefined;
|
|
1587
1534
|
caseSensitive?: boolean | undefined;
|
|
1588
1535
|
} | undefined;
|
|
1589
|
-
created_at?: {
|
|
1590
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
1591
|
-
value?: any;
|
|
1592
|
-
values?: any[] | undefined;
|
|
1593
|
-
caseSensitive?: boolean | undefined;
|
|
1594
|
-
} | {
|
|
1595
|
-
values: string[];
|
|
1596
|
-
operator: "between";
|
|
1597
|
-
value?: any;
|
|
1598
|
-
caseSensitive?: boolean | undefined;
|
|
1599
|
-
} | {
|
|
1600
|
-
value: string;
|
|
1601
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1602
|
-
values?: any[] | undefined;
|
|
1603
|
-
caseSensitive?: boolean | undefined;
|
|
1604
|
-
} | undefined;
|
|
1605
1536
|
created_by?: {
|
|
1606
1537
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1607
1538
|
value?: string | undefined;
|
|
@@ -1634,19 +1565,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
|
|
|
1634
1565
|
created_at: z.ZodString;
|
|
1635
1566
|
created_by: z.ZodString;
|
|
1636
1567
|
}, "strip", z.ZodTypeAny, {
|
|
1568
|
+
created_at: string;
|
|
1637
1569
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1638
1570
|
amount: string;
|
|
1639
1571
|
balance_after: string;
|
|
1640
|
-
created_at: string;
|
|
1641
1572
|
created_by: string;
|
|
1642
1573
|
id: string;
|
|
1643
1574
|
support_ticket_id?: string | null | undefined;
|
|
1644
1575
|
description?: string | null | undefined;
|
|
1645
1576
|
}, {
|
|
1577
|
+
created_at: string;
|
|
1646
1578
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1647
1579
|
amount: string;
|
|
1648
1580
|
balance_after: string;
|
|
1649
|
-
created_at: string;
|
|
1650
1581
|
created_by: string;
|
|
1651
1582
|
id: string;
|
|
1652
1583
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1667,19 +1598,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1667
1598
|
created_at: z.ZodString;
|
|
1668
1599
|
created_by: z.ZodString;
|
|
1669
1600
|
}, "strip", z.ZodTypeAny, {
|
|
1601
|
+
created_at: string;
|
|
1670
1602
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1671
1603
|
amount: string;
|
|
1672
1604
|
balance_after: string;
|
|
1673
|
-
created_at: string;
|
|
1674
1605
|
created_by: string;
|
|
1675
1606
|
id: string;
|
|
1676
1607
|
support_ticket_id?: string | null | undefined;
|
|
1677
1608
|
description?: string | null | undefined;
|
|
1678
1609
|
}, {
|
|
1610
|
+
created_at: string;
|
|
1679
1611
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1680
1612
|
amount: string;
|
|
1681
1613
|
balance_after: string;
|
|
1682
|
-
created_at: string;
|
|
1683
1614
|
created_by: string;
|
|
1684
1615
|
id: string;
|
|
1685
1616
|
support_ticket_id?: string | null | undefined;
|
|
@@ -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,23 +1627,23 @@ 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
|
}>;
|
|
1710
1641
|
}, "strip", z.ZodTypeAny, {
|
|
1711
1642
|
items: {
|
|
1643
|
+
created_at: string;
|
|
1712
1644
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1713
1645
|
amount: string;
|
|
1714
1646
|
balance_after: string;
|
|
1715
|
-
created_at: string;
|
|
1716
1647
|
created_by: string;
|
|
1717
1648
|
id: string;
|
|
1718
1649
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1722,16 +1653,16 @@ 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
|
};
|
|
1729
1660
|
}, {
|
|
1730
1661
|
items: {
|
|
1662
|
+
created_at: string;
|
|
1731
1663
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1732
1664
|
amount: string;
|
|
1733
1665
|
balance_after: string;
|
|
1734
|
-
created_at: string;
|
|
1735
1666
|
created_by: string;
|
|
1736
1667
|
id: string;
|
|
1737
1668
|
support_ticket_id?: string | null | undefined;
|
|
@@ -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
|
};
|
|
@@ -1809,8 +1740,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1809
1740
|
price_currency?: string | null | undefined;
|
|
1810
1741
|
}>, "many">>>;
|
|
1811
1742
|
}, "strip", z.ZodTypeAny, {
|
|
1812
|
-
email: string;
|
|
1813
1743
|
userId: string;
|
|
1744
|
+
email: string;
|
|
1814
1745
|
username: string;
|
|
1815
1746
|
email_verified: boolean;
|
|
1816
1747
|
user_type: string;
|
|
@@ -1830,8 +1761,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1830
1761
|
price_currency?: string | null | undefined;
|
|
1831
1762
|
}[] | null | undefined;
|
|
1832
1763
|
}, {
|
|
1833
|
-
email: string;
|
|
1834
1764
|
userId: string;
|
|
1765
|
+
email: string;
|
|
1835
1766
|
username: string;
|
|
1836
1767
|
email_verified: boolean;
|
|
1837
1768
|
user_type: string;
|
|
@@ -1853,8 +1784,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1853
1784
|
}>;
|
|
1854
1785
|
}, "strip", z.ZodTypeAny, {
|
|
1855
1786
|
user: {
|
|
1856
|
-
email: string;
|
|
1857
1787
|
userId: string;
|
|
1788
|
+
email: string;
|
|
1858
1789
|
username: string;
|
|
1859
1790
|
email_verified: boolean;
|
|
1860
1791
|
user_type: string;
|
|
@@ -1874,15 +1805,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1874
1805
|
price_currency?: string | null | undefined;
|
|
1875
1806
|
}[] | null | undefined;
|
|
1876
1807
|
};
|
|
1877
|
-
status: string;
|
|
1878
1808
|
created_at: string;
|
|
1879
1809
|
expires_at: string;
|
|
1810
|
+
status: string;
|
|
1880
1811
|
user_agent?: string | null | undefined;
|
|
1881
1812
|
ip_address?: string | null | undefined;
|
|
1882
1813
|
}, {
|
|
1883
1814
|
user: {
|
|
1884
|
-
email: string;
|
|
1885
1815
|
userId: string;
|
|
1816
|
+
email: string;
|
|
1886
1817
|
username: string;
|
|
1887
1818
|
email_verified: boolean;
|
|
1888
1819
|
user_type: string;
|
|
@@ -1902,9 +1833,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1902
1833
|
price_currency?: string | null | undefined;
|
|
1903
1834
|
}[] | null | undefined;
|
|
1904
1835
|
};
|
|
1905
|
-
status: string;
|
|
1906
1836
|
created_at: string;
|
|
1907
1837
|
expires_at: string;
|
|
1838
|
+
status: string;
|
|
1908
1839
|
user_agent?: string | null | undefined;
|
|
1909
1840
|
ip_address?: string | null | undefined;
|
|
1910
1841
|
}>;
|
|
@@ -1959,8 +1890,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1959
1890
|
price_currency?: string | null | undefined;
|
|
1960
1891
|
}>, "many">>>;
|
|
1961
1892
|
}, "strip", z.ZodTypeAny, {
|
|
1962
|
-
email: string;
|
|
1963
1893
|
userId: string;
|
|
1894
|
+
email: string;
|
|
1964
1895
|
username: string;
|
|
1965
1896
|
email_verified: boolean;
|
|
1966
1897
|
user_type: string;
|
|
@@ -1980,8 +1911,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1980
1911
|
price_currency?: string | null | undefined;
|
|
1981
1912
|
}[] | null | undefined;
|
|
1982
1913
|
}, {
|
|
1983
|
-
email: string;
|
|
1984
1914
|
userId: string;
|
|
1915
|
+
email: string;
|
|
1985
1916
|
username: string;
|
|
1986
1917
|
email_verified: boolean;
|
|
1987
1918
|
user_type: string;
|
|
@@ -2003,8 +1934,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2003
1934
|
}>;
|
|
2004
1935
|
}, "strip", z.ZodTypeAny, {
|
|
2005
1936
|
user: {
|
|
2006
|
-
email: string;
|
|
2007
1937
|
userId: string;
|
|
1938
|
+
email: string;
|
|
2008
1939
|
username: string;
|
|
2009
1940
|
email_verified: boolean;
|
|
2010
1941
|
user_type: string;
|
|
@@ -2024,15 +1955,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2024
1955
|
price_currency?: string | null | undefined;
|
|
2025
1956
|
}[] | null | undefined;
|
|
2026
1957
|
};
|
|
2027
|
-
status: string;
|
|
2028
1958
|
created_at: string;
|
|
2029
1959
|
expires_at: string;
|
|
1960
|
+
status: string;
|
|
2030
1961
|
user_agent?: string | null | undefined;
|
|
2031
1962
|
ip_address?: string | null | undefined;
|
|
2032
1963
|
}, {
|
|
2033
1964
|
user: {
|
|
2034
|
-
email: string;
|
|
2035
1965
|
userId: string;
|
|
1966
|
+
email: string;
|
|
2036
1967
|
username: string;
|
|
2037
1968
|
email_verified: boolean;
|
|
2038
1969
|
user_type: string;
|
|
@@ -2052,9 +1983,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2052
1983
|
price_currency?: string | null | undefined;
|
|
2053
1984
|
}[] | null | undefined;
|
|
2054
1985
|
};
|
|
2055
|
-
status: string;
|
|
2056
1986
|
created_at: string;
|
|
2057
1987
|
expires_at: string;
|
|
1988
|
+
status: string;
|
|
2058
1989
|
user_agent?: string | null | undefined;
|
|
2059
1990
|
ip_address?: string | null | undefined;
|
|
2060
1991
|
}>;
|
|
@@ -2065,8 +1996,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2065
1996
|
refresh_token: string;
|
|
2066
1997
|
frontend_session: {
|
|
2067
1998
|
user: {
|
|
2068
|
-
email: string;
|
|
2069
1999
|
userId: string;
|
|
2000
|
+
email: string;
|
|
2070
2001
|
username: string;
|
|
2071
2002
|
email_verified: boolean;
|
|
2072
2003
|
user_type: string;
|
|
@@ -2086,9 +2017,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2086
2017
|
price_currency?: string | null | undefined;
|
|
2087
2018
|
}[] | null | undefined;
|
|
2088
2019
|
};
|
|
2089
|
-
status: string;
|
|
2090
2020
|
created_at: string;
|
|
2091
2021
|
expires_at: string;
|
|
2022
|
+
status: string;
|
|
2092
2023
|
user_agent?: string | null | undefined;
|
|
2093
2024
|
ip_address?: string | null | undefined;
|
|
2094
2025
|
};
|
|
@@ -2098,8 +2029,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2098
2029
|
refresh_token: string;
|
|
2099
2030
|
frontend_session: {
|
|
2100
2031
|
user: {
|
|
2101
|
-
email: string;
|
|
2102
2032
|
userId: string;
|
|
2033
|
+
email: string;
|
|
2103
2034
|
username: string;
|
|
2104
2035
|
email_verified: boolean;
|
|
2105
2036
|
user_type: string;
|
|
@@ -2119,9 +2050,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2119
2050
|
price_currency?: string | null | undefined;
|
|
2120
2051
|
}[] | null | undefined;
|
|
2121
2052
|
};
|
|
2122
|
-
status: string;
|
|
2123
2053
|
created_at: string;
|
|
2124
2054
|
expires_at: string;
|
|
2055
|
+
status: string;
|
|
2125
2056
|
user_agent?: string | null | undefined;
|
|
2126
2057
|
ip_address?: string | null | undefined;
|
|
2127
2058
|
};
|
|
@@ -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;
|
|
2113
|
+
tag?: string | null | undefined;
|
|
2180
2114
|
title?: string | null | undefined;
|
|
2181
2115
|
body?: string | null | undefined;
|
|
2182
|
-
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;
|
|
2132
|
+
tag?: string | null | undefined;
|
|
2197
2133
|
title?: string | null | undefined;
|
|
2198
2134
|
body?: string | null | undefined;
|
|
2199
|
-
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;
|
|
2154
|
+
tag?: string | null | undefined;
|
|
2217
2155
|
title?: string | null | undefined;
|
|
2218
2156
|
body?: string | null | undefined;
|
|
2219
|
-
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";
|
|
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";
|
|
2161
|
+
tag?: string | null | undefined;
|
|
2224
2162
|
title?: string | null | undefined;
|
|
2225
2163
|
body?: string | null | undefined;
|
|
2226
|
-
tag?: string | null | undefined;
|
|
2227
|
-
is_internal?: boolean | undefined;
|
|
2228
2164
|
original_id?: number | null | undefined;
|
|
2165
|
+
is_internal?: boolean | 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;
|
|
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;
|
|
2183
|
+
tag?: string | null | undefined;
|
|
2246
2184
|
title?: string | null | undefined;
|
|
2247
2185
|
body?: string | null | undefined;
|
|
2248
|
-
tag?: string | null | undefined;
|
|
2249
|
-
is_internal?: boolean | undefined;
|
|
2250
2186
|
original_id?: number | null | undefined;
|
|
2187
|
+
is_internal?: boolean | 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;
|
|
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;
|
|
2192
|
+
tag?: string | null | undefined;
|
|
2255
2193
|
title?: string | null | undefined;
|
|
2256
2194
|
body?: string | null | undefined;
|
|
2257
|
-
tag?: string | null | undefined;
|
|
2258
|
-
is_internal?: boolean | undefined;
|
|
2259
2195
|
original_id?: number | null | undefined;
|
|
2196
|
+
is_internal?: boolean | 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<{} & {
|
|
@@ -2618,11 +2555,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2618
2555
|
searchableFields: string[];
|
|
2619
2556
|
}>>;
|
|
2620
2557
|
}, "strip", z.ZodTypeAny, {
|
|
2621
|
-
first?: number | undefined;
|
|
2622
|
-
after?: string | undefined;
|
|
2623
|
-
sortBy?: string | undefined;
|
|
2624
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2625
|
-
paginationToken?: string | undefined;
|
|
2626
2558
|
created_at?: {
|
|
2627
2559
|
operator: "isEmpty" | "isNotEmpty";
|
|
2628
2560
|
value?: any;
|
|
@@ -2639,6 +2571,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2639
2571
|
values?: any[] | undefined;
|
|
2640
2572
|
caseSensitive?: boolean | undefined;
|
|
2641
2573
|
} | undefined;
|
|
2574
|
+
first?: number | undefined;
|
|
2575
|
+
after?: string | undefined;
|
|
2576
|
+
sortBy?: string | undefined;
|
|
2577
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2578
|
+
paginationToken?: string | undefined;
|
|
2642
2579
|
search?: {
|
|
2643
2580
|
query: string;
|
|
2644
2581
|
searchableFields: string[];
|
|
@@ -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
|
+
tag?: {
|
|
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
|
+
title?: {
|
|
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
|
+
body?: {
|
|
2687
2624
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2688
2625
|
value?: string | undefined;
|
|
2689
2626
|
values?: string[] | undefined;
|
|
@@ -2696,11 +2633,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2696
2633
|
caseSensitive?: boolean | undefined;
|
|
2697
2634
|
} | undefined;
|
|
2698
2635
|
}, {
|
|
2699
|
-
first?: number | undefined;
|
|
2700
|
-
after?: string | undefined;
|
|
2701
|
-
sortBy?: string | undefined;
|
|
2702
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2703
|
-
paginationToken?: string | undefined;
|
|
2704
2636
|
created_at?: {
|
|
2705
2637
|
operator: "isEmpty" | "isNotEmpty";
|
|
2706
2638
|
value?: any;
|
|
@@ -2717,6 +2649,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2717
2649
|
values?: any[] | undefined;
|
|
2718
2650
|
caseSensitive?: boolean | undefined;
|
|
2719
2651
|
} | undefined;
|
|
2652
|
+
first?: number | undefined;
|
|
2653
|
+
after?: string | undefined;
|
|
2654
|
+
sortBy?: string | undefined;
|
|
2655
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2656
|
+
paginationToken?: string | undefined;
|
|
2720
2657
|
search?: {
|
|
2721
2658
|
query: string;
|
|
2722
2659
|
searchableFields: string[];
|
|
@@ -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
|
+
tag?: {
|
|
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
|
+
title?: {
|
|
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
|
+
body?: {
|
|
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,12 @@ 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";
|
|
3154
3116
|
filters?: {
|
|
3155
3117
|
first?: number | undefined;
|
|
3156
3118
|
after?: string | undefined;
|
|
@@ -3161,21 +3123,191 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3161
3123
|
end_date?: string | null | undefined;
|
|
3162
3124
|
last?: number | undefined;
|
|
3163
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;
|
|
3164
3128
|
} | null | undefined;
|
|
3165
3129
|
}>;
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
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;
|
|
3189
|
+
filters?: {
|
|
3190
|
+
first?: number | undefined;
|
|
3191
|
+
after?: string | undefined;
|
|
3192
|
+
sortBy?: string | undefined;
|
|
3193
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
3194
|
+
paginationToken?: string | undefined;
|
|
3195
|
+
start_date?: string | null | undefined;
|
|
3196
|
+
end_date?: string | null | undefined;
|
|
3197
|
+
last?: number | undefined;
|
|
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;
|
|
3201
|
+
} | null | undefined;
|
|
3202
|
+
}>;
|
|
3203
|
+
type RecordVersionFiltersBreadcrumbDto = z.infer<typeof recordVersionFiltersBreadcrumbSchema>;
|
|
3204
|
+
type RecordVersionPageBreadcrumbDto = z.infer<typeof recordVersionPageBreadcrumbSchema>;
|
|
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
|
|
3301
|
+
//#region src/validation/reset_password_zod.d.ts
|
|
3302
|
+
declare const resetPasswordInputSchema: z.ZodObject<{
|
|
3303
|
+
passwords: z.ZodEffects<z.ZodObject<{
|
|
3304
|
+
password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
3305
|
+
password_confirm: z.ZodString;
|
|
3306
|
+
}, "strip", z.ZodTypeAny, {
|
|
3307
|
+
password: string;
|
|
3308
|
+
password_confirm: string;
|
|
3309
|
+
}, {
|
|
3310
|
+
password: string;
|
|
3179
3311
|
password_confirm: string;
|
|
3180
3312
|
}>, {
|
|
3181
3313
|
password: string;
|
|
@@ -3250,40 +3382,144 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3250
3382
|
password_confirm: string;
|
|
3251
3383
|
}>;
|
|
3252
3384
|
}, "strip", z.ZodTypeAny, {
|
|
3385
|
+
email: string;
|
|
3253
3386
|
passwords: {
|
|
3254
3387
|
password: string;
|
|
3255
3388
|
password_confirm: string;
|
|
3256
3389
|
};
|
|
3257
|
-
email: string;
|
|
3258
3390
|
}, {
|
|
3391
|
+
email: string;
|
|
3259
3392
|
passwords: {
|
|
3260
3393
|
password: string;
|
|
3261
3394
|
password_confirm: string;
|
|
3262
3395
|
};
|
|
3263
|
-
email: string;
|
|
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, {
|
|
3694
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3407
3695
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3408
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: string | null | undefined;
|
|
3420
|
-
requester_name?: string | null | undefined;
|
|
3421
|
-
requester_email?: string | null | undefined;
|
|
3422
3708
|
credit_value?: string | null | undefined;
|
|
3709
|
+
display_id_prefix?: string | null | undefined;
|
|
3423
3710
|
start_at?: string | null | undefined;
|
|
3424
3711
|
target_at?: string | null | undefined;
|
|
3425
3712
|
completed_at?: 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
|
}, {
|
|
3726
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3428
3727
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3429
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: string | null | undefined;
|
|
3441
|
-
requester_name?: string | null | undefined;
|
|
3442
|
-
requester_email?: string | null | undefined;
|
|
3443
3740
|
credit_value?: string | null | undefined;
|
|
3741
|
+
display_id_prefix?: string | null | undefined;
|
|
3444
3742
|
start_at?: string | null | undefined;
|
|
3445
3743
|
target_at?: string | null | undefined;
|
|
3446
3744
|
completed_at?: 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>>;
|
|
3475
|
-
|
|
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
|
+
}>>>;
|
|
3815
|
+
}, "strip", z.ZodTypeAny, {
|
|
3816
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3476
3817
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3477
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: string | null | undefined;
|
|
3489
|
-
requester_name?: string | null | undefined;
|
|
3490
|
-
requester_email?: string | null | undefined;
|
|
3491
3830
|
credit_value?: string | null | undefined;
|
|
3831
|
+
display_id_prefix?: string | null | undefined;
|
|
3492
3832
|
start_at?: string | null | undefined;
|
|
3493
3833
|
target_at?: string | null | undefined;
|
|
3494
3834
|
completed_at?: string | null | undefined;
|
|
3495
3835
|
locked_approval_at?: string | null | undefined;
|
|
3496
|
-
|
|
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;
|
|
3847
|
+
}, {
|
|
3848
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3497
3849
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3498
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: string | null | undefined;
|
|
3510
|
-
requester_name?: string | null | undefined;
|
|
3511
|
-
requester_email?: string | null | undefined;
|
|
3512
3862
|
credit_value?: string | null | undefined;
|
|
3863
|
+
display_id_prefix?: string | null | undefined;
|
|
3513
3864
|
start_at?: string | null | undefined;
|
|
3514
3865
|
target_at?: string | null | undefined;
|
|
3515
3866
|
completed_at?: 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: {
|
|
3904
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3542
3905
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3543
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: string | null | undefined;
|
|
3555
|
-
requester_name?: string | null | undefined;
|
|
3556
|
-
requester_email?: string | null | undefined;
|
|
3557
3918
|
credit_value?: string | null | undefined;
|
|
3919
|
+
display_id_prefix?: string | null | undefined;
|
|
3558
3920
|
start_at?: string | null | undefined;
|
|
3559
3921
|
target_at?: string | null | undefined;
|
|
3560
3922
|
completed_at?: 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: {
|
|
3946
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3573
3947
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3574
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: string | null | undefined;
|
|
3586
|
-
requester_name?: string | null | undefined;
|
|
3587
|
-
requester_email?: string | null | undefined;
|
|
3588
3960
|
credit_value?: string | null | undefined;
|
|
3961
|
+
display_id_prefix?: string | null | undefined;
|
|
3589
3962
|
start_at?: string | null | undefined;
|
|
3590
3963
|
target_at?: string | null | undefined;
|
|
3591
3964
|
completed_at?: 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">>;
|
|
@@ -4312,23 +4680,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4312
4680
|
searchableFields: string[];
|
|
4313
4681
|
}>>;
|
|
4314
4682
|
}, "strip", z.ZodTypeAny, {
|
|
4315
|
-
type?: {
|
|
4316
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4317
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4318
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4319
|
-
caseSensitive?: boolean | undefined;
|
|
4320
|
-
} | undefined;
|
|
4321
|
-
status?: {
|
|
4322
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4323
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4324
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4325
|
-
caseSensitive?: boolean | undefined;
|
|
4326
|
-
} | undefined;
|
|
4327
|
-
first?: number | undefined;
|
|
4328
|
-
after?: string | undefined;
|
|
4329
|
-
sortBy?: string | undefined;
|
|
4330
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
4331
|
-
paginationToken?: string | undefined;
|
|
4332
4683
|
created_at?: {
|
|
4333
4684
|
operator: "isEmpty" | "isNotEmpty";
|
|
4334
4685
|
value?: any;
|
|
@@ -4345,6 +4696,29 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4345
4696
|
values?: any[] | undefined;
|
|
4346
4697
|
caseSensitive?: boolean | undefined;
|
|
4347
4698
|
} | undefined;
|
|
4699
|
+
status?: {
|
|
4700
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4701
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4702
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4703
|
+
caseSensitive?: boolean | undefined;
|
|
4704
|
+
} | undefined;
|
|
4705
|
+
type?: {
|
|
4706
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4707
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4708
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4709
|
+
caseSensitive?: boolean | undefined;
|
|
4710
|
+
} | undefined;
|
|
4711
|
+
first?: number | undefined;
|
|
4712
|
+
after?: string | undefined;
|
|
4713
|
+
sortBy?: string | undefined;
|
|
4714
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
4715
|
+
paginationToken?: string | 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,10 +4751,16 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4377
4751
|
values?: string[] | undefined;
|
|
4378
4752
|
caseSensitive?: boolean | undefined;
|
|
4379
4753
|
} | undefined;
|
|
4754
|
+
credit_value?: {
|
|
4755
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4756
|
+
value?: number | undefined;
|
|
4757
|
+
values?: number[] | undefined;
|
|
4758
|
+
caseSensitive?: boolean | undefined;
|
|
4759
|
+
} | undefined;
|
|
4380
4760
|
priority?: {
|
|
4381
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4382
|
-
value?:
|
|
4383
|
-
values?:
|
|
4761
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4762
|
+
value?: number | undefined;
|
|
4763
|
+
values?: number[] | undefined;
|
|
4384
4764
|
caseSensitive?: boolean | undefined;
|
|
4385
4765
|
} | undefined;
|
|
4386
4766
|
is_locked?: {
|
|
@@ -4389,24 +4769,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4389
4769
|
values?: any[] | undefined;
|
|
4390
4770
|
caseSensitive?: boolean | undefined;
|
|
4391
4771
|
} | undefined;
|
|
4392
|
-
requester_name?: {
|
|
4393
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4394
|
-
value?: string | undefined;
|
|
4395
|
-
values?: string[] | undefined;
|
|
4396
|
-
caseSensitive?: boolean | undefined;
|
|
4397
|
-
} | undefined;
|
|
4398
|
-
requester_email?: {
|
|
4399
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4400
|
-
value?: string | undefined;
|
|
4401
|
-
values?: string[] | undefined;
|
|
4402
|
-
caseSensitive?: boolean | undefined;
|
|
4403
|
-
} | 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;
|
|
@@ -4456,23 +4818,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4456
4818
|
caseSensitive?: boolean | undefined;
|
|
4457
4819
|
} | undefined;
|
|
4458
4820
|
}, {
|
|
4459
|
-
type?: {
|
|
4460
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4461
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4462
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4463
|
-
caseSensitive?: boolean | undefined;
|
|
4464
|
-
} | undefined;
|
|
4465
|
-
status?: {
|
|
4466
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4467
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4468
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4469
|
-
caseSensitive?: boolean | undefined;
|
|
4470
|
-
} | undefined;
|
|
4471
|
-
first?: number | undefined;
|
|
4472
|
-
after?: string | undefined;
|
|
4473
|
-
sortBy?: string | undefined;
|
|
4474
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
4475
|
-
paginationToken?: string | undefined;
|
|
4476
4821
|
created_at?: {
|
|
4477
4822
|
operator: "isEmpty" | "isNotEmpty";
|
|
4478
4823
|
value?: any;
|
|
@@ -4489,6 +4834,29 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4489
4834
|
values?: any[] | undefined;
|
|
4490
4835
|
caseSensitive?: boolean | undefined;
|
|
4491
4836
|
} | undefined;
|
|
4837
|
+
status?: {
|
|
4838
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4839
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4840
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4841
|
+
caseSensitive?: boolean | undefined;
|
|
4842
|
+
} | undefined;
|
|
4843
|
+
type?: {
|
|
4844
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4845
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4846
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4847
|
+
caseSensitive?: boolean | undefined;
|
|
4848
|
+
} | undefined;
|
|
4849
|
+
first?: number | undefined;
|
|
4850
|
+
after?: string | undefined;
|
|
4851
|
+
sortBy?: string | undefined;
|
|
4852
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
4853
|
+
paginationToken?: string | 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[];
|
|
@@ -4506,51 +4874,39 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4506
4874
|
caseSensitive?: boolean | undefined;
|
|
4507
4875
|
} | {
|
|
4508
4876
|
values: string[];
|
|
4509
|
-
operator: "between";
|
|
4510
|
-
value?: any;
|
|
4511
|
-
caseSensitive?: boolean | undefined;
|
|
4512
|
-
} | {
|
|
4513
|
-
value: string;
|
|
4514
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
4515
|
-
values?: any[] | undefined;
|
|
4516
|
-
caseSensitive?: boolean | undefined;
|
|
4517
|
-
} | undefined;
|
|
4518
|
-
title?: {
|
|
4519
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4520
|
-
value?: string | undefined;
|
|
4521
|
-
values?: string[] | undefined;
|
|
4522
|
-
caseSensitive?: boolean | undefined;
|
|
4523
|
-
} | undefined;
|
|
4524
|
-
priority?: {
|
|
4525
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4526
|
-
value?: "LOW" | "MEDIUM" | "HIGH" | "CRITICAL" | undefined;
|
|
4527
|
-
values?: ("LOW" | "MEDIUM" | "HIGH" | "CRITICAL")[] | undefined;
|
|
4877
|
+
operator: "between";
|
|
4878
|
+
value?: any;
|
|
4528
4879
|
caseSensitive?: boolean | undefined;
|
|
4529
|
-
} |
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
operator: "eq" | "ne";
|
|
4880
|
+
} | {
|
|
4881
|
+
value: string;
|
|
4882
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
4533
4883
|
values?: any[] | undefined;
|
|
4534
4884
|
caseSensitive?: boolean | undefined;
|
|
4535
4885
|
} | undefined;
|
|
4536
|
-
|
|
4886
|
+
title?: {
|
|
4537
4887
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4538
4888
|
value?: string | undefined;
|
|
4539
4889
|
values?: string[] | undefined;
|
|
4540
4890
|
caseSensitive?: boolean | undefined;
|
|
4541
4891
|
} | undefined;
|
|
4542
|
-
|
|
4543
|
-
operator: "eq" | "ne" | "
|
|
4544
|
-
value?:
|
|
4545
|
-
values?:
|
|
4892
|
+
credit_value?: {
|
|
4893
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4894
|
+
value?: number | undefined;
|
|
4895
|
+
values?: number[] | undefined;
|
|
4546
4896
|
caseSensitive?: boolean | undefined;
|
|
4547
4897
|
} | undefined;
|
|
4548
|
-
|
|
4898
|
+
priority?: {
|
|
4549
4899
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
4550
4900
|
value?: number | undefined;
|
|
4551
4901
|
values?: number[] | undefined;
|
|
4552
4902
|
caseSensitive?: boolean | undefined;
|
|
4553
4903
|
} | undefined;
|
|
4904
|
+
is_locked?: {
|
|
4905
|
+
value: boolean;
|
|
4906
|
+
operator: "eq" | "ne";
|
|
4907
|
+
values?: any[] | undefined;
|
|
4908
|
+
caseSensitive?: boolean | undefined;
|
|
4909
|
+
} | 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, {
|
|
4996
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4636
4997
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4637
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: 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;
|
|
5016
|
+
display_id_prefix?: string | null | undefined;
|
|
4654
5017
|
start_at?: string | null | undefined;
|
|
4655
5018
|
target_at?: string | null | undefined;
|
|
4656
5019
|
completed_at?: string | null | undefined;
|
|
4657
5020
|
locked_approval_at?: string | null | undefined;
|
|
4658
|
-
|
|
4659
|
-
|
|
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
|
}, {
|
|
5025
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4661
5026
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4662
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: 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;
|
|
5045
|
+
display_id_prefix?: string | null | undefined;
|
|
4679
5046
|
start_at?: string | null | undefined;
|
|
4680
5047
|
target_at?: string | null | undefined;
|
|
4681
5048
|
completed_at?: string | null | undefined;
|
|
4682
5049
|
locked_approval_at?: string | null | undefined;
|
|
4683
|
-
|
|
4684
|
-
|
|
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, {
|
|
5089
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4717
5090
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4718
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: 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;
|
|
5109
|
+
display_id_prefix?: string | null | undefined;
|
|
4735
5110
|
start_at?: string | null | undefined;
|
|
4736
5111
|
target_at?: string | null | undefined;
|
|
4737
5112
|
completed_at?: string | null | undefined;
|
|
4738
5113
|
locked_approval_at?: string | null | undefined;
|
|
4739
|
-
|
|
4740
|
-
|
|
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
|
}, {
|
|
5118
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4742
5119
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4743
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: 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;
|
|
5138
|
+
display_id_prefix?: string | null | undefined;
|
|
4760
5139
|
start_at?: string | null | undefined;
|
|
4761
5140
|
target_at?: string | null | undefined;
|
|
4762
5141
|
completed_at?: string | null | undefined;
|
|
4763
5142
|
locked_approval_at?: string | null | undefined;
|
|
4764
|
-
|
|
4765
|
-
|
|
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: {
|
|
5171
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4791
5172
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4792
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: 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;
|
|
5191
|
+
display_id_prefix?: string | null | undefined;
|
|
4809
5192
|
start_at?: string | null | undefined;
|
|
4810
5193
|
target_at?: string | null | undefined;
|
|
4811
5194
|
completed_at?: string | null | undefined;
|
|
4812
5195
|
locked_approval_at?: string | null | undefined;
|
|
4813
|
-
|
|
4814
|
-
|
|
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: {
|
|
5210
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4826
5211
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4827
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "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
|
-
display_id_prefix?: 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;
|
|
5230
|
+
display_id_prefix?: string | null | undefined;
|
|
4844
5231
|
start_at?: string | null | undefined;
|
|
4845
5232
|
target_at?: string | null | undefined;
|
|
4846
5233
|
completed_at?: string | null | undefined;
|
|
4847
5234
|
locked_approval_at?: string | null | undefined;
|
|
4848
|
-
|
|
4849
|
-
|
|
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;
|
|
4979
5367
|
caseSensitive?: boolean | undefined;
|
|
4980
5368
|
}, {
|
|
4981
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4982
|
-
value?:
|
|
4983
|
-
values?:
|
|
5369
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5370
|
+
value?: number | undefined;
|
|
5371
|
+
values?: number[] | undefined;
|
|
4984
5372
|
caseSensitive?: boolean | undefined;
|
|
4985
5373
|
}>, {
|
|
4986
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4987
|
-
value?:
|
|
4988
|
-
values?:
|
|
5374
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5375
|
+
value?: number | undefined;
|
|
5376
|
+
values?: number[] | undefined;
|
|
4989
5377
|
caseSensitive?: boolean | undefined;
|
|
4990
5378
|
}, {
|
|
4991
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4992
|
-
value?:
|
|
4993
|
-
values?:
|
|
5379
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5380
|
+
value?: number | undefined;
|
|
5381
|
+
values?: number[] | undefined;
|
|
5382
|
+
caseSensitive?: boolean | undefined;
|
|
5383
|
+
}>, {
|
|
5384
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5385
|
+
value?: number | undefined;
|
|
5386
|
+
values?: number[] | undefined;
|
|
5387
|
+
caseSensitive?: boolean | undefined;
|
|
5388
|
+
}, {
|
|
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">>;
|
|
@@ -5671,23 +6043,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5671
6043
|
searchableFields: string[];
|
|
5672
6044
|
}>>;
|
|
5673
6045
|
}, "strip", z.ZodTypeAny, {
|
|
5674
|
-
type?: {
|
|
5675
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5676
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5677
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5678
|
-
caseSensitive?: boolean | undefined;
|
|
5679
|
-
} | undefined;
|
|
5680
|
-
status?: {
|
|
5681
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5682
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5683
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5684
|
-
caseSensitive?: boolean | undefined;
|
|
5685
|
-
} | undefined;
|
|
5686
|
-
first?: number | undefined;
|
|
5687
|
-
after?: string | undefined;
|
|
5688
|
-
sortBy?: string | undefined;
|
|
5689
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5690
|
-
paginationToken?: string | undefined;
|
|
5691
6046
|
created_at?: {
|
|
5692
6047
|
operator: "isEmpty" | "isNotEmpty";
|
|
5693
6048
|
value?: any;
|
|
@@ -5704,6 +6059,29 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5704
6059
|
values?: any[] | undefined;
|
|
5705
6060
|
caseSensitive?: boolean | undefined;
|
|
5706
6061
|
} | undefined;
|
|
6062
|
+
status?: {
|
|
6063
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6064
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6065
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6066
|
+
caseSensitive?: boolean | undefined;
|
|
6067
|
+
} | undefined;
|
|
6068
|
+
type?: {
|
|
6069
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6070
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6071
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6072
|
+
caseSensitive?: boolean | undefined;
|
|
6073
|
+
} | undefined;
|
|
6074
|
+
first?: number | undefined;
|
|
6075
|
+
after?: string | undefined;
|
|
6076
|
+
sortBy?: string | undefined;
|
|
6077
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6078
|
+
paginationToken?: string | 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,36 +6114,30 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5736
6114
|
values?: string[] | undefined;
|
|
5737
6115
|
caseSensitive?: boolean | undefined;
|
|
5738
6116
|
} | undefined;
|
|
5739
|
-
|
|
5740
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5741
|
-
value?:
|
|
5742
|
-
values?:
|
|
5743
|
-
caseSensitive?: boolean | undefined;
|
|
5744
|
-
} | undefined;
|
|
5745
|
-
is_locked?: {
|
|
5746
|
-
value: boolean;
|
|
5747
|
-
operator: "eq" | "ne";
|
|
5748
|
-
values?: any[] | undefined;
|
|
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;
|
|
6117
|
+
credit_value?: {
|
|
6118
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6119
|
+
value?: number | undefined;
|
|
6120
|
+
values?: number[] | undefined;
|
|
5755
6121
|
caseSensitive?: boolean | undefined;
|
|
5756
6122
|
} | undefined;
|
|
5757
|
-
|
|
5758
|
-
operator: "eq" | "ne" | "
|
|
5759
|
-
value?:
|
|
5760
|
-
values?:
|
|
6123
|
+
delivered_value?: {
|
|
6124
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6125
|
+
value?: number | undefined;
|
|
6126
|
+
values?: number[] | undefined;
|
|
5761
6127
|
caseSensitive?: boolean | undefined;
|
|
5762
6128
|
} | undefined;
|
|
5763
|
-
|
|
6129
|
+
priority?: {
|
|
5764
6130
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5765
6131
|
value?: number | undefined;
|
|
5766
6132
|
values?: number[] | undefined;
|
|
5767
6133
|
caseSensitive?: boolean | undefined;
|
|
5768
6134
|
} | undefined;
|
|
6135
|
+
is_locked?: {
|
|
6136
|
+
value: boolean;
|
|
6137
|
+
operator: "eq" | "ne";
|
|
6138
|
+
values?: any[] | undefined;
|
|
6139
|
+
caseSensitive?: boolean | undefined;
|
|
6140
|
+
} | undefined;
|
|
5769
6141
|
start_at?: {
|
|
5770
6142
|
operator: "isEmpty" | "isNotEmpty";
|
|
5771
6143
|
value?: any;
|
|
@@ -5822,34 +6194,11 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5822
6194
|
} | undefined;
|
|
5823
6195
|
dev_lifecycle?: {
|
|
5824
6196
|
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
|
-
delivered_value?: {
|
|
5830
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5831
|
-
value?: number | undefined;
|
|
5832
|
-
values?: number[] | undefined;
|
|
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;
|
|
5833
6199
|
caseSensitive?: boolean | undefined;
|
|
5834
6200
|
} | undefined;
|
|
5835
6201
|
}, {
|
|
5836
|
-
type?: {
|
|
5837
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5838
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5839
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5840
|
-
caseSensitive?: boolean | undefined;
|
|
5841
|
-
} | undefined;
|
|
5842
|
-
status?: {
|
|
5843
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5844
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5845
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5846
|
-
caseSensitive?: boolean | undefined;
|
|
5847
|
-
} | undefined;
|
|
5848
|
-
first?: number | undefined;
|
|
5849
|
-
after?: string | undefined;
|
|
5850
|
-
sortBy?: string | undefined;
|
|
5851
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5852
|
-
paginationToken?: string | undefined;
|
|
5853
6202
|
created_at?: {
|
|
5854
6203
|
operator: "isEmpty" | "isNotEmpty";
|
|
5855
6204
|
value?: any;
|
|
@@ -5866,6 +6215,29 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5866
6215
|
values?: any[] | undefined;
|
|
5867
6216
|
caseSensitive?: boolean | undefined;
|
|
5868
6217
|
} | undefined;
|
|
6218
|
+
status?: {
|
|
6219
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6220
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6221
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6222
|
+
caseSensitive?: boolean | undefined;
|
|
6223
|
+
} | undefined;
|
|
6224
|
+
type?: {
|
|
6225
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6226
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6227
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6228
|
+
caseSensitive?: boolean | undefined;
|
|
6229
|
+
} | undefined;
|
|
6230
|
+
first?: number | undefined;
|
|
6231
|
+
after?: string | undefined;
|
|
6232
|
+
sortBy?: string | undefined;
|
|
6233
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6234
|
+
paginationToken?: string | 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,36 +6270,30 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5898
6270
|
values?: string[] | undefined;
|
|
5899
6271
|
caseSensitive?: boolean | undefined;
|
|
5900
6272
|
} | undefined;
|
|
5901
|
-
|
|
5902
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5903
|
-
value?:
|
|
5904
|
-
values?:
|
|
5905
|
-
caseSensitive?: boolean | undefined;
|
|
5906
|
-
} | undefined;
|
|
5907
|
-
is_locked?: {
|
|
5908
|
-
value: boolean;
|
|
5909
|
-
operator: "eq" | "ne";
|
|
5910
|
-
values?: any[] | undefined;
|
|
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;
|
|
6273
|
+
credit_value?: {
|
|
6274
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6275
|
+
value?: number | undefined;
|
|
6276
|
+
values?: number[] | undefined;
|
|
5917
6277
|
caseSensitive?: boolean | undefined;
|
|
5918
|
-
} | undefined;
|
|
5919
|
-
|
|
5920
|
-
operator: "eq" | "ne" | "
|
|
5921
|
-
value?:
|
|
5922
|
-
values?:
|
|
6278
|
+
} | undefined;
|
|
6279
|
+
delivered_value?: {
|
|
6280
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
6281
|
+
value?: number | undefined;
|
|
6282
|
+
values?: number[] | undefined;
|
|
5923
6283
|
caseSensitive?: boolean | undefined;
|
|
5924
6284
|
} | undefined;
|
|
5925
|
-
|
|
6285
|
+
priority?: {
|
|
5926
6286
|
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5927
6287
|
value?: number | undefined;
|
|
5928
6288
|
values?: number[] | undefined;
|
|
5929
6289
|
caseSensitive?: boolean | undefined;
|
|
5930
6290
|
} | undefined;
|
|
6291
|
+
is_locked?: {
|
|
6292
|
+
value: boolean;
|
|
6293
|
+
operator: "eq" | "ne";
|
|
6294
|
+
values?: any[] | undefined;
|
|
6295
|
+
caseSensitive?: boolean | undefined;
|
|
6296
|
+
} | undefined;
|
|
5931
6297
|
start_at?: {
|
|
5932
6298
|
operator: "isEmpty" | "isNotEmpty";
|
|
5933
6299
|
value?: any;
|
|
@@ -5984,14 +6350,8 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5984
6350
|
} | undefined;
|
|
5985
6351
|
dev_lifecycle?: {
|
|
5986
6352
|
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
|
-
delivered_value?: {
|
|
5992
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
|
|
5993
|
-
value?: number | undefined;
|
|
5994
|
-
values?: number[] | undefined;
|
|
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;
|
|
5995
6355
|
caseSensitive?: boolean | undefined;
|
|
5996
6356
|
} | undefined;
|
|
5997
6357
|
}>;
|
|
@@ -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
6381
|
credit_value?: string | null | undefined;
|
|
6382
|
+
delivered_value?: string | null | undefined;
|
|
6021
6383
|
start_at?: string | null | undefined;
|
|
6022
6384
|
target_at?: string | null | undefined;
|
|
6023
6385
|
completed_at?: string | null | undefined;
|
|
6024
|
-
|
|
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
6394
|
credit_value?: string | null | undefined;
|
|
6395
|
+
delivered_value?: string | null | undefined;
|
|
6033
6396
|
start_at?: string | null | undefined;
|
|
6034
6397
|
target_at?: string | null | undefined;
|
|
6035
6398
|
completed_at?: string | null | undefined;
|
|
6036
|
-
|
|
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
6423
|
credit_value?: string | null | undefined;
|
|
6424
|
+
delivered_value?: string | null | undefined;
|
|
6060
6425
|
start_at?: string | null | undefined;
|
|
6061
6426
|
target_at?: string | null | undefined;
|
|
6062
6427
|
completed_at?: string | null | undefined;
|
|
6063
|
-
|
|
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
6436
|
credit_value?: string | null | undefined;
|
|
6437
|
+
delivered_value?: string | null | undefined;
|
|
6072
6438
|
start_at?: string | null | undefined;
|
|
6073
6439
|
target_at?: string | null | undefined;
|
|
6074
6440
|
completed_at?: string | null | undefined;
|
|
6075
|
-
|
|
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
6465
|
credit_value?: string | null | undefined;
|
|
6466
|
+
delivered_value?: string | null | undefined;
|
|
6099
6467
|
start_at?: string | null | undefined;
|
|
6100
6468
|
target_at?: string | null | undefined;
|
|
6101
6469
|
completed_at?: string | null | undefined;
|
|
6102
|
-
|
|
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
6478
|
credit_value?: string | null | undefined;
|
|
6479
|
+
delivered_value?: string | null | undefined;
|
|
6111
6480
|
start_at?: string | null | undefined;
|
|
6112
6481
|
target_at?: string | null | undefined;
|
|
6113
6482
|
completed_at?: string | null | undefined;
|
|
6114
|
-
|
|
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
|
/**
|
|
@@ -6713,11 +7121,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
6713
7121
|
searchableFields: string[];
|
|
6714
7122
|
}>>;
|
|
6715
7123
|
}, "strip", z.ZodTypeAny, {
|
|
6716
|
-
first?: number | undefined;
|
|
6717
|
-
after?: string | undefined;
|
|
6718
|
-
sortBy?: string | undefined;
|
|
6719
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6720
|
-
paginationToken?: string | undefined;
|
|
6721
7124
|
created_at?: {
|
|
6722
7125
|
operator: "isEmpty" | "isNotEmpty";
|
|
6723
7126
|
value?: any;
|
|
@@ -6734,6 +7137,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
6734
7137
|
values?: any[] | undefined;
|
|
6735
7138
|
caseSensitive?: boolean | undefined;
|
|
6736
7139
|
} | undefined;
|
|
7140
|
+
first?: number | undefined;
|
|
7141
|
+
after?: string | undefined;
|
|
7142
|
+
sortBy?: string | undefined;
|
|
7143
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7144
|
+
paginationToken?: string | undefined;
|
|
6737
7145
|
search?: {
|
|
6738
7146
|
query: string;
|
|
6739
7147
|
searchableFields: string[];
|
|
@@ -6770,13 +7178,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
6770
7178
|
values?: any[] | undefined;
|
|
6771
7179
|
caseSensitive?: boolean | undefined;
|
|
6772
7180
|
} | undefined;
|
|
6773
|
-
|
|
7181
|
+
unique_name?: {
|
|
6774
7182
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6775
7183
|
value?: string | undefined;
|
|
6776
7184
|
values?: string[] | undefined;
|
|
6777
7185
|
caseSensitive?: boolean | undefined;
|
|
6778
7186
|
} | undefined;
|
|
6779
|
-
|
|
7187
|
+
display_name?: {
|
|
6780
7188
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6781
7189
|
value?: string | undefined;
|
|
6782
7190
|
values?: string[] | undefined;
|
|
@@ -6813,11 +7221,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
6813
7221
|
caseSensitive?: boolean | undefined;
|
|
6814
7222
|
} | undefined;
|
|
6815
7223
|
}, {
|
|
6816
|
-
first?: number | undefined;
|
|
6817
|
-
after?: string | undefined;
|
|
6818
|
-
sortBy?: string | undefined;
|
|
6819
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6820
|
-
paginationToken?: string | undefined;
|
|
6821
7224
|
created_at?: {
|
|
6822
7225
|
operator: "isEmpty" | "isNotEmpty";
|
|
6823
7226
|
value?: any;
|
|
@@ -6834,6 +7237,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
6834
7237
|
values?: any[] | undefined;
|
|
6835
7238
|
caseSensitive?: boolean | undefined;
|
|
6836
7239
|
} | undefined;
|
|
7240
|
+
first?: number | undefined;
|
|
7241
|
+
after?: string | undefined;
|
|
7242
|
+
sortBy?: string | undefined;
|
|
7243
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7244
|
+
paginationToken?: string | undefined;
|
|
6837
7245
|
search?: {
|
|
6838
7246
|
query: string;
|
|
6839
7247
|
searchableFields: string[];
|
|
@@ -6870,13 +7278,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
6870
7278
|
values?: any[] | undefined;
|
|
6871
7279
|
caseSensitive?: boolean | undefined;
|
|
6872
7280
|
} | undefined;
|
|
6873
|
-
|
|
7281
|
+
unique_name?: {
|
|
6874
7282
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6875
7283
|
value?: string | undefined;
|
|
6876
7284
|
values?: string[] | undefined;
|
|
6877
7285
|
caseSensitive?: boolean | undefined;
|
|
6878
7286
|
} | undefined;
|
|
6879
|
-
|
|
7287
|
+
display_name?: {
|
|
6880
7288
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6881
7289
|
value?: string | undefined;
|
|
6882
7290
|
values?: string[] | undefined;
|
|
@@ -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;
|
|
@@ -8238,11 +8678,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8238
8678
|
searchableFields: string[];
|
|
8239
8679
|
}>>;
|
|
8240
8680
|
}, "strip", z.ZodTypeAny, {
|
|
8241
|
-
first?: number | undefined;
|
|
8242
|
-
after?: string | undefined;
|
|
8243
|
-
sortBy?: string | undefined;
|
|
8244
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8245
|
-
paginationToken?: string | undefined;
|
|
8246
8681
|
created_at?: {
|
|
8247
8682
|
operator: "isEmpty" | "isNotEmpty";
|
|
8248
8683
|
value?: any;
|
|
@@ -8259,6 +8694,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8259
8694
|
values?: any[] | undefined;
|
|
8260
8695
|
caseSensitive?: boolean | undefined;
|
|
8261
8696
|
} | undefined;
|
|
8697
|
+
first?: number | undefined;
|
|
8698
|
+
after?: string | undefined;
|
|
8699
|
+
sortBy?: string | undefined;
|
|
8700
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8701
|
+
paginationToken?: string | undefined;
|
|
8262
8702
|
search?: {
|
|
8263
8703
|
query: string;
|
|
8264
8704
|
searchableFields: string[];
|
|
@@ -8307,6 +8747,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8307
8747
|
values?: number[] | undefined;
|
|
8308
8748
|
caseSensitive?: boolean | undefined;
|
|
8309
8749
|
} | undefined;
|
|
8750
|
+
display_name?: {
|
|
8751
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8752
|
+
value?: string | undefined;
|
|
8753
|
+
values?: string[] | undefined;
|
|
8754
|
+
caseSensitive?: boolean | undefined;
|
|
8755
|
+
} | undefined;
|
|
8310
8756
|
team_id?: {
|
|
8311
8757
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8312
8758
|
value?: string | undefined;
|
|
@@ -8331,12 +8777,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8331
8777
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
8332
8778
|
caseSensitive?: boolean | undefined;
|
|
8333
8779
|
} | undefined;
|
|
8334
|
-
display_name?: {
|
|
8335
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8336
|
-
value?: string | undefined;
|
|
8337
|
-
values?: string[] | undefined;
|
|
8338
|
-
caseSensitive?: boolean | undefined;
|
|
8339
|
-
} | undefined;
|
|
8340
8780
|
business_phone?: {
|
|
8341
8781
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8342
8782
|
value?: string | undefined;
|
|
@@ -8368,11 +8808,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8368
8808
|
caseSensitive?: boolean | undefined;
|
|
8369
8809
|
} | undefined;
|
|
8370
8810
|
}, {
|
|
8371
|
-
first?: number | undefined;
|
|
8372
|
-
after?: string | undefined;
|
|
8373
|
-
sortBy?: string | undefined;
|
|
8374
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8375
|
-
paginationToken?: string | undefined;
|
|
8376
8811
|
created_at?: {
|
|
8377
8812
|
operator: "isEmpty" | "isNotEmpty";
|
|
8378
8813
|
value?: any;
|
|
@@ -8389,6 +8824,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8389
8824
|
values?: any[] | undefined;
|
|
8390
8825
|
caseSensitive?: boolean | undefined;
|
|
8391
8826
|
} | undefined;
|
|
8827
|
+
first?: number | undefined;
|
|
8828
|
+
after?: string | undefined;
|
|
8829
|
+
sortBy?: string | undefined;
|
|
8830
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8831
|
+
paginationToken?: string | undefined;
|
|
8392
8832
|
search?: {
|
|
8393
8833
|
query: string;
|
|
8394
8834
|
searchableFields: string[];
|
|
@@ -8437,6 +8877,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8437
8877
|
values?: number[] | undefined;
|
|
8438
8878
|
caseSensitive?: boolean | undefined;
|
|
8439
8879
|
} | undefined;
|
|
8880
|
+
display_name?: {
|
|
8881
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8882
|
+
value?: string | undefined;
|
|
8883
|
+
values?: string[] | undefined;
|
|
8884
|
+
caseSensitive?: boolean | undefined;
|
|
8885
|
+
} | undefined;
|
|
8440
8886
|
team_id?: {
|
|
8441
8887
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8442
8888
|
value?: string | undefined;
|
|
@@ -8461,12 +8907,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8461
8907
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
8462
8908
|
caseSensitive?: boolean | undefined;
|
|
8463
8909
|
} | undefined;
|
|
8464
|
-
display_name?: {
|
|
8465
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8466
|
-
value?: string | undefined;
|
|
8467
|
-
values?: string[] | undefined;
|
|
8468
|
-
caseSensitive?: boolean | undefined;
|
|
8469
|
-
} | undefined;
|
|
8470
8910
|
business_phone?: {
|
|
8471
8911
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8472
8912
|
value?: string | undefined;
|
|
@@ -8513,9 +8953,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
|
|
|
8513
8953
|
time_zone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8514
8954
|
}, "strip", z.ZodTypeAny, {
|
|
8515
8955
|
user_id: string;
|
|
8956
|
+
display_name: string;
|
|
8516
8957
|
team_id: string;
|
|
8517
8958
|
role: "owner" | "manager" | "member" | "client";
|
|
8518
|
-
display_name: string;
|
|
8519
8959
|
email_address: string;
|
|
8520
8960
|
business_phone?: string | null | undefined;
|
|
8521
8961
|
mobile_phone?: string | null | undefined;
|
|
@@ -8523,9 +8963,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
|
|
|
8523
8963
|
time_zone?: string | null | undefined;
|
|
8524
8964
|
}, {
|
|
8525
8965
|
user_id: string;
|
|
8966
|
+
display_name: string;
|
|
8526
8967
|
team_id: string;
|
|
8527
8968
|
role: "owner" | "manager" | "member" | "client";
|
|
8528
|
-
display_name: string;
|
|
8529
8969
|
email_address: string;
|
|
8530
8970
|
business_phone?: string | null | undefined;
|
|
8531
8971
|
mobile_phone?: string | null | undefined;
|
|
@@ -8548,9 +8988,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
|
|
|
8548
8988
|
}, "strip", z.ZodTypeAny, {
|
|
8549
8989
|
id: string;
|
|
8550
8990
|
user_id: string;
|
|
8991
|
+
display_name: string;
|
|
8551
8992
|
team_id: string;
|
|
8552
8993
|
role: "owner" | "manager" | "member" | "client";
|
|
8553
|
-
display_name: string;
|
|
8554
8994
|
email_address: string;
|
|
8555
8995
|
business_phone?: string | null | undefined;
|
|
8556
8996
|
mobile_phone?: string | null | undefined;
|
|
@@ -8559,9 +8999,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
|
|
|
8559
8999
|
}, {
|
|
8560
9000
|
id: string;
|
|
8561
9001
|
user_id: string;
|
|
9002
|
+
display_name: string;
|
|
8562
9003
|
team_id: string;
|
|
8563
9004
|
role: "owner" | "manager" | "member" | "client";
|
|
8564
|
-
display_name: string;
|
|
8565
9005
|
email_address: string;
|
|
8566
9006
|
business_phone?: string | null | undefined;
|
|
8567
9007
|
mobile_phone?: 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,9 +9046,11 @@ 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;
|
|
9051
|
+
display_name?: string | null | undefined;
|
|
8607
9052
|
original_team_id?: string | null | undefined;
|
|
8608
9053
|
original_user_id?: string | null | undefined;
|
|
8609
|
-
display_name?: string | null | undefined;
|
|
8610
9054
|
business_phone?: string | null | undefined;
|
|
8611
9055
|
mobile_phone?: string | null | undefined;
|
|
8612
9056
|
website_address?: string | null | undefined;
|
|
@@ -8624,9 +9068,11 @@ 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;
|
|
9073
|
+
display_name?: string | null | undefined;
|
|
8627
9074
|
original_team_id?: string | null | undefined;
|
|
8628
9075
|
original_user_id?: string | null | undefined;
|
|
8629
|
-
display_name?: string | null | undefined;
|
|
8630
9076
|
business_phone?: string | null | undefined;
|
|
8631
9077
|
mobile_phone?: string | null | undefined;
|
|
8632
9078
|
website_address?: 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,9 +9120,11 @@ 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;
|
|
9125
|
+
display_name?: string | null | undefined;
|
|
8675
9126
|
original_team_id?: string | null | undefined;
|
|
8676
9127
|
original_user_id?: string | null | undefined;
|
|
8677
|
-
display_name?: string | null | undefined;
|
|
8678
9128
|
business_phone?: string | null | undefined;
|
|
8679
9129
|
mobile_phone?: string | null | undefined;
|
|
8680
9130
|
website_address?: string | null | undefined;
|
|
@@ -8692,9 +9142,11 @@ 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;
|
|
9147
|
+
display_name?: string | null | undefined;
|
|
8695
9148
|
original_team_id?: string | null | undefined;
|
|
8696
9149
|
original_user_id?: string | null | undefined;
|
|
8697
|
-
display_name?: string | null | undefined;
|
|
8698
9150
|
business_phone?: string | null | undefined;
|
|
8699
9151
|
mobile_phone?: string | null | undefined;
|
|
8700
9152
|
website_address?: 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,9 +9192,11 @@ 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;
|
|
9197
|
+
display_name?: string | null | undefined;
|
|
8741
9198
|
original_team_id?: string | null | undefined;
|
|
8742
9199
|
original_user_id?: string | null | undefined;
|
|
8743
|
-
display_name?: string | null | undefined;
|
|
8744
9200
|
business_phone?: string | null | undefined;
|
|
8745
9201
|
mobile_phone?: string | null | undefined;
|
|
8746
9202
|
website_address?: string | null | undefined;
|
|
@@ -8758,9 +9214,11 @@ 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;
|
|
9219
|
+
display_name?: string | null | undefined;
|
|
8761
9220
|
original_team_id?: string | null | undefined;
|
|
8762
9221
|
original_user_id?: string | null | undefined;
|
|
8763
|
-
display_name?: string | null | undefined;
|
|
8764
9222
|
business_phone?: string | null | undefined;
|
|
8765
9223
|
mobile_phone?: string | null | undefined;
|
|
8766
9224
|
website_address?: string | null | undefined;
|
|
@@ -8780,9 +9238,11 @@ 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;
|
|
9243
|
+
display_name?: string | null | undefined;
|
|
8783
9244
|
original_team_id?: string | null | undefined;
|
|
8784
9245
|
original_user_id?: string | null | undefined;
|
|
8785
|
-
display_name?: string | null | undefined;
|
|
8786
9246
|
business_phone?: string | null | undefined;
|
|
8787
9247
|
mobile_phone?: string | null | undefined;
|
|
8788
9248
|
website_address?: string | null | undefined;
|
|
@@ -8802,9 +9262,11 @@ 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;
|
|
9267
|
+
display_name?: string | null | undefined;
|
|
8805
9268
|
original_team_id?: string | null | undefined;
|
|
8806
9269
|
original_user_id?: string | null | undefined;
|
|
8807
|
-
display_name?: string | null | undefined;
|
|
8808
9270
|
business_phone?: string | null | undefined;
|
|
8809
9271
|
mobile_phone?: string | null | undefined;
|
|
8810
9272
|
website_address?: 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
|
|
@@ -8829,20 +9292,20 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
8829
9292
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
8830
9293
|
}, "strip", z.ZodTypeAny, {
|
|
8831
9294
|
created_at: string;
|
|
8832
|
-
id: string;
|
|
8833
9295
|
email: string;
|
|
8834
|
-
updated_at: string | null;
|
|
8835
9296
|
username: string;
|
|
8836
9297
|
email_verified: boolean;
|
|
8837
9298
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9299
|
+
id: string;
|
|
9300
|
+
updated_at: string | null;
|
|
8838
9301
|
}, {
|
|
8839
9302
|
created_at: string;
|
|
8840
|
-
id: string;
|
|
8841
9303
|
email: string;
|
|
8842
|
-
updated_at: string | null;
|
|
8843
9304
|
username: string;
|
|
8844
9305
|
email_verified: boolean;
|
|
8845
9306
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9307
|
+
id: string;
|
|
9308
|
+
updated_at: string | null;
|
|
8846
9309
|
}>;
|
|
8847
9310
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
8848
9311
|
//#endregion
|
|
@@ -8851,11 +9314,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
8851
9314
|
id: z.ZodString;
|
|
8852
9315
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
8853
9316
|
}, "strip", z.ZodTypeAny, {
|
|
8854
|
-
id: string;
|
|
8855
9317
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
8856
|
-
}, {
|
|
8857
9318
|
id: string;
|
|
9319
|
+
}, {
|
|
8858
9320
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9321
|
+
id: string;
|
|
8859
9322
|
}>;
|
|
8860
9323
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
8861
9324
|
//#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
|