@dragonmastery/dragoncore-shared 0.0.32 → 0.0.34
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 +305 -270
- package/dist/index.mjs +12 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -162,12 +162,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
162
162
|
metadata?: string | null | undefined;
|
|
163
163
|
updated_at?: string | null | undefined;
|
|
164
164
|
updated_by?: string | null | undefined;
|
|
165
|
+
parent_folder_id?: string | null | undefined;
|
|
166
|
+
file_count?: number | undefined;
|
|
165
167
|
archived_at?: string | null | undefined;
|
|
166
168
|
archived_by?: string | null | undefined;
|
|
167
169
|
deleted_at?: string | null | undefined;
|
|
168
170
|
deleted_by?: string | null | undefined;
|
|
169
|
-
parent_folder_id?: string | null | undefined;
|
|
170
|
-
file_count?: number | undefined;
|
|
171
171
|
}, {
|
|
172
172
|
created_at: string;
|
|
173
173
|
created_by: string;
|
|
@@ -180,12 +180,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
|
|
|
180
180
|
metadata?: string | null | undefined;
|
|
181
181
|
updated_at?: string | null | undefined;
|
|
182
182
|
updated_by?: string | null | undefined;
|
|
183
|
+
parent_folder_id?: string | null | undefined;
|
|
184
|
+
file_count?: number | undefined;
|
|
183
185
|
archived_at?: string | null | undefined;
|
|
184
186
|
archived_by?: string | null | undefined;
|
|
185
187
|
deleted_at?: string | null | undefined;
|
|
186
188
|
deleted_by?: string | null | undefined;
|
|
187
|
-
parent_folder_id?: string | null | undefined;
|
|
188
|
-
file_count?: number | undefined;
|
|
189
189
|
}>;
|
|
190
190
|
type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
|
|
191
191
|
//#endregion
|
|
@@ -197,6 +197,7 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
197
197
|
original_name: z.ZodString;
|
|
198
198
|
content_type: z.ZodString;
|
|
199
199
|
file_size: z.ZodString;
|
|
200
|
+
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
200
201
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
201
202
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
202
203
|
folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -210,6 +211,7 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
210
211
|
description?: string | null | undefined;
|
|
211
212
|
metadata?: string | null | undefined;
|
|
212
213
|
folder_id?: string | null | undefined;
|
|
214
|
+
title?: string | null | undefined;
|
|
213
215
|
}, {
|
|
214
216
|
record_id: string;
|
|
215
217
|
record_type: string;
|
|
@@ -220,12 +222,10 @@ declare const AttachmentCreateSchema: z.ZodObject<{
|
|
|
220
222
|
description?: string | null | undefined;
|
|
221
223
|
metadata?: string | null | undefined;
|
|
222
224
|
folder_id?: string | null | undefined;
|
|
225
|
+
title?: string | null | undefined;
|
|
223
226
|
}>;
|
|
224
227
|
type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
|
|
225
|
-
declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
226
|
-
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
227
|
-
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
228
|
-
} & {
|
|
228
|
+
declare const AttachmentUpdateSchema: z.ZodObject<{} & {
|
|
229
229
|
id: z.ZodString;
|
|
230
230
|
record_id: z.ZodOptional<z.ZodString>;
|
|
231
231
|
record_type: z.ZodOptional<z.ZodString>;
|
|
@@ -233,6 +233,9 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
233
233
|
original_name: z.ZodOptional<z.ZodString>;
|
|
234
234
|
content_type: z.ZodOptional<z.ZodString>;
|
|
235
235
|
file_size: z.ZodOptional<z.ZodString>;
|
|
236
|
+
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
237
|
+
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
238
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
236
239
|
folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
237
240
|
}, "strip", z.ZodTypeAny, {
|
|
238
241
|
id: string;
|
|
@@ -245,6 +248,7 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
245
248
|
original_name?: string | undefined;
|
|
246
249
|
content_type?: string | undefined;
|
|
247
250
|
file_size?: string | undefined;
|
|
251
|
+
title?: string | null | undefined;
|
|
248
252
|
}, {
|
|
249
253
|
id: string;
|
|
250
254
|
description?: string | null | undefined;
|
|
@@ -256,8 +260,27 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
256
260
|
original_name?: string | undefined;
|
|
257
261
|
content_type?: string | undefined;
|
|
258
262
|
file_size?: string | undefined;
|
|
263
|
+
title?: string | null | undefined;
|
|
259
264
|
}>;
|
|
260
265
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
266
|
+
/** Minimal input for updateAttachment API (title, description, metadata only) */
|
|
267
|
+
declare const UpdateAttachmentInputSchema: z.ZodObject<{
|
|
268
|
+
id: z.ZodString;
|
|
269
|
+
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
270
|
+
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
271
|
+
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
272
|
+
}, "strip", z.ZodTypeAny, {
|
|
273
|
+
id: string;
|
|
274
|
+
description?: string | null | undefined;
|
|
275
|
+
metadata?: string | null | undefined;
|
|
276
|
+
title?: string | null | undefined;
|
|
277
|
+
}, {
|
|
278
|
+
id: string;
|
|
279
|
+
description?: string | null | undefined;
|
|
280
|
+
metadata?: string | null | undefined;
|
|
281
|
+
title?: string | null | undefined;
|
|
282
|
+
}>;
|
|
283
|
+
type UpdateAttachmentInputDto = z.infer<typeof UpdateAttachmentInputSchema>;
|
|
261
284
|
//#endregion
|
|
262
285
|
//#region src/validation/attachment/attachment_page_zod.d.ts
|
|
263
286
|
declare const AttachmentPageSchema: z.ZodObject<{
|
|
@@ -268,6 +291,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
268
291
|
original_name: z.ZodString;
|
|
269
292
|
content_type: z.ZodString;
|
|
270
293
|
file_size: z.ZodString;
|
|
294
|
+
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
271
295
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
272
296
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
273
297
|
folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -300,6 +324,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
300
324
|
archived_by?: string | null | undefined;
|
|
301
325
|
deleted_at?: string | null | undefined;
|
|
302
326
|
deleted_by?: string | null | undefined;
|
|
327
|
+
title?: string | null | undefined;
|
|
303
328
|
}, {
|
|
304
329
|
created_at: string;
|
|
305
330
|
created_by: string;
|
|
@@ -319,6 +344,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
319
344
|
archived_by?: string | null | undefined;
|
|
320
345
|
deleted_at?: string | null | undefined;
|
|
321
346
|
deleted_by?: string | null | undefined;
|
|
347
|
+
title?: string | null | undefined;
|
|
322
348
|
}>, "many">;
|
|
323
349
|
folders: z.ZodArray<z.ZodObject<{
|
|
324
350
|
record_id: z.ZodString;
|
|
@@ -351,12 +377,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
351
377
|
metadata?: string | null | undefined;
|
|
352
378
|
updated_at?: string | null | undefined;
|
|
353
379
|
updated_by?: string | null | undefined;
|
|
380
|
+
parent_folder_id?: string | null | undefined;
|
|
381
|
+
file_count?: number | undefined;
|
|
354
382
|
archived_at?: string | null | undefined;
|
|
355
383
|
archived_by?: string | null | undefined;
|
|
356
384
|
deleted_at?: string | null | undefined;
|
|
357
385
|
deleted_by?: string | null | undefined;
|
|
358
|
-
parent_folder_id?: string | null | undefined;
|
|
359
|
-
file_count?: number | undefined;
|
|
360
386
|
}, {
|
|
361
387
|
created_at: string;
|
|
362
388
|
created_by: string;
|
|
@@ -369,12 +395,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
369
395
|
metadata?: string | null | undefined;
|
|
370
396
|
updated_at?: string | null | undefined;
|
|
371
397
|
updated_by?: string | null | undefined;
|
|
398
|
+
parent_folder_id?: string | null | undefined;
|
|
399
|
+
file_count?: number | undefined;
|
|
372
400
|
archived_at?: string | null | undefined;
|
|
373
401
|
archived_by?: string | null | undefined;
|
|
374
402
|
deleted_at?: string | null | undefined;
|
|
375
403
|
deleted_by?: string | null | undefined;
|
|
376
|
-
parent_folder_id?: string | null | undefined;
|
|
377
|
-
file_count?: number | undefined;
|
|
378
404
|
}>, "many">;
|
|
379
405
|
pageInfo: z.ZodObject<{
|
|
380
406
|
hasNextPage: z.ZodBoolean;
|
|
@@ -410,6 +436,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
410
436
|
archived_by?: string | null | undefined;
|
|
411
437
|
deleted_at?: string | null | undefined;
|
|
412
438
|
deleted_by?: string | null | undefined;
|
|
439
|
+
title?: string | null | undefined;
|
|
413
440
|
}[];
|
|
414
441
|
folders: {
|
|
415
442
|
created_at: string;
|
|
@@ -423,12 +450,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
423
450
|
metadata?: string | null | undefined;
|
|
424
451
|
updated_at?: string | null | undefined;
|
|
425
452
|
updated_by?: string | null | undefined;
|
|
453
|
+
parent_folder_id?: string | null | undefined;
|
|
454
|
+
file_count?: number | undefined;
|
|
426
455
|
archived_at?: string | null | undefined;
|
|
427
456
|
archived_by?: string | null | undefined;
|
|
428
457
|
deleted_at?: string | null | undefined;
|
|
429
458
|
deleted_by?: string | null | undefined;
|
|
430
|
-
parent_folder_id?: string | null | undefined;
|
|
431
|
-
file_count?: number | undefined;
|
|
432
459
|
}[];
|
|
433
460
|
}, {
|
|
434
461
|
pageInfo: {
|
|
@@ -454,6 +481,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
454
481
|
archived_by?: string | null | undefined;
|
|
455
482
|
deleted_at?: string | null | undefined;
|
|
456
483
|
deleted_by?: string | null | undefined;
|
|
484
|
+
title?: string | null | undefined;
|
|
457
485
|
}[];
|
|
458
486
|
folders: {
|
|
459
487
|
created_at: string;
|
|
@@ -467,12 +495,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
|
|
|
467
495
|
metadata?: string | null | undefined;
|
|
468
496
|
updated_at?: string | null | undefined;
|
|
469
497
|
updated_by?: string | null | undefined;
|
|
498
|
+
parent_folder_id?: string | null | undefined;
|
|
499
|
+
file_count?: number | undefined;
|
|
470
500
|
archived_at?: string | null | undefined;
|
|
471
501
|
archived_by?: string | null | undefined;
|
|
472
502
|
deleted_at?: string | null | undefined;
|
|
473
503
|
deleted_by?: string | null | undefined;
|
|
474
|
-
parent_folder_id?: string | null | undefined;
|
|
475
|
-
file_count?: number | undefined;
|
|
476
504
|
}[];
|
|
477
505
|
}>;
|
|
478
506
|
type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
|
|
@@ -485,6 +513,7 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
485
513
|
original_name: z.ZodString;
|
|
486
514
|
content_type: z.ZodString;
|
|
487
515
|
file_size: z.ZodString;
|
|
516
|
+
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
488
517
|
description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
489
518
|
metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
490
519
|
folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -517,6 +546,7 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
517
546
|
archived_by?: string | null | undefined;
|
|
518
547
|
deleted_at?: string | null | undefined;
|
|
519
548
|
deleted_by?: string | null | undefined;
|
|
549
|
+
title?: string | null | undefined;
|
|
520
550
|
}, {
|
|
521
551
|
created_at: string;
|
|
522
552
|
created_by: string;
|
|
@@ -536,6 +566,7 @@ declare const AttachmentReadSchema: z.ZodObject<{
|
|
|
536
566
|
archived_by?: string | null | undefined;
|
|
537
567
|
deleted_at?: string | null | undefined;
|
|
538
568
|
deleted_by?: string | null | undefined;
|
|
569
|
+
title?: string | null | undefined;
|
|
539
570
|
}>;
|
|
540
571
|
type AttachmentReadDto = z.infer<typeof AttachmentReadSchema>;
|
|
541
572
|
//#endregion
|
|
@@ -1129,11 +1160,11 @@ declare const createUserSchemaOutput: z.ZodObject<{
|
|
|
1129
1160
|
id: z.ZodString;
|
|
1130
1161
|
email: z.ZodString;
|
|
1131
1162
|
}, "strip", z.ZodTypeAny, {
|
|
1132
|
-
id: string;
|
|
1133
1163
|
email: string;
|
|
1134
|
-
}, {
|
|
1135
1164
|
id: string;
|
|
1165
|
+
}, {
|
|
1136
1166
|
email: string;
|
|
1167
|
+
id: string;
|
|
1137
1168
|
}>;
|
|
1138
1169
|
type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
|
|
1139
1170
|
//#endregion
|
|
@@ -1447,6 +1478,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1447
1478
|
searchableFields: string[];
|
|
1448
1479
|
}>>;
|
|
1449
1480
|
}, "strip", z.ZodTypeAny, {
|
|
1481
|
+
created_at?: {
|
|
1482
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
1483
|
+
value?: any;
|
|
1484
|
+
values?: any[] | undefined;
|
|
1485
|
+
caseSensitive?: boolean | undefined;
|
|
1486
|
+
} | {
|
|
1487
|
+
values: string[];
|
|
1488
|
+
operator: "between";
|
|
1489
|
+
value?: any;
|
|
1490
|
+
caseSensitive?: boolean | undefined;
|
|
1491
|
+
} | {
|
|
1492
|
+
value: string;
|
|
1493
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1494
|
+
values?: any[] | undefined;
|
|
1495
|
+
caseSensitive?: boolean | undefined;
|
|
1496
|
+
} | undefined;
|
|
1450
1497
|
type?: {
|
|
1451
1498
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1452
1499
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1476,6 +1523,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1476
1523
|
values?: number[] | undefined;
|
|
1477
1524
|
caseSensitive?: boolean | undefined;
|
|
1478
1525
|
} | undefined;
|
|
1526
|
+
created_by?: {
|
|
1527
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1528
|
+
value?: string | undefined;
|
|
1529
|
+
values?: string[] | undefined;
|
|
1530
|
+
caseSensitive?: boolean | undefined;
|
|
1531
|
+
} | undefined;
|
|
1532
|
+
search?: {
|
|
1533
|
+
query: string;
|
|
1534
|
+
searchableFields: string[];
|
|
1535
|
+
} | undefined;
|
|
1536
|
+
}, {
|
|
1479
1537
|
created_at?: {
|
|
1480
1538
|
operator: "isEmpty" | "isNotEmpty";
|
|
1481
1539
|
value?: any;
|
|
@@ -1492,17 +1550,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1492
1550
|
values?: any[] | undefined;
|
|
1493
1551
|
caseSensitive?: boolean | undefined;
|
|
1494
1552
|
} | undefined;
|
|
1495
|
-
created_by?: {
|
|
1496
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1497
|
-
value?: string | undefined;
|
|
1498
|
-
values?: string[] | undefined;
|
|
1499
|
-
caseSensitive?: boolean | undefined;
|
|
1500
|
-
} | undefined;
|
|
1501
|
-
search?: {
|
|
1502
|
-
query: string;
|
|
1503
|
-
searchableFields: string[];
|
|
1504
|
-
} | undefined;
|
|
1505
|
-
}, {
|
|
1506
1553
|
type?: {
|
|
1507
1554
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1508
1555
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1532,22 +1579,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1532
1579
|
values?: number[] | undefined;
|
|
1533
1580
|
caseSensitive?: boolean | undefined;
|
|
1534
1581
|
} | undefined;
|
|
1535
|
-
created_at?: {
|
|
1536
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
1537
|
-
value?: any;
|
|
1538
|
-
values?: any[] | undefined;
|
|
1539
|
-
caseSensitive?: boolean | undefined;
|
|
1540
|
-
} | {
|
|
1541
|
-
values: string[];
|
|
1542
|
-
operator: "between";
|
|
1543
|
-
value?: any;
|
|
1544
|
-
caseSensitive?: boolean | undefined;
|
|
1545
|
-
} | {
|
|
1546
|
-
value: string;
|
|
1547
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1548
|
-
values?: any[] | undefined;
|
|
1549
|
-
caseSensitive?: boolean | undefined;
|
|
1550
|
-
} | undefined;
|
|
1551
1582
|
created_by?: {
|
|
1552
1583
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1553
1584
|
value?: string | undefined;
|
|
@@ -1580,19 +1611,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
|
|
|
1580
1611
|
created_at: z.ZodString;
|
|
1581
1612
|
created_by: z.ZodString;
|
|
1582
1613
|
}, "strip", z.ZodTypeAny, {
|
|
1614
|
+
created_at: string;
|
|
1583
1615
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1584
1616
|
amount: string;
|
|
1585
1617
|
balance_after: string;
|
|
1586
|
-
created_at: string;
|
|
1587
1618
|
created_by: string;
|
|
1588
1619
|
id: string;
|
|
1589
1620
|
support_ticket_id?: string | null | undefined;
|
|
1590
1621
|
description?: string | null | undefined;
|
|
1591
1622
|
}, {
|
|
1623
|
+
created_at: string;
|
|
1592
1624
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1593
1625
|
amount: string;
|
|
1594
1626
|
balance_after: string;
|
|
1595
|
-
created_at: string;
|
|
1596
1627
|
created_by: string;
|
|
1597
1628
|
id: string;
|
|
1598
1629
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1613,19 +1644,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1613
1644
|
created_at: z.ZodString;
|
|
1614
1645
|
created_by: z.ZodString;
|
|
1615
1646
|
}, "strip", z.ZodTypeAny, {
|
|
1647
|
+
created_at: string;
|
|
1616
1648
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1617
1649
|
amount: string;
|
|
1618
1650
|
balance_after: string;
|
|
1619
|
-
created_at: string;
|
|
1620
1651
|
created_by: string;
|
|
1621
1652
|
id: string;
|
|
1622
1653
|
support_ticket_id?: string | null | undefined;
|
|
1623
1654
|
description?: string | null | undefined;
|
|
1624
1655
|
}, {
|
|
1656
|
+
created_at: string;
|
|
1625
1657
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1626
1658
|
amount: string;
|
|
1627
1659
|
balance_after: string;
|
|
1628
|
-
created_at: string;
|
|
1629
1660
|
created_by: string;
|
|
1630
1661
|
id: string;
|
|
1631
1662
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1655,10 +1686,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1655
1686
|
}>;
|
|
1656
1687
|
}, "strip", z.ZodTypeAny, {
|
|
1657
1688
|
items: {
|
|
1689
|
+
created_at: string;
|
|
1658
1690
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1659
1691
|
amount: string;
|
|
1660
1692
|
balance_after: string;
|
|
1661
|
-
created_at: string;
|
|
1662
1693
|
created_by: string;
|
|
1663
1694
|
id: string;
|
|
1664
1695
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1674,10 +1705,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1674
1705
|
};
|
|
1675
1706
|
}, {
|
|
1676
1707
|
items: {
|
|
1708
|
+
created_at: string;
|
|
1677
1709
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1678
1710
|
amount: string;
|
|
1679
1711
|
balance_after: string;
|
|
1680
|
-
created_at: string;
|
|
1681
1712
|
created_by: string;
|
|
1682
1713
|
id: string;
|
|
1683
1714
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1756,8 +1787,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1756
1787
|
price_currency?: string | null | undefined;
|
|
1757
1788
|
}>, "many">>>;
|
|
1758
1789
|
}, "strip", z.ZodTypeAny, {
|
|
1759
|
-
email: string;
|
|
1760
1790
|
userId: string;
|
|
1791
|
+
email: string;
|
|
1761
1792
|
username: string;
|
|
1762
1793
|
email_verified: boolean;
|
|
1763
1794
|
user_type: string;
|
|
@@ -1778,8 +1809,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1778
1809
|
price_currency?: string | null | undefined;
|
|
1779
1810
|
}[] | null | undefined;
|
|
1780
1811
|
}, {
|
|
1781
|
-
email: string;
|
|
1782
1812
|
userId: string;
|
|
1813
|
+
email: string;
|
|
1783
1814
|
username: string;
|
|
1784
1815
|
email_verified: boolean;
|
|
1785
1816
|
user_type: string;
|
|
@@ -1802,8 +1833,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1802
1833
|
}>;
|
|
1803
1834
|
}, "strip", z.ZodTypeAny, {
|
|
1804
1835
|
user: {
|
|
1805
|
-
email: string;
|
|
1806
1836
|
userId: string;
|
|
1837
|
+
email: string;
|
|
1807
1838
|
username: string;
|
|
1808
1839
|
email_verified: boolean;
|
|
1809
1840
|
user_type: string;
|
|
@@ -1824,15 +1855,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1824
1855
|
price_currency?: string | null | undefined;
|
|
1825
1856
|
}[] | null | undefined;
|
|
1826
1857
|
};
|
|
1827
|
-
status: string;
|
|
1828
1858
|
created_at: string;
|
|
1829
1859
|
expires_at: string;
|
|
1860
|
+
status: string;
|
|
1830
1861
|
user_agent?: string | null | undefined;
|
|
1831
1862
|
ip_address?: string | null | undefined;
|
|
1832
1863
|
}, {
|
|
1833
1864
|
user: {
|
|
1834
|
-
email: string;
|
|
1835
1865
|
userId: string;
|
|
1866
|
+
email: string;
|
|
1836
1867
|
username: string;
|
|
1837
1868
|
email_verified: boolean;
|
|
1838
1869
|
user_type: string;
|
|
@@ -1853,9 +1884,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1853
1884
|
price_currency?: string | null | undefined;
|
|
1854
1885
|
}[] | null | undefined;
|
|
1855
1886
|
};
|
|
1856
|
-
status: string;
|
|
1857
1887
|
created_at: string;
|
|
1858
1888
|
expires_at: string;
|
|
1889
|
+
status: string;
|
|
1859
1890
|
user_agent?: string | null | undefined;
|
|
1860
1891
|
ip_address?: string | null | undefined;
|
|
1861
1892
|
}>;
|
|
@@ -1911,8 +1942,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1911
1942
|
price_currency?: string | null | undefined;
|
|
1912
1943
|
}>, "many">>>;
|
|
1913
1944
|
}, "strip", z.ZodTypeAny, {
|
|
1914
|
-
email: string;
|
|
1915
1945
|
userId: string;
|
|
1946
|
+
email: string;
|
|
1916
1947
|
username: string;
|
|
1917
1948
|
email_verified: boolean;
|
|
1918
1949
|
user_type: string;
|
|
@@ -1933,8 +1964,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1933
1964
|
price_currency?: string | null | undefined;
|
|
1934
1965
|
}[] | null | undefined;
|
|
1935
1966
|
}, {
|
|
1936
|
-
email: string;
|
|
1937
1967
|
userId: string;
|
|
1968
|
+
email: string;
|
|
1938
1969
|
username: string;
|
|
1939
1970
|
email_verified: boolean;
|
|
1940
1971
|
user_type: string;
|
|
@@ -1957,8 +1988,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1957
1988
|
}>;
|
|
1958
1989
|
}, "strip", z.ZodTypeAny, {
|
|
1959
1990
|
user: {
|
|
1960
|
-
email: string;
|
|
1961
1991
|
userId: string;
|
|
1992
|
+
email: string;
|
|
1962
1993
|
username: string;
|
|
1963
1994
|
email_verified: boolean;
|
|
1964
1995
|
user_type: string;
|
|
@@ -1979,15 +2010,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1979
2010
|
price_currency?: string | null | undefined;
|
|
1980
2011
|
}[] | null | undefined;
|
|
1981
2012
|
};
|
|
1982
|
-
status: string;
|
|
1983
2013
|
created_at: string;
|
|
1984
2014
|
expires_at: string;
|
|
2015
|
+
status: string;
|
|
1985
2016
|
user_agent?: string | null | undefined;
|
|
1986
2017
|
ip_address?: string | null | undefined;
|
|
1987
2018
|
}, {
|
|
1988
2019
|
user: {
|
|
1989
|
-
email: string;
|
|
1990
2020
|
userId: string;
|
|
2021
|
+
email: string;
|
|
1991
2022
|
username: string;
|
|
1992
2023
|
email_verified: boolean;
|
|
1993
2024
|
user_type: string;
|
|
@@ -2008,9 +2039,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2008
2039
|
price_currency?: string | null | undefined;
|
|
2009
2040
|
}[] | null | undefined;
|
|
2010
2041
|
};
|
|
2011
|
-
status: string;
|
|
2012
2042
|
created_at: string;
|
|
2013
2043
|
expires_at: string;
|
|
2044
|
+
status: string;
|
|
2014
2045
|
user_agent?: string | null | undefined;
|
|
2015
2046
|
ip_address?: string | null | undefined;
|
|
2016
2047
|
}>;
|
|
@@ -2021,8 +2052,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2021
2052
|
refresh_token: string;
|
|
2022
2053
|
frontend_session: {
|
|
2023
2054
|
user: {
|
|
2024
|
-
email: string;
|
|
2025
2055
|
userId: string;
|
|
2056
|
+
email: string;
|
|
2026
2057
|
username: string;
|
|
2027
2058
|
email_verified: boolean;
|
|
2028
2059
|
user_type: string;
|
|
@@ -2043,9 +2074,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2043
2074
|
price_currency?: string | null | undefined;
|
|
2044
2075
|
}[] | null | undefined;
|
|
2045
2076
|
};
|
|
2046
|
-
status: string;
|
|
2047
2077
|
created_at: string;
|
|
2048
2078
|
expires_at: string;
|
|
2079
|
+
status: string;
|
|
2049
2080
|
user_agent?: string | null | undefined;
|
|
2050
2081
|
ip_address?: string | null | undefined;
|
|
2051
2082
|
};
|
|
@@ -2055,8 +2086,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2055
2086
|
refresh_token: string;
|
|
2056
2087
|
frontend_session: {
|
|
2057
2088
|
user: {
|
|
2058
|
-
email: string;
|
|
2059
2089
|
userId: string;
|
|
2090
|
+
email: string;
|
|
2060
2091
|
username: string;
|
|
2061
2092
|
email_verified: boolean;
|
|
2062
2093
|
user_type: string;
|
|
@@ -2077,9 +2108,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2077
2108
|
price_currency?: string | null | undefined;
|
|
2078
2109
|
}[] | null | undefined;
|
|
2079
2110
|
};
|
|
2080
|
-
status: string;
|
|
2081
2111
|
created_at: string;
|
|
2082
2112
|
expires_at: string;
|
|
2113
|
+
status: string;
|
|
2083
2114
|
user_agent?: string | null | undefined;
|
|
2084
2115
|
ip_address?: string | null | undefined;
|
|
2085
2116
|
};
|
|
@@ -2582,11 +2613,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2582
2613
|
searchableFields: string[];
|
|
2583
2614
|
}>>;
|
|
2584
2615
|
}, "strip", z.ZodTypeAny, {
|
|
2585
|
-
first?: number | undefined;
|
|
2586
|
-
after?: string | undefined;
|
|
2587
|
-
sortBy?: string | undefined;
|
|
2588
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2589
|
-
paginationToken?: string | undefined;
|
|
2590
2616
|
created_at?: {
|
|
2591
2617
|
operator: "isEmpty" | "isNotEmpty";
|
|
2592
2618
|
value?: any;
|
|
@@ -2603,6 +2629,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2603
2629
|
values?: any[] | undefined;
|
|
2604
2630
|
caseSensitive?: boolean | undefined;
|
|
2605
2631
|
} | undefined;
|
|
2632
|
+
first?: number | undefined;
|
|
2633
|
+
after?: string | undefined;
|
|
2634
|
+
sortBy?: string | undefined;
|
|
2635
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2636
|
+
paginationToken?: string | undefined;
|
|
2606
2637
|
search?: {
|
|
2607
2638
|
query: string;
|
|
2608
2639
|
searchableFields: string[];
|
|
@@ -2660,11 +2691,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2660
2691
|
caseSensitive?: boolean | undefined;
|
|
2661
2692
|
} | undefined;
|
|
2662
2693
|
}, {
|
|
2663
|
-
first?: number | undefined;
|
|
2664
|
-
after?: string | undefined;
|
|
2665
|
-
sortBy?: string | undefined;
|
|
2666
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2667
|
-
paginationToken?: string | undefined;
|
|
2668
2694
|
created_at?: {
|
|
2669
2695
|
operator: "isEmpty" | "isNotEmpty";
|
|
2670
2696
|
value?: any;
|
|
@@ -2681,6 +2707,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2681
2707
|
values?: any[] | undefined;
|
|
2682
2708
|
caseSensitive?: boolean | undefined;
|
|
2683
2709
|
} | undefined;
|
|
2710
|
+
first?: number | undefined;
|
|
2711
|
+
after?: string | undefined;
|
|
2712
|
+
sortBy?: string | undefined;
|
|
2713
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2714
|
+
paginationToken?: string | undefined;
|
|
2684
2715
|
search?: {
|
|
2685
2716
|
query: string;
|
|
2686
2717
|
searchableFields: string[];
|
|
@@ -3594,18 +3625,18 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3594
3625
|
}>;
|
|
3595
3626
|
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
3596
3627
|
}, "strip", z.ZodTypeAny, {
|
|
3628
|
+
email: string;
|
|
3597
3629
|
passwords: {
|
|
3598
3630
|
password: string;
|
|
3599
3631
|
password_confirm: string;
|
|
3600
3632
|
};
|
|
3601
|
-
email: string;
|
|
3602
3633
|
acceptances: Record<string, boolean>;
|
|
3603
3634
|
}, {
|
|
3635
|
+
email: string;
|
|
3604
3636
|
passwords: {
|
|
3605
3637
|
password: string;
|
|
3606
3638
|
password_confirm: string;
|
|
3607
3639
|
};
|
|
3608
|
-
email: string;
|
|
3609
3640
|
acceptances?: Record<string, boolean> | undefined;
|
|
3610
3641
|
}>;
|
|
3611
3642
|
/** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
|
|
@@ -3633,18 +3664,18 @@ declare const signupInitiateSchema: z.ZodObject<{
|
|
|
3633
3664
|
password_confirm: string;
|
|
3634
3665
|
}>;
|
|
3635
3666
|
}, "strip", z.ZodTypeAny, {
|
|
3667
|
+
email: string;
|
|
3636
3668
|
passwords: {
|
|
3637
3669
|
password: string;
|
|
3638
3670
|
password_confirm: string;
|
|
3639
3671
|
};
|
|
3640
|
-
email: string;
|
|
3641
3672
|
metadata?: Record<string, unknown> | undefined;
|
|
3642
3673
|
}, {
|
|
3674
|
+
email: string;
|
|
3643
3675
|
passwords: {
|
|
3644
3676
|
password: string;
|
|
3645
3677
|
password_confirm: string;
|
|
3646
3678
|
};
|
|
3647
|
-
email: string;
|
|
3648
3679
|
metadata?: Record<string, unknown> | undefined;
|
|
3649
3680
|
}>;
|
|
3650
3681
|
type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
|
|
@@ -3703,8 +3734,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3703
3734
|
price_currency?: string | null | undefined;
|
|
3704
3735
|
}>, "many">>>;
|
|
3705
3736
|
}, "strip", z.ZodTypeAny, {
|
|
3706
|
-
email: string;
|
|
3707
3737
|
userId: string;
|
|
3738
|
+
email: string;
|
|
3708
3739
|
username: string;
|
|
3709
3740
|
email_verified: boolean;
|
|
3710
3741
|
user_type: string;
|
|
@@ -3725,8 +3756,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3725
3756
|
price_currency?: string | null | undefined;
|
|
3726
3757
|
}[] | null | undefined;
|
|
3727
3758
|
}, {
|
|
3728
|
-
email: string;
|
|
3729
3759
|
userId: string;
|
|
3760
|
+
email: string;
|
|
3730
3761
|
username: string;
|
|
3731
3762
|
email_verified: boolean;
|
|
3732
3763
|
user_type: string;
|
|
@@ -3749,8 +3780,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3749
3780
|
}>;
|
|
3750
3781
|
}, "strip", z.ZodTypeAny, {
|
|
3751
3782
|
user: {
|
|
3752
|
-
email: string;
|
|
3753
3783
|
userId: string;
|
|
3784
|
+
email: string;
|
|
3754
3785
|
username: string;
|
|
3755
3786
|
email_verified: boolean;
|
|
3756
3787
|
user_type: string;
|
|
@@ -3771,15 +3802,15 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3771
3802
|
price_currency?: string | null | undefined;
|
|
3772
3803
|
}[] | null | undefined;
|
|
3773
3804
|
};
|
|
3774
|
-
status: string;
|
|
3775
3805
|
created_at: string;
|
|
3776
3806
|
expires_at: string;
|
|
3807
|
+
status: string;
|
|
3777
3808
|
user_agent?: string | null | undefined;
|
|
3778
3809
|
ip_address?: string | null | undefined;
|
|
3779
3810
|
}, {
|
|
3780
3811
|
user: {
|
|
3781
|
-
email: string;
|
|
3782
3812
|
userId: string;
|
|
3813
|
+
email: string;
|
|
3783
3814
|
username: string;
|
|
3784
3815
|
email_verified: boolean;
|
|
3785
3816
|
user_type: string;
|
|
@@ -3800,9 +3831,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3800
3831
|
price_currency?: string | null | undefined;
|
|
3801
3832
|
}[] | null | undefined;
|
|
3802
3833
|
};
|
|
3803
|
-
status: string;
|
|
3804
3834
|
created_at: string;
|
|
3805
3835
|
expires_at: string;
|
|
3836
|
+
status: string;
|
|
3806
3837
|
user_agent?: string | null | undefined;
|
|
3807
3838
|
ip_address?: string | null | undefined;
|
|
3808
3839
|
}>;
|
|
@@ -3813,8 +3844,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3813
3844
|
refresh_token: string;
|
|
3814
3845
|
frontend_session: {
|
|
3815
3846
|
user: {
|
|
3816
|
-
email: string;
|
|
3817
3847
|
userId: string;
|
|
3848
|
+
email: string;
|
|
3818
3849
|
username: string;
|
|
3819
3850
|
email_verified: boolean;
|
|
3820
3851
|
user_type: string;
|
|
@@ -3835,9 +3866,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3835
3866
|
price_currency?: string | null | undefined;
|
|
3836
3867
|
}[] | null | undefined;
|
|
3837
3868
|
};
|
|
3838
|
-
status: string;
|
|
3839
3869
|
created_at: string;
|
|
3840
3870
|
expires_at: string;
|
|
3871
|
+
status: string;
|
|
3841
3872
|
user_agent?: string | null | undefined;
|
|
3842
3873
|
ip_address?: string | null | undefined;
|
|
3843
3874
|
};
|
|
@@ -3847,8 +3878,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3847
3878
|
refresh_token: string;
|
|
3848
3879
|
frontend_session: {
|
|
3849
3880
|
user: {
|
|
3850
|
-
email: string;
|
|
3851
3881
|
userId: string;
|
|
3882
|
+
email: string;
|
|
3852
3883
|
username: string;
|
|
3853
3884
|
email_verified: boolean;
|
|
3854
3885
|
user_type: string;
|
|
@@ -3869,9 +3900,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3869
3900
|
price_currency?: string | null | undefined;
|
|
3870
3901
|
}[] | null | undefined;
|
|
3871
3902
|
};
|
|
3872
|
-
status: string;
|
|
3873
3903
|
created_at: string;
|
|
3874
3904
|
expires_at: string;
|
|
3905
|
+
status: string;
|
|
3875
3906
|
user_agent?: string | null | undefined;
|
|
3876
3907
|
ip_address?: string | null | undefined;
|
|
3877
3908
|
};
|
|
@@ -3884,8 +3915,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3884
3915
|
refresh_token: string;
|
|
3885
3916
|
frontend_session: {
|
|
3886
3917
|
user: {
|
|
3887
|
-
email: string;
|
|
3888
3918
|
userId: string;
|
|
3919
|
+
email: string;
|
|
3889
3920
|
username: string;
|
|
3890
3921
|
email_verified: boolean;
|
|
3891
3922
|
user_type: string;
|
|
@@ -3906,9 +3937,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3906
3937
|
price_currency?: string | null | undefined;
|
|
3907
3938
|
}[] | null | undefined;
|
|
3908
3939
|
};
|
|
3909
|
-
status: string;
|
|
3910
3940
|
created_at: string;
|
|
3911
3941
|
expires_at: string;
|
|
3942
|
+
status: string;
|
|
3912
3943
|
user_agent?: string | null | undefined;
|
|
3913
3944
|
ip_address?: string | null | undefined;
|
|
3914
3945
|
};
|
|
@@ -3921,8 +3952,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3921
3952
|
refresh_token: string;
|
|
3922
3953
|
frontend_session: {
|
|
3923
3954
|
user: {
|
|
3924
|
-
email: string;
|
|
3925
3955
|
userId: string;
|
|
3956
|
+
email: string;
|
|
3926
3957
|
username: string;
|
|
3927
3958
|
email_verified: boolean;
|
|
3928
3959
|
user_type: string;
|
|
@@ -3943,9 +3974,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3943
3974
|
price_currency?: string | null | undefined;
|
|
3944
3975
|
}[] | null | undefined;
|
|
3945
3976
|
};
|
|
3946
|
-
status: string;
|
|
3947
3977
|
created_at: string;
|
|
3948
3978
|
expires_at: string;
|
|
3979
|
+
status: string;
|
|
3949
3980
|
user_agent?: string | null | undefined;
|
|
3950
3981
|
ip_address?: string | null | undefined;
|
|
3951
3982
|
};
|
|
@@ -4250,8 +4281,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4250
4281
|
user_id_display_name?: string | null | undefined;
|
|
4251
4282
|
}>>>;
|
|
4252
4283
|
}, "strip", z.ZodTypeAny, {
|
|
4253
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4254
4284
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4285
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4255
4286
|
id: string;
|
|
4256
4287
|
description: string;
|
|
4257
4288
|
title: string;
|
|
@@ -4265,10 +4296,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4265
4296
|
created_by_display_name?: string | null | undefined;
|
|
4266
4297
|
display_id?: string | null | undefined;
|
|
4267
4298
|
credit_value?: string | null | undefined;
|
|
4268
|
-
display_id_prefix?: string | null | undefined;
|
|
4269
4299
|
start_at?: string | null | undefined;
|
|
4270
4300
|
target_at?: string | null | undefined;
|
|
4271
4301
|
completed_at?: string | null | undefined;
|
|
4302
|
+
display_id_prefix?: string | null | undefined;
|
|
4272
4303
|
locked_approval_at?: string | null | undefined;
|
|
4273
4304
|
my_subscription?: {
|
|
4274
4305
|
created_at: string;
|
|
@@ -4282,8 +4313,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4282
4313
|
user_id_display_name?: string | null | undefined;
|
|
4283
4314
|
} | null | undefined;
|
|
4284
4315
|
}, {
|
|
4285
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4286
4316
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4317
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4287
4318
|
id: string;
|
|
4288
4319
|
description: string;
|
|
4289
4320
|
title: string;
|
|
@@ -4297,10 +4328,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4297
4328
|
created_by_display_name?: string | null | undefined;
|
|
4298
4329
|
display_id?: string | null | undefined;
|
|
4299
4330
|
credit_value?: string | null | undefined;
|
|
4300
|
-
display_id_prefix?: string | null | undefined;
|
|
4301
4331
|
start_at?: string | null | undefined;
|
|
4302
4332
|
target_at?: string | null | undefined;
|
|
4303
4333
|
completed_at?: string | null | undefined;
|
|
4334
|
+
display_id_prefix?: string | null | undefined;
|
|
4304
4335
|
locked_approval_at?: string | null | undefined;
|
|
4305
4336
|
my_subscription?: {
|
|
4306
4337
|
created_at: string;
|
|
@@ -4372,8 +4403,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4372
4403
|
user_id_display_name?: string | null | undefined;
|
|
4373
4404
|
}>>>;
|
|
4374
4405
|
}, "strip", z.ZodTypeAny, {
|
|
4375
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4376
4406
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4407
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4377
4408
|
id: string;
|
|
4378
4409
|
description: string;
|
|
4379
4410
|
title: string;
|
|
@@ -4387,10 +4418,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4387
4418
|
created_by_display_name?: string | null | undefined;
|
|
4388
4419
|
display_id?: string | null | undefined;
|
|
4389
4420
|
credit_value?: string | null | undefined;
|
|
4390
|
-
display_id_prefix?: string | null | undefined;
|
|
4391
4421
|
start_at?: string | null | undefined;
|
|
4392
4422
|
target_at?: string | null | undefined;
|
|
4393
4423
|
completed_at?: string | null | undefined;
|
|
4424
|
+
display_id_prefix?: string | null | undefined;
|
|
4394
4425
|
locked_approval_at?: string | null | undefined;
|
|
4395
4426
|
my_subscription?: {
|
|
4396
4427
|
created_at: string;
|
|
@@ -4404,8 +4435,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4404
4435
|
user_id_display_name?: string | null | undefined;
|
|
4405
4436
|
} | null | undefined;
|
|
4406
4437
|
}, {
|
|
4407
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4408
4438
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4439
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4409
4440
|
id: string;
|
|
4410
4441
|
description: string;
|
|
4411
4442
|
title: string;
|
|
@@ -4419,10 +4450,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4419
4450
|
created_by_display_name?: string | null | undefined;
|
|
4420
4451
|
display_id?: string | null | undefined;
|
|
4421
4452
|
credit_value?: string | null | undefined;
|
|
4422
|
-
display_id_prefix?: string | null | undefined;
|
|
4423
4453
|
start_at?: string | null | undefined;
|
|
4424
4454
|
target_at?: string | null | undefined;
|
|
4425
4455
|
completed_at?: string | null | undefined;
|
|
4456
|
+
display_id_prefix?: string | null | undefined;
|
|
4426
4457
|
locked_approval_at?: string | null | undefined;
|
|
4427
4458
|
my_subscription?: {
|
|
4428
4459
|
created_at: string;
|
|
@@ -4460,8 +4491,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4460
4491
|
}>;
|
|
4461
4492
|
}, "strip", z.ZodTypeAny, {
|
|
4462
4493
|
items: {
|
|
4463
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4464
4494
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4495
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4465
4496
|
id: string;
|
|
4466
4497
|
description: string;
|
|
4467
4498
|
title: string;
|
|
@@ -4475,10 +4506,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4475
4506
|
created_by_display_name?: string | null | undefined;
|
|
4476
4507
|
display_id?: string | null | undefined;
|
|
4477
4508
|
credit_value?: string | null | undefined;
|
|
4478
|
-
display_id_prefix?: string | null | undefined;
|
|
4479
4509
|
start_at?: string | null | undefined;
|
|
4480
4510
|
target_at?: string | null | undefined;
|
|
4481
4511
|
completed_at?: string | null | undefined;
|
|
4512
|
+
display_id_prefix?: string | null | undefined;
|
|
4482
4513
|
locked_approval_at?: string | null | undefined;
|
|
4483
4514
|
my_subscription?: {
|
|
4484
4515
|
created_at: string;
|
|
@@ -4502,8 +4533,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4502
4533
|
};
|
|
4503
4534
|
}, {
|
|
4504
4535
|
items: {
|
|
4505
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4506
4536
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4537
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4507
4538
|
id: string;
|
|
4508
4539
|
description: string;
|
|
4509
4540
|
title: string;
|
|
@@ -4517,10 +4548,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4517
4548
|
created_by_display_name?: string | null | undefined;
|
|
4518
4549
|
display_id?: string | null | undefined;
|
|
4519
4550
|
credit_value?: string | null | undefined;
|
|
4520
|
-
display_id_prefix?: string | null | undefined;
|
|
4521
4551
|
start_at?: string | null | undefined;
|
|
4522
4552
|
target_at?: string | null | undefined;
|
|
4523
4553
|
completed_at?: string | null | undefined;
|
|
4554
|
+
display_id_prefix?: string | null | undefined;
|
|
4524
4555
|
locked_approval_at?: string | null | undefined;
|
|
4525
4556
|
my_subscription?: {
|
|
4526
4557
|
created_at: string;
|
|
@@ -5239,23 +5270,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5239
5270
|
searchableFields: string[];
|
|
5240
5271
|
}>>;
|
|
5241
5272
|
}, "strip", z.ZodTypeAny, {
|
|
5242
|
-
type?: {
|
|
5243
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5244
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5245
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5246
|
-
caseSensitive?: boolean | undefined;
|
|
5247
|
-
} | undefined;
|
|
5248
|
-
status?: {
|
|
5249
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5250
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5251
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5252
|
-
caseSensitive?: boolean | undefined;
|
|
5253
|
-
} | undefined;
|
|
5254
|
-
first?: number | undefined;
|
|
5255
|
-
after?: string | undefined;
|
|
5256
|
-
sortBy?: string | undefined;
|
|
5257
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5258
|
-
paginationToken?: string | undefined;
|
|
5259
5273
|
created_at?: {
|
|
5260
5274
|
operator: "isEmpty" | "isNotEmpty";
|
|
5261
5275
|
value?: any;
|
|
@@ -5272,10 +5286,27 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5272
5286
|
values?: any[] | undefined;
|
|
5273
5287
|
caseSensitive?: boolean | undefined;
|
|
5274
5288
|
} | undefined;
|
|
5275
|
-
|
|
5276
|
-
operator: "eq" | "ne" | "
|
|
5277
|
-
value?:
|
|
5278
|
-
values?:
|
|
5289
|
+
status?: {
|
|
5290
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5291
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5292
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5293
|
+
caseSensitive?: boolean | undefined;
|
|
5294
|
+
} | undefined;
|
|
5295
|
+
type?: {
|
|
5296
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5297
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5298
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5299
|
+
caseSensitive?: boolean | undefined;
|
|
5300
|
+
} | undefined;
|
|
5301
|
+
first?: number | undefined;
|
|
5302
|
+
after?: string | undefined;
|
|
5303
|
+
sortBy?: string | undefined;
|
|
5304
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5305
|
+
paginationToken?: string | undefined;
|
|
5306
|
+
created_by?: {
|
|
5307
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5308
|
+
value?: string | undefined;
|
|
5309
|
+
values?: string[] | undefined;
|
|
5279
5310
|
caseSensitive?: boolean | undefined;
|
|
5280
5311
|
} | undefined;
|
|
5281
5312
|
search?: {
|
|
@@ -5377,23 +5408,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5377
5408
|
caseSensitive?: boolean | undefined;
|
|
5378
5409
|
} | undefined;
|
|
5379
5410
|
}, {
|
|
5380
|
-
type?: {
|
|
5381
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5382
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5383
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5384
|
-
caseSensitive?: boolean | undefined;
|
|
5385
|
-
} | undefined;
|
|
5386
|
-
status?: {
|
|
5387
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5388
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5389
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5390
|
-
caseSensitive?: boolean | undefined;
|
|
5391
|
-
} | undefined;
|
|
5392
|
-
first?: number | undefined;
|
|
5393
|
-
after?: string | undefined;
|
|
5394
|
-
sortBy?: string | undefined;
|
|
5395
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5396
|
-
paginationToken?: string | undefined;
|
|
5397
5411
|
created_at?: {
|
|
5398
5412
|
operator: "isEmpty" | "isNotEmpty";
|
|
5399
5413
|
value?: any;
|
|
@@ -5410,6 +5424,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5410
5424
|
values?: any[] | undefined;
|
|
5411
5425
|
caseSensitive?: boolean | undefined;
|
|
5412
5426
|
} | undefined;
|
|
5427
|
+
status?: {
|
|
5428
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5429
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5430
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5431
|
+
caseSensitive?: boolean | undefined;
|
|
5432
|
+
} | undefined;
|
|
5433
|
+
type?: {
|
|
5434
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5435
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5436
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5437
|
+
caseSensitive?: boolean | undefined;
|
|
5438
|
+
} | undefined;
|
|
5439
|
+
first?: number | undefined;
|
|
5440
|
+
after?: string | undefined;
|
|
5441
|
+
sortBy?: string | undefined;
|
|
5442
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5443
|
+
paginationToken?: string | undefined;
|
|
5413
5444
|
created_by?: {
|
|
5414
5445
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5415
5446
|
value?: string | undefined;
|
|
@@ -5552,8 +5583,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5552
5583
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5553
5584
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5554
5585
|
}, "strip", z.ZodTypeAny, {
|
|
5555
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5556
5586
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5587
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5557
5588
|
id: string;
|
|
5558
5589
|
description: string;
|
|
5559
5590
|
title: string;
|
|
@@ -5572,17 +5603,17 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5572
5603
|
display_id?: string | null | undefined;
|
|
5573
5604
|
credit_value?: string | null | undefined;
|
|
5574
5605
|
delivered_value?: string | null | undefined;
|
|
5575
|
-
display_id_prefix?: string | null | undefined;
|
|
5576
5606
|
start_at?: string | null | undefined;
|
|
5577
5607
|
target_at?: string | null | undefined;
|
|
5578
5608
|
completed_at?: string | null | undefined;
|
|
5609
|
+
display_id_prefix?: string | null | undefined;
|
|
5579
5610
|
locked_approval_at?: string | null | undefined;
|
|
5580
5611
|
assigned_to?: string | null | undefined;
|
|
5581
5612
|
assigned_to_display_name?: string | null | undefined;
|
|
5582
5613
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5583
5614
|
}, {
|
|
5584
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5585
5615
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5616
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5586
5617
|
id: string;
|
|
5587
5618
|
description: string;
|
|
5588
5619
|
title: string;
|
|
@@ -5601,10 +5632,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5601
5632
|
display_id?: string | null | undefined;
|
|
5602
5633
|
credit_value?: string | null | undefined;
|
|
5603
5634
|
delivered_value?: string | null | undefined;
|
|
5604
|
-
display_id_prefix?: string | null | undefined;
|
|
5605
5635
|
start_at?: string | null | undefined;
|
|
5606
5636
|
target_at?: string | null | undefined;
|
|
5607
5637
|
completed_at?: string | null | undefined;
|
|
5638
|
+
display_id_prefix?: string | null | undefined;
|
|
5608
5639
|
locked_approval_at?: string | null | undefined;
|
|
5609
5640
|
assigned_to?: string | null | undefined;
|
|
5610
5641
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -5645,8 +5676,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5645
5676
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5646
5677
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5647
5678
|
}, "strip", z.ZodTypeAny, {
|
|
5648
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5649
5679
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5680
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5650
5681
|
id: string;
|
|
5651
5682
|
description: string;
|
|
5652
5683
|
title: string;
|
|
@@ -5665,17 +5696,17 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5665
5696
|
display_id?: string | null | undefined;
|
|
5666
5697
|
credit_value?: string | null | undefined;
|
|
5667
5698
|
delivered_value?: string | null | undefined;
|
|
5668
|
-
display_id_prefix?: string | null | undefined;
|
|
5669
5699
|
start_at?: string | null | undefined;
|
|
5670
5700
|
target_at?: string | null | undefined;
|
|
5671
5701
|
completed_at?: string | null | undefined;
|
|
5702
|
+
display_id_prefix?: string | null | undefined;
|
|
5672
5703
|
locked_approval_at?: string | null | undefined;
|
|
5673
5704
|
assigned_to?: string | null | undefined;
|
|
5674
5705
|
assigned_to_display_name?: string | null | undefined;
|
|
5675
5706
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5676
5707
|
}, {
|
|
5677
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5678
5708
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5709
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5679
5710
|
id: string;
|
|
5680
5711
|
description: string;
|
|
5681
5712
|
title: string;
|
|
@@ -5694,10 +5725,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5694
5725
|
display_id?: string | null | undefined;
|
|
5695
5726
|
credit_value?: string | null | undefined;
|
|
5696
5727
|
delivered_value?: string | null | undefined;
|
|
5697
|
-
display_id_prefix?: string | null | undefined;
|
|
5698
5728
|
start_at?: string | null | undefined;
|
|
5699
5729
|
target_at?: string | null | undefined;
|
|
5700
5730
|
completed_at?: string | null | undefined;
|
|
5731
|
+
display_id_prefix?: string | null | undefined;
|
|
5701
5732
|
locked_approval_at?: string | null | undefined;
|
|
5702
5733
|
assigned_to?: string | null | undefined;
|
|
5703
5734
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -5727,8 +5758,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5727
5758
|
}>;
|
|
5728
5759
|
}, "strip", z.ZodTypeAny, {
|
|
5729
5760
|
items: {
|
|
5730
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5731
5761
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5762
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5732
5763
|
id: string;
|
|
5733
5764
|
description: string;
|
|
5734
5765
|
title: string;
|
|
@@ -5747,10 +5778,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5747
5778
|
display_id?: string | null | undefined;
|
|
5748
5779
|
credit_value?: string | null | undefined;
|
|
5749
5780
|
delivered_value?: string | null | undefined;
|
|
5750
|
-
display_id_prefix?: string | null | undefined;
|
|
5751
5781
|
start_at?: string | null | undefined;
|
|
5752
5782
|
target_at?: string | null | undefined;
|
|
5753
5783
|
completed_at?: string | null | undefined;
|
|
5784
|
+
display_id_prefix?: string | null | undefined;
|
|
5754
5785
|
locked_approval_at?: string | null | undefined;
|
|
5755
5786
|
assigned_to?: string | null | undefined;
|
|
5756
5787
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -5766,8 +5797,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5766
5797
|
};
|
|
5767
5798
|
}, {
|
|
5768
5799
|
items: {
|
|
5769
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5770
5800
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5801
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5771
5802
|
id: string;
|
|
5772
5803
|
description: string;
|
|
5773
5804
|
title: string;
|
|
@@ -5786,10 +5817,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5786
5817
|
display_id?: string | null | undefined;
|
|
5787
5818
|
credit_value?: string | null | undefined;
|
|
5788
5819
|
delivered_value?: string | null | undefined;
|
|
5789
|
-
display_id_prefix?: string | null | undefined;
|
|
5790
5820
|
start_at?: string | null | undefined;
|
|
5791
5821
|
target_at?: string | null | undefined;
|
|
5792
5822
|
completed_at?: string | null | undefined;
|
|
5823
|
+
display_id_prefix?: string | null | undefined;
|
|
5793
5824
|
locked_approval_at?: string | null | undefined;
|
|
5794
5825
|
assigned_to?: string | null | undefined;
|
|
5795
5826
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6602,23 +6633,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6602
6633
|
searchableFields: string[];
|
|
6603
6634
|
}>>;
|
|
6604
6635
|
}, "strip", z.ZodTypeAny, {
|
|
6605
|
-
type?: {
|
|
6606
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6607
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6608
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6609
|
-
caseSensitive?: boolean | undefined;
|
|
6610
|
-
} | undefined;
|
|
6611
|
-
status?: {
|
|
6612
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6613
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6614
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6615
|
-
caseSensitive?: boolean | undefined;
|
|
6616
|
-
} | undefined;
|
|
6617
|
-
first?: number | undefined;
|
|
6618
|
-
after?: string | undefined;
|
|
6619
|
-
sortBy?: string | undefined;
|
|
6620
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6621
|
-
paginationToken?: string | undefined;
|
|
6622
6636
|
created_at?: {
|
|
6623
6637
|
operator: "isEmpty" | "isNotEmpty";
|
|
6624
6638
|
value?: any;
|
|
@@ -6635,6 +6649,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6635
6649
|
values?: any[] | undefined;
|
|
6636
6650
|
caseSensitive?: boolean | undefined;
|
|
6637
6651
|
} | undefined;
|
|
6652
|
+
status?: {
|
|
6653
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6654
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6655
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6656
|
+
caseSensitive?: boolean | undefined;
|
|
6657
|
+
} | undefined;
|
|
6658
|
+
type?: {
|
|
6659
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6660
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6661
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6662
|
+
caseSensitive?: boolean | undefined;
|
|
6663
|
+
} | undefined;
|
|
6664
|
+
first?: number | undefined;
|
|
6665
|
+
after?: string | undefined;
|
|
6666
|
+
sortBy?: string | undefined;
|
|
6667
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6668
|
+
paginationToken?: string | undefined;
|
|
6638
6669
|
created_by?: {
|
|
6639
6670
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6640
6671
|
value?: string | undefined;
|
|
@@ -6758,23 +6789,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6758
6789
|
caseSensitive?: boolean | undefined;
|
|
6759
6790
|
} | undefined;
|
|
6760
6791
|
}, {
|
|
6761
|
-
type?: {
|
|
6762
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6763
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6764
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6765
|
-
caseSensitive?: boolean | undefined;
|
|
6766
|
-
} | undefined;
|
|
6767
|
-
status?: {
|
|
6768
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6769
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6770
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6771
|
-
caseSensitive?: boolean | undefined;
|
|
6772
|
-
} | undefined;
|
|
6773
|
-
first?: number | undefined;
|
|
6774
|
-
after?: string | undefined;
|
|
6775
|
-
sortBy?: string | undefined;
|
|
6776
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6777
|
-
paginationToken?: string | undefined;
|
|
6778
6792
|
created_at?: {
|
|
6779
6793
|
operator: "isEmpty" | "isNotEmpty";
|
|
6780
6794
|
value?: any;
|
|
@@ -6791,6 +6805,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6791
6805
|
values?: any[] | undefined;
|
|
6792
6806
|
caseSensitive?: boolean | undefined;
|
|
6793
6807
|
} | undefined;
|
|
6808
|
+
status?: {
|
|
6809
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6810
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6811
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6812
|
+
caseSensitive?: boolean | undefined;
|
|
6813
|
+
} | undefined;
|
|
6814
|
+
type?: {
|
|
6815
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6816
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6817
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6818
|
+
caseSensitive?: boolean | undefined;
|
|
6819
|
+
} | undefined;
|
|
6820
|
+
first?: number | undefined;
|
|
6821
|
+
after?: string | undefined;
|
|
6822
|
+
sortBy?: string | undefined;
|
|
6823
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6824
|
+
paginationToken?: string | undefined;
|
|
6794
6825
|
created_by?: {
|
|
6795
6826
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6796
6827
|
value?: string | undefined;
|
|
@@ -7680,11 +7711,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7680
7711
|
searchableFields: string[];
|
|
7681
7712
|
}>>;
|
|
7682
7713
|
}, "strip", z.ZodTypeAny, {
|
|
7683
|
-
first?: number | undefined;
|
|
7684
|
-
after?: string | undefined;
|
|
7685
|
-
sortBy?: string | undefined;
|
|
7686
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7687
|
-
paginationToken?: string | undefined;
|
|
7688
7714
|
created_at?: {
|
|
7689
7715
|
operator: "isEmpty" | "isNotEmpty";
|
|
7690
7716
|
value?: any;
|
|
@@ -7701,6 +7727,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7701
7727
|
values?: any[] | undefined;
|
|
7702
7728
|
caseSensitive?: boolean | undefined;
|
|
7703
7729
|
} | undefined;
|
|
7730
|
+
first?: number | undefined;
|
|
7731
|
+
after?: string | undefined;
|
|
7732
|
+
sortBy?: string | undefined;
|
|
7733
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7734
|
+
paginationToken?: string | undefined;
|
|
7704
7735
|
search?: {
|
|
7705
7736
|
query: string;
|
|
7706
7737
|
searchableFields: string[];
|
|
@@ -7780,11 +7811,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7780
7811
|
caseSensitive?: boolean | undefined;
|
|
7781
7812
|
} | undefined;
|
|
7782
7813
|
}, {
|
|
7783
|
-
first?: number | undefined;
|
|
7784
|
-
after?: string | undefined;
|
|
7785
|
-
sortBy?: string | undefined;
|
|
7786
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7787
|
-
paginationToken?: string | undefined;
|
|
7788
7814
|
created_at?: {
|
|
7789
7815
|
operator: "isEmpty" | "isNotEmpty";
|
|
7790
7816
|
value?: any;
|
|
@@ -7801,6 +7827,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7801
7827
|
values?: any[] | undefined;
|
|
7802
7828
|
caseSensitive?: boolean | undefined;
|
|
7803
7829
|
} | undefined;
|
|
7830
|
+
first?: number | undefined;
|
|
7831
|
+
after?: string | undefined;
|
|
7832
|
+
sortBy?: string | undefined;
|
|
7833
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7834
|
+
paginationToken?: string | undefined;
|
|
7804
7835
|
search?: {
|
|
7805
7836
|
query: string;
|
|
7806
7837
|
searchableFields: string[];
|
|
@@ -7907,14 +7938,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
7907
7938
|
url?: string | null | undefined;
|
|
7908
7939
|
unique_name?: string | null | undefined;
|
|
7909
7940
|
legal_name?: string | null | undefined;
|
|
7910
|
-
contact_email?: string | null | undefined;
|
|
7911
|
-
address_city?: string | null | undefined;
|
|
7912
|
-
address_zip?: string | null | undefined;
|
|
7913
7941
|
contact_name?: string | null | undefined;
|
|
7942
|
+
contact_email?: string | null | undefined;
|
|
7914
7943
|
contact_business_phone?: string | null | undefined;
|
|
7915
7944
|
contact_mobile_phone?: string | null | undefined;
|
|
7916
7945
|
contact_time_zone?: string | null | undefined;
|
|
7917
7946
|
address_full?: string | null | undefined;
|
|
7947
|
+
address_city?: string | null | undefined;
|
|
7948
|
+
address_zip?: string | null | undefined;
|
|
7918
7949
|
twitter_username?: string | null | undefined;
|
|
7919
7950
|
logo?: string | null | undefined;
|
|
7920
7951
|
email_sent_from?: string | null | undefined;
|
|
@@ -7925,14 +7956,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
7925
7956
|
url?: string | null | undefined;
|
|
7926
7957
|
unique_name?: string | null | undefined;
|
|
7927
7958
|
legal_name?: string | null | undefined;
|
|
7928
|
-
contact_email?: string | null | undefined;
|
|
7929
|
-
address_city?: string | null | undefined;
|
|
7930
|
-
address_zip?: string | null | undefined;
|
|
7931
7959
|
contact_name?: string | null | undefined;
|
|
7960
|
+
contact_email?: string | null | undefined;
|
|
7932
7961
|
contact_business_phone?: string | null | undefined;
|
|
7933
7962
|
contact_mobile_phone?: string | null | undefined;
|
|
7934
7963
|
contact_time_zone?: string | null | undefined;
|
|
7935
7964
|
address_full?: string | null | undefined;
|
|
7965
|
+
address_city?: string | null | undefined;
|
|
7966
|
+
address_zip?: string | null | undefined;
|
|
7936
7967
|
twitter_username?: string | null | undefined;
|
|
7937
7968
|
logo?: string | null | undefined;
|
|
7938
7969
|
email_sent_from?: string | null | undefined;
|
|
@@ -7962,14 +7993,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7962
7993
|
url?: string | null | undefined;
|
|
7963
7994
|
unique_name?: string | null | undefined;
|
|
7964
7995
|
legal_name?: string | null | undefined;
|
|
7965
|
-
contact_email?: string | null | undefined;
|
|
7966
|
-
address_city?: string | null | undefined;
|
|
7967
|
-
address_zip?: string | null | undefined;
|
|
7968
7996
|
contact_name?: string | null | undefined;
|
|
7997
|
+
contact_email?: string | null | undefined;
|
|
7969
7998
|
contact_business_phone?: string | null | undefined;
|
|
7970
7999
|
contact_mobile_phone?: string | null | undefined;
|
|
7971
8000
|
contact_time_zone?: string | null | undefined;
|
|
7972
8001
|
address_full?: string | null | undefined;
|
|
8002
|
+
address_city?: string | null | undefined;
|
|
8003
|
+
address_zip?: string | null | undefined;
|
|
7973
8004
|
twitter_username?: string | null | undefined;
|
|
7974
8005
|
logo?: string | null | undefined;
|
|
7975
8006
|
email_sent_from?: string | null | undefined;
|
|
@@ -7980,14 +8011,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
7980
8011
|
url?: string | null | undefined;
|
|
7981
8012
|
unique_name?: string | null | undefined;
|
|
7982
8013
|
legal_name?: string | null | undefined;
|
|
7983
|
-
contact_email?: string | null | undefined;
|
|
7984
|
-
address_city?: string | null | undefined;
|
|
7985
|
-
address_zip?: string | null | undefined;
|
|
7986
8014
|
contact_name?: string | null | undefined;
|
|
8015
|
+
contact_email?: string | null | undefined;
|
|
7987
8016
|
contact_business_phone?: string | null | undefined;
|
|
7988
8017
|
contact_mobile_phone?: string | null | undefined;
|
|
7989
8018
|
contact_time_zone?: string | null | undefined;
|
|
7990
8019
|
address_full?: string | null | undefined;
|
|
8020
|
+
address_city?: string | null | undefined;
|
|
8021
|
+
address_zip?: string | null | undefined;
|
|
7991
8022
|
twitter_username?: string | null | undefined;
|
|
7992
8023
|
logo?: string | null | undefined;
|
|
7993
8024
|
email_sent_from?: string | null | undefined;
|
|
@@ -8021,14 +8052,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8021
8052
|
url?: string | null | undefined;
|
|
8022
8053
|
unique_name?: string | null | undefined;
|
|
8023
8054
|
legal_name?: string | null | undefined;
|
|
8024
|
-
contact_email?: string | null | undefined;
|
|
8025
|
-
address_city?: string | null | undefined;
|
|
8026
|
-
address_zip?: string | null | undefined;
|
|
8027
8055
|
contact_name?: string | null | undefined;
|
|
8056
|
+
contact_email?: string | null | undefined;
|
|
8028
8057
|
contact_business_phone?: string | null | undefined;
|
|
8029
8058
|
contact_mobile_phone?: string | null | undefined;
|
|
8030
8059
|
contact_time_zone?: string | null | undefined;
|
|
8031
8060
|
address_full?: string | null | undefined;
|
|
8061
|
+
address_city?: string | null | undefined;
|
|
8062
|
+
address_zip?: string | null | undefined;
|
|
8032
8063
|
twitter_username?: string | null | undefined;
|
|
8033
8064
|
logo?: string | null | undefined;
|
|
8034
8065
|
email_sent_from?: string | null | undefined;
|
|
@@ -8040,14 +8071,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8040
8071
|
url?: string | null | undefined;
|
|
8041
8072
|
unique_name?: string | null | undefined;
|
|
8042
8073
|
legal_name?: string | null | undefined;
|
|
8043
|
-
contact_email?: string | null | undefined;
|
|
8044
|
-
address_city?: string | null | undefined;
|
|
8045
|
-
address_zip?: string | null | undefined;
|
|
8046
8074
|
contact_name?: string | null | undefined;
|
|
8075
|
+
contact_email?: string | null | undefined;
|
|
8047
8076
|
contact_business_phone?: string | null | undefined;
|
|
8048
8077
|
contact_mobile_phone?: string | null | undefined;
|
|
8049
8078
|
contact_time_zone?: string | null | undefined;
|
|
8050
8079
|
address_full?: string | null | undefined;
|
|
8080
|
+
address_city?: string | null | undefined;
|
|
8081
|
+
address_zip?: string | null | undefined;
|
|
8051
8082
|
twitter_username?: string | null | undefined;
|
|
8052
8083
|
logo?: string | null | undefined;
|
|
8053
8084
|
email_sent_from?: string | null | undefined;
|
|
@@ -8105,14 +8136,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8105
8136
|
updated_by_display_name?: string | null | undefined;
|
|
8106
8137
|
unique_name?: string | null | undefined;
|
|
8107
8138
|
legal_name?: string | null | undefined;
|
|
8108
|
-
contact_email?: string | null | undefined;
|
|
8109
|
-
address_city?: string | null | undefined;
|
|
8110
|
-
address_zip?: string | null | undefined;
|
|
8111
8139
|
contact_name?: string | null | undefined;
|
|
8140
|
+
contact_email?: string | null | undefined;
|
|
8112
8141
|
contact_business_phone?: string | null | undefined;
|
|
8113
8142
|
contact_mobile_phone?: string | null | undefined;
|
|
8114
8143
|
contact_time_zone?: string | null | undefined;
|
|
8115
8144
|
address_full?: string | null | undefined;
|
|
8145
|
+
address_city?: string | null | undefined;
|
|
8146
|
+
address_zip?: string | null | undefined;
|
|
8116
8147
|
twitter_username?: string | null | undefined;
|
|
8117
8148
|
logo?: string | null | undefined;
|
|
8118
8149
|
email_sent_from?: string | null | undefined;
|
|
@@ -8135,14 +8166,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8135
8166
|
updated_by_display_name?: string | null | undefined;
|
|
8136
8167
|
unique_name?: string | null | undefined;
|
|
8137
8168
|
legal_name?: string | null | undefined;
|
|
8138
|
-
contact_email?: string | null | undefined;
|
|
8139
|
-
address_city?: string | null | undefined;
|
|
8140
|
-
address_zip?: string | null | undefined;
|
|
8141
8169
|
contact_name?: string | null | undefined;
|
|
8170
|
+
contact_email?: string | null | undefined;
|
|
8142
8171
|
contact_business_phone?: string | null | undefined;
|
|
8143
8172
|
contact_mobile_phone?: string | null | undefined;
|
|
8144
8173
|
contact_time_zone?: string | null | undefined;
|
|
8145
8174
|
address_full?: string | null | undefined;
|
|
8175
|
+
address_city?: string | null | undefined;
|
|
8176
|
+
address_zip?: string | null | undefined;
|
|
8146
8177
|
twitter_username?: string | null | undefined;
|
|
8147
8178
|
logo?: string | null | undefined;
|
|
8148
8179
|
email_sent_from?: string | null | undefined;
|
|
@@ -8189,14 +8220,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8189
8220
|
updated_by_display_name?: string | null | undefined;
|
|
8190
8221
|
unique_name?: string | null | undefined;
|
|
8191
8222
|
legal_name?: string | null | undefined;
|
|
8192
|
-
contact_email?: string | null | undefined;
|
|
8193
|
-
address_city?: string | null | undefined;
|
|
8194
|
-
address_zip?: string | null | undefined;
|
|
8195
8223
|
contact_name?: string | null | undefined;
|
|
8224
|
+
contact_email?: string | null | undefined;
|
|
8196
8225
|
contact_business_phone?: string | null | undefined;
|
|
8197
8226
|
contact_mobile_phone?: string | null | undefined;
|
|
8198
8227
|
contact_time_zone?: string | null | undefined;
|
|
8199
8228
|
address_full?: string | null | undefined;
|
|
8229
|
+
address_city?: string | null | undefined;
|
|
8230
|
+
address_zip?: string | null | undefined;
|
|
8200
8231
|
twitter_username?: string | null | undefined;
|
|
8201
8232
|
logo?: string | null | undefined;
|
|
8202
8233
|
email_sent_from?: string | null | undefined;
|
|
@@ -8229,14 +8260,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8229
8260
|
updated_by_display_name?: string | null | undefined;
|
|
8230
8261
|
unique_name?: string | null | undefined;
|
|
8231
8262
|
legal_name?: string | null | undefined;
|
|
8232
|
-
contact_email?: string | null | undefined;
|
|
8233
|
-
address_city?: string | null | undefined;
|
|
8234
|
-
address_zip?: string | null | undefined;
|
|
8235
8263
|
contact_name?: string | null | undefined;
|
|
8264
|
+
contact_email?: string | null | undefined;
|
|
8236
8265
|
contact_business_phone?: string | null | undefined;
|
|
8237
8266
|
contact_mobile_phone?: string | null | undefined;
|
|
8238
8267
|
contact_time_zone?: string | null | undefined;
|
|
8239
8268
|
address_full?: string | null | undefined;
|
|
8269
|
+
address_city?: string | null | undefined;
|
|
8270
|
+
address_zip?: string | null | undefined;
|
|
8240
8271
|
twitter_username?: string | null | undefined;
|
|
8241
8272
|
logo?: string | null | undefined;
|
|
8242
8273
|
email_sent_from?: string | null | undefined;
|
|
@@ -8303,14 +8334,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8303
8334
|
updated_by_display_name?: string | null | undefined;
|
|
8304
8335
|
unique_name?: string | null | undefined;
|
|
8305
8336
|
legal_name?: string | null | undefined;
|
|
8306
|
-
contact_email?: string | null | undefined;
|
|
8307
|
-
address_city?: string | null | undefined;
|
|
8308
|
-
address_zip?: string | null | undefined;
|
|
8309
8337
|
contact_name?: string | null | undefined;
|
|
8338
|
+
contact_email?: string | null | undefined;
|
|
8310
8339
|
contact_business_phone?: string | null | undefined;
|
|
8311
8340
|
contact_mobile_phone?: string | null | undefined;
|
|
8312
8341
|
contact_time_zone?: string | null | undefined;
|
|
8313
8342
|
address_full?: string | null | undefined;
|
|
8343
|
+
address_city?: string | null | undefined;
|
|
8344
|
+
address_zip?: string | null | undefined;
|
|
8314
8345
|
twitter_username?: string | null | undefined;
|
|
8315
8346
|
logo?: string | null | undefined;
|
|
8316
8347
|
email_sent_from?: string | null | undefined;
|
|
@@ -8333,14 +8364,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8333
8364
|
updated_by_display_name?: string | null | undefined;
|
|
8334
8365
|
unique_name?: string | null | undefined;
|
|
8335
8366
|
legal_name?: string | null | undefined;
|
|
8336
|
-
contact_email?: string | null | undefined;
|
|
8337
|
-
address_city?: string | null | undefined;
|
|
8338
|
-
address_zip?: string | null | undefined;
|
|
8339
8367
|
contact_name?: string | null | undefined;
|
|
8368
|
+
contact_email?: string | null | undefined;
|
|
8340
8369
|
contact_business_phone?: string | null | undefined;
|
|
8341
8370
|
contact_mobile_phone?: string | null | undefined;
|
|
8342
8371
|
contact_time_zone?: string | null | undefined;
|
|
8343
8372
|
address_full?: string | null | undefined;
|
|
8373
|
+
address_city?: string | null | undefined;
|
|
8374
|
+
address_zip?: string | null | undefined;
|
|
8344
8375
|
twitter_username?: string | null | undefined;
|
|
8345
8376
|
logo?: string | null | undefined;
|
|
8346
8377
|
email_sent_from?: string | null | undefined;
|
|
@@ -8420,14 +8451,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8420
8451
|
updated_by_display_name?: string | null | undefined;
|
|
8421
8452
|
unique_name?: string | null | undefined;
|
|
8422
8453
|
legal_name?: string | null | undefined;
|
|
8423
|
-
contact_email?: string | null | undefined;
|
|
8424
|
-
address_city?: string | null | undefined;
|
|
8425
|
-
address_zip?: string | null | undefined;
|
|
8426
8454
|
contact_name?: string | null | undefined;
|
|
8455
|
+
contact_email?: string | null | undefined;
|
|
8427
8456
|
contact_business_phone?: string | null | undefined;
|
|
8428
8457
|
contact_mobile_phone?: string | null | undefined;
|
|
8429
8458
|
contact_time_zone?: string | null | undefined;
|
|
8430
8459
|
address_full?: string | null | undefined;
|
|
8460
|
+
address_city?: string | null | undefined;
|
|
8461
|
+
address_zip?: string | null | undefined;
|
|
8431
8462
|
twitter_username?: string | null | undefined;
|
|
8432
8463
|
logo?: string | null | undefined;
|
|
8433
8464
|
email_sent_from?: string | null | undefined;
|
|
@@ -8450,14 +8481,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8450
8481
|
updated_by_display_name?: string | null | undefined;
|
|
8451
8482
|
unique_name?: string | null | undefined;
|
|
8452
8483
|
legal_name?: string | null | undefined;
|
|
8453
|
-
contact_email?: string | null | undefined;
|
|
8454
|
-
address_city?: string | null | undefined;
|
|
8455
|
-
address_zip?: string | null | undefined;
|
|
8456
8484
|
contact_name?: string | null | undefined;
|
|
8485
|
+
contact_email?: string | null | undefined;
|
|
8457
8486
|
contact_business_phone?: string | null | undefined;
|
|
8458
8487
|
contact_mobile_phone?: string | null | undefined;
|
|
8459
8488
|
contact_time_zone?: string | null | undefined;
|
|
8460
8489
|
address_full?: string | null | undefined;
|
|
8490
|
+
address_city?: string | null | undefined;
|
|
8491
|
+
address_zip?: string | null | undefined;
|
|
8461
8492
|
twitter_username?: string | null | undefined;
|
|
8462
8493
|
logo?: string | null | undefined;
|
|
8463
8494
|
email_sent_from?: string | null | undefined;
|
|
@@ -8517,14 +8548,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8517
8548
|
updated_by_display_name?: string | null | undefined;
|
|
8518
8549
|
unique_name?: string | null | undefined;
|
|
8519
8550
|
legal_name?: string | null | undefined;
|
|
8520
|
-
contact_email?: string | null | undefined;
|
|
8521
|
-
address_city?: string | null | undefined;
|
|
8522
|
-
address_zip?: string | null | undefined;
|
|
8523
8551
|
contact_name?: string | null | undefined;
|
|
8552
|
+
contact_email?: string | null | undefined;
|
|
8524
8553
|
contact_business_phone?: string | null | undefined;
|
|
8525
8554
|
contact_mobile_phone?: string | null | undefined;
|
|
8526
8555
|
contact_time_zone?: string | null | undefined;
|
|
8527
8556
|
address_full?: string | null | undefined;
|
|
8557
|
+
address_city?: string | null | undefined;
|
|
8558
|
+
address_zip?: string | null | undefined;
|
|
8528
8559
|
twitter_username?: string | null | undefined;
|
|
8529
8560
|
logo?: string | null | undefined;
|
|
8530
8561
|
email_sent_from?: string | null | undefined;
|
|
@@ -8547,14 +8578,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8547
8578
|
updated_by_display_name?: string | null | undefined;
|
|
8548
8579
|
unique_name?: string | null | undefined;
|
|
8549
8580
|
legal_name?: string | null | undefined;
|
|
8550
|
-
contact_email?: string | null | undefined;
|
|
8551
|
-
address_city?: string | null | undefined;
|
|
8552
|
-
address_zip?: string | null | undefined;
|
|
8553
8581
|
contact_name?: string | null | undefined;
|
|
8582
|
+
contact_email?: string | null | undefined;
|
|
8554
8583
|
contact_business_phone?: string | null | undefined;
|
|
8555
8584
|
contact_mobile_phone?: string | null | undefined;
|
|
8556
8585
|
contact_time_zone?: string | null | undefined;
|
|
8557
8586
|
address_full?: string | null | undefined;
|
|
8587
|
+
address_city?: string | null | undefined;
|
|
8588
|
+
address_zip?: string | null | undefined;
|
|
8558
8589
|
twitter_username?: string | null | undefined;
|
|
8559
8590
|
logo?: string | null | undefined;
|
|
8560
8591
|
email_sent_from?: string | null | undefined;
|
|
@@ -8579,14 +8610,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8579
8610
|
updated_by_display_name?: string | null | undefined;
|
|
8580
8611
|
unique_name?: string | null | undefined;
|
|
8581
8612
|
legal_name?: string | null | undefined;
|
|
8582
|
-
contact_email?: string | null | undefined;
|
|
8583
|
-
address_city?: string | null | undefined;
|
|
8584
|
-
address_zip?: string | null | undefined;
|
|
8585
8613
|
contact_name?: string | null | undefined;
|
|
8614
|
+
contact_email?: string | null | undefined;
|
|
8586
8615
|
contact_business_phone?: string | null | undefined;
|
|
8587
8616
|
contact_mobile_phone?: string | null | undefined;
|
|
8588
8617
|
contact_time_zone?: string | null | undefined;
|
|
8589
8618
|
address_full?: string | null | undefined;
|
|
8619
|
+
address_city?: string | null | undefined;
|
|
8620
|
+
address_zip?: string | null | undefined;
|
|
8590
8621
|
twitter_username?: string | null | undefined;
|
|
8591
8622
|
logo?: string | null | undefined;
|
|
8592
8623
|
email_sent_from?: string | null | undefined;
|
|
@@ -8611,14 +8642,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8611
8642
|
updated_by_display_name?: string | null | undefined;
|
|
8612
8643
|
unique_name?: string | null | undefined;
|
|
8613
8644
|
legal_name?: string | null | undefined;
|
|
8614
|
-
contact_email?: string | null | undefined;
|
|
8615
|
-
address_city?: string | null | undefined;
|
|
8616
|
-
address_zip?: string | null | undefined;
|
|
8617
8645
|
contact_name?: string | null | undefined;
|
|
8646
|
+
contact_email?: string | null | undefined;
|
|
8618
8647
|
contact_business_phone?: string | null | undefined;
|
|
8619
8648
|
contact_mobile_phone?: string | null | undefined;
|
|
8620
8649
|
contact_time_zone?: string | null | undefined;
|
|
8621
8650
|
address_full?: string | null | undefined;
|
|
8651
|
+
address_city?: string | null | undefined;
|
|
8652
|
+
address_zip?: string | null | undefined;
|
|
8622
8653
|
twitter_username?: string | null | undefined;
|
|
8623
8654
|
logo?: string | null | undefined;
|
|
8624
8655
|
email_sent_from?: string | null | undefined;
|
|
@@ -9271,11 +9302,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9271
9302
|
searchableFields: string[];
|
|
9272
9303
|
}>>;
|
|
9273
9304
|
}, "strip", z.ZodTypeAny, {
|
|
9274
|
-
first?: number | undefined;
|
|
9275
|
-
after?: string | undefined;
|
|
9276
|
-
sortBy?: string | undefined;
|
|
9277
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9278
|
-
paginationToken?: string | undefined;
|
|
9279
9305
|
created_at?: {
|
|
9280
9306
|
operator: "isEmpty" | "isNotEmpty";
|
|
9281
9307
|
value?: any;
|
|
@@ -9292,6 +9318,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9292
9318
|
values?: any[] | undefined;
|
|
9293
9319
|
caseSensitive?: boolean | undefined;
|
|
9294
9320
|
} | undefined;
|
|
9321
|
+
first?: number | undefined;
|
|
9322
|
+
after?: string | undefined;
|
|
9323
|
+
sortBy?: string | undefined;
|
|
9324
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9325
|
+
paginationToken?: string | undefined;
|
|
9295
9326
|
search?: {
|
|
9296
9327
|
query: string;
|
|
9297
9328
|
searchableFields: string[];
|
|
@@ -9401,11 +9432,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9401
9432
|
caseSensitive?: boolean | undefined;
|
|
9402
9433
|
} | undefined;
|
|
9403
9434
|
}, {
|
|
9404
|
-
first?: number | undefined;
|
|
9405
|
-
after?: string | undefined;
|
|
9406
|
-
sortBy?: string | undefined;
|
|
9407
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9408
|
-
paginationToken?: string | undefined;
|
|
9409
9435
|
created_at?: {
|
|
9410
9436
|
operator: "isEmpty" | "isNotEmpty";
|
|
9411
9437
|
value?: any;
|
|
@@ -9422,6 +9448,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9422
9448
|
values?: any[] | undefined;
|
|
9423
9449
|
caseSensitive?: boolean | undefined;
|
|
9424
9450
|
} | undefined;
|
|
9451
|
+
first?: number | undefined;
|
|
9452
|
+
after?: string | undefined;
|
|
9453
|
+
sortBy?: string | undefined;
|
|
9454
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9455
|
+
paginationToken?: string | undefined;
|
|
9425
9456
|
search?: {
|
|
9426
9457
|
query: string;
|
|
9427
9458
|
searchableFields: string[];
|
|
@@ -9885,19 +9916,19 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
9885
9916
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
9886
9917
|
}, "strip", z.ZodTypeAny, {
|
|
9887
9918
|
created_at: string;
|
|
9888
|
-
id: string;
|
|
9889
9919
|
email: string;
|
|
9890
9920
|
username: string;
|
|
9891
9921
|
email_verified: boolean;
|
|
9892
9922
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9923
|
+
id: string;
|
|
9893
9924
|
updated_at: string | null;
|
|
9894
9925
|
}, {
|
|
9895
9926
|
created_at: string;
|
|
9896
|
-
id: string;
|
|
9897
9927
|
email: string;
|
|
9898
9928
|
username: string;
|
|
9899
9929
|
email_verified: boolean;
|
|
9900
9930
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9931
|
+
id: string;
|
|
9901
9932
|
updated_at: string | null;
|
|
9902
9933
|
}>;
|
|
9903
9934
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
@@ -9907,11 +9938,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
9907
9938
|
id: z.ZodString;
|
|
9908
9939
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
9909
9940
|
}, "strip", z.ZodTypeAny, {
|
|
9910
|
-
id: string;
|
|
9911
9941
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9912
|
-
}, {
|
|
9913
9942
|
id: string;
|
|
9943
|
+
}, {
|
|
9914
9944
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9945
|
+
id: string;
|
|
9915
9946
|
}>;
|
|
9916
9947
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
9917
9948
|
//#endregion
|
|
@@ -10083,6 +10114,10 @@ interface AttachmentApi {
|
|
|
10083
10114
|
* List attachments with filters
|
|
10084
10115
|
*/
|
|
10085
10116
|
listAttachments(filters: AttachmentFiltersDto): Promise<AttachmentPageDto>;
|
|
10117
|
+
/**
|
|
10118
|
+
* Update attachment metadata (title, description, metadata)
|
|
10119
|
+
*/
|
|
10120
|
+
updateAttachment(input: UpdateAttachmentInputDto): Promise<AttachmentReadDto>;
|
|
10086
10121
|
/**
|
|
10087
10122
|
* Delete an attachment
|
|
10088
10123
|
*/
|
|
@@ -10780,5 +10815,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
10780
10815
|
*/
|
|
10781
10816
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
10782
10817
|
//#endregion
|
|
10783
|
-
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DefaultReferralTeamFormDto, DefaultReferralTeamFormSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, REFERRAL_TAG_ERROR_MESSAGE, REFERRAL_TAG_MAX, REFERRAL_TAG_MIN, REFERRAL_TAG_REGEX, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, ReferralTagValueSchema, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SetReferralTagDto, SetReferralTagSchema, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInitiateInputDto, SignupInitiateResponseDto, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, normalizeToReferralTag, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10818
|
+
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DefaultReferralTeamFormDto, DefaultReferralTeamFormSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, REFERRAL_TAG_ERROR_MESSAGE, REFERRAL_TAG_MAX, REFERRAL_TAG_MIN, REFERRAL_TAG_REGEX, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, ReferralTagValueSchema, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SetReferralTagDto, SetReferralTagSchema, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInitiateInputDto, SignupInitiateResponseDto, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UpdateAttachmentInputDto, UpdateAttachmentInputSchema, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, normalizeToReferralTag, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10784
10819
|
//# sourceMappingURL=index.d.mts.map
|