@dragonmastery/dragoncore-shared 0.0.23 → 0.0.24
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 +290 -290
- 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;
|
|
150
152
|
archived_at?: string | null | undefined;
|
|
151
153
|
archived_by?: string | null | undefined;
|
|
152
154
|
deleted_at?: string | null | undefined;
|
|
153
155
|
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;
|
|
168
170
|
archived_at?: string | null | undefined;
|
|
169
171
|
archived_by?: string | null | undefined;
|
|
170
172
|
deleted_at?: string | null | undefined;
|
|
171
173
|
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
|
-
metadata?: string | null | undefined;
|
|
197
196
|
folder_id?: string | null | undefined;
|
|
197
|
+
metadata?: 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
|
-
metadata?: string | null | undefined;
|
|
207
206
|
folder_id?: string | null | undefined;
|
|
207
|
+
metadata?: 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;
|
|
227
228
|
sanitized_name?: string | undefined;
|
|
228
229
|
original_name?: string | undefined;
|
|
230
|
+
metadata?: string | null | undefined;
|
|
229
231
|
content_type?: string | undefined;
|
|
230
232
|
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;
|
|
238
239
|
sanitized_name?: string | undefined;
|
|
239
240
|
original_name?: string | undefined;
|
|
241
|
+
metadata?: string | null | undefined;
|
|
240
242
|
content_type?: string | undefined;
|
|
241
243
|
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
|
-
metadata?: string | null | undefined;
|
|
283
282
|
folder_id?: string | null | undefined;
|
|
283
|
+
metadata?: 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
|
-
metadata?: string | null | undefined;
|
|
302
301
|
folder_id?: string | null | undefined;
|
|
302
|
+
metadata?: 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;
|
|
339
341
|
archived_at?: string | null | undefined;
|
|
340
342
|
archived_by?: string | null | undefined;
|
|
341
343
|
deleted_at?: string | null | undefined;
|
|
342
344
|
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;
|
|
357
359
|
archived_at?: string | null | undefined;
|
|
358
360
|
archived_by?: string | null | undefined;
|
|
359
361
|
deleted_at?: string | null | undefined;
|
|
360
362
|
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
|
-
metadata?: string | null | undefined;
|
|
393
392
|
folder_id?: string | null | undefined;
|
|
393
|
+
metadata?: 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;
|
|
411
413
|
archived_at?: string | null | undefined;
|
|
412
414
|
archived_by?: string | null | undefined;
|
|
413
415
|
deleted_at?: string | null | undefined;
|
|
414
416
|
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
|
-
metadata?: string | null | undefined;
|
|
437
436
|
folder_id?: string | null | undefined;
|
|
437
|
+
metadata?: 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;
|
|
455
457
|
archived_at?: string | null | undefined;
|
|
456
458
|
archived_by?: string | null | undefined;
|
|
457
459
|
deleted_at?: string | null | undefined;
|
|
458
460
|
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
|
-
metadata?: string | null | undefined;
|
|
500
499
|
folder_id?: string | null | undefined;
|
|
500
|
+
metadata?: 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
|
-
metadata?: string | null | undefined;
|
|
519
518
|
folder_id?: string | null | undefined;
|
|
519
|
+
metadata?: 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;
|
|
@@ -1741,8 +1741,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1741
1741
|
price_currency?: string | null | undefined;
|
|
1742
1742
|
}>, "many">>>;
|
|
1743
1743
|
}, "strip", z.ZodTypeAny, {
|
|
1744
|
-
userId: string;
|
|
1745
1744
|
email: string;
|
|
1745
|
+
userId: string;
|
|
1746
1746
|
username: string;
|
|
1747
1747
|
email_verified: boolean;
|
|
1748
1748
|
user_type: string;
|
|
@@ -1763,8 +1763,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1763
1763
|
price_currency?: string | null | undefined;
|
|
1764
1764
|
}[] | null | undefined;
|
|
1765
1765
|
}, {
|
|
1766
|
-
userId: string;
|
|
1767
1766
|
email: string;
|
|
1767
|
+
userId: string;
|
|
1768
1768
|
username: string;
|
|
1769
1769
|
email_verified: boolean;
|
|
1770
1770
|
user_type: string;
|
|
@@ -1787,8 +1787,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1787
1787
|
}>;
|
|
1788
1788
|
}, "strip", z.ZodTypeAny, {
|
|
1789
1789
|
user: {
|
|
1790
|
-
userId: string;
|
|
1791
1790
|
email: string;
|
|
1791
|
+
userId: string;
|
|
1792
1792
|
username: string;
|
|
1793
1793
|
email_verified: boolean;
|
|
1794
1794
|
user_type: string;
|
|
@@ -1809,15 +1809,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1809
1809
|
price_currency?: string | null | undefined;
|
|
1810
1810
|
}[] | null | undefined;
|
|
1811
1811
|
};
|
|
1812
|
+
status: string;
|
|
1812
1813
|
created_at: string;
|
|
1813
1814
|
expires_at: string;
|
|
1814
|
-
status: string;
|
|
1815
1815
|
user_agent?: string | null | undefined;
|
|
1816
1816
|
ip_address?: string | null | undefined;
|
|
1817
1817
|
}, {
|
|
1818
1818
|
user: {
|
|
1819
|
-
userId: string;
|
|
1820
1819
|
email: string;
|
|
1820
|
+
userId: string;
|
|
1821
1821
|
username: string;
|
|
1822
1822
|
email_verified: boolean;
|
|
1823
1823
|
user_type: string;
|
|
@@ -1838,9 +1838,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1838
1838
|
price_currency?: string | null | undefined;
|
|
1839
1839
|
}[] | null | undefined;
|
|
1840
1840
|
};
|
|
1841
|
+
status: string;
|
|
1841
1842
|
created_at: string;
|
|
1842
1843
|
expires_at: string;
|
|
1843
|
-
status: string;
|
|
1844
1844
|
user_agent?: string | null | undefined;
|
|
1845
1845
|
ip_address?: string | null | undefined;
|
|
1846
1846
|
}>;
|
|
@@ -1896,8 +1896,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1896
1896
|
price_currency?: string | null | undefined;
|
|
1897
1897
|
}>, "many">>>;
|
|
1898
1898
|
}, "strip", z.ZodTypeAny, {
|
|
1899
|
-
userId: string;
|
|
1900
1899
|
email: string;
|
|
1900
|
+
userId: string;
|
|
1901
1901
|
username: string;
|
|
1902
1902
|
email_verified: boolean;
|
|
1903
1903
|
user_type: string;
|
|
@@ -1918,8 +1918,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1918
1918
|
price_currency?: string | null | undefined;
|
|
1919
1919
|
}[] | null | undefined;
|
|
1920
1920
|
}, {
|
|
1921
|
-
userId: string;
|
|
1922
1921
|
email: string;
|
|
1922
|
+
userId: string;
|
|
1923
1923
|
username: string;
|
|
1924
1924
|
email_verified: boolean;
|
|
1925
1925
|
user_type: string;
|
|
@@ -1942,8 +1942,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1942
1942
|
}>;
|
|
1943
1943
|
}, "strip", z.ZodTypeAny, {
|
|
1944
1944
|
user: {
|
|
1945
|
-
userId: string;
|
|
1946
1945
|
email: string;
|
|
1946
|
+
userId: string;
|
|
1947
1947
|
username: string;
|
|
1948
1948
|
email_verified: boolean;
|
|
1949
1949
|
user_type: string;
|
|
@@ -1964,15 +1964,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1964
1964
|
price_currency?: string | null | undefined;
|
|
1965
1965
|
}[] | null | undefined;
|
|
1966
1966
|
};
|
|
1967
|
+
status: string;
|
|
1967
1968
|
created_at: string;
|
|
1968
1969
|
expires_at: string;
|
|
1969
|
-
status: string;
|
|
1970
1970
|
user_agent?: string | null | undefined;
|
|
1971
1971
|
ip_address?: string | null | undefined;
|
|
1972
1972
|
}, {
|
|
1973
1973
|
user: {
|
|
1974
|
-
userId: string;
|
|
1975
1974
|
email: string;
|
|
1975
|
+
userId: string;
|
|
1976
1976
|
username: string;
|
|
1977
1977
|
email_verified: boolean;
|
|
1978
1978
|
user_type: string;
|
|
@@ -1993,9 +1993,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1993
1993
|
price_currency?: string | null | undefined;
|
|
1994
1994
|
}[] | null | undefined;
|
|
1995
1995
|
};
|
|
1996
|
+
status: string;
|
|
1996
1997
|
created_at: string;
|
|
1997
1998
|
expires_at: string;
|
|
1998
|
-
status: string;
|
|
1999
1999
|
user_agent?: string | null | undefined;
|
|
2000
2000
|
ip_address?: string | null | undefined;
|
|
2001
2001
|
}>;
|
|
@@ -2006,8 +2006,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2006
2006
|
refresh_token: string;
|
|
2007
2007
|
frontend_session: {
|
|
2008
2008
|
user: {
|
|
2009
|
-
userId: string;
|
|
2010
2009
|
email: string;
|
|
2010
|
+
userId: string;
|
|
2011
2011
|
username: string;
|
|
2012
2012
|
email_verified: boolean;
|
|
2013
2013
|
user_type: string;
|
|
@@ -2028,9 +2028,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2028
2028
|
price_currency?: string | null | undefined;
|
|
2029
2029
|
}[] | null | undefined;
|
|
2030
2030
|
};
|
|
2031
|
+
status: string;
|
|
2031
2032
|
created_at: string;
|
|
2032
2033
|
expires_at: string;
|
|
2033
|
-
status: string;
|
|
2034
2034
|
user_agent?: string | null | undefined;
|
|
2035
2035
|
ip_address?: string | null | undefined;
|
|
2036
2036
|
};
|
|
@@ -2040,8 +2040,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2040
2040
|
refresh_token: string;
|
|
2041
2041
|
frontend_session: {
|
|
2042
2042
|
user: {
|
|
2043
|
-
userId: string;
|
|
2044
2043
|
email: string;
|
|
2044
|
+
userId: string;
|
|
2045
2045
|
username: string;
|
|
2046
2046
|
email_verified: boolean;
|
|
2047
2047
|
user_type: string;
|
|
@@ -2062,9 +2062,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2062
2062
|
price_currency?: string | null | undefined;
|
|
2063
2063
|
}[] | null | undefined;
|
|
2064
2064
|
};
|
|
2065
|
+
status: string;
|
|
2065
2066
|
created_at: string;
|
|
2066
2067
|
expires_at: string;
|
|
2067
|
-
status: string;
|
|
2068
2068
|
user_agent?: string | null | undefined;
|
|
2069
2069
|
ip_address?: string | null | undefined;
|
|
2070
2070
|
};
|
|
@@ -2122,9 +2122,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2122
2122
|
archived_by?: string | null | undefined;
|
|
2123
2123
|
deleted_at?: string | null | undefined;
|
|
2124
2124
|
deleted_by?: string | null | undefined;
|
|
2125
|
+
tag?: string | null | undefined;
|
|
2125
2126
|
title?: string | null | undefined;
|
|
2126
2127
|
body?: string | null | undefined;
|
|
2127
|
-
tag?: string | null | undefined;
|
|
2128
2128
|
original_id?: number | null | undefined;
|
|
2129
2129
|
created_by_display_name?: string | null | undefined;
|
|
2130
2130
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2141,9 +2141,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2141
2141
|
archived_by?: string | null | undefined;
|
|
2142
2142
|
deleted_at?: string | null | undefined;
|
|
2143
2143
|
deleted_by?: string | null | undefined;
|
|
2144
|
+
tag?: string | null | undefined;
|
|
2144
2145
|
title?: string | null | undefined;
|
|
2145
2146
|
body?: string | null | undefined;
|
|
2146
|
-
tag?: string | null | undefined;
|
|
2147
2147
|
original_id?: number | null | undefined;
|
|
2148
2148
|
created_by_display_name?: string | null | undefined;
|
|
2149
2149
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2163,18 +2163,18 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2163
2163
|
record_id: string;
|
|
2164
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";
|
|
2165
2165
|
is_internal: boolean;
|
|
2166
|
+
tag?: string | null | undefined;
|
|
2166
2167
|
title?: string | null | undefined;
|
|
2167
2168
|
body?: string | null | undefined;
|
|
2168
|
-
tag?: string | null | undefined;
|
|
2169
2169
|
original_id?: number | null | undefined;
|
|
2170
2170
|
}, {
|
|
2171
2171
|
record_id: string;
|
|
2172
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";
|
|
2173
|
+
tag?: string | null | undefined;
|
|
2173
2174
|
title?: string | null | undefined;
|
|
2174
2175
|
body?: string | null | undefined;
|
|
2175
|
-
tag?: string | null | undefined;
|
|
2176
|
-
is_internal?: boolean | undefined;
|
|
2177
2176
|
original_id?: number | null | undefined;
|
|
2177
|
+
is_internal?: boolean | undefined;
|
|
2178
2178
|
}>;
|
|
2179
2179
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2180
2180
|
//#endregion
|
|
@@ -2192,20 +2192,20 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2192
2192
|
id: string;
|
|
2193
2193
|
record_id?: string | undefined;
|
|
2194
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;
|
|
2195
|
+
tag?: string | null | undefined;
|
|
2195
2196
|
title?: string | null | undefined;
|
|
2196
2197
|
body?: string | null | undefined;
|
|
2197
|
-
tag?: string | null | undefined;
|
|
2198
|
-
is_internal?: boolean | undefined;
|
|
2199
2198
|
original_id?: number | null | undefined;
|
|
2199
|
+
is_internal?: boolean | undefined;
|
|
2200
2200
|
}, {
|
|
2201
2201
|
id: string;
|
|
2202
2202
|
record_id?: string | undefined;
|
|
2203
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;
|
|
2204
|
+
tag?: string | null | undefined;
|
|
2204
2205
|
title?: string | null | undefined;
|
|
2205
2206
|
body?: string | null | undefined;
|
|
2206
|
-
tag?: string | null | undefined;
|
|
2207
|
-
is_internal?: boolean | undefined;
|
|
2208
2207
|
original_id?: number | null | undefined;
|
|
2208
|
+
is_internal?: boolean | undefined;
|
|
2209
2209
|
}>;
|
|
2210
2210
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2211
2211
|
//#endregion
|
|
@@ -2567,6 +2567,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2567
2567
|
searchableFields: string[];
|
|
2568
2568
|
}>>;
|
|
2569
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;
|
|
2570
2575
|
created_at?: {
|
|
2571
2576
|
operator: "isEmpty" | "isNotEmpty";
|
|
2572
2577
|
value?: any;
|
|
@@ -2583,11 +2588,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2583
2588
|
values?: any[] | undefined;
|
|
2584
2589
|
caseSensitive?: boolean | undefined;
|
|
2585
2590
|
} | undefined;
|
|
2586
|
-
first?: number | undefined;
|
|
2587
|
-
after?: string | undefined;
|
|
2588
|
-
sortBy?: string | undefined;
|
|
2589
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2590
|
-
paginationToken?: string | undefined;
|
|
2591
2591
|
search?: {
|
|
2592
2592
|
query: string;
|
|
2593
2593
|
searchableFields: string[];
|
|
@@ -2620,19 +2620,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2620
2620
|
values?: any[] | undefined;
|
|
2621
2621
|
caseSensitive?: boolean | undefined;
|
|
2622
2622
|
} | undefined;
|
|
2623
|
-
|
|
2623
|
+
tag?: {
|
|
2624
2624
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2625
2625
|
value?: string | undefined;
|
|
2626
2626
|
values?: string[] | undefined;
|
|
2627
2627
|
caseSensitive?: boolean | undefined;
|
|
2628
2628
|
} | undefined;
|
|
2629
|
-
|
|
2629
|
+
title?: {
|
|
2630
2630
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2631
2631
|
value?: string | undefined;
|
|
2632
2632
|
values?: string[] | undefined;
|
|
2633
2633
|
caseSensitive?: boolean | undefined;
|
|
2634
2634
|
} | undefined;
|
|
2635
|
-
|
|
2635
|
+
body?: {
|
|
2636
2636
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2637
2637
|
value?: string | undefined;
|
|
2638
2638
|
values?: string[] | undefined;
|
|
@@ -2645,6 +2645,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2645
2645
|
caseSensitive?: boolean | undefined;
|
|
2646
2646
|
} | undefined;
|
|
2647
2647
|
}, {
|
|
2648
|
+
first?: number | undefined;
|
|
2649
|
+
after?: string | undefined;
|
|
2650
|
+
sortBy?: string | undefined;
|
|
2651
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2652
|
+
paginationToken?: string | undefined;
|
|
2648
2653
|
created_at?: {
|
|
2649
2654
|
operator: "isEmpty" | "isNotEmpty";
|
|
2650
2655
|
value?: any;
|
|
@@ -2661,11 +2666,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2661
2666
|
values?: any[] | undefined;
|
|
2662
2667
|
caseSensitive?: boolean | undefined;
|
|
2663
2668
|
} | undefined;
|
|
2664
|
-
first?: number | undefined;
|
|
2665
|
-
after?: string | undefined;
|
|
2666
|
-
sortBy?: string | undefined;
|
|
2667
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2668
|
-
paginationToken?: string | undefined;
|
|
2669
2669
|
search?: {
|
|
2670
2670
|
query: string;
|
|
2671
2671
|
searchableFields: string[];
|
|
@@ -2698,19 +2698,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2698
2698
|
values?: any[] | undefined;
|
|
2699
2699
|
caseSensitive?: boolean | undefined;
|
|
2700
2700
|
} | undefined;
|
|
2701
|
-
|
|
2701
|
+
tag?: {
|
|
2702
2702
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2703
2703
|
value?: string | undefined;
|
|
2704
2704
|
values?: string[] | undefined;
|
|
2705
2705
|
caseSensitive?: boolean | undefined;
|
|
2706
2706
|
} | undefined;
|
|
2707
|
-
|
|
2707
|
+
title?: {
|
|
2708
2708
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2709
2709
|
value?: string | undefined;
|
|
2710
2710
|
values?: string[] | undefined;
|
|
2711
2711
|
caseSensitive?: boolean | undefined;
|
|
2712
2712
|
} | undefined;
|
|
2713
|
-
|
|
2713
|
+
body?: {
|
|
2714
2714
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2715
2715
|
value?: string | undefined;
|
|
2716
2716
|
values?: string[] | undefined;
|
|
@@ -3560,18 +3560,18 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3560
3560
|
}>;
|
|
3561
3561
|
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
3562
3562
|
}, "strip", z.ZodTypeAny, {
|
|
3563
|
-
email: string;
|
|
3564
3563
|
passwords: {
|
|
3565
3564
|
password: string;
|
|
3566
3565
|
password_confirm: string;
|
|
3567
3566
|
};
|
|
3567
|
+
email: string;
|
|
3568
3568
|
acceptances: Record<string, boolean>;
|
|
3569
3569
|
}, {
|
|
3570
|
-
email: string;
|
|
3571
3570
|
passwords: {
|
|
3572
3571
|
password: string;
|
|
3573
3572
|
password_confirm: string;
|
|
3574
3573
|
};
|
|
3574
|
+
email: string;
|
|
3575
3575
|
acceptances?: Record<string, boolean> | undefined;
|
|
3576
3576
|
}>;
|
|
3577
3577
|
/** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
|
|
@@ -3598,17 +3598,17 @@ declare const signupInitiateSchema: z.ZodObject<{
|
|
|
3598
3598
|
password_confirm: string;
|
|
3599
3599
|
}>;
|
|
3600
3600
|
}, "strip", z.ZodTypeAny, {
|
|
3601
|
-
email: string;
|
|
3602
3601
|
passwords: {
|
|
3603
3602
|
password: string;
|
|
3604
3603
|
password_confirm: string;
|
|
3605
3604
|
};
|
|
3606
|
-
}, {
|
|
3607
3605
|
email: string;
|
|
3606
|
+
}, {
|
|
3608
3607
|
passwords: {
|
|
3609
3608
|
password: string;
|
|
3610
3609
|
password_confirm: string;
|
|
3611
3610
|
};
|
|
3611
|
+
email: string;
|
|
3612
3612
|
}>;
|
|
3613
3613
|
type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
|
|
3614
3614
|
/** Response when consents are required - token + consents to display. */
|
|
@@ -3720,8 +3720,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3720
3720
|
price_currency?: string | null | undefined;
|
|
3721
3721
|
}>, "many">>>;
|
|
3722
3722
|
}, "strip", z.ZodTypeAny, {
|
|
3723
|
-
userId: string;
|
|
3724
3723
|
email: string;
|
|
3724
|
+
userId: string;
|
|
3725
3725
|
username: string;
|
|
3726
3726
|
email_verified: boolean;
|
|
3727
3727
|
user_type: string;
|
|
@@ -3742,8 +3742,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3742
3742
|
price_currency?: string | null | undefined;
|
|
3743
3743
|
}[] | null | undefined;
|
|
3744
3744
|
}, {
|
|
3745
|
-
userId: string;
|
|
3746
3745
|
email: string;
|
|
3746
|
+
userId: string;
|
|
3747
3747
|
username: string;
|
|
3748
3748
|
email_verified: boolean;
|
|
3749
3749
|
user_type: string;
|
|
@@ -3766,8 +3766,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3766
3766
|
}>;
|
|
3767
3767
|
}, "strip", z.ZodTypeAny, {
|
|
3768
3768
|
user: {
|
|
3769
|
-
userId: string;
|
|
3770
3769
|
email: string;
|
|
3770
|
+
userId: string;
|
|
3771
3771
|
username: string;
|
|
3772
3772
|
email_verified: boolean;
|
|
3773
3773
|
user_type: string;
|
|
@@ -3788,15 +3788,15 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3788
3788
|
price_currency?: string | null | undefined;
|
|
3789
3789
|
}[] | null | undefined;
|
|
3790
3790
|
};
|
|
3791
|
+
status: string;
|
|
3791
3792
|
created_at: string;
|
|
3792
3793
|
expires_at: string;
|
|
3793
|
-
status: string;
|
|
3794
3794
|
user_agent?: string | null | undefined;
|
|
3795
3795
|
ip_address?: string | null | undefined;
|
|
3796
3796
|
}, {
|
|
3797
3797
|
user: {
|
|
3798
|
-
userId: string;
|
|
3799
3798
|
email: string;
|
|
3799
|
+
userId: string;
|
|
3800
3800
|
username: string;
|
|
3801
3801
|
email_verified: boolean;
|
|
3802
3802
|
user_type: string;
|
|
@@ -3817,9 +3817,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3817
3817
|
price_currency?: string | null | undefined;
|
|
3818
3818
|
}[] | null | undefined;
|
|
3819
3819
|
};
|
|
3820
|
+
status: string;
|
|
3820
3821
|
created_at: string;
|
|
3821
3822
|
expires_at: string;
|
|
3822
|
-
status: string;
|
|
3823
3823
|
user_agent?: string | null | undefined;
|
|
3824
3824
|
ip_address?: string | null | undefined;
|
|
3825
3825
|
}>;
|
|
@@ -3830,8 +3830,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3830
3830
|
refresh_token: string;
|
|
3831
3831
|
frontend_session: {
|
|
3832
3832
|
user: {
|
|
3833
|
-
userId: string;
|
|
3834
3833
|
email: string;
|
|
3834
|
+
userId: string;
|
|
3835
3835
|
username: string;
|
|
3836
3836
|
email_verified: boolean;
|
|
3837
3837
|
user_type: string;
|
|
@@ -3852,9 +3852,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3852
3852
|
price_currency?: string | null | undefined;
|
|
3853
3853
|
}[] | null | undefined;
|
|
3854
3854
|
};
|
|
3855
|
+
status: string;
|
|
3855
3856
|
created_at: string;
|
|
3856
3857
|
expires_at: string;
|
|
3857
|
-
status: string;
|
|
3858
3858
|
user_agent?: string | null | undefined;
|
|
3859
3859
|
ip_address?: string | null | undefined;
|
|
3860
3860
|
};
|
|
@@ -3864,8 +3864,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3864
3864
|
refresh_token: string;
|
|
3865
3865
|
frontend_session: {
|
|
3866
3866
|
user: {
|
|
3867
|
-
userId: string;
|
|
3868
3867
|
email: string;
|
|
3868
|
+
userId: string;
|
|
3869
3869
|
username: string;
|
|
3870
3870
|
email_verified: boolean;
|
|
3871
3871
|
user_type: string;
|
|
@@ -3886,9 +3886,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3886
3886
|
price_currency?: string | null | undefined;
|
|
3887
3887
|
}[] | null | undefined;
|
|
3888
3888
|
};
|
|
3889
|
+
status: string;
|
|
3889
3890
|
created_at: string;
|
|
3890
3891
|
expires_at: string;
|
|
3891
|
-
status: string;
|
|
3892
3892
|
user_agent?: string | null | undefined;
|
|
3893
3893
|
ip_address?: string | null | undefined;
|
|
3894
3894
|
};
|
|
@@ -3901,8 +3901,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3901
3901
|
refresh_token: string;
|
|
3902
3902
|
frontend_session: {
|
|
3903
3903
|
user: {
|
|
3904
|
-
userId: string;
|
|
3905
3904
|
email: string;
|
|
3905
|
+
userId: string;
|
|
3906
3906
|
username: string;
|
|
3907
3907
|
email_verified: boolean;
|
|
3908
3908
|
user_type: string;
|
|
@@ -3923,9 +3923,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3923
3923
|
price_currency?: string | null | undefined;
|
|
3924
3924
|
}[] | null | undefined;
|
|
3925
3925
|
};
|
|
3926
|
+
status: string;
|
|
3926
3927
|
created_at: string;
|
|
3927
3928
|
expires_at: string;
|
|
3928
|
-
status: string;
|
|
3929
3929
|
user_agent?: string | null | undefined;
|
|
3930
3930
|
ip_address?: string | null | undefined;
|
|
3931
3931
|
};
|
|
@@ -3938,8 +3938,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3938
3938
|
refresh_token: string;
|
|
3939
3939
|
frontend_session: {
|
|
3940
3940
|
user: {
|
|
3941
|
-
userId: string;
|
|
3942
3941
|
email: string;
|
|
3942
|
+
userId: string;
|
|
3943
3943
|
username: string;
|
|
3944
3944
|
email_verified: boolean;
|
|
3945
3945
|
user_type: string;
|
|
@@ -3960,9 +3960,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3960
3960
|
price_currency?: string | null | undefined;
|
|
3961
3961
|
}[] | null | undefined;
|
|
3962
3962
|
};
|
|
3963
|
+
status: string;
|
|
3963
3964
|
created_at: string;
|
|
3964
3965
|
expires_at: string;
|
|
3965
|
-
status: string;
|
|
3966
3966
|
user_agent?: string | null | undefined;
|
|
3967
3967
|
ip_address?: string | null | undefined;
|
|
3968
3968
|
};
|
|
@@ -4076,8 +4076,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4076
4076
|
price_currency?: string | null | undefined;
|
|
4077
4077
|
}>, "many">>>;
|
|
4078
4078
|
}, "strip", z.ZodTypeAny, {
|
|
4079
|
-
userId: string;
|
|
4080
4079
|
email: string;
|
|
4080
|
+
userId: string;
|
|
4081
4081
|
username: string;
|
|
4082
4082
|
email_verified: boolean;
|
|
4083
4083
|
user_type: string;
|
|
@@ -4098,8 +4098,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4098
4098
|
price_currency?: string | null | undefined;
|
|
4099
4099
|
}[] | null | undefined;
|
|
4100
4100
|
}, {
|
|
4101
|
-
userId: string;
|
|
4102
4101
|
email: string;
|
|
4102
|
+
userId: string;
|
|
4103
4103
|
username: string;
|
|
4104
4104
|
email_verified: boolean;
|
|
4105
4105
|
user_type: string;
|
|
@@ -4122,8 +4122,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4122
4122
|
}>;
|
|
4123
4123
|
}, "strip", z.ZodTypeAny, {
|
|
4124
4124
|
user: {
|
|
4125
|
-
userId: string;
|
|
4126
4125
|
email: string;
|
|
4126
|
+
userId: string;
|
|
4127
4127
|
username: string;
|
|
4128
4128
|
email_verified: boolean;
|
|
4129
4129
|
user_type: string;
|
|
@@ -4144,15 +4144,15 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4144
4144
|
price_currency?: string | null | undefined;
|
|
4145
4145
|
}[] | null | undefined;
|
|
4146
4146
|
};
|
|
4147
|
+
status: string;
|
|
4147
4148
|
created_at: string;
|
|
4148
4149
|
expires_at: string;
|
|
4149
|
-
status: string;
|
|
4150
4150
|
user_agent?: string | null | undefined;
|
|
4151
4151
|
ip_address?: string | null | undefined;
|
|
4152
4152
|
}, {
|
|
4153
4153
|
user: {
|
|
4154
|
-
userId: string;
|
|
4155
4154
|
email: string;
|
|
4155
|
+
userId: string;
|
|
4156
4156
|
username: string;
|
|
4157
4157
|
email_verified: boolean;
|
|
4158
4158
|
user_type: string;
|
|
@@ -4173,9 +4173,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4173
4173
|
price_currency?: string | null | undefined;
|
|
4174
4174
|
}[] | null | undefined;
|
|
4175
4175
|
};
|
|
4176
|
+
status: string;
|
|
4176
4177
|
created_at: string;
|
|
4177
4178
|
expires_at: string;
|
|
4178
|
-
status: string;
|
|
4179
4179
|
user_agent?: string | null | undefined;
|
|
4180
4180
|
ip_address?: string | null | undefined;
|
|
4181
4181
|
}>;
|
|
@@ -4186,8 +4186,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4186
4186
|
refresh_token: string;
|
|
4187
4187
|
frontend_session: {
|
|
4188
4188
|
user: {
|
|
4189
|
-
userId: string;
|
|
4190
4189
|
email: string;
|
|
4190
|
+
userId: string;
|
|
4191
4191
|
username: string;
|
|
4192
4192
|
email_verified: boolean;
|
|
4193
4193
|
user_type: string;
|
|
@@ -4208,9 +4208,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4208
4208
|
price_currency?: string | null | undefined;
|
|
4209
4209
|
}[] | null | undefined;
|
|
4210
4210
|
};
|
|
4211
|
+
status: string;
|
|
4211
4212
|
created_at: string;
|
|
4212
4213
|
expires_at: string;
|
|
4213
|
-
status: string;
|
|
4214
4214
|
user_agent?: string | null | undefined;
|
|
4215
4215
|
ip_address?: string | null | undefined;
|
|
4216
4216
|
};
|
|
@@ -4220,8 +4220,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4220
4220
|
refresh_token: string;
|
|
4221
4221
|
frontend_session: {
|
|
4222
4222
|
user: {
|
|
4223
|
-
userId: string;
|
|
4224
4223
|
email: string;
|
|
4224
|
+
userId: string;
|
|
4225
4225
|
username: string;
|
|
4226
4226
|
email_verified: boolean;
|
|
4227
4227
|
user_type: string;
|
|
@@ -4242,9 +4242,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4242
4242
|
price_currency?: string | null | undefined;
|
|
4243
4243
|
}[] | null | undefined;
|
|
4244
4244
|
};
|
|
4245
|
+
status: string;
|
|
4245
4246
|
created_at: string;
|
|
4246
4247
|
expires_at: string;
|
|
4247
|
-
status: string;
|
|
4248
4248
|
user_agent?: string | null | undefined;
|
|
4249
4249
|
ip_address?: string | null | undefined;
|
|
4250
4250
|
};
|
|
@@ -4257,8 +4257,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4257
4257
|
refresh_token: string;
|
|
4258
4258
|
frontend_session: {
|
|
4259
4259
|
user: {
|
|
4260
|
-
userId: string;
|
|
4261
4260
|
email: string;
|
|
4261
|
+
userId: string;
|
|
4262
4262
|
username: string;
|
|
4263
4263
|
email_verified: boolean;
|
|
4264
4264
|
user_type: string;
|
|
@@ -4279,9 +4279,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4279
4279
|
price_currency?: string | null | undefined;
|
|
4280
4280
|
}[] | null | undefined;
|
|
4281
4281
|
};
|
|
4282
|
+
status: string;
|
|
4282
4283
|
created_at: string;
|
|
4283
4284
|
expires_at: string;
|
|
4284
|
-
status: string;
|
|
4285
4285
|
user_agent?: string | null | undefined;
|
|
4286
4286
|
ip_address?: string | null | undefined;
|
|
4287
4287
|
};
|
|
@@ -4294,8 +4294,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4294
4294
|
refresh_token: string;
|
|
4295
4295
|
frontend_session: {
|
|
4296
4296
|
user: {
|
|
4297
|
-
userId: string;
|
|
4298
4297
|
email: string;
|
|
4298
|
+
userId: string;
|
|
4299
4299
|
username: string;
|
|
4300
4300
|
email_verified: boolean;
|
|
4301
4301
|
user_type: string;
|
|
@@ -4316,9 +4316,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4316
4316
|
price_currency?: string | null | undefined;
|
|
4317
4317
|
}[] | null | undefined;
|
|
4318
4318
|
};
|
|
4319
|
+
status: string;
|
|
4319
4320
|
created_at: string;
|
|
4320
4321
|
expires_at: string;
|
|
4321
|
-
status: string;
|
|
4322
4322
|
user_agent?: string | null | undefined;
|
|
4323
4323
|
ip_address?: string | null | undefined;
|
|
4324
4324
|
};
|
|
@@ -4634,8 +4634,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4634
4634
|
user_id_display_name?: string | null | undefined;
|
|
4635
4635
|
}>>>;
|
|
4636
4636
|
}, "strip", z.ZodTypeAny, {
|
|
4637
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4638
4637
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4638
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4639
4639
|
id: string;
|
|
4640
4640
|
description: string;
|
|
4641
4641
|
title: string;
|
|
@@ -4666,8 +4666,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4666
4666
|
user_id_display_name?: string | null | undefined;
|
|
4667
4667
|
} | null | undefined;
|
|
4668
4668
|
}, {
|
|
4669
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4670
4669
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4670
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4671
4671
|
id: string;
|
|
4672
4672
|
description: string;
|
|
4673
4673
|
title: string;
|
|
@@ -4756,8 +4756,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4756
4756
|
user_id_display_name?: string | null | undefined;
|
|
4757
4757
|
}>>>;
|
|
4758
4758
|
}, "strip", z.ZodTypeAny, {
|
|
4759
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4760
4759
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4760
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4761
4761
|
id: string;
|
|
4762
4762
|
description: string;
|
|
4763
4763
|
title: string;
|
|
@@ -4788,8 +4788,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4788
4788
|
user_id_display_name?: string | null | undefined;
|
|
4789
4789
|
} | null | undefined;
|
|
4790
4790
|
}, {
|
|
4791
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4792
4791
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4792
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4793
4793
|
id: string;
|
|
4794
4794
|
description: string;
|
|
4795
4795
|
title: string;
|
|
@@ -4844,8 +4844,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4844
4844
|
}>;
|
|
4845
4845
|
}, "strip", z.ZodTypeAny, {
|
|
4846
4846
|
items: {
|
|
4847
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4848
4847
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4848
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4849
4849
|
id: string;
|
|
4850
4850
|
description: string;
|
|
4851
4851
|
title: string;
|
|
@@ -4886,8 +4886,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4886
4886
|
};
|
|
4887
4887
|
}, {
|
|
4888
4888
|
items: {
|
|
4889
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4890
4889
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4890
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4891
4891
|
id: string;
|
|
4892
4892
|
description: string;
|
|
4893
4893
|
title: string;
|
|
@@ -5623,6 +5623,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5623
5623
|
searchableFields: string[];
|
|
5624
5624
|
}>>;
|
|
5625
5625
|
}, "strip", z.ZodTypeAny, {
|
|
5626
|
+
type?: {
|
|
5627
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5628
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5629
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5630
|
+
caseSensitive?: boolean | undefined;
|
|
5631
|
+
} | undefined;
|
|
5632
|
+
status?: {
|
|
5633
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5634
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5635
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5636
|
+
caseSensitive?: boolean | undefined;
|
|
5637
|
+
} | undefined;
|
|
5638
|
+
first?: number | undefined;
|
|
5639
|
+
after?: string | undefined;
|
|
5640
|
+
sortBy?: string | undefined;
|
|
5641
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5642
|
+
paginationToken?: string | undefined;
|
|
5626
5643
|
created_at?: {
|
|
5627
5644
|
operator: "isEmpty" | "isNotEmpty";
|
|
5628
5645
|
value?: any;
|
|
@@ -5639,23 +5656,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5639
5656
|
values?: any[] | undefined;
|
|
5640
5657
|
caseSensitive?: boolean | undefined;
|
|
5641
5658
|
} | undefined;
|
|
5642
|
-
status?: {
|
|
5643
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5644
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5645
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5646
|
-
caseSensitive?: boolean | undefined;
|
|
5647
|
-
} | undefined;
|
|
5648
|
-
type?: {
|
|
5649
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5650
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5651
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5652
|
-
caseSensitive?: boolean | undefined;
|
|
5653
|
-
} | undefined;
|
|
5654
|
-
first?: number | undefined;
|
|
5655
|
-
after?: string | undefined;
|
|
5656
|
-
sortBy?: string | undefined;
|
|
5657
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5658
|
-
paginationToken?: string | undefined;
|
|
5659
5659
|
created_by?: {
|
|
5660
5660
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5661
5661
|
value?: string | undefined;
|
|
@@ -5761,6 +5761,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5761
5761
|
caseSensitive?: boolean | undefined;
|
|
5762
5762
|
} | undefined;
|
|
5763
5763
|
}, {
|
|
5764
|
+
type?: {
|
|
5765
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5766
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5767
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5768
|
+
caseSensitive?: boolean | undefined;
|
|
5769
|
+
} | undefined;
|
|
5770
|
+
status?: {
|
|
5771
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5772
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5773
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5774
|
+
caseSensitive?: boolean | undefined;
|
|
5775
|
+
} | undefined;
|
|
5776
|
+
first?: number | undefined;
|
|
5777
|
+
after?: string | undefined;
|
|
5778
|
+
sortBy?: string | undefined;
|
|
5779
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5780
|
+
paginationToken?: string | undefined;
|
|
5764
5781
|
created_at?: {
|
|
5765
5782
|
operator: "isEmpty" | "isNotEmpty";
|
|
5766
5783
|
value?: any;
|
|
@@ -5777,23 +5794,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5777
5794
|
values?: any[] | undefined;
|
|
5778
5795
|
caseSensitive?: boolean | undefined;
|
|
5779
5796
|
} | undefined;
|
|
5780
|
-
status?: {
|
|
5781
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5782
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5783
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5784
|
-
caseSensitive?: boolean | undefined;
|
|
5785
|
-
} | undefined;
|
|
5786
|
-
type?: {
|
|
5787
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5788
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5789
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5790
|
-
caseSensitive?: boolean | undefined;
|
|
5791
|
-
} | undefined;
|
|
5792
|
-
first?: number | undefined;
|
|
5793
|
-
after?: string | undefined;
|
|
5794
|
-
sortBy?: string | undefined;
|
|
5795
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5796
|
-
paginationToken?: string | undefined;
|
|
5797
5797
|
created_by?: {
|
|
5798
5798
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5799
5799
|
value?: string | undefined;
|
|
@@ -5936,8 +5936,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5936
5936
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5937
5937
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5938
5938
|
}, "strip", z.ZodTypeAny, {
|
|
5939
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5940
5939
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5940
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5941
5941
|
id: string;
|
|
5942
5942
|
description: string;
|
|
5943
5943
|
title: string;
|
|
@@ -5965,8 +5965,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5965
5965
|
assigned_to_display_name?: string | null | undefined;
|
|
5966
5966
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5967
5967
|
}, {
|
|
5968
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5969
5968
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5969
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5970
5970
|
id: string;
|
|
5971
5971
|
description: string;
|
|
5972
5972
|
title: string;
|
|
@@ -6029,8 +6029,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6029
6029
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6030
6030
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6031
6031
|
}, "strip", z.ZodTypeAny, {
|
|
6032
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6033
6032
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6033
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6034
6034
|
id: string;
|
|
6035
6035
|
description: string;
|
|
6036
6036
|
title: string;
|
|
@@ -6058,8 +6058,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6058
6058
|
assigned_to_display_name?: string | null | undefined;
|
|
6059
6059
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
6060
6060
|
}, {
|
|
6061
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6062
6061
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6062
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6063
6063
|
id: string;
|
|
6064
6064
|
description: string;
|
|
6065
6065
|
title: string;
|
|
@@ -6111,8 +6111,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6111
6111
|
}>;
|
|
6112
6112
|
}, "strip", z.ZodTypeAny, {
|
|
6113
6113
|
items: {
|
|
6114
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6115
6114
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6115
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6116
6116
|
id: string;
|
|
6117
6117
|
description: string;
|
|
6118
6118
|
title: string;
|
|
@@ -6150,8 +6150,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6150
6150
|
};
|
|
6151
6151
|
}, {
|
|
6152
6152
|
items: {
|
|
6153
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6154
6153
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6154
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6155
6155
|
id: string;
|
|
6156
6156
|
description: string;
|
|
6157
6157
|
title: string;
|
|
@@ -6986,6 +6986,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6986
6986
|
searchableFields: string[];
|
|
6987
6987
|
}>>;
|
|
6988
6988
|
}, "strip", z.ZodTypeAny, {
|
|
6989
|
+
type?: {
|
|
6990
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6991
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6992
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6993
|
+
caseSensitive?: boolean | undefined;
|
|
6994
|
+
} | undefined;
|
|
6995
|
+
status?: {
|
|
6996
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6997
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6998
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6999
|
+
caseSensitive?: boolean | undefined;
|
|
7000
|
+
} | undefined;
|
|
7001
|
+
first?: number | undefined;
|
|
7002
|
+
after?: string | undefined;
|
|
7003
|
+
sortBy?: string | undefined;
|
|
7004
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7005
|
+
paginationToken?: string | undefined;
|
|
6989
7006
|
created_at?: {
|
|
6990
7007
|
operator: "isEmpty" | "isNotEmpty";
|
|
6991
7008
|
value?: any;
|
|
@@ -7002,23 +7019,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7002
7019
|
values?: any[] | undefined;
|
|
7003
7020
|
caseSensitive?: boolean | undefined;
|
|
7004
7021
|
} | undefined;
|
|
7005
|
-
status?: {
|
|
7006
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7007
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7008
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7009
|
-
caseSensitive?: boolean | undefined;
|
|
7010
|
-
} | undefined;
|
|
7011
|
-
type?: {
|
|
7012
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7013
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7014
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7015
|
-
caseSensitive?: boolean | undefined;
|
|
7016
|
-
} | undefined;
|
|
7017
|
-
first?: number | undefined;
|
|
7018
|
-
after?: string | undefined;
|
|
7019
|
-
sortBy?: string | undefined;
|
|
7020
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7021
|
-
paginationToken?: string | undefined;
|
|
7022
7022
|
created_by?: {
|
|
7023
7023
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7024
7024
|
value?: string | undefined;
|
|
@@ -7142,6 +7142,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7142
7142
|
caseSensitive?: boolean | undefined;
|
|
7143
7143
|
} | undefined;
|
|
7144
7144
|
}, {
|
|
7145
|
+
type?: {
|
|
7146
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
7147
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7148
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7149
|
+
caseSensitive?: boolean | undefined;
|
|
7150
|
+
} | undefined;
|
|
7151
|
+
status?: {
|
|
7152
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
7153
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7154
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7155
|
+
caseSensitive?: boolean | undefined;
|
|
7156
|
+
} | undefined;
|
|
7157
|
+
first?: number | undefined;
|
|
7158
|
+
after?: string | undefined;
|
|
7159
|
+
sortBy?: string | undefined;
|
|
7160
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7161
|
+
paginationToken?: string | undefined;
|
|
7145
7162
|
created_at?: {
|
|
7146
7163
|
operator: "isEmpty" | "isNotEmpty";
|
|
7147
7164
|
value?: any;
|
|
@@ -7158,23 +7175,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7158
7175
|
values?: any[] | undefined;
|
|
7159
7176
|
caseSensitive?: boolean | undefined;
|
|
7160
7177
|
} | undefined;
|
|
7161
|
-
status?: {
|
|
7162
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7163
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7164
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7165
|
-
caseSensitive?: boolean | undefined;
|
|
7166
|
-
} | undefined;
|
|
7167
|
-
type?: {
|
|
7168
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7169
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7170
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7171
|
-
caseSensitive?: boolean | undefined;
|
|
7172
|
-
} | undefined;
|
|
7173
|
-
first?: number | undefined;
|
|
7174
|
-
after?: string | undefined;
|
|
7175
|
-
sortBy?: string | undefined;
|
|
7176
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7177
|
-
paginationToken?: string | undefined;
|
|
7178
7178
|
created_by?: {
|
|
7179
7179
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7180
7180
|
value?: string | undefined;
|
|
@@ -8064,6 +8064,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8064
8064
|
searchableFields: string[];
|
|
8065
8065
|
}>>;
|
|
8066
8066
|
}, "strip", z.ZodTypeAny, {
|
|
8067
|
+
first?: number | undefined;
|
|
8068
|
+
after?: string | undefined;
|
|
8069
|
+
sortBy?: string | undefined;
|
|
8070
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8071
|
+
paginationToken?: string | undefined;
|
|
8067
8072
|
created_at?: {
|
|
8068
8073
|
operator: "isEmpty" | "isNotEmpty";
|
|
8069
8074
|
value?: any;
|
|
@@ -8080,11 +8085,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8080
8085
|
values?: any[] | undefined;
|
|
8081
8086
|
caseSensitive?: boolean | undefined;
|
|
8082
8087
|
} | undefined;
|
|
8083
|
-
first?: number | undefined;
|
|
8084
|
-
after?: string | undefined;
|
|
8085
|
-
sortBy?: string | undefined;
|
|
8086
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8087
|
-
paginationToken?: string | undefined;
|
|
8088
8088
|
search?: {
|
|
8089
8089
|
query: string;
|
|
8090
8090
|
searchableFields: string[];
|
|
@@ -8164,6 +8164,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8164
8164
|
caseSensitive?: boolean | undefined;
|
|
8165
8165
|
} | undefined;
|
|
8166
8166
|
}, {
|
|
8167
|
+
first?: number | undefined;
|
|
8168
|
+
after?: string | undefined;
|
|
8169
|
+
sortBy?: string | undefined;
|
|
8170
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8171
|
+
paginationToken?: string | undefined;
|
|
8167
8172
|
created_at?: {
|
|
8168
8173
|
operator: "isEmpty" | "isNotEmpty";
|
|
8169
8174
|
value?: any;
|
|
@@ -8180,11 +8185,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8180
8185
|
values?: any[] | undefined;
|
|
8181
8186
|
caseSensitive?: boolean | undefined;
|
|
8182
8187
|
} | undefined;
|
|
8183
|
-
first?: number | undefined;
|
|
8184
|
-
after?: string | undefined;
|
|
8185
|
-
sortBy?: string | undefined;
|
|
8186
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8187
|
-
paginationToken?: string | undefined;
|
|
8188
8188
|
search?: {
|
|
8189
8189
|
query: string;
|
|
8190
8190
|
searchableFields: string[];
|
|
@@ -8291,14 +8291,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8291
8291
|
url?: string | null | undefined;
|
|
8292
8292
|
unique_name?: string | null | undefined;
|
|
8293
8293
|
legal_name?: string | null | undefined;
|
|
8294
|
-
contact_name?: string | null | undefined;
|
|
8295
8294
|
contact_email?: string | null | undefined;
|
|
8295
|
+
address_city?: string | null | undefined;
|
|
8296
|
+
address_zip?: string | null | undefined;
|
|
8297
|
+
contact_name?: string | null | undefined;
|
|
8296
8298
|
contact_business_phone?: string | null | undefined;
|
|
8297
8299
|
contact_mobile_phone?: string | null | undefined;
|
|
8298
8300
|
contact_time_zone?: string | null | undefined;
|
|
8299
8301
|
address_full?: string | null | undefined;
|
|
8300
|
-
address_city?: string | null | undefined;
|
|
8301
|
-
address_zip?: string | null | undefined;
|
|
8302
8302
|
twitter_username?: string | null | undefined;
|
|
8303
8303
|
logo?: string | null | undefined;
|
|
8304
8304
|
email_sent_from?: string | null | undefined;
|
|
@@ -8309,14 +8309,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8309
8309
|
url?: string | null | undefined;
|
|
8310
8310
|
unique_name?: string | null | undefined;
|
|
8311
8311
|
legal_name?: string | null | undefined;
|
|
8312
|
-
contact_name?: string | null | undefined;
|
|
8313
8312
|
contact_email?: string | null | undefined;
|
|
8313
|
+
address_city?: string | null | undefined;
|
|
8314
|
+
address_zip?: string | null | undefined;
|
|
8315
|
+
contact_name?: string | null | undefined;
|
|
8314
8316
|
contact_business_phone?: string | null | undefined;
|
|
8315
8317
|
contact_mobile_phone?: string | null | undefined;
|
|
8316
8318
|
contact_time_zone?: string | null | undefined;
|
|
8317
8319
|
address_full?: string | null | undefined;
|
|
8318
|
-
address_city?: string | null | undefined;
|
|
8319
|
-
address_zip?: string | null | undefined;
|
|
8320
8320
|
twitter_username?: string | null | undefined;
|
|
8321
8321
|
logo?: string | null | undefined;
|
|
8322
8322
|
email_sent_from?: string | null | undefined;
|
|
@@ -8346,14 +8346,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8346
8346
|
url?: string | null | undefined;
|
|
8347
8347
|
unique_name?: string | null | undefined;
|
|
8348
8348
|
legal_name?: string | null | undefined;
|
|
8349
|
-
contact_name?: string | null | undefined;
|
|
8350
8349
|
contact_email?: string | null | undefined;
|
|
8350
|
+
address_city?: string | null | undefined;
|
|
8351
|
+
address_zip?: string | null | undefined;
|
|
8352
|
+
contact_name?: string | null | undefined;
|
|
8351
8353
|
contact_business_phone?: string | null | undefined;
|
|
8352
8354
|
contact_mobile_phone?: string | null | undefined;
|
|
8353
8355
|
contact_time_zone?: string | null | undefined;
|
|
8354
8356
|
address_full?: string | null | undefined;
|
|
8355
|
-
address_city?: string | null | undefined;
|
|
8356
|
-
address_zip?: string | null | undefined;
|
|
8357
8357
|
twitter_username?: string | null | undefined;
|
|
8358
8358
|
logo?: string | null | undefined;
|
|
8359
8359
|
email_sent_from?: string | null | undefined;
|
|
@@ -8364,14 +8364,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8364
8364
|
url?: string | null | undefined;
|
|
8365
8365
|
unique_name?: string | null | undefined;
|
|
8366
8366
|
legal_name?: string | null | undefined;
|
|
8367
|
-
contact_name?: string | null | undefined;
|
|
8368
8367
|
contact_email?: string | null | undefined;
|
|
8368
|
+
address_city?: string | null | undefined;
|
|
8369
|
+
address_zip?: string | null | undefined;
|
|
8370
|
+
contact_name?: string | null | undefined;
|
|
8369
8371
|
contact_business_phone?: string | null | undefined;
|
|
8370
8372
|
contact_mobile_phone?: string | null | undefined;
|
|
8371
8373
|
contact_time_zone?: string | null | undefined;
|
|
8372
8374
|
address_full?: string | null | undefined;
|
|
8373
|
-
address_city?: string | null | undefined;
|
|
8374
|
-
address_zip?: string | null | undefined;
|
|
8375
8375
|
twitter_username?: string | null | undefined;
|
|
8376
8376
|
logo?: string | null | undefined;
|
|
8377
8377
|
email_sent_from?: string | null | undefined;
|
|
@@ -8405,14 +8405,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8405
8405
|
url?: string | null | undefined;
|
|
8406
8406
|
unique_name?: string | null | undefined;
|
|
8407
8407
|
legal_name?: string | null | undefined;
|
|
8408
|
-
contact_name?: string | null | undefined;
|
|
8409
8408
|
contact_email?: string | null | undefined;
|
|
8409
|
+
address_city?: string | null | undefined;
|
|
8410
|
+
address_zip?: string | null | undefined;
|
|
8411
|
+
contact_name?: string | null | undefined;
|
|
8410
8412
|
contact_business_phone?: string | null | undefined;
|
|
8411
8413
|
contact_mobile_phone?: string | null | undefined;
|
|
8412
8414
|
contact_time_zone?: string | null | undefined;
|
|
8413
8415
|
address_full?: string | null | undefined;
|
|
8414
|
-
address_city?: string | null | undefined;
|
|
8415
|
-
address_zip?: string | null | undefined;
|
|
8416
8416
|
twitter_username?: string | null | undefined;
|
|
8417
8417
|
logo?: string | null | undefined;
|
|
8418
8418
|
email_sent_from?: string | null | undefined;
|
|
@@ -8424,14 +8424,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8424
8424
|
url?: string | null | undefined;
|
|
8425
8425
|
unique_name?: string | null | undefined;
|
|
8426
8426
|
legal_name?: string | null | undefined;
|
|
8427
|
-
contact_name?: string | null | undefined;
|
|
8428
8427
|
contact_email?: string | null | undefined;
|
|
8428
|
+
address_city?: string | null | undefined;
|
|
8429
|
+
address_zip?: string | null | undefined;
|
|
8430
|
+
contact_name?: string | null | undefined;
|
|
8429
8431
|
contact_business_phone?: string | null | undefined;
|
|
8430
8432
|
contact_mobile_phone?: string | null | undefined;
|
|
8431
8433
|
contact_time_zone?: string | null | undefined;
|
|
8432
8434
|
address_full?: string | null | undefined;
|
|
8433
|
-
address_city?: string | null | undefined;
|
|
8434
|
-
address_zip?: string | null | undefined;
|
|
8435
8435
|
twitter_username?: string | null | undefined;
|
|
8436
8436
|
logo?: string | null | undefined;
|
|
8437
8437
|
email_sent_from?: string | null | undefined;
|
|
@@ -8488,14 +8488,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8488
8488
|
updated_by_display_name?: string | null | undefined;
|
|
8489
8489
|
unique_name?: string | null | undefined;
|
|
8490
8490
|
legal_name?: string | null | undefined;
|
|
8491
|
-
contact_name?: string | null | undefined;
|
|
8492
8491
|
contact_email?: string | null | undefined;
|
|
8492
|
+
address_city?: string | null | undefined;
|
|
8493
|
+
address_zip?: string | null | undefined;
|
|
8494
|
+
contact_name?: string | null | undefined;
|
|
8493
8495
|
contact_business_phone?: string | null | undefined;
|
|
8494
8496
|
contact_mobile_phone?: string | null | undefined;
|
|
8495
8497
|
contact_time_zone?: string | null | undefined;
|
|
8496
8498
|
address_full?: string | null | undefined;
|
|
8497
|
-
address_city?: string | null | undefined;
|
|
8498
|
-
address_zip?: string | null | undefined;
|
|
8499
8499
|
twitter_username?: string | null | undefined;
|
|
8500
8500
|
logo?: string | null | undefined;
|
|
8501
8501
|
email_sent_from?: string | null | undefined;
|
|
@@ -8517,14 +8517,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8517
8517
|
updated_by_display_name?: string | null | undefined;
|
|
8518
8518
|
unique_name?: string | null | undefined;
|
|
8519
8519
|
legal_name?: string | null | undefined;
|
|
8520
|
-
contact_name?: string | null | undefined;
|
|
8521
8520
|
contact_email?: string | null | undefined;
|
|
8521
|
+
address_city?: string | null | undefined;
|
|
8522
|
+
address_zip?: string | null | undefined;
|
|
8523
|
+
contact_name?: string | null | undefined;
|
|
8522
8524
|
contact_business_phone?: string | null | undefined;
|
|
8523
8525
|
contact_mobile_phone?: string | null | undefined;
|
|
8524
8526
|
contact_time_zone?: string | null | undefined;
|
|
8525
8527
|
address_full?: string | null | undefined;
|
|
8526
|
-
address_city?: string | null | undefined;
|
|
8527
|
-
address_zip?: string | null | undefined;
|
|
8528
8528
|
twitter_username?: string | null | undefined;
|
|
8529
8529
|
logo?: string | null | undefined;
|
|
8530
8530
|
email_sent_from?: string | null | undefined;
|
|
@@ -8570,14 +8570,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8570
8570
|
updated_by_display_name?: string | null | undefined;
|
|
8571
8571
|
unique_name?: string | null | undefined;
|
|
8572
8572
|
legal_name?: string | null | undefined;
|
|
8573
|
-
contact_name?: string | null | undefined;
|
|
8574
8573
|
contact_email?: string | null | undefined;
|
|
8574
|
+
address_city?: string | null | undefined;
|
|
8575
|
+
address_zip?: string | null | undefined;
|
|
8576
|
+
contact_name?: string | null | undefined;
|
|
8575
8577
|
contact_business_phone?: string | null | undefined;
|
|
8576
8578
|
contact_mobile_phone?: string | null | undefined;
|
|
8577
8579
|
contact_time_zone?: string | null | undefined;
|
|
8578
8580
|
address_full?: string | null | undefined;
|
|
8579
|
-
address_city?: string | null | undefined;
|
|
8580
|
-
address_zip?: string | null | undefined;
|
|
8581
8581
|
twitter_username?: string | null | undefined;
|
|
8582
8582
|
logo?: string | null | undefined;
|
|
8583
8583
|
email_sent_from?: string | null | undefined;
|
|
@@ -8609,14 +8609,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8609
8609
|
updated_by_display_name?: string | null | undefined;
|
|
8610
8610
|
unique_name?: string | null | undefined;
|
|
8611
8611
|
legal_name?: string | null | undefined;
|
|
8612
|
-
contact_name?: string | null | undefined;
|
|
8613
8612
|
contact_email?: string | null | undefined;
|
|
8613
|
+
address_city?: string | null | undefined;
|
|
8614
|
+
address_zip?: string | null | undefined;
|
|
8615
|
+
contact_name?: string | null | undefined;
|
|
8614
8616
|
contact_business_phone?: string | null | undefined;
|
|
8615
8617
|
contact_mobile_phone?: string | null | undefined;
|
|
8616
8618
|
contact_time_zone?: string | null | undefined;
|
|
8617
8619
|
address_full?: string | null | undefined;
|
|
8618
|
-
address_city?: string | null | undefined;
|
|
8619
|
-
address_zip?: string | null | undefined;
|
|
8620
8620
|
twitter_username?: string | null | undefined;
|
|
8621
8621
|
logo?: string | null | undefined;
|
|
8622
8622
|
email_sent_from?: string | null | undefined;
|
|
@@ -8681,14 +8681,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8681
8681
|
updated_by_display_name?: string | null | undefined;
|
|
8682
8682
|
unique_name?: string | null | undefined;
|
|
8683
8683
|
legal_name?: string | null | undefined;
|
|
8684
|
-
contact_name?: string | null | undefined;
|
|
8685
8684
|
contact_email?: string | null | undefined;
|
|
8685
|
+
address_city?: string | null | undefined;
|
|
8686
|
+
address_zip?: string | null | undefined;
|
|
8687
|
+
contact_name?: string | null | undefined;
|
|
8686
8688
|
contact_business_phone?: string | null | undefined;
|
|
8687
8689
|
contact_mobile_phone?: string | null | undefined;
|
|
8688
8690
|
contact_time_zone?: string | null | undefined;
|
|
8689
8691
|
address_full?: string | null | undefined;
|
|
8690
|
-
address_city?: string | null | undefined;
|
|
8691
|
-
address_zip?: string | null | undefined;
|
|
8692
8692
|
twitter_username?: string | null | undefined;
|
|
8693
8693
|
logo?: string | null | undefined;
|
|
8694
8694
|
email_sent_from?: string | null | undefined;
|
|
@@ -8710,14 +8710,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8710
8710
|
updated_by_display_name?: string | null | undefined;
|
|
8711
8711
|
unique_name?: string | null | undefined;
|
|
8712
8712
|
legal_name?: string | null | undefined;
|
|
8713
|
-
contact_name?: string | null | undefined;
|
|
8714
8713
|
contact_email?: string | null | undefined;
|
|
8714
|
+
address_city?: string | null | undefined;
|
|
8715
|
+
address_zip?: string | null | undefined;
|
|
8716
|
+
contact_name?: string | null | undefined;
|
|
8715
8717
|
contact_business_phone?: string | null | undefined;
|
|
8716
8718
|
contact_mobile_phone?: string | null | undefined;
|
|
8717
8719
|
contact_time_zone?: string | null | undefined;
|
|
8718
8720
|
address_full?: string | null | undefined;
|
|
8719
|
-
address_city?: string | null | undefined;
|
|
8720
|
-
address_zip?: string | null | undefined;
|
|
8721
8721
|
twitter_username?: string | null | undefined;
|
|
8722
8722
|
logo?: string | null | undefined;
|
|
8723
8723
|
email_sent_from?: string | null | undefined;
|
|
@@ -8777,14 +8777,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8777
8777
|
updated_by_display_name?: string | null | undefined;
|
|
8778
8778
|
unique_name?: string | null | undefined;
|
|
8779
8779
|
legal_name?: string | null | undefined;
|
|
8780
|
-
contact_name?: string | null | undefined;
|
|
8781
8780
|
contact_email?: string | null | undefined;
|
|
8781
|
+
address_city?: string | null | undefined;
|
|
8782
|
+
address_zip?: string | null | undefined;
|
|
8783
|
+
contact_name?: string | null | undefined;
|
|
8782
8784
|
contact_business_phone?: string | null | undefined;
|
|
8783
8785
|
contact_mobile_phone?: string | null | undefined;
|
|
8784
8786
|
contact_time_zone?: string | null | undefined;
|
|
8785
8787
|
address_full?: string | null | undefined;
|
|
8786
|
-
address_city?: string | null | undefined;
|
|
8787
|
-
address_zip?: string | null | undefined;
|
|
8788
8788
|
twitter_username?: string | null | undefined;
|
|
8789
8789
|
logo?: string | null | undefined;
|
|
8790
8790
|
email_sent_from?: string | null | undefined;
|
|
@@ -8806,14 +8806,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8806
8806
|
updated_by_display_name?: string | null | undefined;
|
|
8807
8807
|
unique_name?: string | null | undefined;
|
|
8808
8808
|
legal_name?: string | null | undefined;
|
|
8809
|
-
contact_name?: string | null | undefined;
|
|
8810
8809
|
contact_email?: string | null | undefined;
|
|
8810
|
+
address_city?: string | null | undefined;
|
|
8811
|
+
address_zip?: string | null | undefined;
|
|
8812
|
+
contact_name?: string | null | undefined;
|
|
8811
8813
|
contact_business_phone?: string | null | undefined;
|
|
8812
8814
|
contact_mobile_phone?: string | null | undefined;
|
|
8813
8815
|
contact_time_zone?: string | null | undefined;
|
|
8814
8816
|
address_full?: string | null | undefined;
|
|
8815
|
-
address_city?: string | null | undefined;
|
|
8816
|
-
address_zip?: string | null | undefined;
|
|
8817
8817
|
twitter_username?: string | null | undefined;
|
|
8818
8818
|
logo?: string | null | undefined;
|
|
8819
8819
|
email_sent_from?: string | null | undefined;
|
|
@@ -8871,14 +8871,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8871
8871
|
updated_by_display_name?: string | null | undefined;
|
|
8872
8872
|
unique_name?: string | null | undefined;
|
|
8873
8873
|
legal_name?: string | null | undefined;
|
|
8874
|
-
contact_name?: string | null | undefined;
|
|
8875
8874
|
contact_email?: string | null | undefined;
|
|
8875
|
+
address_city?: string | null | undefined;
|
|
8876
|
+
address_zip?: string | null | undefined;
|
|
8877
|
+
contact_name?: string | null | undefined;
|
|
8876
8878
|
contact_business_phone?: string | null | undefined;
|
|
8877
8879
|
contact_mobile_phone?: string | null | undefined;
|
|
8878
8880
|
contact_time_zone?: string | null | undefined;
|
|
8879
8881
|
address_full?: string | null | undefined;
|
|
8880
|
-
address_city?: string | null | undefined;
|
|
8881
|
-
address_zip?: string | null | undefined;
|
|
8882
8882
|
twitter_username?: string | null | undefined;
|
|
8883
8883
|
logo?: string | null | undefined;
|
|
8884
8884
|
email_sent_from?: string | null | undefined;
|
|
@@ -8900,14 +8900,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8900
8900
|
updated_by_display_name?: string | null | undefined;
|
|
8901
8901
|
unique_name?: string | null | undefined;
|
|
8902
8902
|
legal_name?: string | null | undefined;
|
|
8903
|
-
contact_name?: string | null | undefined;
|
|
8904
8903
|
contact_email?: string | null | undefined;
|
|
8904
|
+
address_city?: string | null | undefined;
|
|
8905
|
+
address_zip?: string | null | undefined;
|
|
8906
|
+
contact_name?: string | null | undefined;
|
|
8905
8907
|
contact_business_phone?: string | null | undefined;
|
|
8906
8908
|
contact_mobile_phone?: string | null | undefined;
|
|
8907
8909
|
contact_time_zone?: string | null | undefined;
|
|
8908
8910
|
address_full?: string | null | undefined;
|
|
8909
|
-
address_city?: string | null | undefined;
|
|
8910
|
-
address_zip?: string | null | undefined;
|
|
8911
8911
|
twitter_username?: string | null | undefined;
|
|
8912
8912
|
logo?: string | null | undefined;
|
|
8913
8913
|
email_sent_from?: string | null | undefined;
|
|
@@ -8931,14 +8931,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8931
8931
|
updated_by_display_name?: string | null | undefined;
|
|
8932
8932
|
unique_name?: string | null | undefined;
|
|
8933
8933
|
legal_name?: string | null | undefined;
|
|
8934
|
-
contact_name?: string | null | undefined;
|
|
8935
8934
|
contact_email?: string | null | undefined;
|
|
8935
|
+
address_city?: string | null | undefined;
|
|
8936
|
+
address_zip?: string | null | undefined;
|
|
8937
|
+
contact_name?: string | null | undefined;
|
|
8936
8938
|
contact_business_phone?: string | null | undefined;
|
|
8937
8939
|
contact_mobile_phone?: string | null | undefined;
|
|
8938
8940
|
contact_time_zone?: string | null | undefined;
|
|
8939
8941
|
address_full?: string | null | undefined;
|
|
8940
|
-
address_city?: string | null | undefined;
|
|
8941
|
-
address_zip?: string | null | undefined;
|
|
8942
8942
|
twitter_username?: string | null | undefined;
|
|
8943
8943
|
logo?: string | null | undefined;
|
|
8944
8944
|
email_sent_from?: string | null | undefined;
|
|
@@ -8962,14 +8962,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8962
8962
|
updated_by_display_name?: string | null | undefined;
|
|
8963
8963
|
unique_name?: string | null | undefined;
|
|
8964
8964
|
legal_name?: string | null | undefined;
|
|
8965
|
-
contact_name?: string | null | undefined;
|
|
8966
8965
|
contact_email?: string | null | undefined;
|
|
8966
|
+
address_city?: string | null | undefined;
|
|
8967
|
+
address_zip?: string | null | undefined;
|
|
8968
|
+
contact_name?: string | null | undefined;
|
|
8967
8969
|
contact_business_phone?: string | null | undefined;
|
|
8968
8970
|
contact_mobile_phone?: string | null | undefined;
|
|
8969
8971
|
contact_time_zone?: string | null | undefined;
|
|
8970
8972
|
address_full?: string | null | undefined;
|
|
8971
|
-
address_city?: string | null | undefined;
|
|
8972
|
-
address_zip?: string | null | undefined;
|
|
8973
8973
|
twitter_username?: string | null | undefined;
|
|
8974
8974
|
logo?: string | null | undefined;
|
|
8975
8975
|
email_sent_from?: string | null | undefined;
|
|
@@ -9621,6 +9621,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9621
9621
|
searchableFields: string[];
|
|
9622
9622
|
}>>;
|
|
9623
9623
|
}, "strip", z.ZodTypeAny, {
|
|
9624
|
+
first?: number | undefined;
|
|
9625
|
+
after?: string | undefined;
|
|
9626
|
+
sortBy?: string | undefined;
|
|
9627
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9628
|
+
paginationToken?: string | undefined;
|
|
9624
9629
|
created_at?: {
|
|
9625
9630
|
operator: "isEmpty" | "isNotEmpty";
|
|
9626
9631
|
value?: any;
|
|
@@ -9637,11 +9642,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9637
9642
|
values?: any[] | undefined;
|
|
9638
9643
|
caseSensitive?: boolean | undefined;
|
|
9639
9644
|
} | undefined;
|
|
9640
|
-
first?: number | undefined;
|
|
9641
|
-
after?: string | undefined;
|
|
9642
|
-
sortBy?: string | undefined;
|
|
9643
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9644
|
-
paginationToken?: string | undefined;
|
|
9645
9645
|
search?: {
|
|
9646
9646
|
query: string;
|
|
9647
9647
|
searchableFields: string[];
|
|
@@ -9751,6 +9751,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9751
9751
|
caseSensitive?: boolean | undefined;
|
|
9752
9752
|
} | undefined;
|
|
9753
9753
|
}, {
|
|
9754
|
+
first?: number | undefined;
|
|
9755
|
+
after?: string | undefined;
|
|
9756
|
+
sortBy?: string | undefined;
|
|
9757
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9758
|
+
paginationToken?: string | undefined;
|
|
9754
9759
|
created_at?: {
|
|
9755
9760
|
operator: "isEmpty" | "isNotEmpty";
|
|
9756
9761
|
value?: any;
|
|
@@ -9767,11 +9772,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9767
9772
|
values?: any[] | undefined;
|
|
9768
9773
|
caseSensitive?: boolean | undefined;
|
|
9769
9774
|
} | undefined;
|
|
9770
|
-
first?: number | undefined;
|
|
9771
|
-
after?: string | undefined;
|
|
9772
|
-
sortBy?: string | undefined;
|
|
9773
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9774
|
-
paginationToken?: string | undefined;
|
|
9775
9775
|
search?: {
|
|
9776
9776
|
query: string;
|
|
9777
9777
|
searchableFields: string[];
|
|
@@ -10235,19 +10235,19 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
10235
10235
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
10236
10236
|
}, "strip", z.ZodTypeAny, {
|
|
10237
10237
|
created_at: string;
|
|
10238
|
+
id: string;
|
|
10238
10239
|
email: string;
|
|
10239
10240
|
username: string;
|
|
10240
10241
|
email_verified: boolean;
|
|
10241
10242
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10242
|
-
id: string;
|
|
10243
10243
|
updated_at: string | null;
|
|
10244
10244
|
}, {
|
|
10245
10245
|
created_at: string;
|
|
10246
|
+
id: string;
|
|
10246
10247
|
email: string;
|
|
10247
10248
|
username: string;
|
|
10248
10249
|
email_verified: boolean;
|
|
10249
10250
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10250
|
-
id: string;
|
|
10251
10251
|
updated_at: string | null;
|
|
10252
10252
|
}>;
|
|
10253
10253
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
@@ -10257,11 +10257,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
10257
10257
|
id: z.ZodString;
|
|
10258
10258
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
10259
10259
|
}, "strip", z.ZodTypeAny, {
|
|
10260
|
-
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10261
10260
|
id: string;
|
|
10262
|
-
}, {
|
|
10263
10261
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10262
|
+
}, {
|
|
10264
10263
|
id: string;
|
|
10264
|
+
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10265
10265
|
}>;
|
|
10266
10266
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
10267
10267
|
//#endregion
|