@dragonmastery/dragoncore-shared 0.0.28 → 0.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +297 -271
- package/dist/index.mjs +30 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -112,9 +112,9 @@ declare const AttachmentFolderUpdateSchema: z.ZodObject<{
|
|
|
112
112
|
description?: string | null | undefined;
|
|
113
113
|
record_id?: string | undefined;
|
|
114
114
|
record_type?: string | undefined;
|
|
115
|
+
metadata?: string | null | undefined;
|
|
115
116
|
sanitized_name?: string | undefined;
|
|
116
117
|
original_name?: string | undefined;
|
|
117
|
-
metadata?: string | null | undefined;
|
|
118
118
|
parent_folder_id?: string | null | undefined;
|
|
119
119
|
file_count?: number | undefined;
|
|
120
120
|
}, {
|
|
@@ -122,9 +122,9 @@ declare const AttachmentFolderUpdateSchema: z.ZodObject<{
|
|
|
122
122
|
description?: string | null | undefined;
|
|
123
123
|
record_id?: string | undefined;
|
|
124
124
|
record_type?: string | undefined;
|
|
125
|
+
metadata?: string | null | undefined;
|
|
125
126
|
sanitized_name?: string | undefined;
|
|
126
127
|
original_name?: string | undefined;
|
|
127
|
-
metadata?: string | null | undefined;
|
|
128
128
|
parent_folder_id?: string | null | undefined;
|
|
129
129
|
file_count?: number | undefined;
|
|
130
130
|
}>;
|
|
@@ -159,15 +159,15 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
159
159
|
sanitized_name: string;
|
|
160
160
|
original_name: string;
|
|
161
161
|
description?: string | null | undefined;
|
|
162
|
+
metadata?: string | null | undefined;
|
|
162
163
|
updated_at?: string | null | undefined;
|
|
163
164
|
updated_by?: string | null | undefined;
|
|
164
|
-
metadata?: string | null | undefined;
|
|
165
|
-
parent_folder_id?: string | null | undefined;
|
|
166
|
-
file_count?: number | undefined;
|
|
167
165
|
archived_at?: string | null | undefined;
|
|
168
166
|
archived_by?: string | null | undefined;
|
|
169
167
|
deleted_at?: string | null | undefined;
|
|
170
168
|
deleted_by?: string | null | undefined;
|
|
169
|
+
parent_folder_id?: string | null | undefined;
|
|
170
|
+
file_count?: number | undefined;
|
|
171
171
|
}, {
|
|
172
172
|
created_at: string;
|
|
173
173
|
created_by: string;
|
|
@@ -177,15 +177,15 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
177
177
|
sanitized_name: string;
|
|
178
178
|
original_name: string;
|
|
179
179
|
description?: string | null | undefined;
|
|
180
|
+
metadata?: string | null | undefined;
|
|
180
181
|
updated_at?: string | null | undefined;
|
|
181
182
|
updated_by?: string | null | undefined;
|
|
182
|
-
metadata?: string | null | undefined;
|
|
183
|
-
parent_folder_id?: string | null | undefined;
|
|
184
|
-
file_count?: number | undefined;
|
|
185
183
|
archived_at?: string | null | undefined;
|
|
186
184
|
archived_by?: string | null | undefined;
|
|
187
185
|
deleted_at?: string | null | undefined;
|
|
188
186
|
deleted_by?: string | null | undefined;
|
|
187
|
+
parent_folder_id?: string | null | undefined;
|
|
188
|
+
file_count?: number | undefined;
|
|
189
189
|
}>;
|
|
190
190
|
type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
|
|
191
191
|
//#endregion
|
|
@@ -208,8 +208,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
208
208
|
content_type: string;
|
|
209
209
|
file_size: string;
|
|
210
210
|
description?: string | null | undefined;
|
|
211
|
-
folder_id?: string | null | undefined;
|
|
212
211
|
metadata?: string | null | undefined;
|
|
212
|
+
folder_id?: string | null | undefined;
|
|
213
213
|
}, {
|
|
214
214
|
record_id: string;
|
|
215
215
|
record_type: string;
|
|
@@ -218,8 +218,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
218
218
|
content_type: string;
|
|
219
219
|
file_size: string;
|
|
220
220
|
description?: string | null | undefined;
|
|
221
|
-
folder_id?: string | null | undefined;
|
|
222
221
|
metadata?: string | null | undefined;
|
|
222
|
+
folder_id?: string | null | undefined;
|
|
223
223
|
}>;
|
|
224
224
|
type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
|
|
225
225
|
declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
@@ -239,23 +239,23 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
239
239
|
description?: string | null | undefined;
|
|
240
240
|
record_id?: string | undefined;
|
|
241
241
|
record_type?: string | undefined;
|
|
242
|
-
|
|
242
|
+
metadata?: string | null | undefined;
|
|
243
243
|
sanitized_name?: string | undefined;
|
|
244
244
|
original_name?: string | undefined;
|
|
245
|
-
metadata?: string | null | undefined;
|
|
246
245
|
content_type?: string | undefined;
|
|
247
246
|
file_size?: string | undefined;
|
|
247
|
+
folder_id?: string | null | undefined;
|
|
248
248
|
}, {
|
|
249
249
|
id: string;
|
|
250
250
|
description?: string | null | undefined;
|
|
251
251
|
record_id?: string | undefined;
|
|
252
252
|
record_type?: string | undefined;
|
|
253
|
-
|
|
253
|
+
metadata?: string | null | undefined;
|
|
254
254
|
sanitized_name?: string | undefined;
|
|
255
255
|
original_name?: string | undefined;
|
|
256
|
-
metadata?: string | null | undefined;
|
|
257
256
|
content_type?: string | undefined;
|
|
258
257
|
file_size?: string | undefined;
|
|
258
|
+
folder_id?: string | null | undefined;
|
|
259
259
|
}>;
|
|
260
260
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
261
261
|
//#endregion
|
|
@@ -292,10 +292,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
292
292
|
content_type: string;
|
|
293
293
|
file_size: string;
|
|
294
294
|
description?: string | null | undefined;
|
|
295
|
+
metadata?: string | null | undefined;
|
|
295
296
|
updated_at?: string | null | undefined;
|
|
296
297
|
updated_by?: string | null | undefined;
|
|
297
298
|
folder_id?: string | null | undefined;
|
|
298
|
-
metadata?: string | null | undefined;
|
|
299
299
|
archived_at?: string | null | undefined;
|
|
300
300
|
archived_by?: string | null | undefined;
|
|
301
301
|
deleted_at?: string | null | undefined;
|
|
@@ -311,10 +311,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
311
311
|
content_type: string;
|
|
312
312
|
file_size: string;
|
|
313
313
|
description?: string | null | undefined;
|
|
314
|
+
metadata?: string | null | undefined;
|
|
314
315
|
updated_at?: string | null | undefined;
|
|
315
316
|
updated_by?: string | null | undefined;
|
|
316
317
|
folder_id?: string | null | undefined;
|
|
317
|
-
metadata?: string | null | undefined;
|
|
318
318
|
archived_at?: string | null | undefined;
|
|
319
319
|
archived_by?: string | null | undefined;
|
|
320
320
|
deleted_at?: string | null | undefined;
|
|
@@ -348,15 +348,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
348
348
|
sanitized_name: string;
|
|
349
349
|
original_name: string;
|
|
350
350
|
description?: string | null | undefined;
|
|
351
|
+
metadata?: string | null | undefined;
|
|
351
352
|
updated_at?: string | null | undefined;
|
|
352
353
|
updated_by?: string | null | undefined;
|
|
353
|
-
metadata?: string | null | undefined;
|
|
354
|
-
parent_folder_id?: string | null | undefined;
|
|
355
|
-
file_count?: number | undefined;
|
|
356
354
|
archived_at?: string | null | undefined;
|
|
357
355
|
archived_by?: string | null | undefined;
|
|
358
356
|
deleted_at?: string | null | undefined;
|
|
359
357
|
deleted_by?: string | null | undefined;
|
|
358
|
+
parent_folder_id?: string | null | undefined;
|
|
359
|
+
file_count?: number | undefined;
|
|
360
360
|
}, {
|
|
361
361
|
created_at: string;
|
|
362
362
|
created_by: string;
|
|
@@ -366,15 +366,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
366
366
|
sanitized_name: string;
|
|
367
367
|
original_name: string;
|
|
368
368
|
description?: string | null | undefined;
|
|
369
|
+
metadata?: string | null | undefined;
|
|
369
370
|
updated_at?: string | null | undefined;
|
|
370
371
|
updated_by?: string | null | undefined;
|
|
371
|
-
metadata?: string | null | undefined;
|
|
372
|
-
parent_folder_id?: string | null | undefined;
|
|
373
|
-
file_count?: number | undefined;
|
|
374
372
|
archived_at?: string | null | undefined;
|
|
375
373
|
archived_by?: string | null | undefined;
|
|
376
374
|
deleted_at?: string | null | undefined;
|
|
377
375
|
deleted_by?: string | null | undefined;
|
|
376
|
+
parent_folder_id?: string | null | undefined;
|
|
377
|
+
file_count?: number | undefined;
|
|
378
378
|
}>, "many">;
|
|
379
379
|
pageInfo: z.ZodObject<{
|
|
380
380
|
hasNextPage: z.ZodBoolean;
|
|
@@ -402,10 +402,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
402
402
|
content_type: string;
|
|
403
403
|
file_size: string;
|
|
404
404
|
description?: string | null | undefined;
|
|
405
|
+
metadata?: string | null | undefined;
|
|
405
406
|
updated_at?: string | null | undefined;
|
|
406
407
|
updated_by?: string | null | undefined;
|
|
407
408
|
folder_id?: string | null | undefined;
|
|
408
|
-
metadata?: string | null | undefined;
|
|
409
409
|
archived_at?: string | null | undefined;
|
|
410
410
|
archived_by?: string | null | undefined;
|
|
411
411
|
deleted_at?: string | null | undefined;
|
|
@@ -420,15 +420,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
420
420
|
sanitized_name: string;
|
|
421
421
|
original_name: string;
|
|
422
422
|
description?: string | null | undefined;
|
|
423
|
+
metadata?: string | null | undefined;
|
|
423
424
|
updated_at?: string | null | undefined;
|
|
424
425
|
updated_by?: string | null | undefined;
|
|
425
|
-
metadata?: string | null | undefined;
|
|
426
|
-
parent_folder_id?: string | null | undefined;
|
|
427
|
-
file_count?: number | undefined;
|
|
428
426
|
archived_at?: string | null | undefined;
|
|
429
427
|
archived_by?: string | null | undefined;
|
|
430
428
|
deleted_at?: string | null | undefined;
|
|
431
429
|
deleted_by?: string | null | undefined;
|
|
430
|
+
parent_folder_id?: string | null | undefined;
|
|
431
|
+
file_count?: number | undefined;
|
|
432
432
|
}[];
|
|
433
433
|
}, {
|
|
434
434
|
pageInfo: {
|
|
@@ -446,10 +446,10 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
446
446
|
content_type: string;
|
|
447
447
|
file_size: string;
|
|
448
448
|
description?: string | null | undefined;
|
|
449
|
+
metadata?: string | null | undefined;
|
|
449
450
|
updated_at?: string | null | undefined;
|
|
450
451
|
updated_by?: string | null | undefined;
|
|
451
452
|
folder_id?: string | null | undefined;
|
|
452
|
-
metadata?: string | null | undefined;
|
|
453
453
|
archived_at?: string | null | undefined;
|
|
454
454
|
archived_by?: string | null | undefined;
|
|
455
455
|
deleted_at?: string | null | undefined;
|
|
@@ -464,15 +464,15 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
464
464
|
sanitized_name: string;
|
|
465
465
|
original_name: string;
|
|
466
466
|
description?: string | null | undefined;
|
|
467
|
+
metadata?: string | null | undefined;
|
|
467
468
|
updated_at?: string | null | undefined;
|
|
468
469
|
updated_by?: string | null | undefined;
|
|
469
|
-
metadata?: string | null | undefined;
|
|
470
|
-
parent_folder_id?: string | null | undefined;
|
|
471
|
-
file_count?: number | undefined;
|
|
472
470
|
archived_at?: string | null | undefined;
|
|
473
471
|
archived_by?: string | null | undefined;
|
|
474
472
|
deleted_at?: string | null | undefined;
|
|
475
473
|
deleted_by?: string | null | undefined;
|
|
474
|
+
parent_folder_id?: string | null | undefined;
|
|
475
|
+
file_count?: number | undefined;
|
|
476
476
|
}[];
|
|
477
477
|
}>;
|
|
478
478
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -509,10 +509,10 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
509
509
|
content_type: string;
|
|
510
510
|
file_size: string;
|
|
511
511
|
description?: string | null | undefined;
|
|
512
|
+
metadata?: string | null | undefined;
|
|
512
513
|
updated_at?: string | null | undefined;
|
|
513
514
|
updated_by?: string | null | undefined;
|
|
514
515
|
folder_id?: string | null | undefined;
|
|
515
|
-
metadata?: string | null | undefined;
|
|
516
516
|
archived_at?: string | null | undefined;
|
|
517
517
|
archived_by?: string | null | undefined;
|
|
518
518
|
deleted_at?: string | null | undefined;
|
|
@@ -528,10 +528,10 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
528
528
|
content_type: string;
|
|
529
529
|
file_size: string;
|
|
530
530
|
description?: string | null | undefined;
|
|
531
|
+
metadata?: string | null | undefined;
|
|
531
532
|
updated_at?: string | null | undefined;
|
|
532
533
|
updated_by?: string | null | undefined;
|
|
533
534
|
folder_id?: string | null | undefined;
|
|
534
|
-
metadata?: string | null | undefined;
|
|
535
535
|
archived_at?: string | null | undefined;
|
|
536
536
|
archived_by?: string | null | undefined;
|
|
537
537
|
deleted_at?: string | null | undefined;
|
|
@@ -1129,11 +1129,11 @@ declare const createUserSchemaOutput: z.ZodObject<{
|
|
|
1129
1129
|
id: z.ZodString;
|
|
1130
1130
|
email: z.ZodString;
|
|
1131
1131
|
}, "strip", z.ZodTypeAny, {
|
|
1132
|
-
id: string;
|
|
1133
1132
|
email: string;
|
|
1134
|
-
}, {
|
|
1135
1133
|
id: string;
|
|
1134
|
+
}, {
|
|
1136
1135
|
email: string;
|
|
1136
|
+
id: string;
|
|
1137
1137
|
}>;
|
|
1138
1138
|
type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
|
|
1139
1139
|
//#endregion
|
|
@@ -1447,6 +1447,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1447
1447
|
searchableFields: string[];
|
|
1448
1448
|
}>>;
|
|
1449
1449
|
}, "strip", z.ZodTypeAny, {
|
|
1450
|
+
created_at?: {
|
|
1451
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
1452
|
+
value?: any;
|
|
1453
|
+
values?: any[] | undefined;
|
|
1454
|
+
caseSensitive?: boolean | undefined;
|
|
1455
|
+
} | {
|
|
1456
|
+
values: string[];
|
|
1457
|
+
operator: "between";
|
|
1458
|
+
value?: any;
|
|
1459
|
+
caseSensitive?: boolean | undefined;
|
|
1460
|
+
} | {
|
|
1461
|
+
value: string;
|
|
1462
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1463
|
+
values?: any[] | undefined;
|
|
1464
|
+
caseSensitive?: boolean | undefined;
|
|
1465
|
+
} | undefined;
|
|
1450
1466
|
type?: {
|
|
1451
1467
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1452
1468
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1476,6 +1492,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1476
1492
|
values?: number[] | undefined;
|
|
1477
1493
|
caseSensitive?: boolean | undefined;
|
|
1478
1494
|
} | undefined;
|
|
1495
|
+
created_by?: {
|
|
1496
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1497
|
+
value?: string | undefined;
|
|
1498
|
+
values?: string[] | undefined;
|
|
1499
|
+
caseSensitive?: boolean | undefined;
|
|
1500
|
+
} | undefined;
|
|
1501
|
+
search?: {
|
|
1502
|
+
query: string;
|
|
1503
|
+
searchableFields: string[];
|
|
1504
|
+
} | undefined;
|
|
1505
|
+
}, {
|
|
1479
1506
|
created_at?: {
|
|
1480
1507
|
operator: "isEmpty" | "isNotEmpty";
|
|
1481
1508
|
value?: any;
|
|
@@ -1492,17 +1519,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1492
1519
|
values?: any[] | undefined;
|
|
1493
1520
|
caseSensitive?: boolean | undefined;
|
|
1494
1521
|
} | undefined;
|
|
1495
|
-
created_by?: {
|
|
1496
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1497
|
-
value?: string | undefined;
|
|
1498
|
-
values?: string[] | undefined;
|
|
1499
|
-
caseSensitive?: boolean | undefined;
|
|
1500
|
-
} | undefined;
|
|
1501
|
-
search?: {
|
|
1502
|
-
query: string;
|
|
1503
|
-
searchableFields: string[];
|
|
1504
|
-
} | undefined;
|
|
1505
|
-
}, {
|
|
1506
1522
|
type?: {
|
|
1507
1523
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1508
1524
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1532,22 +1548,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1532
1548
|
values?: number[] | undefined;
|
|
1533
1549
|
caseSensitive?: boolean | undefined;
|
|
1534
1550
|
} | undefined;
|
|
1535
|
-
created_at?: {
|
|
1536
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
1537
|
-
value?: any;
|
|
1538
|
-
values?: any[] | undefined;
|
|
1539
|
-
caseSensitive?: boolean | undefined;
|
|
1540
|
-
} | {
|
|
1541
|
-
values: string[];
|
|
1542
|
-
operator: "between";
|
|
1543
|
-
value?: any;
|
|
1544
|
-
caseSensitive?: boolean | undefined;
|
|
1545
|
-
} | {
|
|
1546
|
-
value: string;
|
|
1547
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1548
|
-
values?: any[] | undefined;
|
|
1549
|
-
caseSensitive?: boolean | undefined;
|
|
1550
|
-
} | undefined;
|
|
1551
1551
|
created_by?: {
|
|
1552
1552
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1553
1553
|
value?: string | undefined;
|
|
@@ -1580,19 +1580,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
|
|
|
1580
1580
|
created_at: z.ZodString;
|
|
1581
1581
|
created_by: z.ZodString;
|
|
1582
1582
|
}, "strip", z.ZodTypeAny, {
|
|
1583
|
+
created_at: string;
|
|
1583
1584
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1584
1585
|
amount: string;
|
|
1585
1586
|
balance_after: string;
|
|
1586
|
-
created_at: string;
|
|
1587
1587
|
created_by: string;
|
|
1588
1588
|
id: string;
|
|
1589
1589
|
support_ticket_id?: string | null | undefined;
|
|
1590
1590
|
description?: string | null | undefined;
|
|
1591
1591
|
}, {
|
|
1592
|
+
created_at: string;
|
|
1592
1593
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1593
1594
|
amount: string;
|
|
1594
1595
|
balance_after: string;
|
|
1595
|
-
created_at: string;
|
|
1596
1596
|
created_by: string;
|
|
1597
1597
|
id: string;
|
|
1598
1598
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1613,19 +1613,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1613
1613
|
created_at: z.ZodString;
|
|
1614
1614
|
created_by: z.ZodString;
|
|
1615
1615
|
}, "strip", z.ZodTypeAny, {
|
|
1616
|
+
created_at: string;
|
|
1616
1617
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1617
1618
|
amount: string;
|
|
1618
1619
|
balance_after: string;
|
|
1619
|
-
created_at: string;
|
|
1620
1620
|
created_by: string;
|
|
1621
1621
|
id: string;
|
|
1622
1622
|
support_ticket_id?: string | null | undefined;
|
|
1623
1623
|
description?: string | null | undefined;
|
|
1624
1624
|
}, {
|
|
1625
|
+
created_at: string;
|
|
1625
1626
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1626
1627
|
amount: string;
|
|
1627
1628
|
balance_after: string;
|
|
1628
|
-
created_at: string;
|
|
1629
1629
|
created_by: string;
|
|
1630
1630
|
id: string;
|
|
1631
1631
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1655,10 +1655,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1655
1655
|
}>;
|
|
1656
1656
|
}, "strip", z.ZodTypeAny, {
|
|
1657
1657
|
items: {
|
|
1658
|
+
created_at: string;
|
|
1658
1659
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1659
1660
|
amount: string;
|
|
1660
1661
|
balance_after: string;
|
|
1661
|
-
created_at: string;
|
|
1662
1662
|
created_by: string;
|
|
1663
1663
|
id: string;
|
|
1664
1664
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1674,10 +1674,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1674
1674
|
};
|
|
1675
1675
|
}, {
|
|
1676
1676
|
items: {
|
|
1677
|
+
created_at: string;
|
|
1677
1678
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1678
1679
|
amount: string;
|
|
1679
1680
|
balance_after: string;
|
|
1680
|
-
created_at: string;
|
|
1681
1681
|
created_by: string;
|
|
1682
1682
|
id: string;
|
|
1683
1683
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1756,8 +1756,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1756
1756
|
price_currency?: string | null | undefined;
|
|
1757
1757
|
}>, "many">>>;
|
|
1758
1758
|
}, "strip", z.ZodTypeAny, {
|
|
1759
|
-
email: string;
|
|
1760
1759
|
userId: string;
|
|
1760
|
+
email: string;
|
|
1761
1761
|
username: string;
|
|
1762
1762
|
email_verified: boolean;
|
|
1763
1763
|
user_type: string;
|
|
@@ -1778,8 +1778,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1778
1778
|
price_currency?: string | null | undefined;
|
|
1779
1779
|
}[] | null | undefined;
|
|
1780
1780
|
}, {
|
|
1781
|
-
email: string;
|
|
1782
1781
|
userId: string;
|
|
1782
|
+
email: string;
|
|
1783
1783
|
username: string;
|
|
1784
1784
|
email_verified: boolean;
|
|
1785
1785
|
user_type: string;
|
|
@@ -1802,8 +1802,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1802
1802
|
}>;
|
|
1803
1803
|
}, "strip", z.ZodTypeAny, {
|
|
1804
1804
|
user: {
|
|
1805
|
-
email: string;
|
|
1806
1805
|
userId: string;
|
|
1806
|
+
email: string;
|
|
1807
1807
|
username: string;
|
|
1808
1808
|
email_verified: boolean;
|
|
1809
1809
|
user_type: string;
|
|
@@ -1824,15 +1824,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1824
1824
|
price_currency?: string | null | undefined;
|
|
1825
1825
|
}[] | null | undefined;
|
|
1826
1826
|
};
|
|
1827
|
-
status: string;
|
|
1828
1827
|
created_at: string;
|
|
1829
1828
|
expires_at: string;
|
|
1829
|
+
status: string;
|
|
1830
1830
|
user_agent?: string | null | undefined;
|
|
1831
1831
|
ip_address?: string | null | undefined;
|
|
1832
1832
|
}, {
|
|
1833
1833
|
user: {
|
|
1834
|
-
email: string;
|
|
1835
1834
|
userId: string;
|
|
1835
|
+
email: string;
|
|
1836
1836
|
username: string;
|
|
1837
1837
|
email_verified: boolean;
|
|
1838
1838
|
user_type: string;
|
|
@@ -1853,9 +1853,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1853
1853
|
price_currency?: string | null | undefined;
|
|
1854
1854
|
}[] | null | undefined;
|
|
1855
1855
|
};
|
|
1856
|
-
status: string;
|
|
1857
1856
|
created_at: string;
|
|
1858
1857
|
expires_at: string;
|
|
1858
|
+
status: string;
|
|
1859
1859
|
user_agent?: string | null | undefined;
|
|
1860
1860
|
ip_address?: string | null | undefined;
|
|
1861
1861
|
}>;
|
|
@@ -1911,8 +1911,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1911
1911
|
price_currency?: string | null | undefined;
|
|
1912
1912
|
}>, "many">>>;
|
|
1913
1913
|
}, "strip", z.ZodTypeAny, {
|
|
1914
|
-
email: string;
|
|
1915
1914
|
userId: string;
|
|
1915
|
+
email: string;
|
|
1916
1916
|
username: string;
|
|
1917
1917
|
email_verified: boolean;
|
|
1918
1918
|
user_type: string;
|
|
@@ -1933,8 +1933,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1933
1933
|
price_currency?: string | null | undefined;
|
|
1934
1934
|
}[] | null | undefined;
|
|
1935
1935
|
}, {
|
|
1936
|
-
email: string;
|
|
1937
1936
|
userId: string;
|
|
1937
|
+
email: string;
|
|
1938
1938
|
username: string;
|
|
1939
1939
|
email_verified: boolean;
|
|
1940
1940
|
user_type: string;
|
|
@@ -1957,8 +1957,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1957
1957
|
}>;
|
|
1958
1958
|
}, "strip", z.ZodTypeAny, {
|
|
1959
1959
|
user: {
|
|
1960
|
-
email: string;
|
|
1961
1960
|
userId: string;
|
|
1961
|
+
email: string;
|
|
1962
1962
|
username: string;
|
|
1963
1963
|
email_verified: boolean;
|
|
1964
1964
|
user_type: string;
|
|
@@ -1979,15 +1979,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1979
1979
|
price_currency?: string | null | undefined;
|
|
1980
1980
|
}[] | null | undefined;
|
|
1981
1981
|
};
|
|
1982
|
-
status: string;
|
|
1983
1982
|
created_at: string;
|
|
1984
1983
|
expires_at: string;
|
|
1984
|
+
status: string;
|
|
1985
1985
|
user_agent?: string | null | undefined;
|
|
1986
1986
|
ip_address?: string | null | undefined;
|
|
1987
1987
|
}, {
|
|
1988
1988
|
user: {
|
|
1989
|
-
email: string;
|
|
1990
1989
|
userId: string;
|
|
1990
|
+
email: string;
|
|
1991
1991
|
username: string;
|
|
1992
1992
|
email_verified: boolean;
|
|
1993
1993
|
user_type: string;
|
|
@@ -2008,9 +2008,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2008
2008
|
price_currency?: string | null | undefined;
|
|
2009
2009
|
}[] | null | undefined;
|
|
2010
2010
|
};
|
|
2011
|
-
status: string;
|
|
2012
2011
|
created_at: string;
|
|
2013
2012
|
expires_at: string;
|
|
2013
|
+
status: string;
|
|
2014
2014
|
user_agent?: string | null | undefined;
|
|
2015
2015
|
ip_address?: string | null | undefined;
|
|
2016
2016
|
}>;
|
|
@@ -2021,8 +2021,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2021
2021
|
refresh_token: string;
|
|
2022
2022
|
frontend_session: {
|
|
2023
2023
|
user: {
|
|
2024
|
-
email: string;
|
|
2025
2024
|
userId: string;
|
|
2025
|
+
email: string;
|
|
2026
2026
|
username: string;
|
|
2027
2027
|
email_verified: boolean;
|
|
2028
2028
|
user_type: string;
|
|
@@ -2043,9 +2043,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2043
2043
|
price_currency?: string | null | undefined;
|
|
2044
2044
|
}[] | null | undefined;
|
|
2045
2045
|
};
|
|
2046
|
-
status: string;
|
|
2047
2046
|
created_at: string;
|
|
2048
2047
|
expires_at: string;
|
|
2048
|
+
status: string;
|
|
2049
2049
|
user_agent?: string | null | undefined;
|
|
2050
2050
|
ip_address?: string | null | undefined;
|
|
2051
2051
|
};
|
|
@@ -2055,8 +2055,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2055
2055
|
refresh_token: string;
|
|
2056
2056
|
frontend_session: {
|
|
2057
2057
|
user: {
|
|
2058
|
-
email: string;
|
|
2059
2058
|
userId: string;
|
|
2059
|
+
email: string;
|
|
2060
2060
|
username: string;
|
|
2061
2061
|
email_verified: boolean;
|
|
2062
2062
|
user_type: string;
|
|
@@ -2077,9 +2077,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2077
2077
|
price_currency?: string | null | undefined;
|
|
2078
2078
|
}[] | null | undefined;
|
|
2079
2079
|
};
|
|
2080
|
-
status: string;
|
|
2081
2080
|
created_at: string;
|
|
2082
2081
|
expires_at: string;
|
|
2082
|
+
status: string;
|
|
2083
2083
|
user_agent?: string | null | undefined;
|
|
2084
2084
|
ip_address?: string | null | undefined;
|
|
2085
2085
|
};
|
|
@@ -2096,11 +2096,11 @@ declare const loginSchema: z.ZodObject<{
|
|
|
2096
2096
|
email: z.ZodString;
|
|
2097
2097
|
password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
2098
2098
|
}, "strip", z.ZodTypeAny, {
|
|
2099
|
-
password: string;
|
|
2100
2099
|
email: string;
|
|
2101
|
-
}, {
|
|
2102
2100
|
password: string;
|
|
2101
|
+
}, {
|
|
2103
2102
|
email: string;
|
|
2103
|
+
password: string;
|
|
2104
2104
|
}>;
|
|
2105
2105
|
type LoginInputDto = z.infer<typeof loginSchema>;
|
|
2106
2106
|
//#endregion
|
|
@@ -2137,9 +2137,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2137
2137
|
archived_by?: string | null | undefined;
|
|
2138
2138
|
deleted_at?: string | null | undefined;
|
|
2139
2139
|
deleted_by?: string | null | undefined;
|
|
2140
|
+
tag?: string | null | undefined;
|
|
2140
2141
|
title?: string | null | undefined;
|
|
2141
2142
|
body?: string | null | undefined;
|
|
2142
|
-
tag?: string | null | undefined;
|
|
2143
2143
|
original_id?: number | null | undefined;
|
|
2144
2144
|
created_by_display_name?: string | null | undefined;
|
|
2145
2145
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2156,9 +2156,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2156
2156
|
archived_by?: string | null | undefined;
|
|
2157
2157
|
deleted_at?: string | null | undefined;
|
|
2158
2158
|
deleted_by?: string | null | undefined;
|
|
2159
|
+
tag?: string | null | undefined;
|
|
2159
2160
|
title?: string | null | undefined;
|
|
2160
2161
|
body?: string | null | undefined;
|
|
2161
|
-
tag?: string | null | undefined;
|
|
2162
2162
|
original_id?: number | null | undefined;
|
|
2163
2163
|
created_by_display_name?: string | null | undefined;
|
|
2164
2164
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2178,18 +2178,18 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2178
2178
|
record_id: string;
|
|
2179
2179
|
record_type: "app_setting" | "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" | "user_consent";
|
|
2180
2180
|
is_internal: boolean;
|
|
2181
|
+
tag?: string | null | undefined;
|
|
2181
2182
|
title?: string | null | undefined;
|
|
2182
2183
|
body?: string | null | undefined;
|
|
2183
|
-
tag?: string | null | undefined;
|
|
2184
2184
|
original_id?: number | null | undefined;
|
|
2185
2185
|
}, {
|
|
2186
2186
|
record_id: string;
|
|
2187
2187
|
record_type: "app_setting" | "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" | "user_consent";
|
|
2188
|
+
tag?: string | null | undefined;
|
|
2188
2189
|
title?: string | null | undefined;
|
|
2189
2190
|
body?: string | null | undefined;
|
|
2190
|
-
tag?: string | null | undefined;
|
|
2191
|
-
is_internal?: boolean | undefined;
|
|
2192
2191
|
original_id?: number | null | undefined;
|
|
2192
|
+
is_internal?: boolean | undefined;
|
|
2193
2193
|
}>;
|
|
2194
2194
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2195
2195
|
//#endregion
|
|
@@ -2207,20 +2207,20 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2207
2207
|
id: string;
|
|
2208
2208
|
record_id?: string | undefined;
|
|
2209
2209
|
record_type?: "app_setting" | "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" | "user_consent" | undefined;
|
|
2210
|
+
tag?: string | null | undefined;
|
|
2210
2211
|
title?: string | null | undefined;
|
|
2211
2212
|
body?: string | null | undefined;
|
|
2212
|
-
tag?: string | null | undefined;
|
|
2213
|
-
is_internal?: boolean | undefined;
|
|
2214
2213
|
original_id?: number | null | undefined;
|
|
2214
|
+
is_internal?: boolean | undefined;
|
|
2215
2215
|
}, {
|
|
2216
2216
|
id: string;
|
|
2217
2217
|
record_id?: string | undefined;
|
|
2218
2218
|
record_type?: "app_setting" | "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" | "user_consent" | undefined;
|
|
2219
|
+
tag?: string | null | undefined;
|
|
2219
2220
|
title?: string | null | undefined;
|
|
2220
2221
|
body?: string | null | undefined;
|
|
2221
|
-
tag?: string | null | undefined;
|
|
2222
|
-
is_internal?: boolean | undefined;
|
|
2223
2222
|
original_id?: number | null | undefined;
|
|
2223
|
+
is_internal?: boolean | undefined;
|
|
2224
2224
|
}>;
|
|
2225
2225
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2226
2226
|
//#endregion
|
|
@@ -2582,11 +2582,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2582
2582
|
searchableFields: string[];
|
|
2583
2583
|
}>>;
|
|
2584
2584
|
}, "strip", z.ZodTypeAny, {
|
|
2585
|
-
first?: number | undefined;
|
|
2586
|
-
after?: string | undefined;
|
|
2587
|
-
sortBy?: string | undefined;
|
|
2588
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2589
|
-
paginationToken?: string | undefined;
|
|
2590
2585
|
created_at?: {
|
|
2591
2586
|
operator: "isEmpty" | "isNotEmpty";
|
|
2592
2587
|
value?: any;
|
|
@@ -2603,6 +2598,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2603
2598
|
values?: any[] | undefined;
|
|
2604
2599
|
caseSensitive?: boolean | undefined;
|
|
2605
2600
|
} | undefined;
|
|
2601
|
+
first?: number | undefined;
|
|
2602
|
+
after?: string | undefined;
|
|
2603
|
+
sortBy?: string | undefined;
|
|
2604
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2605
|
+
paginationToken?: string | undefined;
|
|
2606
2606
|
search?: {
|
|
2607
2607
|
query: string;
|
|
2608
2608
|
searchableFields: string[];
|
|
@@ -2635,19 +2635,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2635
2635
|
values?: any[] | undefined;
|
|
2636
2636
|
caseSensitive?: boolean | undefined;
|
|
2637
2637
|
} | undefined;
|
|
2638
|
-
|
|
2638
|
+
tag?: {
|
|
2639
2639
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2640
2640
|
value?: string | undefined;
|
|
2641
2641
|
values?: string[] | undefined;
|
|
2642
2642
|
caseSensitive?: boolean | undefined;
|
|
2643
2643
|
} | undefined;
|
|
2644
|
-
|
|
2644
|
+
title?: {
|
|
2645
2645
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2646
2646
|
value?: string | undefined;
|
|
2647
2647
|
values?: string[] | undefined;
|
|
2648
2648
|
caseSensitive?: boolean | undefined;
|
|
2649
2649
|
} | undefined;
|
|
2650
|
-
|
|
2650
|
+
body?: {
|
|
2651
2651
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2652
2652
|
value?: string | undefined;
|
|
2653
2653
|
values?: string[] | undefined;
|
|
@@ -2660,11 +2660,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2660
2660
|
caseSensitive?: boolean | undefined;
|
|
2661
2661
|
} | undefined;
|
|
2662
2662
|
}, {
|
|
2663
|
-
first?: number | undefined;
|
|
2664
|
-
after?: string | undefined;
|
|
2665
|
-
sortBy?: string | undefined;
|
|
2666
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2667
|
-
paginationToken?: string | undefined;
|
|
2668
2663
|
created_at?: {
|
|
2669
2664
|
operator: "isEmpty" | "isNotEmpty";
|
|
2670
2665
|
value?: any;
|
|
@@ -2681,6 +2676,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2681
2676
|
values?: any[] | undefined;
|
|
2682
2677
|
caseSensitive?: boolean | undefined;
|
|
2683
2678
|
} | undefined;
|
|
2679
|
+
first?: number | undefined;
|
|
2680
|
+
after?: string | undefined;
|
|
2681
|
+
sortBy?: string | undefined;
|
|
2682
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2683
|
+
paginationToken?: string | undefined;
|
|
2684
2684
|
search?: {
|
|
2685
2685
|
query: string;
|
|
2686
2686
|
searchableFields: string[];
|
|
@@ -2713,19 +2713,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2713
2713
|
values?: any[] | undefined;
|
|
2714
2714
|
caseSensitive?: boolean | undefined;
|
|
2715
2715
|
} | undefined;
|
|
2716
|
-
|
|
2716
|
+
tag?: {
|
|
2717
2717
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2718
2718
|
value?: string | undefined;
|
|
2719
2719
|
values?: string[] | undefined;
|
|
2720
2720
|
caseSensitive?: boolean | undefined;
|
|
2721
2721
|
} | undefined;
|
|
2722
|
-
|
|
2722
|
+
title?: {
|
|
2723
2723
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2724
2724
|
value?: string | undefined;
|
|
2725
2725
|
values?: string[] | undefined;
|
|
2726
2726
|
caseSensitive?: boolean | undefined;
|
|
2727
2727
|
} | undefined;
|
|
2728
|
-
|
|
2728
|
+
body?: {
|
|
2729
2729
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2730
2730
|
value?: string | undefined;
|
|
2731
2731
|
values?: string[] | undefined;
|
|
@@ -3244,6 +3244,25 @@ declare const recordVersionTrackerActivityInputSchema: z.ZodObject<{
|
|
|
3244
3244
|
type RecordVersionFiltersBreadcrumbDto = z.infer<typeof recordVersionFiltersBreadcrumbSchema>;
|
|
3245
3245
|
type RecordVersionPageBreadcrumbDto = z.infer<typeof recordVersionPageBreadcrumbSchema>;
|
|
3246
3246
|
//#endregion
|
|
3247
|
+
//#region src/validation/referral_tag_zod.d.ts
|
|
3248
|
+
/** URL-friendly format: lowercase, alphanumeric, hyphens only. No underscores. */
|
|
3249
|
+
declare const REFERRAL_TAG_REGEX: RegExp;
|
|
3250
|
+
declare const REFERRAL_TAG_MIN = 3;
|
|
3251
|
+
declare const REFERRAL_TAG_MAX = 64;
|
|
3252
|
+
declare const REFERRAL_TAG_ERROR_MESSAGE = "Referral tag must be 3\u201364 characters, lowercase, alphanumeric, and hyphens only";
|
|
3253
|
+
/**
|
|
3254
|
+
* Normalize a string to a URL-friendly referral tag.
|
|
3255
|
+
* Matches the format validated by ReferralTagValueSchema.
|
|
3256
|
+
* e.g. "Acme Corp & Co." → "acme-corp-co"
|
|
3257
|
+
*/
|
|
3258
|
+
declare function normalizeToReferralTag(value: string): string;
|
|
3259
|
+
/**
|
|
3260
|
+
* Schema for a single referral tag value (non-null, non-empty).
|
|
3261
|
+
* Validates format only—no transform. Invalid input is rejected with an error.
|
|
3262
|
+
* Use the normalize button or type the correct format: lowercase, alphanumeric, hyphens only.
|
|
3263
|
+
*/
|
|
3264
|
+
declare const ReferralTagValueSchema: z.ZodString;
|
|
3265
|
+
//#endregion
|
|
3247
3266
|
//#region src/validation/saved_filter/saved_filter_create_zod.d.ts
|
|
3248
3267
|
/**
|
|
3249
3268
|
* Schema for creating a saved filter preset
|
|
@@ -3575,18 +3594,18 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3575
3594
|
}>;
|
|
3576
3595
|
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
3577
3596
|
}, "strip", z.ZodTypeAny, {
|
|
3597
|
+
email: string;
|
|
3578
3598
|
passwords: {
|
|
3579
3599
|
password: string;
|
|
3580
3600
|
password_confirm: string;
|
|
3581
3601
|
};
|
|
3582
|
-
email: string;
|
|
3583
3602
|
acceptances: Record<string, boolean>;
|
|
3584
3603
|
}, {
|
|
3604
|
+
email: string;
|
|
3585
3605
|
passwords: {
|
|
3586
3606
|
password: string;
|
|
3587
3607
|
password_confirm: string;
|
|
3588
3608
|
};
|
|
3589
|
-
email: string;
|
|
3590
3609
|
acceptances?: Record<string, boolean> | undefined;
|
|
3591
3610
|
}>;
|
|
3592
3611
|
/** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
|
|
@@ -3595,6 +3614,7 @@ type SignupInputDto = z.output<typeof signupSchema>;
|
|
|
3595
3614
|
//#region src/validation/signup_initiate_zod.d.ts
|
|
3596
3615
|
/** Input for signupInitiate - email and password only (no acceptances). */
|
|
3597
3616
|
declare const signupInitiateSchema: z.ZodObject<{
|
|
3617
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3598
3618
|
email: z.ZodString;
|
|
3599
3619
|
passwords: z.ZodEffects<z.ZodObject<{
|
|
3600
3620
|
password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -3613,17 +3633,19 @@ declare const signupInitiateSchema: z.ZodObject<{
|
|
|
3613
3633
|
password_confirm: string;
|
|
3614
3634
|
}>;
|
|
3615
3635
|
}, "strip", z.ZodTypeAny, {
|
|
3636
|
+
email: string;
|
|
3616
3637
|
passwords: {
|
|
3617
3638
|
password: string;
|
|
3618
3639
|
password_confirm: string;
|
|
3619
3640
|
};
|
|
3620
|
-
|
|
3641
|
+
metadata?: Record<string, unknown> | undefined;
|
|
3621
3642
|
}, {
|
|
3643
|
+
email: string;
|
|
3622
3644
|
passwords: {
|
|
3623
3645
|
password: string;
|
|
3624
3646
|
password_confirm: string;
|
|
3625
3647
|
};
|
|
3626
|
-
|
|
3648
|
+
metadata?: Record<string, unknown> | undefined;
|
|
3627
3649
|
}>;
|
|
3628
3650
|
type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
|
|
3629
3651
|
/** Response when consents are required - token + consents to display. */
|
|
@@ -3735,8 +3757,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3735
3757
|
price_currency?: string | null | undefined;
|
|
3736
3758
|
}>, "many">>>;
|
|
3737
3759
|
}, "strip", z.ZodTypeAny, {
|
|
3738
|
-
email: string;
|
|
3739
3760
|
userId: string;
|
|
3761
|
+
email: string;
|
|
3740
3762
|
username: string;
|
|
3741
3763
|
email_verified: boolean;
|
|
3742
3764
|
user_type: string;
|
|
@@ -3757,8 +3779,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3757
3779
|
price_currency?: string | null | undefined;
|
|
3758
3780
|
}[] | null | undefined;
|
|
3759
3781
|
}, {
|
|
3760
|
-
email: string;
|
|
3761
3782
|
userId: string;
|
|
3783
|
+
email: string;
|
|
3762
3784
|
username: string;
|
|
3763
3785
|
email_verified: boolean;
|
|
3764
3786
|
user_type: string;
|
|
@@ -3781,8 +3803,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3781
3803
|
}>;
|
|
3782
3804
|
}, "strip", z.ZodTypeAny, {
|
|
3783
3805
|
user: {
|
|
3784
|
-
email: string;
|
|
3785
3806
|
userId: string;
|
|
3807
|
+
email: string;
|
|
3786
3808
|
username: string;
|
|
3787
3809
|
email_verified: boolean;
|
|
3788
3810
|
user_type: string;
|
|
@@ -3803,15 +3825,15 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3803
3825
|
price_currency?: string | null | undefined;
|
|
3804
3826
|
}[] | null | undefined;
|
|
3805
3827
|
};
|
|
3806
|
-
status: string;
|
|
3807
3828
|
created_at: string;
|
|
3808
3829
|
expires_at: string;
|
|
3830
|
+
status: string;
|
|
3809
3831
|
user_agent?: string | null | undefined;
|
|
3810
3832
|
ip_address?: string | null | undefined;
|
|
3811
3833
|
}, {
|
|
3812
3834
|
user: {
|
|
3813
|
-
email: string;
|
|
3814
3835
|
userId: string;
|
|
3836
|
+
email: string;
|
|
3815
3837
|
username: string;
|
|
3816
3838
|
email_verified: boolean;
|
|
3817
3839
|
user_type: string;
|
|
@@ -3832,9 +3854,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3832
3854
|
price_currency?: string | null | undefined;
|
|
3833
3855
|
}[] | null | undefined;
|
|
3834
3856
|
};
|
|
3835
|
-
status: string;
|
|
3836
3857
|
created_at: string;
|
|
3837
3858
|
expires_at: string;
|
|
3859
|
+
status: string;
|
|
3838
3860
|
user_agent?: string | null | undefined;
|
|
3839
3861
|
ip_address?: string | null | undefined;
|
|
3840
3862
|
}>;
|
|
@@ -3845,8 +3867,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3845
3867
|
refresh_token: string;
|
|
3846
3868
|
frontend_session: {
|
|
3847
3869
|
user: {
|
|
3848
|
-
email: string;
|
|
3849
3870
|
userId: string;
|
|
3871
|
+
email: string;
|
|
3850
3872
|
username: string;
|
|
3851
3873
|
email_verified: boolean;
|
|
3852
3874
|
user_type: string;
|
|
@@ -3867,9 +3889,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3867
3889
|
price_currency?: string | null | undefined;
|
|
3868
3890
|
}[] | null | undefined;
|
|
3869
3891
|
};
|
|
3870
|
-
status: string;
|
|
3871
3892
|
created_at: string;
|
|
3872
3893
|
expires_at: string;
|
|
3894
|
+
status: string;
|
|
3873
3895
|
user_agent?: string | null | undefined;
|
|
3874
3896
|
ip_address?: string | null | undefined;
|
|
3875
3897
|
};
|
|
@@ -3879,8 +3901,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3879
3901
|
refresh_token: string;
|
|
3880
3902
|
frontend_session: {
|
|
3881
3903
|
user: {
|
|
3882
|
-
email: string;
|
|
3883
3904
|
userId: string;
|
|
3905
|
+
email: string;
|
|
3884
3906
|
username: string;
|
|
3885
3907
|
email_verified: boolean;
|
|
3886
3908
|
user_type: string;
|
|
@@ -3901,9 +3923,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3901
3923
|
price_currency?: string | null | undefined;
|
|
3902
3924
|
}[] | null | undefined;
|
|
3903
3925
|
};
|
|
3904
|
-
status: string;
|
|
3905
3926
|
created_at: string;
|
|
3906
3927
|
expires_at: string;
|
|
3928
|
+
status: string;
|
|
3907
3929
|
user_agent?: string | null | undefined;
|
|
3908
3930
|
ip_address?: string | null | undefined;
|
|
3909
3931
|
};
|
|
@@ -3916,8 +3938,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3916
3938
|
refresh_token: string;
|
|
3917
3939
|
frontend_session: {
|
|
3918
3940
|
user: {
|
|
3919
|
-
email: string;
|
|
3920
3941
|
userId: string;
|
|
3942
|
+
email: string;
|
|
3921
3943
|
username: string;
|
|
3922
3944
|
email_verified: boolean;
|
|
3923
3945
|
user_type: string;
|
|
@@ -3938,9 +3960,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3938
3960
|
price_currency?: string | null | undefined;
|
|
3939
3961
|
}[] | null | undefined;
|
|
3940
3962
|
};
|
|
3941
|
-
status: string;
|
|
3942
3963
|
created_at: string;
|
|
3943
3964
|
expires_at: string;
|
|
3965
|
+
status: string;
|
|
3944
3966
|
user_agent?: string | null | undefined;
|
|
3945
3967
|
ip_address?: string | null | undefined;
|
|
3946
3968
|
};
|
|
@@ -3953,8 +3975,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3953
3975
|
refresh_token: string;
|
|
3954
3976
|
frontend_session: {
|
|
3955
3977
|
user: {
|
|
3956
|
-
email: string;
|
|
3957
3978
|
userId: string;
|
|
3979
|
+
email: string;
|
|
3958
3980
|
username: string;
|
|
3959
3981
|
email_verified: boolean;
|
|
3960
3982
|
user_type: string;
|
|
@@ -3975,9 +3997,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3975
3997
|
price_currency?: string | null | undefined;
|
|
3976
3998
|
}[] | null | undefined;
|
|
3977
3999
|
};
|
|
3978
|
-
status: string;
|
|
3979
4000
|
created_at: string;
|
|
3980
4001
|
expires_at: string;
|
|
4002
|
+
status: string;
|
|
3981
4003
|
user_agent?: string | null | undefined;
|
|
3982
4004
|
ip_address?: string | null | undefined;
|
|
3983
4005
|
};
|
|
@@ -4091,8 +4113,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4091
4113
|
price_currency?: string | null | undefined;
|
|
4092
4114
|
}>, "many">>>;
|
|
4093
4115
|
}, "strip", z.ZodTypeAny, {
|
|
4094
|
-
email: string;
|
|
4095
4116
|
userId: string;
|
|
4117
|
+
email: string;
|
|
4096
4118
|
username: string;
|
|
4097
4119
|
email_verified: boolean;
|
|
4098
4120
|
user_type: string;
|
|
@@ -4113,8 +4135,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4113
4135
|
price_currency?: string | null | undefined;
|
|
4114
4136
|
}[] | null | undefined;
|
|
4115
4137
|
}, {
|
|
4116
|
-
email: string;
|
|
4117
4138
|
userId: string;
|
|
4139
|
+
email: string;
|
|
4118
4140
|
username: string;
|
|
4119
4141
|
email_verified: boolean;
|
|
4120
4142
|
user_type: string;
|
|
@@ -4137,8 +4159,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4137
4159
|
}>;
|
|
4138
4160
|
}, "strip", z.ZodTypeAny, {
|
|
4139
4161
|
user: {
|
|
4140
|
-
email: string;
|
|
4141
4162
|
userId: string;
|
|
4163
|
+
email: string;
|
|
4142
4164
|
username: string;
|
|
4143
4165
|
email_verified: boolean;
|
|
4144
4166
|
user_type: string;
|
|
@@ -4159,15 +4181,15 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4159
4181
|
price_currency?: string | null | undefined;
|
|
4160
4182
|
}[] | null | undefined;
|
|
4161
4183
|
};
|
|
4162
|
-
status: string;
|
|
4163
4184
|
created_at: string;
|
|
4164
4185
|
expires_at: string;
|
|
4186
|
+
status: string;
|
|
4165
4187
|
user_agent?: string | null | undefined;
|
|
4166
4188
|
ip_address?: string | null | undefined;
|
|
4167
4189
|
}, {
|
|
4168
4190
|
user: {
|
|
4169
|
-
email: string;
|
|
4170
4191
|
userId: string;
|
|
4192
|
+
email: string;
|
|
4171
4193
|
username: string;
|
|
4172
4194
|
email_verified: boolean;
|
|
4173
4195
|
user_type: string;
|
|
@@ -4188,9 +4210,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4188
4210
|
price_currency?: string | null | undefined;
|
|
4189
4211
|
}[] | null | undefined;
|
|
4190
4212
|
};
|
|
4191
|
-
status: string;
|
|
4192
4213
|
created_at: string;
|
|
4193
4214
|
expires_at: string;
|
|
4215
|
+
status: string;
|
|
4194
4216
|
user_agent?: string | null | undefined;
|
|
4195
4217
|
ip_address?: string | null | undefined;
|
|
4196
4218
|
}>;
|
|
@@ -4201,8 +4223,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4201
4223
|
refresh_token: string;
|
|
4202
4224
|
frontend_session: {
|
|
4203
4225
|
user: {
|
|
4204
|
-
email: string;
|
|
4205
4226
|
userId: string;
|
|
4227
|
+
email: string;
|
|
4206
4228
|
username: string;
|
|
4207
4229
|
email_verified: boolean;
|
|
4208
4230
|
user_type: string;
|
|
@@ -4223,9 +4245,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4223
4245
|
price_currency?: string | null | undefined;
|
|
4224
4246
|
}[] | null | undefined;
|
|
4225
4247
|
};
|
|
4226
|
-
status: string;
|
|
4227
4248
|
created_at: string;
|
|
4228
4249
|
expires_at: string;
|
|
4250
|
+
status: string;
|
|
4229
4251
|
user_agent?: string | null | undefined;
|
|
4230
4252
|
ip_address?: string | null | undefined;
|
|
4231
4253
|
};
|
|
@@ -4235,8 +4257,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4235
4257
|
refresh_token: string;
|
|
4236
4258
|
frontend_session: {
|
|
4237
4259
|
user: {
|
|
4238
|
-
email: string;
|
|
4239
4260
|
userId: string;
|
|
4261
|
+
email: string;
|
|
4240
4262
|
username: string;
|
|
4241
4263
|
email_verified: boolean;
|
|
4242
4264
|
user_type: string;
|
|
@@ -4257,9 +4279,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4257
4279
|
price_currency?: string | null | undefined;
|
|
4258
4280
|
}[] | null | undefined;
|
|
4259
4281
|
};
|
|
4260
|
-
status: string;
|
|
4261
4282
|
created_at: string;
|
|
4262
4283
|
expires_at: string;
|
|
4284
|
+
status: string;
|
|
4263
4285
|
user_agent?: string | null | undefined;
|
|
4264
4286
|
ip_address?: string | null | undefined;
|
|
4265
4287
|
};
|
|
@@ -4272,8 +4294,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4272
4294
|
refresh_token: string;
|
|
4273
4295
|
frontend_session: {
|
|
4274
4296
|
user: {
|
|
4275
|
-
email: string;
|
|
4276
4297
|
userId: string;
|
|
4298
|
+
email: string;
|
|
4277
4299
|
username: string;
|
|
4278
4300
|
email_verified: boolean;
|
|
4279
4301
|
user_type: string;
|
|
@@ -4294,9 +4316,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4294
4316
|
price_currency?: string | null | undefined;
|
|
4295
4317
|
}[] | null | undefined;
|
|
4296
4318
|
};
|
|
4297
|
-
status: string;
|
|
4298
4319
|
created_at: string;
|
|
4299
4320
|
expires_at: string;
|
|
4321
|
+
status: string;
|
|
4300
4322
|
user_agent?: string | null | undefined;
|
|
4301
4323
|
ip_address?: string | null | undefined;
|
|
4302
4324
|
};
|
|
@@ -4309,8 +4331,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4309
4331
|
refresh_token: string;
|
|
4310
4332
|
frontend_session: {
|
|
4311
4333
|
user: {
|
|
4312
|
-
email: string;
|
|
4313
4334
|
userId: string;
|
|
4335
|
+
email: string;
|
|
4314
4336
|
username: string;
|
|
4315
4337
|
email_verified: boolean;
|
|
4316
4338
|
user_type: string;
|
|
@@ -4331,9 +4353,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4331
4353
|
price_currency?: string | null | undefined;
|
|
4332
4354
|
}[] | null | undefined;
|
|
4333
4355
|
};
|
|
4334
|
-
status: string;
|
|
4335
4356
|
created_at: string;
|
|
4336
4357
|
expires_at: string;
|
|
4358
|
+
status: string;
|
|
4337
4359
|
user_agent?: string | null | undefined;
|
|
4338
4360
|
ip_address?: string | null | undefined;
|
|
4339
4361
|
};
|
|
@@ -4346,11 +4368,14 @@ type SignupInitiateResponseDto = z.infer<typeof signupInitiateResponseSchema>;
|
|
|
4346
4368
|
//#region src/validation/signup_complete_zod.d.ts
|
|
4347
4369
|
/** Input for signupComplete - acceptances only. Token is in Authorization: Bearer header. */
|
|
4348
4370
|
declare const signupCompleteSchema: z.ZodObject<{
|
|
4371
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4349
4372
|
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
4350
4373
|
}, "strip", z.ZodTypeAny, {
|
|
4351
4374
|
acceptances: Record<string, boolean>;
|
|
4375
|
+
metadata?: Record<string, unknown> | undefined;
|
|
4352
4376
|
}, {
|
|
4353
4377
|
acceptances?: Record<string, boolean> | undefined;
|
|
4378
|
+
metadata?: Record<string, unknown> | undefined;
|
|
4354
4379
|
}>;
|
|
4355
4380
|
type SignupCompleteInputDto = z.infer<typeof signupCompleteSchema>;
|
|
4356
4381
|
//#endregion
|
|
@@ -4649,8 +4674,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4649
4674
|
user_id_display_name?: string | null | undefined;
|
|
4650
4675
|
}>>>;
|
|
4651
4676
|
}, "strip", z.ZodTypeAny, {
|
|
4652
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4653
4677
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4678
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4654
4679
|
id: string;
|
|
4655
4680
|
description: string;
|
|
4656
4681
|
title: string;
|
|
@@ -4662,12 +4687,12 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4662
4687
|
updated_by?: string | null | undefined;
|
|
4663
4688
|
archived_at?: string | null | undefined;
|
|
4664
4689
|
created_by_display_name?: string | null | undefined;
|
|
4665
|
-
display_id?: string | null | undefined;
|
|
4666
4690
|
credit_value?: string | null | undefined;
|
|
4667
|
-
|
|
4691
|
+
display_id?: string | null | undefined;
|
|
4668
4692
|
start_at?: string | null | undefined;
|
|
4669
4693
|
target_at?: string | null | undefined;
|
|
4670
4694
|
completed_at?: string | null | undefined;
|
|
4695
|
+
display_id_prefix?: string | null | undefined;
|
|
4671
4696
|
locked_approval_at?: string | null | undefined;
|
|
4672
4697
|
my_subscription?: {
|
|
4673
4698
|
created_at: string;
|
|
@@ -4681,8 +4706,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4681
4706
|
user_id_display_name?: string | null | undefined;
|
|
4682
4707
|
} | null | undefined;
|
|
4683
4708
|
}, {
|
|
4684
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4685
4709
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4710
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4686
4711
|
id: string;
|
|
4687
4712
|
description: string;
|
|
4688
4713
|
title: string;
|
|
@@ -4694,12 +4719,12 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4694
4719
|
updated_by?: string | null | undefined;
|
|
4695
4720
|
archived_at?: string | null | undefined;
|
|
4696
4721
|
created_by_display_name?: string | null | undefined;
|
|
4697
|
-
display_id?: string | null | undefined;
|
|
4698
4722
|
credit_value?: string | null | undefined;
|
|
4699
|
-
|
|
4723
|
+
display_id?: string | null | undefined;
|
|
4700
4724
|
start_at?: string | null | undefined;
|
|
4701
4725
|
target_at?: string | null | undefined;
|
|
4702
4726
|
completed_at?: string | null | undefined;
|
|
4727
|
+
display_id_prefix?: string | null | undefined;
|
|
4703
4728
|
locked_approval_at?: string | null | undefined;
|
|
4704
4729
|
my_subscription?: {
|
|
4705
4730
|
created_at: string;
|
|
@@ -4771,8 +4796,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4771
4796
|
user_id_display_name?: string | null | undefined;
|
|
4772
4797
|
}>>>;
|
|
4773
4798
|
}, "strip", z.ZodTypeAny, {
|
|
4774
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4775
4799
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4800
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4776
4801
|
id: string;
|
|
4777
4802
|
description: string;
|
|
4778
4803
|
title: string;
|
|
@@ -4784,12 +4809,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4784
4809
|
updated_by?: string | null | undefined;
|
|
4785
4810
|
archived_at?: string | null | undefined;
|
|
4786
4811
|
created_by_display_name?: string | null | undefined;
|
|
4787
|
-
display_id?: string | null | undefined;
|
|
4788
4812
|
credit_value?: string | null | undefined;
|
|
4789
|
-
|
|
4813
|
+
display_id?: string | null | undefined;
|
|
4790
4814
|
start_at?: string | null | undefined;
|
|
4791
4815
|
target_at?: string | null | undefined;
|
|
4792
4816
|
completed_at?: string | null | undefined;
|
|
4817
|
+
display_id_prefix?: string | null | undefined;
|
|
4793
4818
|
locked_approval_at?: string | null | undefined;
|
|
4794
4819
|
my_subscription?: {
|
|
4795
4820
|
created_at: string;
|
|
@@ -4803,8 +4828,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4803
4828
|
user_id_display_name?: string | null | undefined;
|
|
4804
4829
|
} | null | undefined;
|
|
4805
4830
|
}, {
|
|
4806
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4807
4831
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4832
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4808
4833
|
id: string;
|
|
4809
4834
|
description: string;
|
|
4810
4835
|
title: string;
|
|
@@ -4816,12 +4841,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4816
4841
|
updated_by?: string | null | undefined;
|
|
4817
4842
|
archived_at?: string | null | undefined;
|
|
4818
4843
|
created_by_display_name?: string | null | undefined;
|
|
4819
|
-
display_id?: string | null | undefined;
|
|
4820
4844
|
credit_value?: string | null | undefined;
|
|
4821
|
-
|
|
4845
|
+
display_id?: string | null | undefined;
|
|
4822
4846
|
start_at?: string | null | undefined;
|
|
4823
4847
|
target_at?: string | null | undefined;
|
|
4824
4848
|
completed_at?: string | null | undefined;
|
|
4849
|
+
display_id_prefix?: string | null | undefined;
|
|
4825
4850
|
locked_approval_at?: string | null | undefined;
|
|
4826
4851
|
my_subscription?: {
|
|
4827
4852
|
created_at: string;
|
|
@@ -4859,8 +4884,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4859
4884
|
}>;
|
|
4860
4885
|
}, "strip", z.ZodTypeAny, {
|
|
4861
4886
|
items: {
|
|
4862
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4863
4887
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4888
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4864
4889
|
id: string;
|
|
4865
4890
|
description: string;
|
|
4866
4891
|
title: string;
|
|
@@ -4872,12 +4897,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4872
4897
|
updated_by?: string | null | undefined;
|
|
4873
4898
|
archived_at?: string | null | undefined;
|
|
4874
4899
|
created_by_display_name?: string | null | undefined;
|
|
4875
|
-
display_id?: string | null | undefined;
|
|
4876
4900
|
credit_value?: string | null | undefined;
|
|
4877
|
-
|
|
4901
|
+
display_id?: string | null | undefined;
|
|
4878
4902
|
start_at?: string | null | undefined;
|
|
4879
4903
|
target_at?: string | null | undefined;
|
|
4880
4904
|
completed_at?: string | null | undefined;
|
|
4905
|
+
display_id_prefix?: string | null | undefined;
|
|
4881
4906
|
locked_approval_at?: string | null | undefined;
|
|
4882
4907
|
my_subscription?: {
|
|
4883
4908
|
created_at: string;
|
|
@@ -4901,8 +4926,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4901
4926
|
};
|
|
4902
4927
|
}, {
|
|
4903
4928
|
items: {
|
|
4904
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4905
4929
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4930
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4906
4931
|
id: string;
|
|
4907
4932
|
description: string;
|
|
4908
4933
|
title: string;
|
|
@@ -4914,12 +4939,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4914
4939
|
updated_by?: string | null | undefined;
|
|
4915
4940
|
archived_at?: string | null | undefined;
|
|
4916
4941
|
created_by_display_name?: string | null | undefined;
|
|
4917
|
-
display_id?: string | null | undefined;
|
|
4918
4942
|
credit_value?: string | null | undefined;
|
|
4919
|
-
|
|
4943
|
+
display_id?: string | null | undefined;
|
|
4920
4944
|
start_at?: string | null | undefined;
|
|
4921
4945
|
target_at?: string | null | undefined;
|
|
4922
4946
|
completed_at?: string | null | undefined;
|
|
4947
|
+
display_id_prefix?: string | null | undefined;
|
|
4923
4948
|
locked_approval_at?: string | null | undefined;
|
|
4924
4949
|
my_subscription?: {
|
|
4925
4950
|
created_at: string;
|
|
@@ -5638,23 +5663,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5638
5663
|
searchableFields: string[];
|
|
5639
5664
|
}>>;
|
|
5640
5665
|
}, "strip", z.ZodTypeAny, {
|
|
5641
|
-
type?: {
|
|
5642
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5643
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5644
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5645
|
-
caseSensitive?: boolean | undefined;
|
|
5646
|
-
} | undefined;
|
|
5647
|
-
status?: {
|
|
5648
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5649
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5650
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5651
|
-
caseSensitive?: boolean | undefined;
|
|
5652
|
-
} | undefined;
|
|
5653
|
-
first?: number | undefined;
|
|
5654
|
-
after?: string | undefined;
|
|
5655
|
-
sortBy?: string | undefined;
|
|
5656
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5657
|
-
paginationToken?: string | undefined;
|
|
5658
5666
|
created_at?: {
|
|
5659
5667
|
operator: "isEmpty" | "isNotEmpty";
|
|
5660
5668
|
value?: any;
|
|
@@ -5671,6 +5679,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5671
5679
|
values?: any[] | undefined;
|
|
5672
5680
|
caseSensitive?: boolean | undefined;
|
|
5673
5681
|
} | undefined;
|
|
5682
|
+
status?: {
|
|
5683
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5684
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5685
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5686
|
+
caseSensitive?: boolean | undefined;
|
|
5687
|
+
} | undefined;
|
|
5688
|
+
type?: {
|
|
5689
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5690
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5691
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5692
|
+
caseSensitive?: boolean | undefined;
|
|
5693
|
+
} | undefined;
|
|
5694
|
+
first?: number | undefined;
|
|
5695
|
+
after?: string | undefined;
|
|
5696
|
+
sortBy?: string | undefined;
|
|
5697
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5698
|
+
paginationToken?: string | undefined;
|
|
5674
5699
|
created_by?: {
|
|
5675
5700
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5676
5701
|
value?: string | undefined;
|
|
@@ -5776,23 +5801,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5776
5801
|
caseSensitive?: boolean | undefined;
|
|
5777
5802
|
} | undefined;
|
|
5778
5803
|
}, {
|
|
5779
|
-
type?: {
|
|
5780
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5781
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5782
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5783
|
-
caseSensitive?: boolean | undefined;
|
|
5784
|
-
} | undefined;
|
|
5785
|
-
status?: {
|
|
5786
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5787
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5788
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5789
|
-
caseSensitive?: boolean | undefined;
|
|
5790
|
-
} | undefined;
|
|
5791
|
-
first?: number | undefined;
|
|
5792
|
-
after?: string | undefined;
|
|
5793
|
-
sortBy?: string | undefined;
|
|
5794
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5795
|
-
paginationToken?: string | undefined;
|
|
5796
5804
|
created_at?: {
|
|
5797
5805
|
operator: "isEmpty" | "isNotEmpty";
|
|
5798
5806
|
value?: any;
|
|
@@ -5809,6 +5817,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5809
5817
|
values?: any[] | undefined;
|
|
5810
5818
|
caseSensitive?: boolean | undefined;
|
|
5811
5819
|
} | undefined;
|
|
5820
|
+
status?: {
|
|
5821
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5822
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5823
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5824
|
+
caseSensitive?: boolean | undefined;
|
|
5825
|
+
} | undefined;
|
|
5826
|
+
type?: {
|
|
5827
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5828
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5829
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5830
|
+
caseSensitive?: boolean | undefined;
|
|
5831
|
+
} | undefined;
|
|
5832
|
+
first?: number | undefined;
|
|
5833
|
+
after?: string | undefined;
|
|
5834
|
+
sortBy?: string | undefined;
|
|
5835
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5836
|
+
paginationToken?: string | undefined;
|
|
5812
5837
|
created_by?: {
|
|
5813
5838
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5814
5839
|
value?: string | undefined;
|
|
@@ -5951,8 +5976,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5951
5976
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5952
5977
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5953
5978
|
}, "strip", z.ZodTypeAny, {
|
|
5954
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5955
5979
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5980
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5956
5981
|
id: string;
|
|
5957
5982
|
description: string;
|
|
5958
5983
|
title: string;
|
|
@@ -5968,20 +5993,20 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5968
5993
|
archived_by?: string | null | undefined;
|
|
5969
5994
|
created_by_display_name?: string | null | undefined;
|
|
5970
5995
|
updated_by_display_name?: string | null | undefined;
|
|
5971
|
-
display_id?: string | null | undefined;
|
|
5972
5996
|
credit_value?: string | null | undefined;
|
|
5973
5997
|
delivered_value?: string | null | undefined;
|
|
5974
|
-
|
|
5998
|
+
display_id?: string | null | undefined;
|
|
5975
5999
|
start_at?: string | null | undefined;
|
|
5976
6000
|
target_at?: string | null | undefined;
|
|
5977
6001
|
completed_at?: string | null | undefined;
|
|
6002
|
+
display_id_prefix?: string | null | undefined;
|
|
5978
6003
|
locked_approval_at?: string | null | undefined;
|
|
5979
6004
|
assigned_to?: string | null | undefined;
|
|
5980
6005
|
assigned_to_display_name?: string | null | undefined;
|
|
5981
6006
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5982
6007
|
}, {
|
|
5983
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5984
6008
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6009
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5985
6010
|
id: string;
|
|
5986
6011
|
description: string;
|
|
5987
6012
|
title: string;
|
|
@@ -5997,13 +6022,13 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5997
6022
|
archived_by?: string | null | undefined;
|
|
5998
6023
|
created_by_display_name?: string | null | undefined;
|
|
5999
6024
|
updated_by_display_name?: string | null | undefined;
|
|
6000
|
-
display_id?: string | null | undefined;
|
|
6001
6025
|
credit_value?: string | null | undefined;
|
|
6002
6026
|
delivered_value?: string | null | undefined;
|
|
6003
|
-
|
|
6027
|
+
display_id?: string | null | undefined;
|
|
6004
6028
|
start_at?: string | null | undefined;
|
|
6005
6029
|
target_at?: string | null | undefined;
|
|
6006
6030
|
completed_at?: string | null | undefined;
|
|
6031
|
+
display_id_prefix?: string | null | undefined;
|
|
6007
6032
|
locked_approval_at?: string | null | undefined;
|
|
6008
6033
|
assigned_to?: string | null | undefined;
|
|
6009
6034
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6044,8 +6069,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6044
6069
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6045
6070
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6046
6071
|
}, "strip", z.ZodTypeAny, {
|
|
6047
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6048
6072
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6073
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6049
6074
|
id: string;
|
|
6050
6075
|
description: string;
|
|
6051
6076
|
title: string;
|
|
@@ -6061,20 +6086,20 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6061
6086
|
archived_by?: string | null | undefined;
|
|
6062
6087
|
created_by_display_name?: string | null | undefined;
|
|
6063
6088
|
updated_by_display_name?: string | null | undefined;
|
|
6064
|
-
display_id?: string | null | undefined;
|
|
6065
6089
|
credit_value?: string | null | undefined;
|
|
6066
6090
|
delivered_value?: string | null | undefined;
|
|
6067
|
-
|
|
6091
|
+
display_id?: string | null | undefined;
|
|
6068
6092
|
start_at?: string | null | undefined;
|
|
6069
6093
|
target_at?: string | null | undefined;
|
|
6070
6094
|
completed_at?: string | null | undefined;
|
|
6095
|
+
display_id_prefix?: string | null | undefined;
|
|
6071
6096
|
locked_approval_at?: string | null | undefined;
|
|
6072
6097
|
assigned_to?: string | null | undefined;
|
|
6073
6098
|
assigned_to_display_name?: string | null | undefined;
|
|
6074
6099
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
6075
6100
|
}, {
|
|
6076
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6077
6101
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6102
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6078
6103
|
id: string;
|
|
6079
6104
|
description: string;
|
|
6080
6105
|
title: string;
|
|
@@ -6090,13 +6115,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6090
6115
|
archived_by?: string | null | undefined;
|
|
6091
6116
|
created_by_display_name?: string | null | undefined;
|
|
6092
6117
|
updated_by_display_name?: string | null | undefined;
|
|
6093
|
-
display_id?: string | null | undefined;
|
|
6094
6118
|
credit_value?: string | null | undefined;
|
|
6095
6119
|
delivered_value?: string | null | undefined;
|
|
6096
|
-
|
|
6120
|
+
display_id?: string | null | undefined;
|
|
6097
6121
|
start_at?: string | null | undefined;
|
|
6098
6122
|
target_at?: string | null | undefined;
|
|
6099
6123
|
completed_at?: string | null | undefined;
|
|
6124
|
+
display_id_prefix?: string | null | undefined;
|
|
6100
6125
|
locked_approval_at?: string | null | undefined;
|
|
6101
6126
|
assigned_to?: string | null | undefined;
|
|
6102
6127
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6126,8 +6151,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6126
6151
|
}>;
|
|
6127
6152
|
}, "strip", z.ZodTypeAny, {
|
|
6128
6153
|
items: {
|
|
6129
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6130
6154
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6155
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6131
6156
|
id: string;
|
|
6132
6157
|
description: string;
|
|
6133
6158
|
title: string;
|
|
@@ -6143,13 +6168,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6143
6168
|
archived_by?: string | null | undefined;
|
|
6144
6169
|
created_by_display_name?: string | null | undefined;
|
|
6145
6170
|
updated_by_display_name?: string | null | undefined;
|
|
6146
|
-
display_id?: string | null | undefined;
|
|
6147
6171
|
credit_value?: string | null | undefined;
|
|
6148
6172
|
delivered_value?: string | null | undefined;
|
|
6149
|
-
|
|
6173
|
+
display_id?: string | null | undefined;
|
|
6150
6174
|
start_at?: string | null | undefined;
|
|
6151
6175
|
target_at?: string | null | undefined;
|
|
6152
6176
|
completed_at?: string | null | undefined;
|
|
6177
|
+
display_id_prefix?: string | null | undefined;
|
|
6153
6178
|
locked_approval_at?: string | null | undefined;
|
|
6154
6179
|
assigned_to?: string | null | undefined;
|
|
6155
6180
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6165,8 +6190,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6165
6190
|
};
|
|
6166
6191
|
}, {
|
|
6167
6192
|
items: {
|
|
6168
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6169
6193
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6194
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6170
6195
|
id: string;
|
|
6171
6196
|
description: string;
|
|
6172
6197
|
title: string;
|
|
@@ -6182,13 +6207,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6182
6207
|
archived_by?: string | null | undefined;
|
|
6183
6208
|
created_by_display_name?: string | null | undefined;
|
|
6184
6209
|
updated_by_display_name?: string | null | undefined;
|
|
6185
|
-
display_id?: string | null | undefined;
|
|
6186
6210
|
credit_value?: string | null | undefined;
|
|
6187
6211
|
delivered_value?: string | null | undefined;
|
|
6188
|
-
|
|
6212
|
+
display_id?: string | null | undefined;
|
|
6189
6213
|
start_at?: string | null | undefined;
|
|
6190
6214
|
target_at?: string | null | undefined;
|
|
6191
6215
|
completed_at?: string | null | undefined;
|
|
6216
|
+
display_id_prefix?: string | null | undefined;
|
|
6192
6217
|
locked_approval_at?: string | null | undefined;
|
|
6193
6218
|
assigned_to?: string | null | undefined;
|
|
6194
6219
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -7001,23 +7026,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7001
7026
|
searchableFields: string[];
|
|
7002
7027
|
}>>;
|
|
7003
7028
|
}, "strip", z.ZodTypeAny, {
|
|
7004
|
-
type?: {
|
|
7005
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7006
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7007
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7008
|
-
caseSensitive?: boolean | undefined;
|
|
7009
|
-
} | undefined;
|
|
7010
|
-
status?: {
|
|
7011
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7012
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7013
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7014
|
-
caseSensitive?: boolean | undefined;
|
|
7015
|
-
} | undefined;
|
|
7016
|
-
first?: number | undefined;
|
|
7017
|
-
after?: string | undefined;
|
|
7018
|
-
sortBy?: string | undefined;
|
|
7019
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7020
|
-
paginationToken?: string | undefined;
|
|
7021
7029
|
created_at?: {
|
|
7022
7030
|
operator: "isEmpty" | "isNotEmpty";
|
|
7023
7031
|
value?: any;
|
|
@@ -7034,6 +7042,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7034
7042
|
values?: any[] | undefined;
|
|
7035
7043
|
caseSensitive?: boolean | undefined;
|
|
7036
7044
|
} | undefined;
|
|
7045
|
+
status?: {
|
|
7046
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
7047
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7048
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7049
|
+
caseSensitive?: boolean | undefined;
|
|
7050
|
+
} | undefined;
|
|
7051
|
+
type?: {
|
|
7052
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
7053
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7054
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7055
|
+
caseSensitive?: boolean | undefined;
|
|
7056
|
+
} | undefined;
|
|
7057
|
+
first?: number | undefined;
|
|
7058
|
+
after?: string | undefined;
|
|
7059
|
+
sortBy?: string | undefined;
|
|
7060
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7061
|
+
paginationToken?: string | undefined;
|
|
7037
7062
|
created_by?: {
|
|
7038
7063
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7039
7064
|
value?: string | undefined;
|
|
@@ -7157,23 +7182,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7157
7182
|
caseSensitive?: boolean | undefined;
|
|
7158
7183
|
} | undefined;
|
|
7159
7184
|
}, {
|
|
7160
|
-
type?: {
|
|
7161
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7162
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7163
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7164
|
-
caseSensitive?: boolean | undefined;
|
|
7165
|
-
} | undefined;
|
|
7166
|
-
status?: {
|
|
7167
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7168
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7169
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7170
|
-
caseSensitive?: boolean | undefined;
|
|
7171
|
-
} | undefined;
|
|
7172
|
-
first?: number | undefined;
|
|
7173
|
-
after?: string | undefined;
|
|
7174
|
-
sortBy?: string | undefined;
|
|
7175
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7176
|
-
paginationToken?: string | undefined;
|
|
7177
7185
|
created_at?: {
|
|
7178
7186
|
operator: "isEmpty" | "isNotEmpty";
|
|
7179
7187
|
value?: any;
|
|
@@ -7190,6 +7198,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7190
7198
|
values?: any[] | undefined;
|
|
7191
7199
|
caseSensitive?: boolean | undefined;
|
|
7192
7200
|
} | undefined;
|
|
7201
|
+
status?: {
|
|
7202
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
7203
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7204
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7205
|
+
caseSensitive?: boolean | undefined;
|
|
7206
|
+
} | undefined;
|
|
7207
|
+
type?: {
|
|
7208
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
7209
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7210
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7211
|
+
caseSensitive?: boolean | undefined;
|
|
7212
|
+
} | undefined;
|
|
7213
|
+
first?: number | undefined;
|
|
7214
|
+
after?: string | undefined;
|
|
7215
|
+
sortBy?: string | undefined;
|
|
7216
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7217
|
+
paginationToken?: string | undefined;
|
|
7193
7218
|
created_by?: {
|
|
7194
7219
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7195
7220
|
value?: string | undefined;
|
|
@@ -8079,11 +8104,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8079
8104
|
searchableFields: string[];
|
|
8080
8105
|
}>>;
|
|
8081
8106
|
}, "strip", z.ZodTypeAny, {
|
|
8082
|
-
first?: number | undefined;
|
|
8083
|
-
after?: string | undefined;
|
|
8084
|
-
sortBy?: string | undefined;
|
|
8085
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8086
|
-
paginationToken?: string | undefined;
|
|
8087
8107
|
created_at?: {
|
|
8088
8108
|
operator: "isEmpty" | "isNotEmpty";
|
|
8089
8109
|
value?: any;
|
|
@@ -8100,6 +8120,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8100
8120
|
values?: any[] | undefined;
|
|
8101
8121
|
caseSensitive?: boolean | undefined;
|
|
8102
8122
|
} | undefined;
|
|
8123
|
+
first?: number | undefined;
|
|
8124
|
+
after?: string | undefined;
|
|
8125
|
+
sortBy?: string | undefined;
|
|
8126
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8127
|
+
paginationToken?: string | undefined;
|
|
8103
8128
|
search?: {
|
|
8104
8129
|
query: string;
|
|
8105
8130
|
searchableFields: string[];
|
|
@@ -8179,11 +8204,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8179
8204
|
caseSensitive?: boolean | undefined;
|
|
8180
8205
|
} | undefined;
|
|
8181
8206
|
}, {
|
|
8182
|
-
first?: number | undefined;
|
|
8183
|
-
after?: string | undefined;
|
|
8184
|
-
sortBy?: string | undefined;
|
|
8185
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8186
|
-
paginationToken?: string | undefined;
|
|
8187
8207
|
created_at?: {
|
|
8188
8208
|
operator: "isEmpty" | "isNotEmpty";
|
|
8189
8209
|
value?: any;
|
|
@@ -8200,6 +8220,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8200
8220
|
values?: any[] | undefined;
|
|
8201
8221
|
caseSensitive?: boolean | undefined;
|
|
8202
8222
|
} | undefined;
|
|
8223
|
+
first?: number | undefined;
|
|
8224
|
+
after?: string | undefined;
|
|
8225
|
+
sortBy?: string | undefined;
|
|
8226
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8227
|
+
paginationToken?: string | undefined;
|
|
8203
8228
|
search?: {
|
|
8204
8229
|
query: string;
|
|
8205
8230
|
searchableFields: string[];
|
|
@@ -8752,6 +8777,7 @@ type TeamReadDto = z.infer<typeof TeamReadSchema>;
|
|
|
8752
8777
|
/**
|
|
8753
8778
|
* Schema for super admin to set or clear referral tag on a team.
|
|
8754
8779
|
* Pass null, empty string, or omit to clear the tag.
|
|
8780
|
+
* Valid tags are URL-friendly: lowercase, alphanumeric, hyphens only.
|
|
8755
8781
|
*/
|
|
8756
8782
|
declare const SetReferralTagSchema: z.ZodObject<{
|
|
8757
8783
|
team_id: z.ZodString;
|
|
@@ -9669,11 +9695,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9669
9695
|
searchableFields: string[];
|
|
9670
9696
|
}>>;
|
|
9671
9697
|
}, "strip", z.ZodTypeAny, {
|
|
9672
|
-
first?: number | undefined;
|
|
9673
|
-
after?: string | undefined;
|
|
9674
|
-
sortBy?: string | undefined;
|
|
9675
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9676
|
-
paginationToken?: string | undefined;
|
|
9677
9698
|
created_at?: {
|
|
9678
9699
|
operator: "isEmpty" | "isNotEmpty";
|
|
9679
9700
|
value?: any;
|
|
@@ -9690,6 +9711,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9690
9711
|
values?: any[] | undefined;
|
|
9691
9712
|
caseSensitive?: boolean | undefined;
|
|
9692
9713
|
} | undefined;
|
|
9714
|
+
first?: number | undefined;
|
|
9715
|
+
after?: string | undefined;
|
|
9716
|
+
sortBy?: string | undefined;
|
|
9717
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9718
|
+
paginationToken?: string | undefined;
|
|
9693
9719
|
search?: {
|
|
9694
9720
|
query: string;
|
|
9695
9721
|
searchableFields: string[];
|
|
@@ -9799,11 +9825,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9799
9825
|
caseSensitive?: boolean | undefined;
|
|
9800
9826
|
} | undefined;
|
|
9801
9827
|
}, {
|
|
9802
|
-
first?: number | undefined;
|
|
9803
|
-
after?: string | undefined;
|
|
9804
|
-
sortBy?: string | undefined;
|
|
9805
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9806
|
-
paginationToken?: string | undefined;
|
|
9807
9828
|
created_at?: {
|
|
9808
9829
|
operator: "isEmpty" | "isNotEmpty";
|
|
9809
9830
|
value?: any;
|
|
@@ -9820,6 +9841,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9820
9841
|
values?: any[] | undefined;
|
|
9821
9842
|
caseSensitive?: boolean | undefined;
|
|
9822
9843
|
} | undefined;
|
|
9844
|
+
first?: number | undefined;
|
|
9845
|
+
after?: string | undefined;
|
|
9846
|
+
sortBy?: string | undefined;
|
|
9847
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9848
|
+
paginationToken?: string | undefined;
|
|
9823
9849
|
search?: {
|
|
9824
9850
|
query: string;
|
|
9825
9851
|
searchableFields: string[];
|
|
@@ -10283,19 +10309,19 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
10283
10309
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
10284
10310
|
}, "strip", z.ZodTypeAny, {
|
|
10285
10311
|
created_at: string;
|
|
10286
|
-
id: string;
|
|
10287
10312
|
email: string;
|
|
10288
10313
|
username: string;
|
|
10289
10314
|
email_verified: boolean;
|
|
10290
10315
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10316
|
+
id: string;
|
|
10291
10317
|
updated_at: string | null;
|
|
10292
10318
|
}, {
|
|
10293
10319
|
created_at: string;
|
|
10294
|
-
id: string;
|
|
10295
10320
|
email: string;
|
|
10296
10321
|
username: string;
|
|
10297
10322
|
email_verified: boolean;
|
|
10298
10323
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10324
|
+
id: string;
|
|
10299
10325
|
updated_at: string | null;
|
|
10300
10326
|
}>;
|
|
10301
10327
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
@@ -10305,11 +10331,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
10305
10331
|
id: z.ZodString;
|
|
10306
10332
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
10307
10333
|
}, "strip", z.ZodTypeAny, {
|
|
10308
|
-
id: string;
|
|
10309
10334
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10310
|
-
}, {
|
|
10311
10335
|
id: string;
|
|
10336
|
+
}, {
|
|
10312
10337
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10338
|
+
id: string;
|
|
10313
10339
|
}>;
|
|
10314
10340
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
10315
10341
|
//#endregion
|
|
@@ -11187,5 +11213,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
11187
11213
|
*/
|
|
11188
11214
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
11189
11215
|
//#endregion
|
|
11190
|
-
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, DefaultReferralTeamFormDto, DefaultReferralTeamFormSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, 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, SetReferralTagDto, SetReferralTagSchema, SignupCompleteInputDto, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInitiateInputDto, SignupInitiateResponseDto, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, 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, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupCompleteSchema, signupInitiateConsentRequiredSchema, signupInitiateCreatedSchema, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
11216
|
+
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, DefaultReferralTeamFormDto, DefaultReferralTeamFormSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, REFERRAL_TAG_ERROR_MESSAGE, REFERRAL_TAG_MAX, REFERRAL_TAG_MIN, REFERRAL_TAG_REGEX, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, ReferralTagValueSchema, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, 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, SetReferralTagDto, SetReferralTagSchema, SignupCompleteInputDto, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInitiateInputDto, SignupInitiateResponseDto, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, 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, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, normalizeToReferralTag, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupCompleteSchema, signupInitiateConsentRequiredSchema, signupInitiateCreatedSchema, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
11191
11217
|
//# sourceMappingURL=index.d.mts.map
|