@dragonmastery/dragoncore-shared 0.0.16 → 0.0.20
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 +538 -336
- package/dist/index.mjs +56 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -147,12 +147,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
147
147
|
updated_at?: string | null | undefined;
|
|
148
148
|
updated_by?: string | null | undefined;
|
|
149
149
|
metadata?: string | null | undefined;
|
|
150
|
-
parent_folder_id?: string | null | undefined;
|
|
151
|
-
file_count?: number | undefined;
|
|
152
150
|
archived_at?: string | null | undefined;
|
|
153
151
|
archived_by?: string | null | undefined;
|
|
154
152
|
deleted_at?: string | null | undefined;
|
|
155
153
|
deleted_by?: string | null | undefined;
|
|
154
|
+
parent_folder_id?: string | null | undefined;
|
|
155
|
+
file_count?: number | undefined;
|
|
156
156
|
}, {
|
|
157
157
|
created_at: string;
|
|
158
158
|
created_by: string;
|
|
@@ -165,12 +165,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
165
165
|
updated_at?: string | null | undefined;
|
|
166
166
|
updated_by?: string | null | undefined;
|
|
167
167
|
metadata?: string | null | undefined;
|
|
168
|
-
parent_folder_id?: string | null | undefined;
|
|
169
|
-
file_count?: number | undefined;
|
|
170
168
|
archived_at?: string | null | undefined;
|
|
171
169
|
archived_by?: string | null | undefined;
|
|
172
170
|
deleted_at?: string | null | undefined;
|
|
173
171
|
deleted_by?: string | null | undefined;
|
|
172
|
+
parent_folder_id?: string | null | undefined;
|
|
173
|
+
file_count?: number | undefined;
|
|
174
174
|
}>;
|
|
175
175
|
type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
|
|
176
176
|
//#endregion
|
|
@@ -193,8 +193,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
193
193
|
content_type: string;
|
|
194
194
|
file_size: string;
|
|
195
195
|
description?: string | null | undefined;
|
|
196
|
-
folder_id?: string | null | undefined;
|
|
197
196
|
metadata?: string | null | undefined;
|
|
197
|
+
folder_id?: string | null | undefined;
|
|
198
198
|
}, {
|
|
199
199
|
record_id: string;
|
|
200
200
|
record_type: string;
|
|
@@ -203,8 +203,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
203
203
|
content_type: string;
|
|
204
204
|
file_size: string;
|
|
205
205
|
description?: string | null | undefined;
|
|
206
|
-
folder_id?: string | null | undefined;
|
|
207
206
|
metadata?: string | null | undefined;
|
|
207
|
+
folder_id?: string | null | undefined;
|
|
208
208
|
}>;
|
|
209
209
|
type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
|
|
210
210
|
declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
@@ -224,23 +224,23 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
224
224
|
description?: string | null | undefined;
|
|
225
225
|
record_id?: string | undefined;
|
|
226
226
|
record_type?: string | undefined;
|
|
227
|
-
folder_id?: string | null | undefined;
|
|
228
227
|
sanitized_name?: string | undefined;
|
|
229
228
|
original_name?: string | undefined;
|
|
230
|
-
metadata?: string | null | undefined;
|
|
231
229
|
content_type?: string | undefined;
|
|
232
230
|
file_size?: string | undefined;
|
|
231
|
+
metadata?: string | null | undefined;
|
|
232
|
+
folder_id?: string | null | undefined;
|
|
233
233
|
}, {
|
|
234
234
|
id: string;
|
|
235
235
|
description?: string | null | undefined;
|
|
236
236
|
record_id?: string | undefined;
|
|
237
237
|
record_type?: string | undefined;
|
|
238
|
-
folder_id?: string | null | undefined;
|
|
239
238
|
sanitized_name?: string | undefined;
|
|
240
239
|
original_name?: string | undefined;
|
|
241
|
-
metadata?: string | null | undefined;
|
|
242
240
|
content_type?: string | undefined;
|
|
243
241
|
file_size?: string | undefined;
|
|
242
|
+
metadata?: string | null | undefined;
|
|
243
|
+
folder_id?: string | null | undefined;
|
|
244
244
|
}>;
|
|
245
245
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
246
246
|
//#endregion
|
|
@@ -279,8 +279,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
279
279
|
description?: string | null | undefined;
|
|
280
280
|
updated_at?: string | null | undefined;
|
|
281
281
|
updated_by?: string | null | undefined;
|
|
282
|
-
folder_id?: string | null | undefined;
|
|
283
282
|
metadata?: string | null | undefined;
|
|
283
|
+
folder_id?: string | null | undefined;
|
|
284
284
|
archived_at?: string | null | undefined;
|
|
285
285
|
archived_by?: string | null | undefined;
|
|
286
286
|
deleted_at?: string | null | undefined;
|
|
@@ -298,8 +298,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
298
298
|
description?: string | null | undefined;
|
|
299
299
|
updated_at?: string | null | undefined;
|
|
300
300
|
updated_by?: string | null | undefined;
|
|
301
|
-
folder_id?: string | null | undefined;
|
|
302
301
|
metadata?: string | null | undefined;
|
|
302
|
+
folder_id?: string | null | undefined;
|
|
303
303
|
archived_at?: string | null | undefined;
|
|
304
304
|
archived_by?: string | null | undefined;
|
|
305
305
|
deleted_at?: string | null | undefined;
|
|
@@ -336,12 +336,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
336
336
|
updated_at?: string | null | undefined;
|
|
337
337
|
updated_by?: string | null | undefined;
|
|
338
338
|
metadata?: string | null | undefined;
|
|
339
|
-
parent_folder_id?: string | null | undefined;
|
|
340
|
-
file_count?: number | undefined;
|
|
341
339
|
archived_at?: string | null | undefined;
|
|
342
340
|
archived_by?: string | null | undefined;
|
|
343
341
|
deleted_at?: string | null | undefined;
|
|
344
342
|
deleted_by?: string | null | undefined;
|
|
343
|
+
parent_folder_id?: string | null | undefined;
|
|
344
|
+
file_count?: number | undefined;
|
|
345
345
|
}, {
|
|
346
346
|
created_at: string;
|
|
347
347
|
created_by: string;
|
|
@@ -354,12 +354,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
354
354
|
updated_at?: string | null | undefined;
|
|
355
355
|
updated_by?: string | null | undefined;
|
|
356
356
|
metadata?: string | null | undefined;
|
|
357
|
-
parent_folder_id?: string | null | undefined;
|
|
358
|
-
file_count?: number | undefined;
|
|
359
357
|
archived_at?: string | null | undefined;
|
|
360
358
|
archived_by?: string | null | undefined;
|
|
361
359
|
deleted_at?: string | null | undefined;
|
|
362
360
|
deleted_by?: string | null | undefined;
|
|
361
|
+
parent_folder_id?: string | null | undefined;
|
|
362
|
+
file_count?: number | undefined;
|
|
363
363
|
}>, "many">;
|
|
364
364
|
pageInfo: z.ZodObject<{
|
|
365
365
|
hasNextPage: z.ZodBoolean;
|
|
@@ -389,8 +389,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
389
389
|
description?: string | null | undefined;
|
|
390
390
|
updated_at?: string | null | undefined;
|
|
391
391
|
updated_by?: string | null | undefined;
|
|
392
|
-
folder_id?: string | null | undefined;
|
|
393
392
|
metadata?: string | null | undefined;
|
|
393
|
+
folder_id?: string | null | undefined;
|
|
394
394
|
archived_at?: string | null | undefined;
|
|
395
395
|
archived_by?: string | null | undefined;
|
|
396
396
|
deleted_at?: string | null | undefined;
|
|
@@ -408,12 +408,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
408
408
|
updated_at?: string | null | undefined;
|
|
409
409
|
updated_by?: string | null | undefined;
|
|
410
410
|
metadata?: string | null | undefined;
|
|
411
|
-
parent_folder_id?: string | null | undefined;
|
|
412
|
-
file_count?: number | undefined;
|
|
413
411
|
archived_at?: string | null | undefined;
|
|
414
412
|
archived_by?: string | null | undefined;
|
|
415
413
|
deleted_at?: string | null | undefined;
|
|
416
414
|
deleted_by?: string | null | undefined;
|
|
415
|
+
parent_folder_id?: string | null | undefined;
|
|
416
|
+
file_count?: number | undefined;
|
|
417
417
|
}[];
|
|
418
418
|
}, {
|
|
419
419
|
pageInfo: {
|
|
@@ -433,8 +433,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
433
433
|
description?: string | null | undefined;
|
|
434
434
|
updated_at?: string | null | undefined;
|
|
435
435
|
updated_by?: string | null | undefined;
|
|
436
|
-
folder_id?: string | null | undefined;
|
|
437
436
|
metadata?: string | null | undefined;
|
|
437
|
+
folder_id?: string | null | undefined;
|
|
438
438
|
archived_at?: string | null | undefined;
|
|
439
439
|
archived_by?: string | null | undefined;
|
|
440
440
|
deleted_at?: string | null | undefined;
|
|
@@ -452,12 +452,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
452
452
|
updated_at?: string | null | undefined;
|
|
453
453
|
updated_by?: string | null | undefined;
|
|
454
454
|
metadata?: string | null | undefined;
|
|
455
|
-
parent_folder_id?: string | null | undefined;
|
|
456
|
-
file_count?: number | undefined;
|
|
457
455
|
archived_at?: string | null | undefined;
|
|
458
456
|
archived_by?: string | null | undefined;
|
|
459
457
|
deleted_at?: string | null | undefined;
|
|
460
458
|
deleted_by?: string | null | undefined;
|
|
459
|
+
parent_folder_id?: string | null | undefined;
|
|
460
|
+
file_count?: number | undefined;
|
|
461
461
|
}[];
|
|
462
462
|
}>;
|
|
463
463
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -496,8 +496,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
496
496
|
description?: string | null | undefined;
|
|
497
497
|
updated_at?: string | null | undefined;
|
|
498
498
|
updated_by?: string | null | undefined;
|
|
499
|
-
folder_id?: string | null | undefined;
|
|
500
499
|
metadata?: string | null | undefined;
|
|
500
|
+
folder_id?: string | null | undefined;
|
|
501
501
|
archived_at?: string | null | undefined;
|
|
502
502
|
archived_by?: string | null | undefined;
|
|
503
503
|
deleted_at?: string | null | undefined;
|
|
@@ -515,8 +515,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
515
515
|
description?: string | null | undefined;
|
|
516
516
|
updated_at?: string | null | undefined;
|
|
517
517
|
updated_by?: string | null | undefined;
|
|
518
|
-
folder_id?: string | null | undefined;
|
|
519
518
|
metadata?: string | null | undefined;
|
|
519
|
+
folder_id?: string | null | undefined;
|
|
520
520
|
archived_at?: string | null | undefined;
|
|
521
521
|
archived_by?: string | null | undefined;
|
|
522
522
|
deleted_at?: string | null | undefined;
|
|
@@ -1114,11 +1114,11 @@ declare const createUserSchemaOutput: z.ZodObject<{
|
|
|
1114
1114
|
id: z.ZodString;
|
|
1115
1115
|
email: z.ZodString;
|
|
1116
1116
|
}, "strip", z.ZodTypeAny, {
|
|
1117
|
-
email: string;
|
|
1118
1117
|
id: string;
|
|
1119
|
-
}, {
|
|
1120
1118
|
email: string;
|
|
1119
|
+
}, {
|
|
1121
1120
|
id: string;
|
|
1121
|
+
email: string;
|
|
1122
1122
|
}>;
|
|
1123
1123
|
type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
|
|
1124
1124
|
//#endregion
|
|
@@ -1432,22 +1432,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1432
1432
|
searchableFields: string[];
|
|
1433
1433
|
}>>;
|
|
1434
1434
|
}, "strip", z.ZodTypeAny, {
|
|
1435
|
-
created_at?: {
|
|
1436
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
1437
|
-
value?: any;
|
|
1438
|
-
values?: any[] | undefined;
|
|
1439
|
-
caseSensitive?: boolean | undefined;
|
|
1440
|
-
} | {
|
|
1441
|
-
values: string[];
|
|
1442
|
-
operator: "between";
|
|
1443
|
-
value?: any;
|
|
1444
|
-
caseSensitive?: boolean | undefined;
|
|
1445
|
-
} | {
|
|
1446
|
-
value: string;
|
|
1447
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1448
|
-
values?: any[] | undefined;
|
|
1449
|
-
caseSensitive?: boolean | undefined;
|
|
1450
|
-
} | undefined;
|
|
1451
1435
|
type?: {
|
|
1452
1436
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1453
1437
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1477,17 +1461,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1477
1461
|
values?: number[] | undefined;
|
|
1478
1462
|
caseSensitive?: boolean | undefined;
|
|
1479
1463
|
} | undefined;
|
|
1480
|
-
created_by?: {
|
|
1481
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1482
|
-
value?: string | undefined;
|
|
1483
|
-
values?: string[] | undefined;
|
|
1484
|
-
caseSensitive?: boolean | undefined;
|
|
1485
|
-
} | undefined;
|
|
1486
|
-
search?: {
|
|
1487
|
-
query: string;
|
|
1488
|
-
searchableFields: string[];
|
|
1489
|
-
} | undefined;
|
|
1490
|
-
}, {
|
|
1491
1464
|
created_at?: {
|
|
1492
1465
|
operator: "isEmpty" | "isNotEmpty";
|
|
1493
1466
|
value?: any;
|
|
@@ -1504,6 +1477,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1504
1477
|
values?: any[] | undefined;
|
|
1505
1478
|
caseSensitive?: boolean | undefined;
|
|
1506
1479
|
} | undefined;
|
|
1480
|
+
created_by?: {
|
|
1481
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1482
|
+
value?: string | undefined;
|
|
1483
|
+
values?: string[] | undefined;
|
|
1484
|
+
caseSensitive?: boolean | undefined;
|
|
1485
|
+
} | undefined;
|
|
1486
|
+
search?: {
|
|
1487
|
+
query: string;
|
|
1488
|
+
searchableFields: string[];
|
|
1489
|
+
} | undefined;
|
|
1490
|
+
}, {
|
|
1507
1491
|
type?: {
|
|
1508
1492
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1509
1493
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1533,6 +1517,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1533
1517
|
values?: number[] | undefined;
|
|
1534
1518
|
caseSensitive?: boolean | undefined;
|
|
1535
1519
|
} | undefined;
|
|
1520
|
+
created_at?: {
|
|
1521
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
1522
|
+
value?: any;
|
|
1523
|
+
values?: any[] | undefined;
|
|
1524
|
+
caseSensitive?: boolean | undefined;
|
|
1525
|
+
} | {
|
|
1526
|
+
values: string[];
|
|
1527
|
+
operator: "between";
|
|
1528
|
+
value?: any;
|
|
1529
|
+
caseSensitive?: boolean | undefined;
|
|
1530
|
+
} | {
|
|
1531
|
+
value: string;
|
|
1532
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1533
|
+
values?: any[] | undefined;
|
|
1534
|
+
caseSensitive?: boolean | undefined;
|
|
1535
|
+
} | undefined;
|
|
1536
1536
|
created_by?: {
|
|
1537
1537
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1538
1538
|
value?: string | undefined;
|
|
@@ -1565,19 +1565,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
|
|
|
1565
1565
|
created_at: z.ZodString;
|
|
1566
1566
|
created_by: z.ZodString;
|
|
1567
1567
|
}, "strip", z.ZodTypeAny, {
|
|
1568
|
-
created_at: string;
|
|
1569
1568
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1570
1569
|
amount: string;
|
|
1571
1570
|
balance_after: string;
|
|
1571
|
+
created_at: string;
|
|
1572
1572
|
created_by: string;
|
|
1573
1573
|
id: string;
|
|
1574
1574
|
support_ticket_id?: string | null | undefined;
|
|
1575
1575
|
description?: string | null | undefined;
|
|
1576
1576
|
}, {
|
|
1577
|
-
created_at: string;
|
|
1578
1577
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1579
1578
|
amount: string;
|
|
1580
1579
|
balance_after: string;
|
|
1580
|
+
created_at: string;
|
|
1581
1581
|
created_by: string;
|
|
1582
1582
|
id: string;
|
|
1583
1583
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1598,19 +1598,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1598
1598
|
created_at: z.ZodString;
|
|
1599
1599
|
created_by: z.ZodString;
|
|
1600
1600
|
}, "strip", z.ZodTypeAny, {
|
|
1601
|
-
created_at: string;
|
|
1602
1601
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1603
1602
|
amount: string;
|
|
1604
1603
|
balance_after: string;
|
|
1604
|
+
created_at: string;
|
|
1605
1605
|
created_by: string;
|
|
1606
1606
|
id: string;
|
|
1607
1607
|
support_ticket_id?: string | null | undefined;
|
|
1608
1608
|
description?: string | null | undefined;
|
|
1609
1609
|
}, {
|
|
1610
|
-
created_at: string;
|
|
1611
1610
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1612
1611
|
amount: string;
|
|
1613
1612
|
balance_after: string;
|
|
1613
|
+
created_at: string;
|
|
1614
1614
|
created_by: string;
|
|
1615
1615
|
id: string;
|
|
1616
1616
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1640,10 +1640,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1640
1640
|
}>;
|
|
1641
1641
|
}, "strip", z.ZodTypeAny, {
|
|
1642
1642
|
items: {
|
|
1643
|
-
created_at: string;
|
|
1644
1643
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1645
1644
|
amount: string;
|
|
1646
1645
|
balance_after: string;
|
|
1646
|
+
created_at: string;
|
|
1647
1647
|
created_by: string;
|
|
1648
1648
|
id: string;
|
|
1649
1649
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1659,10 +1659,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1659
1659
|
};
|
|
1660
1660
|
}, {
|
|
1661
1661
|
items: {
|
|
1662
|
-
created_at: string;
|
|
1663
1662
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1664
1663
|
amount: string;
|
|
1665
1664
|
balance_after: string;
|
|
1665
|
+
created_at: string;
|
|
1666
1666
|
created_by: string;
|
|
1667
1667
|
id: string;
|
|
1668
1668
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1705,6 +1705,7 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1705
1705
|
first_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1706
1706
|
last_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1707
1707
|
avatar_url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1708
|
+
consents_complete: z.ZodOptional<z.ZodBoolean>;
|
|
1708
1709
|
subscriptions: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1709
1710
|
subscription_id: z.ZodString;
|
|
1710
1711
|
subscription_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1740,14 +1741,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1740
1741
|
price_currency?: string | null | undefined;
|
|
1741
1742
|
}>, "many">>>;
|
|
1742
1743
|
}, "strip", z.ZodTypeAny, {
|
|
1743
|
-
userId: string;
|
|
1744
1744
|
email: string;
|
|
1745
|
+
userId: string;
|
|
1745
1746
|
username: string;
|
|
1746
1747
|
email_verified: boolean;
|
|
1747
1748
|
user_type: string;
|
|
1748
1749
|
first_name?: string | null | undefined;
|
|
1749
1750
|
last_name?: string | null | undefined;
|
|
1750
1751
|
avatar_url?: string | null | undefined;
|
|
1752
|
+
consents_complete?: boolean | undefined;
|
|
1751
1753
|
subscriptions?: {
|
|
1752
1754
|
subscription_id: string;
|
|
1753
1755
|
subscription_created: string;
|
|
@@ -1761,14 +1763,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1761
1763
|
price_currency?: string | null | undefined;
|
|
1762
1764
|
}[] | null | undefined;
|
|
1763
1765
|
}, {
|
|
1764
|
-
userId: string;
|
|
1765
1766
|
email: string;
|
|
1767
|
+
userId: string;
|
|
1766
1768
|
username: string;
|
|
1767
1769
|
email_verified: boolean;
|
|
1768
1770
|
user_type: string;
|
|
1769
1771
|
first_name?: string | null | undefined;
|
|
1770
1772
|
last_name?: string | null | undefined;
|
|
1771
1773
|
avatar_url?: string | null | undefined;
|
|
1774
|
+
consents_complete?: boolean | undefined;
|
|
1772
1775
|
subscriptions?: {
|
|
1773
1776
|
subscription_id: string;
|
|
1774
1777
|
subscription_created: string;
|
|
@@ -1784,14 +1787,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1784
1787
|
}>;
|
|
1785
1788
|
}, "strip", z.ZodTypeAny, {
|
|
1786
1789
|
user: {
|
|
1787
|
-
userId: string;
|
|
1788
1790
|
email: string;
|
|
1791
|
+
userId: string;
|
|
1789
1792
|
username: string;
|
|
1790
1793
|
email_verified: boolean;
|
|
1791
1794
|
user_type: string;
|
|
1792
1795
|
first_name?: string | null | undefined;
|
|
1793
1796
|
last_name?: string | null | undefined;
|
|
1794
1797
|
avatar_url?: string | null | undefined;
|
|
1798
|
+
consents_complete?: boolean | undefined;
|
|
1795
1799
|
subscriptions?: {
|
|
1796
1800
|
subscription_id: string;
|
|
1797
1801
|
subscription_created: string;
|
|
@@ -1805,21 +1809,22 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1805
1809
|
price_currency?: string | null | undefined;
|
|
1806
1810
|
}[] | null | undefined;
|
|
1807
1811
|
};
|
|
1812
|
+
status: string;
|
|
1808
1813
|
created_at: string;
|
|
1809
1814
|
expires_at: string;
|
|
1810
|
-
status: string;
|
|
1811
1815
|
user_agent?: string | null | undefined;
|
|
1812
1816
|
ip_address?: string | null | undefined;
|
|
1813
1817
|
}, {
|
|
1814
1818
|
user: {
|
|
1815
|
-
userId: string;
|
|
1816
1819
|
email: string;
|
|
1820
|
+
userId: string;
|
|
1817
1821
|
username: string;
|
|
1818
1822
|
email_verified: boolean;
|
|
1819
1823
|
user_type: string;
|
|
1820
1824
|
first_name?: string | null | undefined;
|
|
1821
1825
|
last_name?: string | null | undefined;
|
|
1822
1826
|
avatar_url?: string | null | undefined;
|
|
1827
|
+
consents_complete?: boolean | undefined;
|
|
1823
1828
|
subscriptions?: {
|
|
1824
1829
|
subscription_id: string;
|
|
1825
1830
|
subscription_created: string;
|
|
@@ -1833,9 +1838,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1833
1838
|
price_currency?: string | null | undefined;
|
|
1834
1839
|
}[] | null | undefined;
|
|
1835
1840
|
};
|
|
1841
|
+
status: string;
|
|
1836
1842
|
created_at: string;
|
|
1837
1843
|
expires_at: string;
|
|
1838
|
-
status: string;
|
|
1839
1844
|
user_agent?: string | null | undefined;
|
|
1840
1845
|
ip_address?: string | null | undefined;
|
|
1841
1846
|
}>;
|
|
@@ -1855,6 +1860,7 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1855
1860
|
first_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1856
1861
|
last_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1857
1862
|
avatar_url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1863
|
+
consents_complete: z.ZodOptional<z.ZodBoolean>;
|
|
1858
1864
|
subscriptions: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1859
1865
|
subscription_id: z.ZodString;
|
|
1860
1866
|
subscription_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1890,14 +1896,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1890
1896
|
price_currency?: string | null | undefined;
|
|
1891
1897
|
}>, "many">>>;
|
|
1892
1898
|
}, "strip", z.ZodTypeAny, {
|
|
1893
|
-
userId: string;
|
|
1894
1899
|
email: string;
|
|
1900
|
+
userId: string;
|
|
1895
1901
|
username: string;
|
|
1896
1902
|
email_verified: boolean;
|
|
1897
1903
|
user_type: string;
|
|
1898
1904
|
first_name?: string | null | undefined;
|
|
1899
1905
|
last_name?: string | null | undefined;
|
|
1900
1906
|
avatar_url?: string | null | undefined;
|
|
1907
|
+
consents_complete?: boolean | undefined;
|
|
1901
1908
|
subscriptions?: {
|
|
1902
1909
|
subscription_id: string;
|
|
1903
1910
|
subscription_created: string;
|
|
@@ -1911,14 +1918,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1911
1918
|
price_currency?: string | null | undefined;
|
|
1912
1919
|
}[] | null | undefined;
|
|
1913
1920
|
}, {
|
|
1914
|
-
userId: string;
|
|
1915
1921
|
email: string;
|
|
1922
|
+
userId: string;
|
|
1916
1923
|
username: string;
|
|
1917
1924
|
email_verified: boolean;
|
|
1918
1925
|
user_type: string;
|
|
1919
1926
|
first_name?: string | null | undefined;
|
|
1920
1927
|
last_name?: string | null | undefined;
|
|
1921
1928
|
avatar_url?: string | null | undefined;
|
|
1929
|
+
consents_complete?: boolean | undefined;
|
|
1922
1930
|
subscriptions?: {
|
|
1923
1931
|
subscription_id: string;
|
|
1924
1932
|
subscription_created: string;
|
|
@@ -1934,14 +1942,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1934
1942
|
}>;
|
|
1935
1943
|
}, "strip", z.ZodTypeAny, {
|
|
1936
1944
|
user: {
|
|
1937
|
-
userId: string;
|
|
1938
1945
|
email: string;
|
|
1946
|
+
userId: string;
|
|
1939
1947
|
username: string;
|
|
1940
1948
|
email_verified: boolean;
|
|
1941
1949
|
user_type: string;
|
|
1942
1950
|
first_name?: string | null | undefined;
|
|
1943
1951
|
last_name?: string | null | undefined;
|
|
1944
1952
|
avatar_url?: string | null | undefined;
|
|
1953
|
+
consents_complete?: boolean | undefined;
|
|
1945
1954
|
subscriptions?: {
|
|
1946
1955
|
subscription_id: string;
|
|
1947
1956
|
subscription_created: string;
|
|
@@ -1955,21 +1964,22 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1955
1964
|
price_currency?: string | null | undefined;
|
|
1956
1965
|
}[] | null | undefined;
|
|
1957
1966
|
};
|
|
1967
|
+
status: string;
|
|
1958
1968
|
created_at: string;
|
|
1959
1969
|
expires_at: string;
|
|
1960
|
-
status: string;
|
|
1961
1970
|
user_agent?: string | null | undefined;
|
|
1962
1971
|
ip_address?: string | null | undefined;
|
|
1963
1972
|
}, {
|
|
1964
1973
|
user: {
|
|
1965
|
-
userId: string;
|
|
1966
1974
|
email: string;
|
|
1975
|
+
userId: string;
|
|
1967
1976
|
username: string;
|
|
1968
1977
|
email_verified: boolean;
|
|
1969
1978
|
user_type: string;
|
|
1970
1979
|
first_name?: string | null | undefined;
|
|
1971
1980
|
last_name?: string | null | undefined;
|
|
1972
1981
|
avatar_url?: string | null | undefined;
|
|
1982
|
+
consents_complete?: boolean | undefined;
|
|
1973
1983
|
subscriptions?: {
|
|
1974
1984
|
subscription_id: string;
|
|
1975
1985
|
subscription_created: string;
|
|
@@ -1983,9 +1993,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1983
1993
|
price_currency?: string | null | undefined;
|
|
1984
1994
|
}[] | null | undefined;
|
|
1985
1995
|
};
|
|
1996
|
+
status: string;
|
|
1986
1997
|
created_at: string;
|
|
1987
1998
|
expires_at: string;
|
|
1988
|
-
status: string;
|
|
1989
1999
|
user_agent?: string | null | undefined;
|
|
1990
2000
|
ip_address?: string | null | undefined;
|
|
1991
2001
|
}>;
|
|
@@ -1996,14 +2006,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1996
2006
|
refresh_token: string;
|
|
1997
2007
|
frontend_session: {
|
|
1998
2008
|
user: {
|
|
1999
|
-
userId: string;
|
|
2000
2009
|
email: string;
|
|
2010
|
+
userId: string;
|
|
2001
2011
|
username: string;
|
|
2002
2012
|
email_verified: boolean;
|
|
2003
2013
|
user_type: string;
|
|
2004
2014
|
first_name?: string | null | undefined;
|
|
2005
2015
|
last_name?: string | null | undefined;
|
|
2006
2016
|
avatar_url?: string | null | undefined;
|
|
2017
|
+
consents_complete?: boolean | undefined;
|
|
2007
2018
|
subscriptions?: {
|
|
2008
2019
|
subscription_id: string;
|
|
2009
2020
|
subscription_created: string;
|
|
@@ -2017,9 +2028,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2017
2028
|
price_currency?: string | null | undefined;
|
|
2018
2029
|
}[] | null | undefined;
|
|
2019
2030
|
};
|
|
2031
|
+
status: string;
|
|
2020
2032
|
created_at: string;
|
|
2021
2033
|
expires_at: string;
|
|
2022
|
-
status: string;
|
|
2023
2034
|
user_agent?: string | null | undefined;
|
|
2024
2035
|
ip_address?: string | null | undefined;
|
|
2025
2036
|
};
|
|
@@ -2029,14 +2040,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2029
2040
|
refresh_token: string;
|
|
2030
2041
|
frontend_session: {
|
|
2031
2042
|
user: {
|
|
2032
|
-
userId: string;
|
|
2033
2043
|
email: string;
|
|
2044
|
+
userId: string;
|
|
2034
2045
|
username: string;
|
|
2035
2046
|
email_verified: boolean;
|
|
2036
2047
|
user_type: string;
|
|
2037
2048
|
first_name?: string | null | undefined;
|
|
2038
2049
|
last_name?: string | null | undefined;
|
|
2039
2050
|
avatar_url?: string | null | undefined;
|
|
2051
|
+
consents_complete?: boolean | undefined;
|
|
2040
2052
|
subscriptions?: {
|
|
2041
2053
|
subscription_id: string;
|
|
2042
2054
|
subscription_created: string;
|
|
@@ -2050,9 +2062,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2050
2062
|
price_currency?: string | null | undefined;
|
|
2051
2063
|
}[] | null | undefined;
|
|
2052
2064
|
};
|
|
2065
|
+
status: string;
|
|
2053
2066
|
created_at: string;
|
|
2054
2067
|
expires_at: string;
|
|
2055
|
-
status: string;
|
|
2056
2068
|
user_agent?: string | null | undefined;
|
|
2057
2069
|
ip_address?: string | null | undefined;
|
|
2058
2070
|
};
|
|
@@ -2081,7 +2093,7 @@ type LoginInputDto = z.infer<typeof loginSchema>;
|
|
|
2081
2093
|
declare const NoteReadSchema: z.ZodObject<{
|
|
2082
2094
|
id: z.ZodString;
|
|
2083
2095
|
record_id: z.ZodString;
|
|
2084
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
2096
|
+
record_type: z.ZodEnum<["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"]>;
|
|
2085
2097
|
tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2086
2098
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2087
2099
|
body: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2102,7 +2114,7 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2102
2114
|
created_by: string;
|
|
2103
2115
|
id: string;
|
|
2104
2116
|
record_id: string;
|
|
2105
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2117
|
+
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";
|
|
2106
2118
|
is_internal: boolean;
|
|
2107
2119
|
updated_at?: string | null | undefined;
|
|
2108
2120
|
updated_by?: string | null | undefined;
|
|
@@ -2110,9 +2122,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2110
2122
|
archived_by?: string | null | undefined;
|
|
2111
2123
|
deleted_at?: string | null | undefined;
|
|
2112
2124
|
deleted_by?: string | null | undefined;
|
|
2113
|
-
tag?: string | null | undefined;
|
|
2114
2125
|
title?: string | null | undefined;
|
|
2115
2126
|
body?: string | null | undefined;
|
|
2127
|
+
tag?: string | null | undefined;
|
|
2116
2128
|
original_id?: number | null | undefined;
|
|
2117
2129
|
created_by_display_name?: string | null | undefined;
|
|
2118
2130
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2121,7 +2133,7 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2121
2133
|
created_by: string;
|
|
2122
2134
|
id: string;
|
|
2123
2135
|
record_id: string;
|
|
2124
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2136
|
+
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";
|
|
2125
2137
|
is_internal: boolean;
|
|
2126
2138
|
updated_at?: string | null | undefined;
|
|
2127
2139
|
updated_by?: string | null | undefined;
|
|
@@ -2129,9 +2141,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2129
2141
|
archived_by?: string | null | undefined;
|
|
2130
2142
|
deleted_at?: string | null | undefined;
|
|
2131
2143
|
deleted_by?: string | null | undefined;
|
|
2132
|
-
tag?: string | null | undefined;
|
|
2133
2144
|
title?: string | null | undefined;
|
|
2134
2145
|
body?: string | null | undefined;
|
|
2146
|
+
tag?: string | null | undefined;
|
|
2135
2147
|
original_id?: number | null | undefined;
|
|
2136
2148
|
created_by_display_name?: string | null | undefined;
|
|
2137
2149
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2141,7 +2153,7 @@ type NoteReadDto = z.infer<typeof NoteReadSchema>;
|
|
|
2141
2153
|
//#region src/validation/note/note_create_zod.d.ts
|
|
2142
2154
|
declare const NoteCreateSchema: z.ZodObject<{
|
|
2143
2155
|
record_id: z.ZodString;
|
|
2144
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
2156
|
+
record_type: z.ZodEnum<["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"]>;
|
|
2145
2157
|
tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2146
2158
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2147
2159
|
body: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2149,20 +2161,20 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2149
2161
|
is_internal: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2150
2162
|
}, "strip", z.ZodTypeAny, {
|
|
2151
2163
|
record_id: string;
|
|
2152
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2164
|
+
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";
|
|
2153
2165
|
is_internal: boolean;
|
|
2154
|
-
tag?: string | null | undefined;
|
|
2155
2166
|
title?: string | null | undefined;
|
|
2156
2167
|
body?: string | null | undefined;
|
|
2168
|
+
tag?: string | null | undefined;
|
|
2157
2169
|
original_id?: number | null | undefined;
|
|
2158
2170
|
}, {
|
|
2159
2171
|
record_id: string;
|
|
2160
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2161
|
-
tag?: string | null | undefined;
|
|
2172
|
+
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";
|
|
2162
2173
|
title?: string | null | undefined;
|
|
2163
2174
|
body?: string | null | undefined;
|
|
2164
|
-
|
|
2175
|
+
tag?: string | null | undefined;
|
|
2165
2176
|
is_internal?: boolean | undefined;
|
|
2177
|
+
original_id?: number | null | undefined;
|
|
2166
2178
|
}>;
|
|
2167
2179
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2168
2180
|
//#endregion
|
|
@@ -2170,7 +2182,7 @@ type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
|
2170
2182
|
declare const NoteUpdateSchema: z.ZodObject<{
|
|
2171
2183
|
id: z.ZodString;
|
|
2172
2184
|
record_id: z.ZodOptional<z.ZodString>;
|
|
2173
|
-
record_type: z.ZodOptional<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>>;
|
|
2185
|
+
record_type: z.ZodOptional<z.ZodEnum<["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"]>>;
|
|
2174
2186
|
tag: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2175
2187
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2176
2188
|
body: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2179,21 +2191,21 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2179
2191
|
}, "strip", z.ZodTypeAny, {
|
|
2180
2192
|
id: string;
|
|
2181
2193
|
record_id?: string | undefined;
|
|
2182
|
-
record_type?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2183
|
-
tag?: string | null | undefined;
|
|
2194
|
+
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;
|
|
2184
2195
|
title?: string | null | undefined;
|
|
2185
2196
|
body?: string | null | undefined;
|
|
2186
|
-
|
|
2197
|
+
tag?: string | null | undefined;
|
|
2187
2198
|
is_internal?: boolean | undefined;
|
|
2199
|
+
original_id?: number | null | undefined;
|
|
2188
2200
|
}, {
|
|
2189
2201
|
id: string;
|
|
2190
2202
|
record_id?: string | undefined;
|
|
2191
|
-
record_type?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2192
|
-
tag?: string | null | undefined;
|
|
2203
|
+
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;
|
|
2193
2204
|
title?: string | null | undefined;
|
|
2194
2205
|
body?: string | null | undefined;
|
|
2195
|
-
|
|
2206
|
+
tag?: string | null | undefined;
|
|
2196
2207
|
is_internal?: boolean | undefined;
|
|
2208
|
+
original_id?: number | null | undefined;
|
|
2197
2209
|
}>;
|
|
2198
2210
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2199
2211
|
//#endregion
|
|
@@ -2248,27 +2260,27 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2248
2260
|
caseSensitive: z.ZodOptional<z.ZodBoolean>;
|
|
2249
2261
|
} & {
|
|
2250
2262
|
operator: z.ZodEnum<["eq", "ne", "in", "notIn"]>;
|
|
2251
|
-
value: z.ZodOptional<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>>;
|
|
2252
|
-
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>, "many">>;
|
|
2263
|
+
value: z.ZodOptional<z.ZodEnum<["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"]>>;
|
|
2264
|
+
values: z.ZodOptional<z.ZodArray<z.ZodEnum<["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"]>, "many">>;
|
|
2253
2265
|
}, "strip", z.ZodTypeAny, {
|
|
2254
2266
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2255
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2256
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2267
|
+
value?: "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;
|
|
2268
|
+
values?: ("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;
|
|
2257
2269
|
caseSensitive?: boolean | undefined;
|
|
2258
2270
|
}, {
|
|
2259
2271
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2260
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2261
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2272
|
+
value?: "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;
|
|
2273
|
+
values?: ("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;
|
|
2262
2274
|
caseSensitive?: boolean | undefined;
|
|
2263
2275
|
}>, {
|
|
2264
2276
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2265
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2266
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2277
|
+
value?: "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;
|
|
2278
|
+
values?: ("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;
|
|
2267
2279
|
caseSensitive?: boolean | undefined;
|
|
2268
2280
|
}, {
|
|
2269
2281
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2270
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2271
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2282
|
+
value?: "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;
|
|
2283
|
+
values?: ("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;
|
|
2272
2284
|
caseSensitive?: boolean | undefined;
|
|
2273
2285
|
}>>;
|
|
2274
2286
|
title: z.ZodOptional<z.ZodEffects<z.ZodObject<{} & {
|
|
@@ -2555,6 +2567,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2555
2567
|
searchableFields: string[];
|
|
2556
2568
|
}>>;
|
|
2557
2569
|
}, "strip", z.ZodTypeAny, {
|
|
2570
|
+
first?: number | undefined;
|
|
2571
|
+
after?: string | undefined;
|
|
2572
|
+
sortBy?: string | undefined;
|
|
2573
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2574
|
+
paginationToken?: string | undefined;
|
|
2558
2575
|
created_at?: {
|
|
2559
2576
|
operator: "isEmpty" | "isNotEmpty";
|
|
2560
2577
|
value?: any;
|
|
@@ -2571,11 +2588,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2571
2588
|
values?: any[] | undefined;
|
|
2572
2589
|
caseSensitive?: boolean | undefined;
|
|
2573
2590
|
} | undefined;
|
|
2574
|
-
first?: number | undefined;
|
|
2575
|
-
after?: string | undefined;
|
|
2576
|
-
sortBy?: string | undefined;
|
|
2577
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2578
|
-
paginationToken?: string | undefined;
|
|
2579
2591
|
search?: {
|
|
2580
2592
|
query: string;
|
|
2581
2593
|
searchableFields: string[];
|
|
@@ -2588,8 +2600,8 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2588
2600
|
} | undefined;
|
|
2589
2601
|
record_type?: {
|
|
2590
2602
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2591
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2592
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2603
|
+
value?: "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;
|
|
2604
|
+
values?: ("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;
|
|
2593
2605
|
caseSensitive?: boolean | undefined;
|
|
2594
2606
|
} | undefined;
|
|
2595
2607
|
updated_at?: {
|
|
@@ -2608,19 +2620,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2608
2620
|
values?: any[] | undefined;
|
|
2609
2621
|
caseSensitive?: boolean | undefined;
|
|
2610
2622
|
} | undefined;
|
|
2611
|
-
|
|
2623
|
+
title?: {
|
|
2612
2624
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2613
2625
|
value?: string | undefined;
|
|
2614
2626
|
values?: string[] | undefined;
|
|
2615
2627
|
caseSensitive?: boolean | undefined;
|
|
2616
2628
|
} | undefined;
|
|
2617
|
-
|
|
2629
|
+
body?: {
|
|
2618
2630
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2619
2631
|
value?: string | undefined;
|
|
2620
2632
|
values?: string[] | undefined;
|
|
2621
2633
|
caseSensitive?: boolean | undefined;
|
|
2622
2634
|
} | undefined;
|
|
2623
|
-
|
|
2635
|
+
tag?: {
|
|
2624
2636
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2625
2637
|
value?: string | undefined;
|
|
2626
2638
|
values?: string[] | undefined;
|
|
@@ -2633,6 +2645,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2633
2645
|
caseSensitive?: boolean | undefined;
|
|
2634
2646
|
} | undefined;
|
|
2635
2647
|
}, {
|
|
2648
|
+
first?: number | undefined;
|
|
2649
|
+
after?: string | undefined;
|
|
2650
|
+
sortBy?: string | undefined;
|
|
2651
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2652
|
+
paginationToken?: string | undefined;
|
|
2636
2653
|
created_at?: {
|
|
2637
2654
|
operator: "isEmpty" | "isNotEmpty";
|
|
2638
2655
|
value?: any;
|
|
@@ -2649,11 +2666,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2649
2666
|
values?: any[] | undefined;
|
|
2650
2667
|
caseSensitive?: boolean | undefined;
|
|
2651
2668
|
} | undefined;
|
|
2652
|
-
first?: number | undefined;
|
|
2653
|
-
after?: string | undefined;
|
|
2654
|
-
sortBy?: string | undefined;
|
|
2655
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2656
|
-
paginationToken?: string | undefined;
|
|
2657
2669
|
search?: {
|
|
2658
2670
|
query: string;
|
|
2659
2671
|
searchableFields: string[];
|
|
@@ -2666,8 +2678,8 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2666
2678
|
} | undefined;
|
|
2667
2679
|
record_type?: {
|
|
2668
2680
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
2669
|
-
value?: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | undefined;
|
|
2670
|
-
values?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
2681
|
+
value?: "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;
|
|
2682
|
+
values?: ("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;
|
|
2671
2683
|
caseSensitive?: boolean | undefined;
|
|
2672
2684
|
} | undefined;
|
|
2673
2685
|
updated_at?: {
|
|
@@ -2686,19 +2698,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2686
2698
|
values?: any[] | undefined;
|
|
2687
2699
|
caseSensitive?: boolean | undefined;
|
|
2688
2700
|
} | undefined;
|
|
2689
|
-
|
|
2701
|
+
title?: {
|
|
2690
2702
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2691
2703
|
value?: string | undefined;
|
|
2692
2704
|
values?: string[] | undefined;
|
|
2693
2705
|
caseSensitive?: boolean | undefined;
|
|
2694
2706
|
} | undefined;
|
|
2695
|
-
|
|
2707
|
+
body?: {
|
|
2696
2708
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2697
2709
|
value?: string | undefined;
|
|
2698
2710
|
values?: string[] | undefined;
|
|
2699
2711
|
caseSensitive?: boolean | undefined;
|
|
2700
2712
|
} | undefined;
|
|
2701
|
-
|
|
2713
|
+
tag?: {
|
|
2702
2714
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2703
2715
|
value?: string | undefined;
|
|
2704
2716
|
values?: string[] | undefined;
|
|
@@ -2715,6 +2727,20 @@ type NoteFiltersDto = z.infer<typeof NoteFiltersSchema>;
|
|
|
2715
2727
|
declare const NoteFiltersSortDirectionEnum: z.ZodEnum<["asc", "desc"]>;
|
|
2716
2728
|
type NoteFiltersSortDirectionEnum = z.infer<typeof NoteFiltersSortDirectionEnum>;
|
|
2717
2729
|
//#endregion
|
|
2730
|
+
//#region src/validation/record_consents_zod.d.ts
|
|
2731
|
+
/**
|
|
2732
|
+
* Input for recording consent acceptances (re-consent flow).
|
|
2733
|
+
* acceptances: Record<consent_type, boolean> - keys from getPendingConsents.
|
|
2734
|
+
*/
|
|
2735
|
+
declare const recordConsentsSchema: z.ZodObject<{
|
|
2736
|
+
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
2737
|
+
}, "strip", z.ZodTypeAny, {
|
|
2738
|
+
acceptances: Record<string, boolean>;
|
|
2739
|
+
}, {
|
|
2740
|
+
acceptances?: Record<string, boolean> | undefined;
|
|
2741
|
+
}>;
|
|
2742
|
+
type RecordConsentsInputDto = z.infer<typeof recordConsentsSchema>;
|
|
2743
|
+
//#endregion
|
|
2718
2744
|
//#region src/validation/record_version_zod.d.ts
|
|
2719
2745
|
declare const recordVersionSchema: z.ZodObject<{
|
|
2720
2746
|
id: z.ZodString;
|
|
@@ -2860,7 +2886,7 @@ declare const recordVersionFiltersSchema: z.ZodObject<{
|
|
|
2860
2886
|
declare const recordVersionFiltersInputSchema: z.ZodObject<{
|
|
2861
2887
|
record_id: z.ZodString;
|
|
2862
2888
|
/** @deprecated Use record_types in filters instead. record_types takes priority when both are provided. */
|
|
2863
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
2889
|
+
record_type: z.ZodEnum<["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"]>;
|
|
2864
2890
|
filters: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2865
2891
|
start_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2866
2892
|
end_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -2879,7 +2905,7 @@ declare const recordVersionFiltersInputSchema: z.ZodObject<{
|
|
|
2879
2905
|
}>>>;
|
|
2880
2906
|
}, "strip", z.ZodTypeAny, {
|
|
2881
2907
|
record_id: string;
|
|
2882
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2908
|
+
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";
|
|
2883
2909
|
filters?: {
|
|
2884
2910
|
start_date?: string | null | undefined;
|
|
2885
2911
|
end_date?: string | null | undefined;
|
|
@@ -2888,7 +2914,7 @@ declare const recordVersionFiltersInputSchema: z.ZodObject<{
|
|
|
2888
2914
|
} | null | undefined;
|
|
2889
2915
|
}, {
|
|
2890
2916
|
record_id: string;
|
|
2891
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
2917
|
+
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";
|
|
2892
2918
|
filters?: {
|
|
2893
2919
|
start_date?: string | null | undefined;
|
|
2894
2920
|
end_date?: string | null | undefined;
|
|
@@ -3023,7 +3049,7 @@ declare const recordVersionFiltersBreadcrumbSchema: z.ZodObject<{
|
|
|
3023
3049
|
start_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3024
3050
|
end_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3025
3051
|
/** When provided, fetches versions for these record types and merges. Takes priority over record_type. */
|
|
3026
|
-
record_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>, "many">>;
|
|
3052
|
+
record_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["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"]>, "many">>;
|
|
3027
3053
|
/** When provided, fetches versions for these record IDs (e.g. tracker + followup IDs). Used for activity views. */
|
|
3028
3054
|
record_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3029
3055
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3036,7 +3062,7 @@ declare const recordVersionFiltersBreadcrumbSchema: z.ZodObject<{
|
|
|
3036
3062
|
end_date?: string | null | undefined;
|
|
3037
3063
|
last?: number | undefined;
|
|
3038
3064
|
before?: string | undefined;
|
|
3039
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3065
|
+
record_types?: ("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;
|
|
3040
3066
|
record_ids?: string[] | undefined;
|
|
3041
3067
|
}, {
|
|
3042
3068
|
first?: number | undefined;
|
|
@@ -3048,13 +3074,13 @@ declare const recordVersionFiltersBreadcrumbSchema: z.ZodObject<{
|
|
|
3048
3074
|
end_date?: string | null | undefined;
|
|
3049
3075
|
last?: number | undefined;
|
|
3050
3076
|
before?: string | undefined;
|
|
3051
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3077
|
+
record_types?: ("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;
|
|
3052
3078
|
record_ids?: string[] | undefined;
|
|
3053
3079
|
}>;
|
|
3054
3080
|
declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
3055
3081
|
record_id: z.ZodString;
|
|
3056
3082
|
/** @deprecated Use record_types in filters instead. record_types takes priority when both are provided. */
|
|
3057
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3083
|
+
record_type: z.ZodEnum<["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"]>;
|
|
3058
3084
|
filters: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
3059
3085
|
first: z.ZodOptional<z.ZodNumber>;
|
|
3060
3086
|
after: z.ZodOptional<z.ZodString>;
|
|
@@ -3066,7 +3092,7 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3066
3092
|
start_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3067
3093
|
end_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3068
3094
|
/** When provided, fetches versions for these record types and merges. Takes priority over record_type. */
|
|
3069
|
-
record_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>, "many">>;
|
|
3095
|
+
record_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["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"]>, "many">>;
|
|
3070
3096
|
/** When provided, fetches versions for these record IDs (e.g. tracker + followup IDs). Used for activity views. */
|
|
3071
3097
|
record_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3072
3098
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3079,7 +3105,7 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3079
3105
|
end_date?: string | null | undefined;
|
|
3080
3106
|
last?: number | undefined;
|
|
3081
3107
|
before?: string | undefined;
|
|
3082
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3108
|
+
record_types?: ("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;
|
|
3083
3109
|
record_ids?: string[] | undefined;
|
|
3084
3110
|
}, {
|
|
3085
3111
|
first?: number | undefined;
|
|
@@ -3091,12 +3117,12 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3091
3117
|
end_date?: string | null | undefined;
|
|
3092
3118
|
last?: number | undefined;
|
|
3093
3119
|
before?: string | undefined;
|
|
3094
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3120
|
+
record_types?: ("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;
|
|
3095
3121
|
record_ids?: string[] | undefined;
|
|
3096
3122
|
}>>>;
|
|
3097
3123
|
}, "strip", z.ZodTypeAny, {
|
|
3098
3124
|
record_id: string;
|
|
3099
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3125
|
+
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";
|
|
3100
3126
|
filters?: {
|
|
3101
3127
|
first?: number | undefined;
|
|
3102
3128
|
after?: string | undefined;
|
|
@@ -3107,12 +3133,12 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3107
3133
|
end_date?: string | null | undefined;
|
|
3108
3134
|
last?: number | undefined;
|
|
3109
3135
|
before?: string | undefined;
|
|
3110
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3136
|
+
record_types?: ("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;
|
|
3111
3137
|
record_ids?: string[] | undefined;
|
|
3112
3138
|
} | null | undefined;
|
|
3113
3139
|
}, {
|
|
3114
3140
|
record_id: string;
|
|
3115
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3141
|
+
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";
|
|
3116
3142
|
filters?: {
|
|
3117
3143
|
first?: number | undefined;
|
|
3118
3144
|
after?: string | undefined;
|
|
@@ -3123,7 +3149,7 @@ declare const recordVersionFiltersInputBreadcrumbSchema: z.ZodObject<{
|
|
|
3123
3149
|
end_date?: string | null | undefined;
|
|
3124
3150
|
last?: number | undefined;
|
|
3125
3151
|
before?: string | undefined;
|
|
3126
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3152
|
+
record_types?: ("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;
|
|
3127
3153
|
record_ids?: string[] | undefined;
|
|
3128
3154
|
} | null | undefined;
|
|
3129
3155
|
}>;
|
|
@@ -3141,7 +3167,7 @@ declare const recordVersionTrackerActivityInputSchema: z.ZodObject<{
|
|
|
3141
3167
|
start_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3142
3168
|
end_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3143
3169
|
/** When provided, fetches versions for these record types and merges. Takes priority over record_type. */
|
|
3144
|
-
record_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>, "many">>;
|
|
3170
|
+
record_types: z.ZodOptional<z.ZodArray<z.ZodEnum<["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"]>, "many">>;
|
|
3145
3171
|
/** When provided, fetches versions for these record IDs (e.g. tracker + followup IDs). Used for activity views. */
|
|
3146
3172
|
record_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3147
3173
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3154,7 +3180,7 @@ declare const recordVersionTrackerActivityInputSchema: z.ZodObject<{
|
|
|
3154
3180
|
end_date?: string | null | undefined;
|
|
3155
3181
|
last?: number | undefined;
|
|
3156
3182
|
before?: string | undefined;
|
|
3157
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3183
|
+
record_types?: ("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;
|
|
3158
3184
|
record_ids?: string[] | undefined;
|
|
3159
3185
|
}, {
|
|
3160
3186
|
first?: number | undefined;
|
|
@@ -3166,7 +3192,7 @@ declare const recordVersionTrackerActivityInputSchema: z.ZodObject<{
|
|
|
3166
3192
|
end_date?: string | null | undefined;
|
|
3167
3193
|
last?: number | undefined;
|
|
3168
3194
|
before?: string | undefined;
|
|
3169
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3195
|
+
record_types?: ("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;
|
|
3170
3196
|
record_ids?: string[] | undefined;
|
|
3171
3197
|
}>>>;
|
|
3172
3198
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3181,7 +3207,7 @@ declare const recordVersionTrackerActivityInputSchema: z.ZodObject<{
|
|
|
3181
3207
|
end_date?: string | null | undefined;
|
|
3182
3208
|
last?: number | undefined;
|
|
3183
3209
|
before?: string | undefined;
|
|
3184
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3210
|
+
record_types?: ("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;
|
|
3185
3211
|
record_ids?: string[] | undefined;
|
|
3186
3212
|
} | null | undefined;
|
|
3187
3213
|
}, {
|
|
@@ -3196,7 +3222,7 @@ declare const recordVersionTrackerActivityInputSchema: z.ZodObject<{
|
|
|
3196
3222
|
end_date?: string | null | undefined;
|
|
3197
3223
|
last?: number | undefined;
|
|
3198
3224
|
before?: string | undefined;
|
|
3199
|
-
record_types?: ("attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff")[] | undefined;
|
|
3225
|
+
record_types?: ("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;
|
|
3200
3226
|
record_ids?: string[] | undefined;
|
|
3201
3227
|
} | null | undefined;
|
|
3202
3228
|
}>;
|
|
@@ -3362,7 +3388,158 @@ declare const resetPasswordSchema: z.ZodObject<{
|
|
|
3362
3388
|
type ResetPasswordDto = z.infer<typeof resetPasswordSchema>;
|
|
3363
3389
|
type ResetPasswordInputDto = z.infer<typeof resetPasswordInputSchema>;
|
|
3364
3390
|
//#endregion
|
|
3391
|
+
//#region src/validation/signup_requirements_zod.d.ts
|
|
3392
|
+
/**
|
|
3393
|
+
* Single consent config returned to the signup form.
|
|
3394
|
+
* Supports any number of consents - add new types via app settings.
|
|
3395
|
+
*/
|
|
3396
|
+
declare const SignupConsentConfigSchema: z.ZodObject<{
|
|
3397
|
+
type: z.ZodString;
|
|
3398
|
+
required: z.ZodBoolean;
|
|
3399
|
+
url: z.ZodString;
|
|
3400
|
+
label: z.ZodString;
|
|
3401
|
+
/** Version identifier (e.g. "2025.1"). Required for versioned re-consent. */
|
|
3402
|
+
version: z.ZodString;
|
|
3403
|
+
/** When this version becomes enforceable for existing users. ISO 8601 datetime (e.g. 2025-02-27T14:30:00.000Z). Set to now for immediate effect. */
|
|
3404
|
+
effective_at: z.ZodString;
|
|
3405
|
+
/** Optional inline terms content (Markdown supported). When provided, displayed in scroll box; user must scroll to bottom before accepting. */
|
|
3406
|
+
content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3407
|
+
}, "strip", z.ZodTypeAny, {
|
|
3408
|
+
type: string;
|
|
3409
|
+
required: boolean;
|
|
3410
|
+
url: string;
|
|
3411
|
+
label: string;
|
|
3412
|
+
version: string;
|
|
3413
|
+
effective_at: string;
|
|
3414
|
+
content?: string | null | undefined;
|
|
3415
|
+
}, {
|
|
3416
|
+
type: string;
|
|
3417
|
+
required: boolean;
|
|
3418
|
+
url: string;
|
|
3419
|
+
label: string;
|
|
3420
|
+
version: string;
|
|
3421
|
+
effective_at: string;
|
|
3422
|
+
content?: string | null | undefined;
|
|
3423
|
+
}>;
|
|
3424
|
+
type SignupConsentConfigDto = z.infer<typeof SignupConsentConfigSchema>;
|
|
3425
|
+
/**
|
|
3426
|
+
* Array of consent configs - consumer adds items via admin/settings.
|
|
3427
|
+
*/
|
|
3428
|
+
declare const SignupRequirementsSchema: z.ZodArray<z.ZodObject<{
|
|
3429
|
+
type: z.ZodString;
|
|
3430
|
+
required: z.ZodBoolean;
|
|
3431
|
+
url: z.ZodString;
|
|
3432
|
+
label: z.ZodString;
|
|
3433
|
+
/** Version identifier (e.g. "2025.1"). Required for versioned re-consent. */
|
|
3434
|
+
version: z.ZodString;
|
|
3435
|
+
/** When this version becomes enforceable for existing users. ISO 8601 datetime (e.g. 2025-02-27T14:30:00.000Z). Set to now for immediate effect. */
|
|
3436
|
+
effective_at: z.ZodString;
|
|
3437
|
+
/** Optional inline terms content (Markdown supported). When provided, displayed in scroll box; user must scroll to bottom before accepting. */
|
|
3438
|
+
content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3439
|
+
}, "strip", z.ZodTypeAny, {
|
|
3440
|
+
type: string;
|
|
3441
|
+
required: boolean;
|
|
3442
|
+
url: string;
|
|
3443
|
+
label: string;
|
|
3444
|
+
version: string;
|
|
3445
|
+
effective_at: string;
|
|
3446
|
+
content?: string | null | undefined;
|
|
3447
|
+
}, {
|
|
3448
|
+
type: string;
|
|
3449
|
+
required: boolean;
|
|
3450
|
+
url: string;
|
|
3451
|
+
label: string;
|
|
3452
|
+
version: string;
|
|
3453
|
+
effective_at: string;
|
|
3454
|
+
content?: string | null | undefined;
|
|
3455
|
+
}>, "many">;
|
|
3456
|
+
type SignupRequirementsDto = z.infer<typeof SignupRequirementsSchema>;
|
|
3457
|
+
/**
|
|
3458
|
+
* Form schema for admin UI. effective_at accepts datetime-local format (YYYY-MM-DDTHH:mm).
|
|
3459
|
+
* Transform to ISO before sending to API.
|
|
3460
|
+
*/
|
|
3461
|
+
declare const SignupConsentItemFormSchema: z.ZodObject<{
|
|
3462
|
+
type: z.ZodString;
|
|
3463
|
+
required: z.ZodBoolean;
|
|
3464
|
+
url: z.ZodString;
|
|
3465
|
+
label: z.ZodString;
|
|
3466
|
+
version: z.ZodString;
|
|
3467
|
+
/** datetime-local format (YYYY-MM-DDTHH:mm). Validates format and that it parses to a valid date. */
|
|
3468
|
+
effective_at: z.ZodString;
|
|
3469
|
+
content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3470
|
+
}, "strip", z.ZodTypeAny, {
|
|
3471
|
+
type: string;
|
|
3472
|
+
required: boolean;
|
|
3473
|
+
url: string;
|
|
3474
|
+
label: string;
|
|
3475
|
+
version: string;
|
|
3476
|
+
effective_at: string;
|
|
3477
|
+
content?: string | null | undefined;
|
|
3478
|
+
}, {
|
|
3479
|
+
type: string;
|
|
3480
|
+
required: boolean;
|
|
3481
|
+
url: string;
|
|
3482
|
+
label: string;
|
|
3483
|
+
version: string;
|
|
3484
|
+
effective_at: string;
|
|
3485
|
+
content?: string | null | undefined;
|
|
3486
|
+
}>;
|
|
3487
|
+
declare const SignupRequirementsFormSchema: z.ZodObject<{
|
|
3488
|
+
items: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
3489
|
+
type: z.ZodString;
|
|
3490
|
+
required: z.ZodBoolean;
|
|
3491
|
+
url: z.ZodString;
|
|
3492
|
+
label: z.ZodString;
|
|
3493
|
+
version: z.ZodString;
|
|
3494
|
+
/** datetime-local format (YYYY-MM-DDTHH:mm). Validates format and that it parses to a valid date. */
|
|
3495
|
+
effective_at: z.ZodString;
|
|
3496
|
+
content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3497
|
+
}, "strip", z.ZodTypeAny, {
|
|
3498
|
+
type: string;
|
|
3499
|
+
required: boolean;
|
|
3500
|
+
url: string;
|
|
3501
|
+
label: string;
|
|
3502
|
+
version: string;
|
|
3503
|
+
effective_at: string;
|
|
3504
|
+
content?: string | null | undefined;
|
|
3505
|
+
}, {
|
|
3506
|
+
type: string;
|
|
3507
|
+
required: boolean;
|
|
3508
|
+
url: string;
|
|
3509
|
+
label: string;
|
|
3510
|
+
version: string;
|
|
3511
|
+
effective_at: string;
|
|
3512
|
+
content?: string | null | undefined;
|
|
3513
|
+
}>, "many">>;
|
|
3514
|
+
}, "strip", z.ZodTypeAny, {
|
|
3515
|
+
items: {
|
|
3516
|
+
type: string;
|
|
3517
|
+
required: boolean;
|
|
3518
|
+
url: string;
|
|
3519
|
+
label: string;
|
|
3520
|
+
version: string;
|
|
3521
|
+
effective_at: string;
|
|
3522
|
+
content?: string | null | undefined;
|
|
3523
|
+
}[];
|
|
3524
|
+
}, {
|
|
3525
|
+
items?: {
|
|
3526
|
+
type: string;
|
|
3527
|
+
required: boolean;
|
|
3528
|
+
url: string;
|
|
3529
|
+
label: string;
|
|
3530
|
+
version: string;
|
|
3531
|
+
effective_at: string;
|
|
3532
|
+
content?: string | null | undefined;
|
|
3533
|
+
}[] | undefined;
|
|
3534
|
+
}>;
|
|
3535
|
+
type SignupConsentItemFormDto = z.infer<typeof SignupConsentItemFormSchema>;
|
|
3536
|
+
type SignupRequirementsFormDto = z.infer<typeof SignupRequirementsFormSchema>;
|
|
3537
|
+
//#endregion
|
|
3365
3538
|
//#region src/validation/signup_zod.d.ts
|
|
3539
|
+
/**
|
|
3540
|
+
* acceptances: Record<consent_type, boolean> - supports any number of consents.
|
|
3541
|
+
* Keys come from consumer-provided signup requirements (hardcoded, must match backend config).
|
|
3542
|
+
*/
|
|
3366
3543
|
declare const signupSchema: z.ZodObject<{
|
|
3367
3544
|
email: z.ZodString;
|
|
3368
3545
|
passwords: z.ZodEffects<z.ZodObject<{
|
|
@@ -3381,35 +3558,39 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3381
3558
|
password: string;
|
|
3382
3559
|
password_confirm: string;
|
|
3383
3560
|
}>;
|
|
3561
|
+
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
3384
3562
|
}, "strip", z.ZodTypeAny, {
|
|
3385
|
-
email: string;
|
|
3386
3563
|
passwords: {
|
|
3387
3564
|
password: string;
|
|
3388
3565
|
password_confirm: string;
|
|
3389
3566
|
};
|
|
3390
|
-
}, {
|
|
3391
3567
|
email: string;
|
|
3568
|
+
acceptances: Record<string, boolean>;
|
|
3569
|
+
}, {
|
|
3392
3570
|
passwords: {
|
|
3393
3571
|
password: string;
|
|
3394
3572
|
password_confirm: string;
|
|
3395
3573
|
};
|
|
3574
|
+
email: string;
|
|
3575
|
+
acceptances?: Record<string, boolean> | undefined;
|
|
3396
3576
|
}>;
|
|
3397
|
-
|
|
3577
|
+
/** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
|
|
3578
|
+
type SignupInputDto = z.output<typeof signupSchema>;
|
|
3398
3579
|
//#endregion
|
|
3399
3580
|
//#region src/validation/record_subscriber/record_subscriber_create_zod.d.ts
|
|
3400
3581
|
declare const RecordSubscriberCreateSchema: z.ZodObject<{
|
|
3401
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3582
|
+
record_type: z.ZodEnum<["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"]>;
|
|
3402
3583
|
record_id: z.ZodString;
|
|
3403
3584
|
user_id: z.ZodString;
|
|
3404
3585
|
subscribed_events: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
|
|
3405
3586
|
}, "strip", z.ZodTypeAny, {
|
|
3406
3587
|
record_id: string;
|
|
3407
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3588
|
+
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";
|
|
3408
3589
|
user_id: string;
|
|
3409
3590
|
subscribed_events?: string[] | null | undefined;
|
|
3410
3591
|
}, {
|
|
3411
3592
|
record_id: string;
|
|
3412
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3593
|
+
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";
|
|
3413
3594
|
user_id: string;
|
|
3414
3595
|
subscribed_events?: string[] | null | undefined;
|
|
3415
3596
|
}>;
|
|
@@ -3418,7 +3599,7 @@ type RecordSubscriberCreateDto = z.infer<typeof RecordSubscriberCreateSchema>;
|
|
|
3418
3599
|
//#region src/validation/record_subscriber/record_subscriber_read_zod.d.ts
|
|
3419
3600
|
declare const RecordSubscriberReadSchema: z.ZodObject<{
|
|
3420
3601
|
id: z.ZodString;
|
|
3421
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3602
|
+
record_type: z.ZodEnum<["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"]>;
|
|
3422
3603
|
record_id: z.ZodString;
|
|
3423
3604
|
user_id: z.ZodString;
|
|
3424
3605
|
user_id_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3431,7 +3612,7 @@ declare const RecordSubscriberReadSchema: z.ZodObject<{
|
|
|
3431
3612
|
created_by: string;
|
|
3432
3613
|
id: string;
|
|
3433
3614
|
record_id: string;
|
|
3434
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3615
|
+
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";
|
|
3435
3616
|
user_id: string;
|
|
3436
3617
|
created_by_display_name?: string | null | undefined;
|
|
3437
3618
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -3441,7 +3622,7 @@ declare const RecordSubscriberReadSchema: z.ZodObject<{
|
|
|
3441
3622
|
created_by: string;
|
|
3442
3623
|
id: string;
|
|
3443
3624
|
record_id: string;
|
|
3444
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3625
|
+
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";
|
|
3445
3626
|
user_id: string;
|
|
3446
3627
|
created_by_display_name?: string | null | undefined;
|
|
3447
3628
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -3661,7 +3842,7 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3661
3842
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3662
3843
|
my_subscription: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3663
3844
|
id: z.ZodString;
|
|
3664
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3845
|
+
record_type: z.ZodEnum<["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"]>;
|
|
3665
3846
|
record_id: z.ZodString;
|
|
3666
3847
|
user_id: z.ZodString;
|
|
3667
3848
|
user_id_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3674,7 +3855,7 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3674
3855
|
created_by: string;
|
|
3675
3856
|
id: string;
|
|
3676
3857
|
record_id: string;
|
|
3677
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3858
|
+
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";
|
|
3678
3859
|
user_id: string;
|
|
3679
3860
|
created_by_display_name?: string | null | undefined;
|
|
3680
3861
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -3684,15 +3865,15 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3684
3865
|
created_by: string;
|
|
3685
3866
|
id: string;
|
|
3686
3867
|
record_id: string;
|
|
3687
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3868
|
+
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";
|
|
3688
3869
|
user_id: string;
|
|
3689
3870
|
created_by_display_name?: string | null | undefined;
|
|
3690
3871
|
subscribed_events?: string[] | null | undefined;
|
|
3691
3872
|
user_id_display_name?: string | null | undefined;
|
|
3692
3873
|
}>>>;
|
|
3693
3874
|
}, "strip", z.ZodTypeAny, {
|
|
3694
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3695
3875
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3876
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3696
3877
|
id: string;
|
|
3697
3878
|
description: string;
|
|
3698
3879
|
title: string;
|
|
@@ -3716,15 +3897,15 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3716
3897
|
created_by: string;
|
|
3717
3898
|
id: string;
|
|
3718
3899
|
record_id: string;
|
|
3719
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3900
|
+
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";
|
|
3720
3901
|
user_id: string;
|
|
3721
3902
|
created_by_display_name?: string | null | undefined;
|
|
3722
3903
|
subscribed_events?: string[] | null | undefined;
|
|
3723
3904
|
user_id_display_name?: string | null | undefined;
|
|
3724
3905
|
} | null | undefined;
|
|
3725
3906
|
}, {
|
|
3726
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3727
3907
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3908
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3728
3909
|
id: string;
|
|
3729
3910
|
description: string;
|
|
3730
3911
|
title: string;
|
|
@@ -3748,7 +3929,7 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3748
3929
|
created_by: string;
|
|
3749
3930
|
id: string;
|
|
3750
3931
|
record_id: string;
|
|
3751
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3932
|
+
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";
|
|
3752
3933
|
user_id: string;
|
|
3753
3934
|
created_by_display_name?: string | null | undefined;
|
|
3754
3935
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -3783,7 +3964,7 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3783
3964
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3784
3965
|
my_subscription: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3785
3966
|
id: z.ZodString;
|
|
3786
|
-
record_type: z.ZodEnum<["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"]>;
|
|
3967
|
+
record_type: z.ZodEnum<["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"]>;
|
|
3787
3968
|
record_id: z.ZodString;
|
|
3788
3969
|
user_id: z.ZodString;
|
|
3789
3970
|
user_id_display_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -3796,7 +3977,7 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3796
3977
|
created_by: string;
|
|
3797
3978
|
id: string;
|
|
3798
3979
|
record_id: string;
|
|
3799
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3980
|
+
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";
|
|
3800
3981
|
user_id: string;
|
|
3801
3982
|
created_by_display_name?: string | null | undefined;
|
|
3802
3983
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -3806,15 +3987,15 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3806
3987
|
created_by: string;
|
|
3807
3988
|
id: string;
|
|
3808
3989
|
record_id: string;
|
|
3809
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
3990
|
+
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";
|
|
3810
3991
|
user_id: string;
|
|
3811
3992
|
created_by_display_name?: string | null | undefined;
|
|
3812
3993
|
subscribed_events?: string[] | null | undefined;
|
|
3813
3994
|
user_id_display_name?: string | null | undefined;
|
|
3814
3995
|
}>>>;
|
|
3815
3996
|
}, "strip", z.ZodTypeAny, {
|
|
3816
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3817
3997
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3998
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3818
3999
|
id: string;
|
|
3819
4000
|
description: string;
|
|
3820
4001
|
title: string;
|
|
@@ -3838,15 +4019,15 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3838
4019
|
created_by: string;
|
|
3839
4020
|
id: string;
|
|
3840
4021
|
record_id: string;
|
|
3841
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
4022
|
+
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";
|
|
3842
4023
|
user_id: string;
|
|
3843
4024
|
created_by_display_name?: string | null | undefined;
|
|
3844
4025
|
subscribed_events?: string[] | null | undefined;
|
|
3845
4026
|
user_id_display_name?: string | null | undefined;
|
|
3846
4027
|
} | null | undefined;
|
|
3847
4028
|
}, {
|
|
3848
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3849
4029
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4030
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3850
4031
|
id: string;
|
|
3851
4032
|
description: string;
|
|
3852
4033
|
title: string;
|
|
@@ -3870,7 +4051,7 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3870
4051
|
created_by: string;
|
|
3871
4052
|
id: string;
|
|
3872
4053
|
record_id: string;
|
|
3873
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
4054
|
+
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";
|
|
3874
4055
|
user_id: string;
|
|
3875
4056
|
created_by_display_name?: string | null | undefined;
|
|
3876
4057
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -3901,8 +4082,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3901
4082
|
}>;
|
|
3902
4083
|
}, "strip", z.ZodTypeAny, {
|
|
3903
4084
|
items: {
|
|
3904
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3905
4085
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4086
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3906
4087
|
id: string;
|
|
3907
4088
|
description: string;
|
|
3908
4089
|
title: string;
|
|
@@ -3926,7 +4107,7 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3926
4107
|
created_by: string;
|
|
3927
4108
|
id: string;
|
|
3928
4109
|
record_id: string;
|
|
3929
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
4110
|
+
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";
|
|
3930
4111
|
user_id: string;
|
|
3931
4112
|
created_by_display_name?: string | null | undefined;
|
|
3932
4113
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -3943,8 +4124,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3943
4124
|
};
|
|
3944
4125
|
}, {
|
|
3945
4126
|
items: {
|
|
3946
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3947
4127
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4128
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3948
4129
|
id: string;
|
|
3949
4130
|
description: string;
|
|
3950
4131
|
title: string;
|
|
@@ -3968,7 +4149,7 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3968
4149
|
created_by: string;
|
|
3969
4150
|
id: string;
|
|
3970
4151
|
record_id: string;
|
|
3971
|
-
record_type: "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff";
|
|
4152
|
+
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";
|
|
3972
4153
|
user_id: string;
|
|
3973
4154
|
created_by_display_name?: string | null | undefined;
|
|
3974
4155
|
subscribed_events?: string[] | null | undefined;
|
|
@@ -4680,6 +4861,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4680
4861
|
searchableFields: string[];
|
|
4681
4862
|
}>>;
|
|
4682
4863
|
}, "strip", z.ZodTypeAny, {
|
|
4864
|
+
type?: {
|
|
4865
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4866
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4867
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4868
|
+
caseSensitive?: boolean | undefined;
|
|
4869
|
+
} | undefined;
|
|
4870
|
+
status?: {
|
|
4871
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4872
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4873
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4874
|
+
caseSensitive?: boolean | undefined;
|
|
4875
|
+
} | undefined;
|
|
4876
|
+
first?: number | undefined;
|
|
4877
|
+
after?: string | undefined;
|
|
4878
|
+
sortBy?: string | undefined;
|
|
4879
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
4880
|
+
paginationToken?: string | undefined;
|
|
4683
4881
|
created_at?: {
|
|
4684
4882
|
operator: "isEmpty" | "isNotEmpty";
|
|
4685
4883
|
value?: any;
|
|
@@ -4696,23 +4894,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4696
4894
|
values?: any[] | undefined;
|
|
4697
4895
|
caseSensitive?: boolean | undefined;
|
|
4698
4896
|
} | undefined;
|
|
4699
|
-
status?: {
|
|
4700
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4701
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4702
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4703
|
-
caseSensitive?: boolean | undefined;
|
|
4704
|
-
} | undefined;
|
|
4705
|
-
type?: {
|
|
4706
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4707
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4708
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4709
|
-
caseSensitive?: boolean | undefined;
|
|
4710
|
-
} | undefined;
|
|
4711
|
-
first?: number | undefined;
|
|
4712
|
-
after?: string | undefined;
|
|
4713
|
-
sortBy?: string | undefined;
|
|
4714
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
4715
|
-
paginationToken?: string | undefined;
|
|
4716
4897
|
created_by?: {
|
|
4717
4898
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4718
4899
|
value?: string | undefined;
|
|
@@ -4818,6 +4999,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4818
4999
|
caseSensitive?: boolean | undefined;
|
|
4819
5000
|
} | undefined;
|
|
4820
5001
|
}, {
|
|
5002
|
+
type?: {
|
|
5003
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5004
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5005
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5006
|
+
caseSensitive?: boolean | undefined;
|
|
5007
|
+
} | undefined;
|
|
5008
|
+
status?: {
|
|
5009
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5010
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5011
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5012
|
+
caseSensitive?: boolean | undefined;
|
|
5013
|
+
} | undefined;
|
|
5014
|
+
first?: number | undefined;
|
|
5015
|
+
after?: string | undefined;
|
|
5016
|
+
sortBy?: string | undefined;
|
|
5017
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5018
|
+
paginationToken?: string | undefined;
|
|
4821
5019
|
created_at?: {
|
|
4822
5020
|
operator: "isEmpty" | "isNotEmpty";
|
|
4823
5021
|
value?: any;
|
|
@@ -4834,23 +5032,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4834
5032
|
values?: any[] | undefined;
|
|
4835
5033
|
caseSensitive?: boolean | undefined;
|
|
4836
5034
|
} | undefined;
|
|
4837
|
-
status?: {
|
|
4838
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4839
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4840
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4841
|
-
caseSensitive?: boolean | undefined;
|
|
4842
|
-
} | undefined;
|
|
4843
|
-
type?: {
|
|
4844
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4845
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4846
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4847
|
-
caseSensitive?: boolean | undefined;
|
|
4848
|
-
} | undefined;
|
|
4849
|
-
first?: number | undefined;
|
|
4850
|
-
after?: string | undefined;
|
|
4851
|
-
sortBy?: string | undefined;
|
|
4852
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
4853
|
-
paginationToken?: string | undefined;
|
|
4854
5035
|
created_by?: {
|
|
4855
5036
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4856
5037
|
value?: string | undefined;
|
|
@@ -4993,8 +5174,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
4993
5174
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4994
5175
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4995
5176
|
}, "strip", z.ZodTypeAny, {
|
|
4996
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4997
5177
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5178
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4998
5179
|
id: string;
|
|
4999
5180
|
description: string;
|
|
5000
5181
|
title: string;
|
|
@@ -5017,13 +5198,13 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5017
5198
|
target_at?: string | null | undefined;
|
|
5018
5199
|
completed_at?: string | null | undefined;
|
|
5019
5200
|
display_id_prefix?: string | null | undefined;
|
|
5020
|
-
locked_approval_at?: string | null | undefined;
|
|
5021
5201
|
assigned_to?: string | null | undefined;
|
|
5022
5202
|
assigned_to_display_name?: string | null | undefined;
|
|
5023
5203
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5204
|
+
locked_approval_at?: string | null | undefined;
|
|
5024
5205
|
}, {
|
|
5025
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5026
5206
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5207
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5027
5208
|
id: string;
|
|
5028
5209
|
description: string;
|
|
5029
5210
|
title: string;
|
|
@@ -5046,10 +5227,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5046
5227
|
target_at?: string | null | undefined;
|
|
5047
5228
|
completed_at?: string | null | undefined;
|
|
5048
5229
|
display_id_prefix?: string | null | undefined;
|
|
5049
|
-
locked_approval_at?: string | null | undefined;
|
|
5050
5230
|
assigned_to?: string | null | undefined;
|
|
5051
5231
|
assigned_to_display_name?: string | null | undefined;
|
|
5052
5232
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5233
|
+
locked_approval_at?: string | null | undefined;
|
|
5053
5234
|
}>;
|
|
5054
5235
|
type StaffSupportTicketReadDto = z.infer<typeof StaffSupportTicketReadSchema>;
|
|
5055
5236
|
/**
|
|
@@ -5086,8 +5267,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5086
5267
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5087
5268
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5088
5269
|
}, "strip", z.ZodTypeAny, {
|
|
5089
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5090
5270
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5271
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5091
5272
|
id: string;
|
|
5092
5273
|
description: string;
|
|
5093
5274
|
title: string;
|
|
@@ -5110,13 +5291,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5110
5291
|
target_at?: string | null | undefined;
|
|
5111
5292
|
completed_at?: string | null | undefined;
|
|
5112
5293
|
display_id_prefix?: string | null | undefined;
|
|
5113
|
-
locked_approval_at?: string | null | undefined;
|
|
5114
5294
|
assigned_to?: string | null | undefined;
|
|
5115
5295
|
assigned_to_display_name?: string | null | undefined;
|
|
5116
5296
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5297
|
+
locked_approval_at?: string | null | undefined;
|
|
5117
5298
|
}, {
|
|
5118
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5119
5299
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5300
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5120
5301
|
id: string;
|
|
5121
5302
|
description: string;
|
|
5122
5303
|
title: string;
|
|
@@ -5139,10 +5320,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5139
5320
|
target_at?: string | null | undefined;
|
|
5140
5321
|
completed_at?: string | null | undefined;
|
|
5141
5322
|
display_id_prefix?: string | null | undefined;
|
|
5142
|
-
locked_approval_at?: string | null | undefined;
|
|
5143
5323
|
assigned_to?: string | null | undefined;
|
|
5144
5324
|
assigned_to_display_name?: string | null | undefined;
|
|
5145
5325
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5326
|
+
locked_approval_at?: string | null | undefined;
|
|
5146
5327
|
}>, "many">;
|
|
5147
5328
|
pageInfo: z.ZodObject<{
|
|
5148
5329
|
hasNextPage: z.ZodBoolean;
|
|
@@ -5168,8 +5349,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5168
5349
|
}>;
|
|
5169
5350
|
}, "strip", z.ZodTypeAny, {
|
|
5170
5351
|
items: {
|
|
5171
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5172
5352
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5353
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5173
5354
|
id: string;
|
|
5174
5355
|
description: string;
|
|
5175
5356
|
title: string;
|
|
@@ -5192,10 +5373,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5192
5373
|
target_at?: string | null | undefined;
|
|
5193
5374
|
completed_at?: string | null | undefined;
|
|
5194
5375
|
display_id_prefix?: string | null | undefined;
|
|
5195
|
-
locked_approval_at?: string | null | undefined;
|
|
5196
5376
|
assigned_to?: string | null | undefined;
|
|
5197
5377
|
assigned_to_display_name?: string | null | undefined;
|
|
5198
5378
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5379
|
+
locked_approval_at?: string | null | undefined;
|
|
5199
5380
|
}[];
|
|
5200
5381
|
pageInfo: {
|
|
5201
5382
|
hasNextPage: boolean;
|
|
@@ -5207,8 +5388,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5207
5388
|
};
|
|
5208
5389
|
}, {
|
|
5209
5390
|
items: {
|
|
5210
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5211
5391
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5392
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5212
5393
|
id: string;
|
|
5213
5394
|
description: string;
|
|
5214
5395
|
title: string;
|
|
@@ -5231,10 +5412,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5231
5412
|
target_at?: string | null | undefined;
|
|
5232
5413
|
completed_at?: string | null | undefined;
|
|
5233
5414
|
display_id_prefix?: string | null | undefined;
|
|
5234
|
-
locked_approval_at?: string | null | undefined;
|
|
5235
5415
|
assigned_to?: string | null | undefined;
|
|
5236
5416
|
assigned_to_display_name?: string | null | undefined;
|
|
5237
5417
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5418
|
+
locked_approval_at?: string | null | undefined;
|
|
5238
5419
|
}[];
|
|
5239
5420
|
pageInfo: {
|
|
5240
5421
|
hasNextPage: boolean;
|
|
@@ -6043,6 +6224,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6043
6224
|
searchableFields: string[];
|
|
6044
6225
|
}>>;
|
|
6045
6226
|
}, "strip", z.ZodTypeAny, {
|
|
6227
|
+
type?: {
|
|
6228
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6229
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6230
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6231
|
+
caseSensitive?: boolean | undefined;
|
|
6232
|
+
} | undefined;
|
|
6233
|
+
status?: {
|
|
6234
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6235
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6236
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6237
|
+
caseSensitive?: boolean | undefined;
|
|
6238
|
+
} | undefined;
|
|
6239
|
+
first?: number | undefined;
|
|
6240
|
+
after?: string | undefined;
|
|
6241
|
+
sortBy?: string | undefined;
|
|
6242
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6243
|
+
paginationToken?: string | undefined;
|
|
6046
6244
|
created_at?: {
|
|
6047
6245
|
operator: "isEmpty" | "isNotEmpty";
|
|
6048
6246
|
value?: any;
|
|
@@ -6059,23 +6257,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6059
6257
|
values?: any[] | undefined;
|
|
6060
6258
|
caseSensitive?: boolean | undefined;
|
|
6061
6259
|
} | undefined;
|
|
6062
|
-
status?: {
|
|
6063
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6064
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6065
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6066
|
-
caseSensitive?: boolean | undefined;
|
|
6067
|
-
} | undefined;
|
|
6068
|
-
type?: {
|
|
6069
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6070
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6071
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6072
|
-
caseSensitive?: boolean | undefined;
|
|
6073
|
-
} | undefined;
|
|
6074
|
-
first?: number | undefined;
|
|
6075
|
-
after?: string | undefined;
|
|
6076
|
-
sortBy?: string | undefined;
|
|
6077
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6078
|
-
paginationToken?: string | undefined;
|
|
6079
6260
|
created_by?: {
|
|
6080
6261
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6081
6262
|
value?: string | undefined;
|
|
@@ -6199,6 +6380,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6199
6380
|
caseSensitive?: boolean | undefined;
|
|
6200
6381
|
} | undefined;
|
|
6201
6382
|
}, {
|
|
6383
|
+
type?: {
|
|
6384
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6385
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6386
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6387
|
+
caseSensitive?: boolean | undefined;
|
|
6388
|
+
} | undefined;
|
|
6389
|
+
status?: {
|
|
6390
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6391
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6392
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6393
|
+
caseSensitive?: boolean | undefined;
|
|
6394
|
+
} | undefined;
|
|
6395
|
+
first?: number | undefined;
|
|
6396
|
+
after?: string | undefined;
|
|
6397
|
+
sortBy?: string | undefined;
|
|
6398
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6399
|
+
paginationToken?: string | undefined;
|
|
6202
6400
|
created_at?: {
|
|
6203
6401
|
operator: "isEmpty" | "isNotEmpty";
|
|
6204
6402
|
value?: any;
|
|
@@ -6215,23 +6413,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6215
6413
|
values?: any[] | undefined;
|
|
6216
6414
|
caseSensitive?: boolean | undefined;
|
|
6217
6415
|
} | undefined;
|
|
6218
|
-
status?: {
|
|
6219
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6220
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6221
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6222
|
-
caseSensitive?: boolean | undefined;
|
|
6223
|
-
} | undefined;
|
|
6224
|
-
type?: {
|
|
6225
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6226
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6227
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6228
|
-
caseSensitive?: boolean | undefined;
|
|
6229
|
-
} | undefined;
|
|
6230
|
-
first?: number | undefined;
|
|
6231
|
-
after?: string | undefined;
|
|
6232
|
-
sortBy?: string | undefined;
|
|
6233
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6234
|
-
paginationToken?: string | undefined;
|
|
6235
6416
|
created_by?: {
|
|
6236
6417
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6237
6418
|
value?: string | undefined;
|
|
@@ -7121,6 +7302,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7121
7302
|
searchableFields: string[];
|
|
7122
7303
|
}>>;
|
|
7123
7304
|
}, "strip", z.ZodTypeAny, {
|
|
7305
|
+
first?: number | undefined;
|
|
7306
|
+
after?: string | undefined;
|
|
7307
|
+
sortBy?: string | undefined;
|
|
7308
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7309
|
+
paginationToken?: string | undefined;
|
|
7124
7310
|
created_at?: {
|
|
7125
7311
|
operator: "isEmpty" | "isNotEmpty";
|
|
7126
7312
|
value?: any;
|
|
@@ -7137,11 +7323,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7137
7323
|
values?: any[] | undefined;
|
|
7138
7324
|
caseSensitive?: boolean | undefined;
|
|
7139
7325
|
} | undefined;
|
|
7140
|
-
first?: number | undefined;
|
|
7141
|
-
after?: string | undefined;
|
|
7142
|
-
sortBy?: string | undefined;
|
|
7143
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7144
|
-
paginationToken?: string | undefined;
|
|
7145
7326
|
search?: {
|
|
7146
7327
|
query: string;
|
|
7147
7328
|
searchableFields: string[];
|
|
@@ -7221,6 +7402,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7221
7402
|
caseSensitive?: boolean | undefined;
|
|
7222
7403
|
} | undefined;
|
|
7223
7404
|
}, {
|
|
7405
|
+
first?: number | undefined;
|
|
7406
|
+
after?: string | undefined;
|
|
7407
|
+
sortBy?: string | undefined;
|
|
7408
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7409
|
+
paginationToken?: string | undefined;
|
|
7224
7410
|
created_at?: {
|
|
7225
7411
|
operator: "isEmpty" | "isNotEmpty";
|
|
7226
7412
|
value?: any;
|
|
@@ -7237,11 +7423,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7237
7423
|
values?: any[] | undefined;
|
|
7238
7424
|
caseSensitive?: boolean | undefined;
|
|
7239
7425
|
} | undefined;
|
|
7240
|
-
first?: number | undefined;
|
|
7241
|
-
after?: string | undefined;
|
|
7242
|
-
sortBy?: string | undefined;
|
|
7243
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7244
|
-
paginationToken?: string | undefined;
|
|
7245
7426
|
search?: {
|
|
7246
7427
|
query: string;
|
|
7247
7428
|
searchableFields: string[];
|
|
@@ -7348,14 +7529,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
7348
7529
|
url?: string | null | undefined;
|
|
7349
7530
|
unique_name?: string | null | undefined;
|
|
7350
7531
|
legal_name?: string | null | undefined;
|
|
7351
|
-
contact_email?: string | null | undefined;
|
|
7352
|
-
address_city?: string | null | undefined;
|
|
7353
|
-
address_zip?: string | null | undefined;
|
|
7354
7532
|
contact_name?: string | null | undefined;
|
|
7533
|
+
contact_email?: string | null | undefined;
|
|
7355
7534
|
contact_business_phone?: string | null | undefined;
|
|
7356
7535
|
contact_mobile_phone?: string | null | undefined;
|
|
7357
7536
|
contact_time_zone?: string | null | undefined;
|
|
7358
7537
|
address_full?: string | null | undefined;
|
|
7538
|
+
address_city?: string | null | undefined;
|
|
7539
|
+
address_zip?: string | null | undefined;
|
|
7359
7540
|
twitter_username?: string | null | undefined;
|
|
7360
7541
|
logo?: string | null | undefined;
|
|
7361
7542
|
email_sent_from?: string | null | undefined;
|
|
@@ -7366,14 +7547,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
7366
7547
|
url?: string | null | undefined;
|
|
7367
7548
|
unique_name?: string | null | undefined;
|
|
7368
7549
|
legal_name?: string | null | undefined;
|
|
7369
|
-
contact_email?: string | null | undefined;
|
|
7370
|
-
address_city?: string | null | undefined;
|
|
7371
|
-
address_zip?: string | null | undefined;
|
|
7372
7550
|
contact_name?: string | null | undefined;
|
|
7551
|
+
contact_email?: string | null | undefined;
|
|
7373
7552
|
contact_business_phone?: string | null | undefined;
|
|
7374
7553
|
contact_mobile_phone?: string | null | undefined;
|
|
7375
7554
|
contact_time_zone?: string | null | undefined;
|
|
7376
7555
|
address_full?: string | null | undefined;
|
|
7556
|
+
address_city?: string | null | undefined;
|
|
7557
|
+
address_zip?: string | null | undefined;
|
|
7377
7558
|
twitter_username?: string | null | undefined;
|
|
7378
7559
|
logo?: string | null | undefined;
|
|
7379
7560
|
email_sent_from?: string | null | undefined;
|
|
@@ -7403,14 +7584,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7403
7584
|
url?: string | null | undefined;
|
|
7404
7585
|
unique_name?: string | null | undefined;
|
|
7405
7586
|
legal_name?: string | null | undefined;
|
|
7406
|
-
contact_email?: string | null | undefined;
|
|
7407
|
-
address_city?: string | null | undefined;
|
|
7408
|
-
address_zip?: string | null | undefined;
|
|
7409
7587
|
contact_name?: string | null | undefined;
|
|
7588
|
+
contact_email?: string | null | undefined;
|
|
7410
7589
|
contact_business_phone?: string | null | undefined;
|
|
7411
7590
|
contact_mobile_phone?: string | null | undefined;
|
|
7412
7591
|
contact_time_zone?: string | null | undefined;
|
|
7413
7592
|
address_full?: string | null | undefined;
|
|
7593
|
+
address_city?: string | null | undefined;
|
|
7594
|
+
address_zip?: string | null | undefined;
|
|
7414
7595
|
twitter_username?: string | null | undefined;
|
|
7415
7596
|
logo?: string | null | undefined;
|
|
7416
7597
|
email_sent_from?: string | null | undefined;
|
|
@@ -7421,14 +7602,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7421
7602
|
url?: string | null | undefined;
|
|
7422
7603
|
unique_name?: string | null | undefined;
|
|
7423
7604
|
legal_name?: string | null | undefined;
|
|
7424
|
-
contact_email?: string | null | undefined;
|
|
7425
|
-
address_city?: string | null | undefined;
|
|
7426
|
-
address_zip?: string | null | undefined;
|
|
7427
7605
|
contact_name?: string | null | undefined;
|
|
7606
|
+
contact_email?: string | null | undefined;
|
|
7428
7607
|
contact_business_phone?: string | null | undefined;
|
|
7429
7608
|
contact_mobile_phone?: string | null | undefined;
|
|
7430
7609
|
contact_time_zone?: string | null | undefined;
|
|
7431
7610
|
address_full?: string | null | undefined;
|
|
7611
|
+
address_city?: string | null | undefined;
|
|
7612
|
+
address_zip?: string | null | undefined;
|
|
7432
7613
|
twitter_username?: string | null | undefined;
|
|
7433
7614
|
logo?: string | null | undefined;
|
|
7434
7615
|
email_sent_from?: string | null | undefined;
|
|
@@ -7462,14 +7643,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
7462
7643
|
url?: string | null | undefined;
|
|
7463
7644
|
unique_name?: string | null | undefined;
|
|
7464
7645
|
legal_name?: string | null | undefined;
|
|
7465
|
-
contact_email?: string | null | undefined;
|
|
7466
|
-
address_city?: string | null | undefined;
|
|
7467
|
-
address_zip?: string | null | undefined;
|
|
7468
7646
|
contact_name?: string | null | undefined;
|
|
7647
|
+
contact_email?: string | null | undefined;
|
|
7469
7648
|
contact_business_phone?: string | null | undefined;
|
|
7470
7649
|
contact_mobile_phone?: string | null | undefined;
|
|
7471
7650
|
contact_time_zone?: string | null | undefined;
|
|
7472
7651
|
address_full?: string | null | undefined;
|
|
7652
|
+
address_city?: string | null | undefined;
|
|
7653
|
+
address_zip?: string | null | undefined;
|
|
7473
7654
|
twitter_username?: string | null | undefined;
|
|
7474
7655
|
logo?: string | null | undefined;
|
|
7475
7656
|
email_sent_from?: string | null | undefined;
|
|
@@ -7481,14 +7662,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
7481
7662
|
url?: string | null | undefined;
|
|
7482
7663
|
unique_name?: string | null | undefined;
|
|
7483
7664
|
legal_name?: string | null | undefined;
|
|
7484
|
-
contact_email?: string | null | undefined;
|
|
7485
|
-
address_city?: string | null | undefined;
|
|
7486
|
-
address_zip?: string | null | undefined;
|
|
7487
7665
|
contact_name?: string | null | undefined;
|
|
7666
|
+
contact_email?: string | null | undefined;
|
|
7488
7667
|
contact_business_phone?: string | null | undefined;
|
|
7489
7668
|
contact_mobile_phone?: string | null | undefined;
|
|
7490
7669
|
contact_time_zone?: string | null | undefined;
|
|
7491
7670
|
address_full?: string | null | undefined;
|
|
7671
|
+
address_city?: string | null | undefined;
|
|
7672
|
+
address_zip?: string | null | undefined;
|
|
7492
7673
|
twitter_username?: string | null | undefined;
|
|
7493
7674
|
logo?: string | null | undefined;
|
|
7494
7675
|
email_sent_from?: string | null | undefined;
|
|
@@ -7545,14 +7726,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7545
7726
|
updated_by_display_name?: string | null | undefined;
|
|
7546
7727
|
unique_name?: string | null | undefined;
|
|
7547
7728
|
legal_name?: string | null | undefined;
|
|
7548
|
-
contact_email?: string | null | undefined;
|
|
7549
|
-
address_city?: string | null | undefined;
|
|
7550
|
-
address_zip?: string | null | undefined;
|
|
7551
7729
|
contact_name?: string | null | undefined;
|
|
7730
|
+
contact_email?: string | null | undefined;
|
|
7552
7731
|
contact_business_phone?: string | null | undefined;
|
|
7553
7732
|
contact_mobile_phone?: string | null | undefined;
|
|
7554
7733
|
contact_time_zone?: string | null | undefined;
|
|
7555
7734
|
address_full?: string | null | undefined;
|
|
7735
|
+
address_city?: string | null | undefined;
|
|
7736
|
+
address_zip?: string | null | undefined;
|
|
7556
7737
|
twitter_username?: string | null | undefined;
|
|
7557
7738
|
logo?: string | null | undefined;
|
|
7558
7739
|
email_sent_from?: string | null | undefined;
|
|
@@ -7574,14 +7755,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7574
7755
|
updated_by_display_name?: string | null | undefined;
|
|
7575
7756
|
unique_name?: string | null | undefined;
|
|
7576
7757
|
legal_name?: string | null | undefined;
|
|
7577
|
-
contact_email?: string | null | undefined;
|
|
7578
|
-
address_city?: string | null | undefined;
|
|
7579
|
-
address_zip?: string | null | undefined;
|
|
7580
7758
|
contact_name?: string | null | undefined;
|
|
7759
|
+
contact_email?: string | null | undefined;
|
|
7581
7760
|
contact_business_phone?: string | null | undefined;
|
|
7582
7761
|
contact_mobile_phone?: string | null | undefined;
|
|
7583
7762
|
contact_time_zone?: string | null | undefined;
|
|
7584
7763
|
address_full?: string | null | undefined;
|
|
7764
|
+
address_city?: string | null | undefined;
|
|
7765
|
+
address_zip?: string | null | undefined;
|
|
7585
7766
|
twitter_username?: string | null | undefined;
|
|
7586
7767
|
logo?: string | null | undefined;
|
|
7587
7768
|
email_sent_from?: string | null | undefined;
|
|
@@ -7627,14 +7808,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7627
7808
|
updated_by_display_name?: string | null | undefined;
|
|
7628
7809
|
unique_name?: string | null | undefined;
|
|
7629
7810
|
legal_name?: string | null | undefined;
|
|
7630
|
-
contact_email?: string | null | undefined;
|
|
7631
|
-
address_city?: string | null | undefined;
|
|
7632
|
-
address_zip?: string | null | undefined;
|
|
7633
7811
|
contact_name?: string | null | undefined;
|
|
7812
|
+
contact_email?: string | null | undefined;
|
|
7634
7813
|
contact_business_phone?: string | null | undefined;
|
|
7635
7814
|
contact_mobile_phone?: string | null | undefined;
|
|
7636
7815
|
contact_time_zone?: string | null | undefined;
|
|
7637
7816
|
address_full?: string | null | undefined;
|
|
7817
|
+
address_city?: string | null | undefined;
|
|
7818
|
+
address_zip?: string | null | undefined;
|
|
7638
7819
|
twitter_username?: string | null | undefined;
|
|
7639
7820
|
logo?: string | null | undefined;
|
|
7640
7821
|
email_sent_from?: string | null | undefined;
|
|
@@ -7666,14 +7847,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
7666
7847
|
updated_by_display_name?: string | null | undefined;
|
|
7667
7848
|
unique_name?: string | null | undefined;
|
|
7668
7849
|
legal_name?: string | null | undefined;
|
|
7669
|
-
contact_email?: string | null | undefined;
|
|
7670
|
-
address_city?: string | null | undefined;
|
|
7671
|
-
address_zip?: string | null | undefined;
|
|
7672
7850
|
contact_name?: string | null | undefined;
|
|
7851
|
+
contact_email?: string | null | undefined;
|
|
7673
7852
|
contact_business_phone?: string | null | undefined;
|
|
7674
7853
|
contact_mobile_phone?: string | null | undefined;
|
|
7675
7854
|
contact_time_zone?: string | null | undefined;
|
|
7676
7855
|
address_full?: string | null | undefined;
|
|
7856
|
+
address_city?: string | null | undefined;
|
|
7857
|
+
address_zip?: string | null | undefined;
|
|
7677
7858
|
twitter_username?: string | null | undefined;
|
|
7678
7859
|
logo?: string | null | undefined;
|
|
7679
7860
|
email_sent_from?: string | null | undefined;
|
|
@@ -7738,14 +7919,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
7738
7919
|
updated_by_display_name?: string | null | undefined;
|
|
7739
7920
|
unique_name?: string | null | undefined;
|
|
7740
7921
|
legal_name?: string | null | undefined;
|
|
7741
|
-
contact_email?: string | null | undefined;
|
|
7742
|
-
address_city?: string | null | undefined;
|
|
7743
|
-
address_zip?: string | null | undefined;
|
|
7744
7922
|
contact_name?: string | null | undefined;
|
|
7923
|
+
contact_email?: string | null | undefined;
|
|
7745
7924
|
contact_business_phone?: string | null | undefined;
|
|
7746
7925
|
contact_mobile_phone?: string | null | undefined;
|
|
7747
7926
|
contact_time_zone?: string | null | undefined;
|
|
7748
7927
|
address_full?: string | null | undefined;
|
|
7928
|
+
address_city?: string | null | undefined;
|
|
7929
|
+
address_zip?: string | null | undefined;
|
|
7749
7930
|
twitter_username?: string | null | undefined;
|
|
7750
7931
|
logo?: string | null | undefined;
|
|
7751
7932
|
email_sent_from?: string | null | undefined;
|
|
@@ -7767,14 +7948,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
7767
7948
|
updated_by_display_name?: string | null | undefined;
|
|
7768
7949
|
unique_name?: string | null | undefined;
|
|
7769
7950
|
legal_name?: string | null | undefined;
|
|
7770
|
-
contact_email?: string | null | undefined;
|
|
7771
|
-
address_city?: string | null | undefined;
|
|
7772
|
-
address_zip?: string | null | undefined;
|
|
7773
7951
|
contact_name?: string | null | undefined;
|
|
7952
|
+
contact_email?: string | null | undefined;
|
|
7774
7953
|
contact_business_phone?: string | null | undefined;
|
|
7775
7954
|
contact_mobile_phone?: string | null | undefined;
|
|
7776
7955
|
contact_time_zone?: string | null | undefined;
|
|
7777
7956
|
address_full?: string | null | undefined;
|
|
7957
|
+
address_city?: string | null | undefined;
|
|
7958
|
+
address_zip?: string | null | undefined;
|
|
7778
7959
|
twitter_username?: string | null | undefined;
|
|
7779
7960
|
logo?: string | null | undefined;
|
|
7780
7961
|
email_sent_from?: string | null | undefined;
|
|
@@ -7834,14 +8015,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
7834
8015
|
updated_by_display_name?: string | null | undefined;
|
|
7835
8016
|
unique_name?: string | null | undefined;
|
|
7836
8017
|
legal_name?: string | null | undefined;
|
|
7837
|
-
contact_email?: string | null | undefined;
|
|
7838
|
-
address_city?: string | null | undefined;
|
|
7839
|
-
address_zip?: string | null | undefined;
|
|
7840
8018
|
contact_name?: string | null | undefined;
|
|
8019
|
+
contact_email?: string | null | undefined;
|
|
7841
8020
|
contact_business_phone?: string | null | undefined;
|
|
7842
8021
|
contact_mobile_phone?: string | null | undefined;
|
|
7843
8022
|
contact_time_zone?: string | null | undefined;
|
|
7844
8023
|
address_full?: string | null | undefined;
|
|
8024
|
+
address_city?: string | null | undefined;
|
|
8025
|
+
address_zip?: string | null | undefined;
|
|
7845
8026
|
twitter_username?: string | null | undefined;
|
|
7846
8027
|
logo?: string | null | undefined;
|
|
7847
8028
|
email_sent_from?: string | null | undefined;
|
|
@@ -7863,14 +8044,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
7863
8044
|
updated_by_display_name?: string | null | undefined;
|
|
7864
8045
|
unique_name?: string | null | undefined;
|
|
7865
8046
|
legal_name?: string | null | undefined;
|
|
7866
|
-
contact_email?: string | null | undefined;
|
|
7867
|
-
address_city?: string | null | undefined;
|
|
7868
|
-
address_zip?: string | null | undefined;
|
|
7869
8047
|
contact_name?: string | null | undefined;
|
|
8048
|
+
contact_email?: string | null | undefined;
|
|
7870
8049
|
contact_business_phone?: string | null | undefined;
|
|
7871
8050
|
contact_mobile_phone?: string | null | undefined;
|
|
7872
8051
|
contact_time_zone?: string | null | undefined;
|
|
7873
8052
|
address_full?: string | null | undefined;
|
|
8053
|
+
address_city?: string | null | undefined;
|
|
8054
|
+
address_zip?: string | null | undefined;
|
|
7874
8055
|
twitter_username?: string | null | undefined;
|
|
7875
8056
|
logo?: string | null | undefined;
|
|
7876
8057
|
email_sent_from?: string | null | undefined;
|
|
@@ -7928,14 +8109,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7928
8109
|
updated_by_display_name?: string | null | undefined;
|
|
7929
8110
|
unique_name?: string | null | undefined;
|
|
7930
8111
|
legal_name?: string | null | undefined;
|
|
7931
|
-
contact_email?: string | null | undefined;
|
|
7932
|
-
address_city?: string | null | undefined;
|
|
7933
|
-
address_zip?: string | null | undefined;
|
|
7934
8112
|
contact_name?: string | null | undefined;
|
|
8113
|
+
contact_email?: string | null | undefined;
|
|
7935
8114
|
contact_business_phone?: string | null | undefined;
|
|
7936
8115
|
contact_mobile_phone?: string | null | undefined;
|
|
7937
8116
|
contact_time_zone?: string | null | undefined;
|
|
7938
8117
|
address_full?: string | null | undefined;
|
|
8118
|
+
address_city?: string | null | undefined;
|
|
8119
|
+
address_zip?: string | null | undefined;
|
|
7939
8120
|
twitter_username?: string | null | undefined;
|
|
7940
8121
|
logo?: string | null | undefined;
|
|
7941
8122
|
email_sent_from?: string | null | undefined;
|
|
@@ -7957,14 +8138,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7957
8138
|
updated_by_display_name?: string | null | undefined;
|
|
7958
8139
|
unique_name?: string | null | undefined;
|
|
7959
8140
|
legal_name?: string | null | undefined;
|
|
7960
|
-
contact_email?: string | null | undefined;
|
|
7961
|
-
address_city?: string | null | undefined;
|
|
7962
|
-
address_zip?: string | null | undefined;
|
|
7963
8141
|
contact_name?: string | null | undefined;
|
|
8142
|
+
contact_email?: string | null | undefined;
|
|
7964
8143
|
contact_business_phone?: string | null | undefined;
|
|
7965
8144
|
contact_mobile_phone?: string | null | undefined;
|
|
7966
8145
|
contact_time_zone?: string | null | undefined;
|
|
7967
8146
|
address_full?: string | null | undefined;
|
|
8147
|
+
address_city?: string | null | undefined;
|
|
8148
|
+
address_zip?: string | null | undefined;
|
|
7968
8149
|
twitter_username?: string | null | undefined;
|
|
7969
8150
|
logo?: string | null | undefined;
|
|
7970
8151
|
email_sent_from?: string | null | undefined;
|
|
@@ -7988,14 +8169,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
7988
8169
|
updated_by_display_name?: string | null | undefined;
|
|
7989
8170
|
unique_name?: string | null | undefined;
|
|
7990
8171
|
legal_name?: string | null | undefined;
|
|
7991
|
-
contact_email?: string | null | undefined;
|
|
7992
|
-
address_city?: string | null | undefined;
|
|
7993
|
-
address_zip?: string | null | undefined;
|
|
7994
8172
|
contact_name?: string | null | undefined;
|
|
8173
|
+
contact_email?: string | null | undefined;
|
|
7995
8174
|
contact_business_phone?: string | null | undefined;
|
|
7996
8175
|
contact_mobile_phone?: string | null | undefined;
|
|
7997
8176
|
contact_time_zone?: string | null | undefined;
|
|
7998
8177
|
address_full?: string | null | undefined;
|
|
8178
|
+
address_city?: string | null | undefined;
|
|
8179
|
+
address_zip?: string | null | undefined;
|
|
7999
8180
|
twitter_username?: string | null | undefined;
|
|
8000
8181
|
logo?: string | null | undefined;
|
|
8001
8182
|
email_sent_from?: string | null | undefined;
|
|
@@ -8019,14 +8200,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8019
8200
|
updated_by_display_name?: string | null | undefined;
|
|
8020
8201
|
unique_name?: string | null | undefined;
|
|
8021
8202
|
legal_name?: string | null | undefined;
|
|
8022
|
-
contact_email?: string | null | undefined;
|
|
8023
|
-
address_city?: string | null | undefined;
|
|
8024
|
-
address_zip?: string | null | undefined;
|
|
8025
8203
|
contact_name?: string | null | undefined;
|
|
8204
|
+
contact_email?: string | null | undefined;
|
|
8026
8205
|
contact_business_phone?: string | null | undefined;
|
|
8027
8206
|
contact_mobile_phone?: string | null | undefined;
|
|
8028
8207
|
contact_time_zone?: string | null | undefined;
|
|
8029
8208
|
address_full?: string | null | undefined;
|
|
8209
|
+
address_city?: string | null | undefined;
|
|
8210
|
+
address_zip?: string | null | undefined;
|
|
8030
8211
|
twitter_username?: string | null | undefined;
|
|
8031
8212
|
logo?: string | null | undefined;
|
|
8032
8213
|
email_sent_from?: string | null | undefined;
|
|
@@ -8678,6 +8859,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8678
8859
|
searchableFields: string[];
|
|
8679
8860
|
}>>;
|
|
8680
8861
|
}, "strip", z.ZodTypeAny, {
|
|
8862
|
+
first?: number | undefined;
|
|
8863
|
+
after?: string | undefined;
|
|
8864
|
+
sortBy?: string | undefined;
|
|
8865
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8866
|
+
paginationToken?: string | undefined;
|
|
8681
8867
|
created_at?: {
|
|
8682
8868
|
operator: "isEmpty" | "isNotEmpty";
|
|
8683
8869
|
value?: any;
|
|
@@ -8694,11 +8880,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8694
8880
|
values?: any[] | undefined;
|
|
8695
8881
|
caseSensitive?: boolean | undefined;
|
|
8696
8882
|
} | undefined;
|
|
8697
|
-
first?: number | undefined;
|
|
8698
|
-
after?: string | undefined;
|
|
8699
|
-
sortBy?: string | undefined;
|
|
8700
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8701
|
-
paginationToken?: string | undefined;
|
|
8702
8883
|
search?: {
|
|
8703
8884
|
query: string;
|
|
8704
8885
|
searchableFields: string[];
|
|
@@ -8808,6 +8989,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8808
8989
|
caseSensitive?: boolean | undefined;
|
|
8809
8990
|
} | undefined;
|
|
8810
8991
|
}, {
|
|
8992
|
+
first?: number | undefined;
|
|
8993
|
+
after?: string | undefined;
|
|
8994
|
+
sortBy?: string | undefined;
|
|
8995
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8996
|
+
paginationToken?: string | undefined;
|
|
8811
8997
|
created_at?: {
|
|
8812
8998
|
operator: "isEmpty" | "isNotEmpty";
|
|
8813
8999
|
value?: any;
|
|
@@ -8824,11 +9010,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8824
9010
|
values?: any[] | undefined;
|
|
8825
9011
|
caseSensitive?: boolean | undefined;
|
|
8826
9012
|
} | undefined;
|
|
8827
|
-
first?: number | undefined;
|
|
8828
|
-
after?: string | undefined;
|
|
8829
|
-
sortBy?: string | undefined;
|
|
8830
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8831
|
-
paginationToken?: string | undefined;
|
|
8832
9013
|
search?: {
|
|
8833
9014
|
query: string;
|
|
8834
9015
|
searchableFields: string[];
|
|
@@ -9292,20 +9473,20 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
9292
9473
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
9293
9474
|
}, "strip", z.ZodTypeAny, {
|
|
9294
9475
|
created_at: string;
|
|
9476
|
+
id: string;
|
|
9295
9477
|
email: string;
|
|
9478
|
+
updated_at: string | null;
|
|
9296
9479
|
username: string;
|
|
9297
9480
|
email_verified: boolean;
|
|
9298
9481
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9299
|
-
id: string;
|
|
9300
|
-
updated_at: string | null;
|
|
9301
9482
|
}, {
|
|
9302
9483
|
created_at: string;
|
|
9484
|
+
id: string;
|
|
9303
9485
|
email: string;
|
|
9486
|
+
updated_at: string | null;
|
|
9304
9487
|
username: string;
|
|
9305
9488
|
email_verified: boolean;
|
|
9306
9489
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9307
|
-
id: string;
|
|
9308
|
-
updated_at: string | null;
|
|
9309
9490
|
}>;
|
|
9310
9491
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
9311
9492
|
//#endregion
|
|
@@ -9314,11 +9495,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
9314
9495
|
id: z.ZodString;
|
|
9315
9496
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
9316
9497
|
}, "strip", z.ZodTypeAny, {
|
|
9317
|
-
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9318
9498
|
id: string;
|
|
9319
|
-
}, {
|
|
9320
9499
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9500
|
+
}, {
|
|
9321
9501
|
id: string;
|
|
9502
|
+
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9322
9503
|
}>;
|
|
9323
9504
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
9324
9505
|
//#endregion
|
|
@@ -9411,8 +9592,9 @@ type UserProfileReadDto = z.infer<typeof UserProfileReadSchema>;
|
|
|
9411
9592
|
* Record type constants and types for the application
|
|
9412
9593
|
* These define all the different types of records that can exist in the system
|
|
9413
9594
|
*/
|
|
9414
|
-
declare const RecordTypeValues: readonly ["attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff"];
|
|
9595
|
+
declare const RecordTypeValues: readonly ["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"];
|
|
9415
9596
|
declare const RecordConst: {
|
|
9597
|
+
readonly APP_SETTING: "app_setting";
|
|
9416
9598
|
readonly ATTACHMENT: "attachment";
|
|
9417
9599
|
readonly ATTACHMENT_FOLDER: "attachment_folder";
|
|
9418
9600
|
readonly USER: "user";
|
|
@@ -9440,6 +9622,7 @@ declare const RecordConst: {
|
|
|
9440
9622
|
readonly USER_PINNED_PRESET: "user_pinned_preset";
|
|
9441
9623
|
readonly RECORD_SUBSCRIBER: "record_subscriber";
|
|
9442
9624
|
readonly SUPPORT_STAFF: "support_staff";
|
|
9625
|
+
readonly USER_CONSENT: "user_consent";
|
|
9443
9626
|
};
|
|
9444
9627
|
type RecordType = (typeof RecordTypeValues)[number];
|
|
9445
9628
|
//#endregion
|
|
@@ -9450,7 +9633,12 @@ type RecordType = (typeof RecordTypeValues)[number];
|
|
|
9450
9633
|
*
|
|
9451
9634
|
* Note: Notification emails were removed in favor of assignee-based triage.
|
|
9452
9635
|
*/
|
|
9453
|
-
interface AppSettingsApi {
|
|
9636
|
+
interface AppSettingsApi {
|
|
9637
|
+
/** Get signup consent requirements (admin only). Used by admin UI; consumers hardcode requirements in their signup form. */
|
|
9638
|
+
getSignupRequirements(): Promise<SignupRequirementsDto>;
|
|
9639
|
+
/** Update signup consent requirements (admin only). */
|
|
9640
|
+
updateSignupRequirements(config: SignupRequirementsDto): Promise<void>;
|
|
9641
|
+
}
|
|
9454
9642
|
//#endregion
|
|
9455
9643
|
//#region src/api/attachment-api.d.ts
|
|
9456
9644
|
/**
|
|
@@ -9506,17 +9694,23 @@ interface CustomerApi {
|
|
|
9506
9694
|
}
|
|
9507
9695
|
//#endregion
|
|
9508
9696
|
//#region src/api/email-verification-api.d.ts
|
|
9697
|
+
/**
|
|
9698
|
+
* Result of verifyEmail. When ok is true, session may be included for auto sign-in.
|
|
9699
|
+
*/
|
|
9700
|
+
interface VerifyEmailResult {
|
|
9701
|
+
ok: boolean;
|
|
9702
|
+
session?: LoginResponse;
|
|
9703
|
+
}
|
|
9509
9704
|
/**
|
|
9510
9705
|
* Email verification API
|
|
9511
9706
|
* Implement when your backend supports email verification.
|
|
9512
9707
|
*/
|
|
9513
9708
|
interface EmailVerificationApi {
|
|
9514
9709
|
/**
|
|
9515
|
-
* Verify email using token from verification link
|
|
9710
|
+
* Verify email using token from verification link.
|
|
9711
|
+
* When successful, may return session for auto sign-in (e.g. strict mode signup flow).
|
|
9516
9712
|
*/
|
|
9517
|
-
verifyEmail(token: string): Promise<
|
|
9518
|
-
ok: boolean;
|
|
9519
|
-
}>;
|
|
9713
|
+
verifyEmail(token: string): Promise<VerifyEmailResult>;
|
|
9520
9714
|
/**
|
|
9521
9715
|
* Resend verification email for the current user
|
|
9522
9716
|
*/
|
|
@@ -9888,6 +10082,14 @@ interface UserApi {
|
|
|
9888
10082
|
* Get the currently authenticated user
|
|
9889
10083
|
*/
|
|
9890
10084
|
getCurrentUser(): Promise<UserReadDto | null>;
|
|
10085
|
+
/**
|
|
10086
|
+
* Get pending consents for the current user (re-consent flow). Returns empty when consent feature disabled.
|
|
10087
|
+
*/
|
|
10088
|
+
getPendingConsents(): Promise<SignupRequirementsDto>;
|
|
10089
|
+
/**
|
|
10090
|
+
* Record consent acceptances for the current user (re-consent flow).
|
|
10091
|
+
*/
|
|
10092
|
+
recordConsents(input: RecordConsentsInputDto): Promise<void>;
|
|
9891
10093
|
/**
|
|
9892
10094
|
* Sign up a new user
|
|
9893
10095
|
*/
|
|
@@ -10136,5 +10338,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
10136
10338
|
*/
|
|
10137
10339
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
10138
10340
|
//#endregion
|
|
10139
|
-
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, 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, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SignupInputDto, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10341
|
+
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, 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, 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, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, 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, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10140
10342
|
//# sourceMappingURL=index.d.mts.map
|