@dragonmastery/dragoncore-shared 0.0.33 → 0.0.35

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 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
@@ -210,8 +210,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
210
210
  file_size: string;
211
211
  description?: string | null | undefined;
212
212
  metadata?: string | null | undefined;
213
- title?: string | null | undefined;
214
213
  folder_id?: string | null | undefined;
214
+ title?: string | null | undefined;
215
215
  }, {
216
216
  record_id: string;
217
217
  record_type: string;
@@ -221,13 +221,11 @@ declare const AttachmentCreateSchema: z.ZodObject<{
221
221
  file_size: string;
222
222
  description?: string | null | undefined;
223
223
  metadata?: string | null | undefined;
224
- title?: string | null | undefined;
225
224
  folder_id?: string | null | undefined;
225
+ title?: string | null | undefined;
226
226
  }>;
227
227
  type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
228
- declare const AttachmentUpdateSchema: z.ZodObject<{
229
- metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
230
- } & {
228
+ declare const AttachmentUpdateSchema: z.ZodObject<{} & {
231
229
  id: z.ZodString;
232
230
  record_id: z.ZodOptional<z.ZodString>;
233
231
  record_type: z.ZodOptional<z.ZodString>;
@@ -237,6 +235,7 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
237
235
  file_size: z.ZodOptional<z.ZodString>;
238
236
  title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
239
237
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
238
+ metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
240
239
  folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
241
240
  }, "strip", z.ZodTypeAny, {
242
241
  id: string;
@@ -244,26 +243,44 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
244
243
  record_id?: string | undefined;
245
244
  record_type?: string | undefined;
246
245
  metadata?: string | null | undefined;
246
+ folder_id?: string | null | undefined;
247
247
  sanitized_name?: string | undefined;
248
248
  original_name?: string | undefined;
249
249
  content_type?: string | undefined;
250
250
  file_size?: string | undefined;
251
251
  title?: string | null | undefined;
252
- folder_id?: string | null | undefined;
253
252
  }, {
254
253
  id: string;
255
254
  description?: string | null | undefined;
256
255
  record_id?: string | undefined;
257
256
  record_type?: string | undefined;
258
257
  metadata?: string | null | undefined;
258
+ folder_id?: string | null | undefined;
259
259
  sanitized_name?: string | undefined;
260
260
  original_name?: string | undefined;
261
261
  content_type?: string | undefined;
262
262
  file_size?: string | undefined;
263
263
  title?: string | null | undefined;
264
- folder_id?: string | null | undefined;
265
264
  }>;
266
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>;
267
284
  //#endregion
268
285
  //#region src/validation/attachment/attachment_page_zod.d.ts
269
286
  declare const AttachmentPageSchema: z.ZodObject<{
@@ -302,12 +319,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
302
319
  metadata?: string | null | undefined;
303
320
  updated_at?: string | null | undefined;
304
321
  updated_by?: string | null | undefined;
305
- title?: string | null | undefined;
306
322
  folder_id?: string | null | undefined;
307
323
  archived_at?: string | null | undefined;
308
324
  archived_by?: string | null | undefined;
309
325
  deleted_at?: string | null | undefined;
310
326
  deleted_by?: string | null | undefined;
327
+ title?: string | null | undefined;
311
328
  }, {
312
329
  created_at: string;
313
330
  created_by: string;
@@ -322,12 +339,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
322
339
  metadata?: string | null | undefined;
323
340
  updated_at?: string | null | undefined;
324
341
  updated_by?: string | null | undefined;
325
- title?: string | null | undefined;
326
342
  folder_id?: string | null | undefined;
327
343
  archived_at?: string | null | undefined;
328
344
  archived_by?: string | null | undefined;
329
345
  deleted_at?: string | null | undefined;
330
346
  deleted_by?: string | null | undefined;
347
+ title?: string | null | undefined;
331
348
  }>, "many">;
332
349
  folders: z.ZodArray<z.ZodObject<{
333
350
  record_id: z.ZodString;
@@ -360,12 +377,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
360
377
  metadata?: string | null | undefined;
361
378
  updated_at?: string | null | undefined;
362
379
  updated_by?: string | null | undefined;
380
+ parent_folder_id?: string | null | undefined;
381
+ file_count?: number | undefined;
363
382
  archived_at?: string | null | undefined;
364
383
  archived_by?: string | null | undefined;
365
384
  deleted_at?: string | null | undefined;
366
385
  deleted_by?: string | null | undefined;
367
- parent_folder_id?: string | null | undefined;
368
- file_count?: number | undefined;
369
386
  }, {
370
387
  created_at: string;
371
388
  created_by: string;
@@ -378,12 +395,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
378
395
  metadata?: string | null | undefined;
379
396
  updated_at?: string | null | undefined;
380
397
  updated_by?: string | null | undefined;
398
+ parent_folder_id?: string | null | undefined;
399
+ file_count?: number | undefined;
381
400
  archived_at?: string | null | undefined;
382
401
  archived_by?: string | null | undefined;
383
402
  deleted_at?: string | null | undefined;
384
403
  deleted_by?: string | null | undefined;
385
- parent_folder_id?: string | null | undefined;
386
- file_count?: number | undefined;
387
404
  }>, "many">;
388
405
  pageInfo: z.ZodObject<{
389
406
  hasNextPage: z.ZodBoolean;
@@ -414,12 +431,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
414
431
  metadata?: string | null | undefined;
415
432
  updated_at?: string | null | undefined;
416
433
  updated_by?: string | null | undefined;
417
- title?: string | null | undefined;
418
434
  folder_id?: string | null | undefined;
419
435
  archived_at?: string | null | undefined;
420
436
  archived_by?: string | null | undefined;
421
437
  deleted_at?: string | null | undefined;
422
438
  deleted_by?: string | null | undefined;
439
+ title?: string | null | undefined;
423
440
  }[];
424
441
  folders: {
425
442
  created_at: string;
@@ -433,12 +450,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
433
450
  metadata?: string | null | undefined;
434
451
  updated_at?: string | null | undefined;
435
452
  updated_by?: string | null | undefined;
453
+ parent_folder_id?: string | null | undefined;
454
+ file_count?: number | undefined;
436
455
  archived_at?: string | null | undefined;
437
456
  archived_by?: string | null | undefined;
438
457
  deleted_at?: string | null | undefined;
439
458
  deleted_by?: string | null | undefined;
440
- parent_folder_id?: string | null | undefined;
441
- file_count?: number | undefined;
442
459
  }[];
443
460
  }, {
444
461
  pageInfo: {
@@ -459,12 +476,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
459
476
  metadata?: string | null | undefined;
460
477
  updated_at?: string | null | undefined;
461
478
  updated_by?: string | null | undefined;
462
- title?: string | null | undefined;
463
479
  folder_id?: string | null | undefined;
464
480
  archived_at?: string | null | undefined;
465
481
  archived_by?: string | null | undefined;
466
482
  deleted_at?: string | null | undefined;
467
483
  deleted_by?: string | null | undefined;
484
+ title?: string | null | undefined;
468
485
  }[];
469
486
  folders: {
470
487
  created_at: string;
@@ -478,12 +495,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
478
495
  metadata?: string | null | undefined;
479
496
  updated_at?: string | null | undefined;
480
497
  updated_by?: string | null | undefined;
498
+ parent_folder_id?: string | null | undefined;
499
+ file_count?: number | undefined;
481
500
  archived_at?: string | null | undefined;
482
501
  archived_by?: string | null | undefined;
483
502
  deleted_at?: string | null | undefined;
484
503
  deleted_by?: string | null | undefined;
485
- parent_folder_id?: string | null | undefined;
486
- file_count?: number | undefined;
487
504
  }[];
488
505
  }>;
489
506
  type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
@@ -524,12 +541,12 @@ declare const AttachmentReadSchema: z.ZodObject<{
524
541
  metadata?: string | null | undefined;
525
542
  updated_at?: string | null | undefined;
526
543
  updated_by?: string | null | undefined;
527
- title?: string | null | undefined;
528
544
  folder_id?: string | null | undefined;
529
545
  archived_at?: string | null | undefined;
530
546
  archived_by?: string | null | undefined;
531
547
  deleted_at?: string | null | undefined;
532
548
  deleted_by?: string | null | undefined;
549
+ title?: string | null | undefined;
533
550
  }, {
534
551
  created_at: string;
535
552
  created_by: string;
@@ -544,12 +561,12 @@ declare const AttachmentReadSchema: z.ZodObject<{
544
561
  metadata?: string | null | undefined;
545
562
  updated_at?: string | null | undefined;
546
563
  updated_by?: string | null | undefined;
547
- title?: string | null | undefined;
548
564
  folder_id?: string | null | undefined;
549
565
  archived_at?: string | null | undefined;
550
566
  archived_by?: string | null | undefined;
551
567
  deleted_at?: string | null | undefined;
552
568
  deleted_by?: string | null | undefined;
569
+ title?: string | null | undefined;
553
570
  }>;
554
571
  type AttachmentReadDto = z.infer<typeof AttachmentReadSchema>;
555
572
  //#endregion
@@ -1461,22 +1478,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1461
1478
  searchableFields: string[];
1462
1479
  }>>;
1463
1480
  }, "strip", z.ZodTypeAny, {
1464
- created_at?: {
1465
- operator: "isEmpty" | "isNotEmpty";
1466
- value?: any;
1467
- values?: any[] | undefined;
1468
- caseSensitive?: boolean | undefined;
1469
- } | {
1470
- values: string[];
1471
- operator: "between";
1472
- value?: any;
1473
- caseSensitive?: boolean | undefined;
1474
- } | {
1475
- value: string;
1476
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
1477
- values?: any[] | undefined;
1478
- caseSensitive?: boolean | undefined;
1479
- } | undefined;
1480
1481
  type?: {
1481
1482
  operator: "eq" | "ne" | "in" | "notIn";
1482
1483
  value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
@@ -1506,17 +1507,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1506
1507
  values?: number[] | undefined;
1507
1508
  caseSensitive?: boolean | undefined;
1508
1509
  } | undefined;
1509
- created_by?: {
1510
- operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
1511
- value?: string | undefined;
1512
- values?: string[] | undefined;
1513
- caseSensitive?: boolean | undefined;
1514
- } | undefined;
1515
- search?: {
1516
- query: string;
1517
- searchableFields: string[];
1518
- } | undefined;
1519
- }, {
1520
1510
  created_at?: {
1521
1511
  operator: "isEmpty" | "isNotEmpty";
1522
1512
  value?: any;
@@ -1533,6 +1523,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1533
1523
  values?: any[] | undefined;
1534
1524
  caseSensitive?: boolean | undefined;
1535
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
+ }, {
1536
1537
  type?: {
1537
1538
  operator: "eq" | "ne" | "in" | "notIn";
1538
1539
  value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
@@ -1562,6 +1563,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1562
1563
  values?: number[] | undefined;
1563
1564
  caseSensitive?: boolean | undefined;
1564
1565
  } | undefined;
1566
+ created_at?: {
1567
+ operator: "isEmpty" | "isNotEmpty";
1568
+ value?: any;
1569
+ values?: any[] | undefined;
1570
+ caseSensitive?: boolean | undefined;
1571
+ } | {
1572
+ values: string[];
1573
+ operator: "between";
1574
+ value?: any;
1575
+ caseSensitive?: boolean | undefined;
1576
+ } | {
1577
+ value: string;
1578
+ operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
1579
+ values?: any[] | undefined;
1580
+ caseSensitive?: boolean | undefined;
1581
+ } | undefined;
1565
1582
  created_by?: {
1566
1583
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
1567
1584
  value?: string | undefined;
@@ -1594,19 +1611,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
1594
1611
  created_at: z.ZodString;
1595
1612
  created_by: z.ZodString;
1596
1613
  }, "strip", z.ZodTypeAny, {
1597
- created_at: string;
1598
1614
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1599
1615
  amount: string;
1600
1616
  balance_after: string;
1617
+ created_at: string;
1601
1618
  created_by: string;
1602
1619
  id: string;
1603
1620
  support_ticket_id?: string | null | undefined;
1604
1621
  description?: string | null | undefined;
1605
1622
  }, {
1606
- created_at: string;
1607
1623
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1608
1624
  amount: string;
1609
1625
  balance_after: string;
1626
+ created_at: string;
1610
1627
  created_by: string;
1611
1628
  id: string;
1612
1629
  support_ticket_id?: string | null | undefined;
@@ -1627,19 +1644,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
1627
1644
  created_at: z.ZodString;
1628
1645
  created_by: z.ZodString;
1629
1646
  }, "strip", z.ZodTypeAny, {
1630
- created_at: string;
1631
1647
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1632
1648
  amount: string;
1633
1649
  balance_after: string;
1650
+ created_at: string;
1634
1651
  created_by: string;
1635
1652
  id: string;
1636
1653
  support_ticket_id?: string | null | undefined;
1637
1654
  description?: string | null | undefined;
1638
1655
  }, {
1639
- created_at: string;
1640
1656
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1641
1657
  amount: string;
1642
1658
  balance_after: string;
1659
+ created_at: string;
1643
1660
  created_by: string;
1644
1661
  id: string;
1645
1662
  support_ticket_id?: string | null | undefined;
@@ -1669,10 +1686,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
1669
1686
  }>;
1670
1687
  }, "strip", z.ZodTypeAny, {
1671
1688
  items: {
1672
- created_at: string;
1673
1689
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1674
1690
  amount: string;
1675
1691
  balance_after: string;
1692
+ created_at: string;
1676
1693
  created_by: string;
1677
1694
  id: string;
1678
1695
  support_ticket_id?: string | null | undefined;
@@ -1688,10 +1705,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
1688
1705
  };
1689
1706
  }, {
1690
1707
  items: {
1691
- created_at: string;
1692
1708
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1693
1709
  amount: string;
1694
1710
  balance_after: string;
1711
+ created_at: string;
1695
1712
  created_by: string;
1696
1713
  id: string;
1697
1714
  support_ticket_id?: string | null | undefined;
@@ -1770,8 +1787,8 @@ declare const userSessionSchema: z.ZodObject<{
1770
1787
  price_currency?: string | null | undefined;
1771
1788
  }>, "many">>>;
1772
1789
  }, "strip", z.ZodTypeAny, {
1773
- userId: string;
1774
1790
  email: string;
1791
+ userId: string;
1775
1792
  username: string;
1776
1793
  email_verified: boolean;
1777
1794
  user_type: string;
@@ -1792,8 +1809,8 @@ declare const userSessionSchema: z.ZodObject<{
1792
1809
  price_currency?: string | null | undefined;
1793
1810
  }[] | null | undefined;
1794
1811
  }, {
1795
- userId: string;
1796
1812
  email: string;
1813
+ userId: string;
1797
1814
  username: string;
1798
1815
  email_verified: boolean;
1799
1816
  user_type: string;
@@ -1816,8 +1833,8 @@ declare const userSessionSchema: z.ZodObject<{
1816
1833
  }>;
1817
1834
  }, "strip", z.ZodTypeAny, {
1818
1835
  user: {
1819
- userId: string;
1820
1836
  email: string;
1837
+ userId: string;
1821
1838
  username: string;
1822
1839
  email_verified: boolean;
1823
1840
  user_type: string;
@@ -1838,15 +1855,15 @@ declare const userSessionSchema: z.ZodObject<{
1838
1855
  price_currency?: string | null | undefined;
1839
1856
  }[] | null | undefined;
1840
1857
  };
1858
+ status: string;
1841
1859
  created_at: string;
1842
1860
  expires_at: string;
1843
- status: string;
1844
1861
  user_agent?: string | null | undefined;
1845
1862
  ip_address?: string | null | undefined;
1846
1863
  }, {
1847
1864
  user: {
1848
- userId: string;
1849
1865
  email: string;
1866
+ userId: string;
1850
1867
  username: string;
1851
1868
  email_verified: boolean;
1852
1869
  user_type: string;
@@ -1867,9 +1884,9 @@ declare const userSessionSchema: z.ZodObject<{
1867
1884
  price_currency?: string | null | undefined;
1868
1885
  }[] | null | undefined;
1869
1886
  };
1887
+ status: string;
1870
1888
  created_at: string;
1871
1889
  expires_at: string;
1872
- status: string;
1873
1890
  user_agent?: string | null | undefined;
1874
1891
  ip_address?: string | null | undefined;
1875
1892
  }>;
@@ -1925,8 +1942,8 @@ declare const loginResponseSchema: z.ZodObject<{
1925
1942
  price_currency?: string | null | undefined;
1926
1943
  }>, "many">>>;
1927
1944
  }, "strip", z.ZodTypeAny, {
1928
- userId: string;
1929
1945
  email: string;
1946
+ userId: string;
1930
1947
  username: string;
1931
1948
  email_verified: boolean;
1932
1949
  user_type: string;
@@ -1947,8 +1964,8 @@ declare const loginResponseSchema: z.ZodObject<{
1947
1964
  price_currency?: string | null | undefined;
1948
1965
  }[] | null | undefined;
1949
1966
  }, {
1950
- userId: string;
1951
1967
  email: string;
1968
+ userId: string;
1952
1969
  username: string;
1953
1970
  email_verified: boolean;
1954
1971
  user_type: string;
@@ -1971,8 +1988,8 @@ declare const loginResponseSchema: z.ZodObject<{
1971
1988
  }>;
1972
1989
  }, "strip", z.ZodTypeAny, {
1973
1990
  user: {
1974
- userId: string;
1975
1991
  email: string;
1992
+ userId: string;
1976
1993
  username: string;
1977
1994
  email_verified: boolean;
1978
1995
  user_type: string;
@@ -1993,15 +2010,15 @@ declare const loginResponseSchema: z.ZodObject<{
1993
2010
  price_currency?: string | null | undefined;
1994
2011
  }[] | null | undefined;
1995
2012
  };
2013
+ status: string;
1996
2014
  created_at: string;
1997
2015
  expires_at: string;
1998
- status: string;
1999
2016
  user_agent?: string | null | undefined;
2000
2017
  ip_address?: string | null | undefined;
2001
2018
  }, {
2002
2019
  user: {
2003
- userId: string;
2004
2020
  email: string;
2021
+ userId: string;
2005
2022
  username: string;
2006
2023
  email_verified: boolean;
2007
2024
  user_type: string;
@@ -2022,9 +2039,9 @@ declare const loginResponseSchema: z.ZodObject<{
2022
2039
  price_currency?: string | null | undefined;
2023
2040
  }[] | null | undefined;
2024
2041
  };
2042
+ status: string;
2025
2043
  created_at: string;
2026
2044
  expires_at: string;
2027
- status: string;
2028
2045
  user_agent?: string | null | undefined;
2029
2046
  ip_address?: string | null | undefined;
2030
2047
  }>;
@@ -2035,8 +2052,8 @@ declare const loginResponseSchema: z.ZodObject<{
2035
2052
  refresh_token: string;
2036
2053
  frontend_session: {
2037
2054
  user: {
2038
- userId: string;
2039
2055
  email: string;
2056
+ userId: string;
2040
2057
  username: string;
2041
2058
  email_verified: boolean;
2042
2059
  user_type: string;
@@ -2057,9 +2074,9 @@ declare const loginResponseSchema: z.ZodObject<{
2057
2074
  price_currency?: string | null | undefined;
2058
2075
  }[] | null | undefined;
2059
2076
  };
2077
+ status: string;
2060
2078
  created_at: string;
2061
2079
  expires_at: string;
2062
- status: string;
2063
2080
  user_agent?: string | null | undefined;
2064
2081
  ip_address?: string | null | undefined;
2065
2082
  };
@@ -2069,8 +2086,8 @@ declare const loginResponseSchema: z.ZodObject<{
2069
2086
  refresh_token: string;
2070
2087
  frontend_session: {
2071
2088
  user: {
2072
- userId: string;
2073
2089
  email: string;
2090
+ userId: string;
2074
2091
  username: string;
2075
2092
  email_verified: boolean;
2076
2093
  user_type: string;
@@ -2091,9 +2108,9 @@ declare const loginResponseSchema: z.ZodObject<{
2091
2108
  price_currency?: string | null | undefined;
2092
2109
  }[] | null | undefined;
2093
2110
  };
2111
+ status: string;
2094
2112
  created_at: string;
2095
2113
  expires_at: string;
2096
- status: string;
2097
2114
  user_agent?: string | null | undefined;
2098
2115
  ip_address?: string | null | undefined;
2099
2116
  };
@@ -2147,13 +2164,13 @@ declare const NoteReadSchema: z.ZodObject<{
2147
2164
  is_internal: boolean;
2148
2165
  updated_at?: string | null | undefined;
2149
2166
  updated_by?: string | null | undefined;
2150
- title?: string | null | undefined;
2151
2167
  archived_at?: string | null | undefined;
2152
2168
  archived_by?: string | null | undefined;
2153
2169
  deleted_at?: string | null | undefined;
2154
2170
  deleted_by?: string | null | undefined;
2155
- body?: string | null | undefined;
2171
+ title?: string | null | undefined;
2156
2172
  tag?: string | null | undefined;
2173
+ body?: string | null | undefined;
2157
2174
  original_id?: number | null | undefined;
2158
2175
  created_by_display_name?: string | null | undefined;
2159
2176
  updated_by_display_name?: string | null | undefined;
@@ -2166,13 +2183,13 @@ declare const NoteReadSchema: z.ZodObject<{
2166
2183
  is_internal: boolean;
2167
2184
  updated_at?: string | null | undefined;
2168
2185
  updated_by?: string | null | undefined;
2169
- title?: string | null | undefined;
2170
2186
  archived_at?: string | null | undefined;
2171
2187
  archived_by?: string | null | undefined;
2172
2188
  deleted_at?: string | null | undefined;
2173
2189
  deleted_by?: string | null | undefined;
2174
- body?: string | null | undefined;
2190
+ title?: string | null | undefined;
2175
2191
  tag?: string | null | undefined;
2192
+ body?: string | null | undefined;
2176
2193
  original_id?: number | null | undefined;
2177
2194
  created_by_display_name?: string | null | undefined;
2178
2195
  updated_by_display_name?: string | null | undefined;
@@ -2193,17 +2210,17 @@ declare const NoteCreateSchema: z.ZodObject<{
2193
2210
  record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
2194
2211
  is_internal: boolean;
2195
2212
  title?: string | null | undefined;
2196
- body?: string | null | undefined;
2197
2213
  tag?: string | null | undefined;
2214
+ body?: string | null | undefined;
2198
2215
  original_id?: number | null | undefined;
2199
2216
  }, {
2200
2217
  record_id: string;
2201
2218
  record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
2202
2219
  title?: string | null | undefined;
2203
- body?: string | null | undefined;
2204
2220
  tag?: string | null | undefined;
2205
- is_internal?: boolean | undefined;
2221
+ body?: string | null | undefined;
2206
2222
  original_id?: number | null | undefined;
2223
+ is_internal?: boolean | undefined;
2207
2224
  }>;
2208
2225
  type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
2209
2226
  //#endregion
@@ -2222,19 +2239,19 @@ declare const NoteUpdateSchema: z.ZodObject<{
2222
2239
  record_id?: string | undefined;
2223
2240
  record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
2224
2241
  title?: string | null | undefined;
2225
- body?: string | null | undefined;
2226
2242
  tag?: string | null | undefined;
2227
- is_internal?: boolean | undefined;
2243
+ body?: string | null | undefined;
2228
2244
  original_id?: number | null | undefined;
2245
+ is_internal?: boolean | undefined;
2229
2246
  }, {
2230
2247
  id: string;
2231
2248
  record_id?: string | undefined;
2232
2249
  record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
2233
2250
  title?: string | null | undefined;
2234
- body?: string | null | undefined;
2235
2251
  tag?: string | null | undefined;
2236
- is_internal?: boolean | undefined;
2252
+ body?: string | null | undefined;
2237
2253
  original_id?: number | null | undefined;
2254
+ is_internal?: boolean | undefined;
2238
2255
  }>;
2239
2256
  type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
2240
2257
  //#endregion
@@ -2596,6 +2613,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
2596
2613
  searchableFields: string[];
2597
2614
  }>>;
2598
2615
  }, "strip", z.ZodTypeAny, {
2616
+ first?: number | undefined;
2617
+ after?: string | undefined;
2618
+ sortBy?: string | undefined;
2619
+ sortDirection?: "asc" | "desc" | undefined;
2620
+ paginationToken?: string | undefined;
2599
2621
  created_at?: {
2600
2622
  operator: "isEmpty" | "isNotEmpty";
2601
2623
  value?: any;
@@ -2612,11 +2634,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
2612
2634
  values?: any[] | undefined;
2613
2635
  caseSensitive?: boolean | undefined;
2614
2636
  } | undefined;
2615
- first?: number | undefined;
2616
- after?: string | undefined;
2617
- sortBy?: string | undefined;
2618
- sortDirection?: "asc" | "desc" | undefined;
2619
- paginationToken?: string | undefined;
2620
2637
  search?: {
2621
2638
  query: string;
2622
2639
  searchableFields: string[];
@@ -2655,13 +2672,13 @@ declare const NoteFiltersSchema: z.ZodObject<{
2655
2672
  values?: string[] | undefined;
2656
2673
  caseSensitive?: boolean | undefined;
2657
2674
  } | undefined;
2658
- body?: {
2675
+ tag?: {
2659
2676
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2660
2677
  value?: string | undefined;
2661
2678
  values?: string[] | undefined;
2662
2679
  caseSensitive?: boolean | undefined;
2663
2680
  } | undefined;
2664
- tag?: {
2681
+ body?: {
2665
2682
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2666
2683
  value?: string | undefined;
2667
2684
  values?: string[] | undefined;
@@ -2674,6 +2691,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
2674
2691
  caseSensitive?: boolean | undefined;
2675
2692
  } | undefined;
2676
2693
  }, {
2694
+ first?: number | undefined;
2695
+ after?: string | undefined;
2696
+ sortBy?: string | undefined;
2697
+ sortDirection?: "asc" | "desc" | undefined;
2698
+ paginationToken?: string | undefined;
2677
2699
  created_at?: {
2678
2700
  operator: "isEmpty" | "isNotEmpty";
2679
2701
  value?: any;
@@ -2690,11 +2712,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
2690
2712
  values?: any[] | undefined;
2691
2713
  caseSensitive?: boolean | undefined;
2692
2714
  } | undefined;
2693
- first?: number | undefined;
2694
- after?: string | undefined;
2695
- sortBy?: string | undefined;
2696
- sortDirection?: "asc" | "desc" | undefined;
2697
- paginationToken?: string | undefined;
2698
2715
  search?: {
2699
2716
  query: string;
2700
2717
  searchableFields: string[];
@@ -2733,13 +2750,13 @@ declare const NoteFiltersSchema: z.ZodObject<{
2733
2750
  values?: string[] | undefined;
2734
2751
  caseSensitive?: boolean | undefined;
2735
2752
  } | undefined;
2736
- body?: {
2753
+ tag?: {
2737
2754
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2738
2755
  value?: string | undefined;
2739
2756
  values?: string[] | undefined;
2740
2757
  caseSensitive?: boolean | undefined;
2741
2758
  } | undefined;
2742
- tag?: {
2759
+ body?: {
2743
2760
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2744
2761
  value?: string | undefined;
2745
2762
  values?: string[] | undefined;
@@ -3608,18 +3625,18 @@ declare const signupSchema: z.ZodObject<{
3608
3625
  }>;
3609
3626
  acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
3610
3627
  }, "strip", z.ZodTypeAny, {
3611
- email: string;
3612
3628
  passwords: {
3613
3629
  password: string;
3614
3630
  password_confirm: string;
3615
3631
  };
3632
+ email: string;
3616
3633
  acceptances: Record<string, boolean>;
3617
3634
  }, {
3618
- email: string;
3619
3635
  passwords: {
3620
3636
  password: string;
3621
3637
  password_confirm: string;
3622
3638
  };
3639
+ email: string;
3623
3640
  acceptances?: Record<string, boolean> | undefined;
3624
3641
  }>;
3625
3642
  /** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
@@ -3647,18 +3664,18 @@ declare const signupInitiateSchema: z.ZodObject<{
3647
3664
  password_confirm: string;
3648
3665
  }>;
3649
3666
  }, "strip", z.ZodTypeAny, {
3650
- email: string;
3651
3667
  passwords: {
3652
3668
  password: string;
3653
3669
  password_confirm: string;
3654
3670
  };
3671
+ email: string;
3655
3672
  metadata?: Record<string, unknown> | undefined;
3656
3673
  }, {
3657
- email: string;
3658
3674
  passwords: {
3659
3675
  password: string;
3660
3676
  password_confirm: string;
3661
3677
  };
3678
+ email: string;
3662
3679
  metadata?: Record<string, unknown> | undefined;
3663
3680
  }>;
3664
3681
  type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
@@ -3717,8 +3734,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3717
3734
  price_currency?: string | null | undefined;
3718
3735
  }>, "many">>>;
3719
3736
  }, "strip", z.ZodTypeAny, {
3720
- userId: string;
3721
3737
  email: string;
3738
+ userId: string;
3722
3739
  username: string;
3723
3740
  email_verified: boolean;
3724
3741
  user_type: string;
@@ -3739,8 +3756,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3739
3756
  price_currency?: string | null | undefined;
3740
3757
  }[] | null | undefined;
3741
3758
  }, {
3742
- userId: string;
3743
3759
  email: string;
3760
+ userId: string;
3744
3761
  username: string;
3745
3762
  email_verified: boolean;
3746
3763
  user_type: string;
@@ -3763,8 +3780,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3763
3780
  }>;
3764
3781
  }, "strip", z.ZodTypeAny, {
3765
3782
  user: {
3766
- userId: string;
3767
3783
  email: string;
3784
+ userId: string;
3768
3785
  username: string;
3769
3786
  email_verified: boolean;
3770
3787
  user_type: string;
@@ -3785,15 +3802,15 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3785
3802
  price_currency?: string | null | undefined;
3786
3803
  }[] | null | undefined;
3787
3804
  };
3805
+ status: string;
3788
3806
  created_at: string;
3789
3807
  expires_at: string;
3790
- status: string;
3791
3808
  user_agent?: string | null | undefined;
3792
3809
  ip_address?: string | null | undefined;
3793
3810
  }, {
3794
3811
  user: {
3795
- userId: string;
3796
3812
  email: string;
3813
+ userId: string;
3797
3814
  username: string;
3798
3815
  email_verified: boolean;
3799
3816
  user_type: string;
@@ -3814,9 +3831,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3814
3831
  price_currency?: string | null | undefined;
3815
3832
  }[] | null | undefined;
3816
3833
  };
3834
+ status: string;
3817
3835
  created_at: string;
3818
3836
  expires_at: string;
3819
- status: string;
3820
3837
  user_agent?: string | null | undefined;
3821
3838
  ip_address?: string | null | undefined;
3822
3839
  }>;
@@ -3827,8 +3844,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3827
3844
  refresh_token: string;
3828
3845
  frontend_session: {
3829
3846
  user: {
3830
- userId: string;
3831
3847
  email: string;
3848
+ userId: string;
3832
3849
  username: string;
3833
3850
  email_verified: boolean;
3834
3851
  user_type: string;
@@ -3849,9 +3866,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3849
3866
  price_currency?: string | null | undefined;
3850
3867
  }[] | null | undefined;
3851
3868
  };
3869
+ status: string;
3852
3870
  created_at: string;
3853
3871
  expires_at: string;
3854
- status: string;
3855
3872
  user_agent?: string | null | undefined;
3856
3873
  ip_address?: string | null | undefined;
3857
3874
  };
@@ -3861,8 +3878,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3861
3878
  refresh_token: string;
3862
3879
  frontend_session: {
3863
3880
  user: {
3864
- userId: string;
3865
3881
  email: string;
3882
+ userId: string;
3866
3883
  username: string;
3867
3884
  email_verified: boolean;
3868
3885
  user_type: string;
@@ -3883,9 +3900,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3883
3900
  price_currency?: string | null | undefined;
3884
3901
  }[] | null | undefined;
3885
3902
  };
3903
+ status: string;
3886
3904
  created_at: string;
3887
3905
  expires_at: string;
3888
- status: string;
3889
3906
  user_agent?: string | null | undefined;
3890
3907
  ip_address?: string | null | undefined;
3891
3908
  };
@@ -3898,8 +3915,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3898
3915
  refresh_token: string;
3899
3916
  frontend_session: {
3900
3917
  user: {
3901
- userId: string;
3902
3918
  email: string;
3919
+ userId: string;
3903
3920
  username: string;
3904
3921
  email_verified: boolean;
3905
3922
  user_type: string;
@@ -3920,9 +3937,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3920
3937
  price_currency?: string | null | undefined;
3921
3938
  }[] | null | undefined;
3922
3939
  };
3940
+ status: string;
3923
3941
  created_at: string;
3924
3942
  expires_at: string;
3925
- status: string;
3926
3943
  user_agent?: string | null | undefined;
3927
3944
  ip_address?: string | null | undefined;
3928
3945
  };
@@ -3935,8 +3952,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3935
3952
  refresh_token: string;
3936
3953
  frontend_session: {
3937
3954
  user: {
3938
- userId: string;
3939
3955
  email: string;
3956
+ userId: string;
3940
3957
  username: string;
3941
3958
  email_verified: boolean;
3942
3959
  user_type: string;
@@ -3957,9 +3974,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3957
3974
  price_currency?: string | null | undefined;
3958
3975
  }[] | null | undefined;
3959
3976
  };
3977
+ status: string;
3960
3978
  created_at: string;
3961
3979
  expires_at: string;
3962
- status: string;
3963
3980
  user_agent?: string | null | undefined;
3964
3981
  ip_address?: string | null | undefined;
3965
3982
  };
@@ -4264,8 +4281,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
4264
4281
  user_id_display_name?: string | null | undefined;
4265
4282
  }>>>;
4266
4283
  }, "strip", z.ZodTypeAny, {
4267
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4268
4284
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4285
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4269
4286
  id: string;
4270
4287
  description: string;
4271
4288
  title: string;
@@ -4296,8 +4313,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
4296
4313
  user_id_display_name?: string | null | undefined;
4297
4314
  } | null | undefined;
4298
4315
  }, {
4299
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4300
4316
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4317
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4301
4318
  id: string;
4302
4319
  description: string;
4303
4320
  title: string;
@@ -4386,8 +4403,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4386
4403
  user_id_display_name?: string | null | undefined;
4387
4404
  }>>>;
4388
4405
  }, "strip", z.ZodTypeAny, {
4389
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4390
4406
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4407
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4391
4408
  id: string;
4392
4409
  description: string;
4393
4410
  title: string;
@@ -4418,8 +4435,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4418
4435
  user_id_display_name?: string | null | undefined;
4419
4436
  } | null | undefined;
4420
4437
  }, {
4421
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4422
4438
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4439
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4423
4440
  id: string;
4424
4441
  description: string;
4425
4442
  title: string;
@@ -4474,8 +4491,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4474
4491
  }>;
4475
4492
  }, "strip", z.ZodTypeAny, {
4476
4493
  items: {
4477
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4478
4494
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4495
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4479
4496
  id: string;
4480
4497
  description: string;
4481
4498
  title: string;
@@ -4516,8 +4533,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4516
4533
  };
4517
4534
  }, {
4518
4535
  items: {
4519
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4520
4536
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4537
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4521
4538
  id: string;
4522
4539
  description: string;
4523
4540
  title: string;
@@ -5253,6 +5270,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5253
5270
  searchableFields: string[];
5254
5271
  }>>;
5255
5272
  }, "strip", z.ZodTypeAny, {
5273
+ type?: {
5274
+ operator: "eq" | "ne" | "in" | "notIn";
5275
+ value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5276
+ values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5277
+ caseSensitive?: boolean | undefined;
5278
+ } | undefined;
5279
+ status?: {
5280
+ operator: "eq" | "ne" | "in" | "notIn";
5281
+ value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5282
+ values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5283
+ caseSensitive?: boolean | undefined;
5284
+ } | undefined;
5285
+ first?: number | undefined;
5286
+ after?: string | undefined;
5287
+ sortBy?: string | undefined;
5288
+ sortDirection?: "asc" | "desc" | undefined;
5289
+ paginationToken?: string | undefined;
5256
5290
  created_at?: {
5257
5291
  operator: "isEmpty" | "isNotEmpty";
5258
5292
  value?: any;
@@ -5269,23 +5303,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5269
5303
  values?: any[] | undefined;
5270
5304
  caseSensitive?: boolean | undefined;
5271
5305
  } | undefined;
5272
- status?: {
5273
- operator: "eq" | "ne" | "in" | "notIn";
5274
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5275
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5276
- caseSensitive?: boolean | undefined;
5277
- } | undefined;
5278
- type?: {
5279
- operator: "eq" | "ne" | "in" | "notIn";
5280
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5281
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5282
- caseSensitive?: boolean | undefined;
5283
- } | undefined;
5284
- first?: number | undefined;
5285
- after?: string | undefined;
5286
- sortBy?: string | undefined;
5287
- sortDirection?: "asc" | "desc" | undefined;
5288
- paginationToken?: string | undefined;
5289
5306
  created_by?: {
5290
5307
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
5291
5308
  value?: string | undefined;
@@ -5324,6 +5341,12 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5324
5341
  values?: string[] | undefined;
5325
5342
  caseSensitive?: boolean | undefined;
5326
5343
  } | undefined;
5344
+ credit_value?: {
5345
+ operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5346
+ value?: number | undefined;
5347
+ values?: number[] | undefined;
5348
+ caseSensitive?: boolean | undefined;
5349
+ } | undefined;
5327
5350
  priority?: {
5328
5351
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5329
5352
  value?: number | undefined;
@@ -5336,12 +5359,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5336
5359
  values?: any[] | undefined;
5337
5360
  caseSensitive?: boolean | undefined;
5338
5361
  } | undefined;
5339
- credit_value?: {
5340
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5341
- value?: number | undefined;
5342
- values?: number[] | undefined;
5343
- caseSensitive?: boolean | undefined;
5344
- } | undefined;
5345
5362
  start_at?: {
5346
5363
  operator: "isEmpty" | "isNotEmpty";
5347
5364
  value?: any;
@@ -5391,6 +5408,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5391
5408
  caseSensitive?: boolean | undefined;
5392
5409
  } | undefined;
5393
5410
  }, {
5411
+ type?: {
5412
+ operator: "eq" | "ne" | "in" | "notIn";
5413
+ value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5414
+ values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5415
+ caseSensitive?: boolean | undefined;
5416
+ } | undefined;
5417
+ status?: {
5418
+ operator: "eq" | "ne" | "in" | "notIn";
5419
+ value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5420
+ values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5421
+ caseSensitive?: boolean | undefined;
5422
+ } | undefined;
5423
+ first?: number | undefined;
5424
+ after?: string | undefined;
5425
+ sortBy?: string | undefined;
5426
+ sortDirection?: "asc" | "desc" | undefined;
5427
+ paginationToken?: string | undefined;
5394
5428
  created_at?: {
5395
5429
  operator: "isEmpty" | "isNotEmpty";
5396
5430
  value?: any;
@@ -5407,23 +5441,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5407
5441
  values?: any[] | undefined;
5408
5442
  caseSensitive?: boolean | undefined;
5409
5443
  } | undefined;
5410
- status?: {
5411
- operator: "eq" | "ne" | "in" | "notIn";
5412
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5413
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5414
- caseSensitive?: boolean | undefined;
5415
- } | undefined;
5416
- type?: {
5417
- operator: "eq" | "ne" | "in" | "notIn";
5418
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5419
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5420
- caseSensitive?: boolean | undefined;
5421
- } | undefined;
5422
- first?: number | undefined;
5423
- after?: string | undefined;
5424
- sortBy?: string | undefined;
5425
- sortDirection?: "asc" | "desc" | undefined;
5426
- paginationToken?: string | undefined;
5427
5444
  created_by?: {
5428
5445
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
5429
5446
  value?: string | undefined;
@@ -5462,6 +5479,12 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5462
5479
  values?: string[] | undefined;
5463
5480
  caseSensitive?: boolean | undefined;
5464
5481
  } | undefined;
5482
+ credit_value?: {
5483
+ operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5484
+ value?: number | undefined;
5485
+ values?: number[] | undefined;
5486
+ caseSensitive?: boolean | undefined;
5487
+ } | undefined;
5465
5488
  priority?: {
5466
5489
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5467
5490
  value?: number | undefined;
@@ -5474,12 +5497,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5474
5497
  values?: any[] | undefined;
5475
5498
  caseSensitive?: boolean | undefined;
5476
5499
  } | undefined;
5477
- credit_value?: {
5478
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5479
- value?: number | undefined;
5480
- values?: number[] | undefined;
5481
- caseSensitive?: boolean | undefined;
5482
- } | undefined;
5483
5500
  start_at?: {
5484
5501
  operator: "isEmpty" | "isNotEmpty";
5485
5502
  value?: any;
@@ -5566,8 +5583,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5566
5583
  archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5567
5584
  archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5568
5585
  }, "strip", z.ZodTypeAny, {
5569
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5570
5586
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5587
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5571
5588
  id: string;
5572
5589
  description: string;
5573
5590
  title: string;
@@ -5585,6 +5602,7 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5585
5602
  updated_by_display_name?: string | null | undefined;
5586
5603
  display_id?: string | null | undefined;
5587
5604
  credit_value?: string | null | undefined;
5605
+ delivered_value?: string | null | undefined;
5588
5606
  start_at?: string | null | undefined;
5589
5607
  target_at?: string | null | undefined;
5590
5608
  completed_at?: string | null | undefined;
@@ -5593,10 +5611,9 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5593
5611
  assigned_to?: string | null | undefined;
5594
5612
  assigned_to_display_name?: string | null | undefined;
5595
5613
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5596
- delivered_value?: string | null | undefined;
5597
5614
  }, {
5598
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5599
5615
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5616
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5600
5617
  id: string;
5601
5618
  description: string;
5602
5619
  title: string;
@@ -5614,6 +5631,7 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5614
5631
  updated_by_display_name?: string | null | undefined;
5615
5632
  display_id?: string | null | undefined;
5616
5633
  credit_value?: string | null | undefined;
5634
+ delivered_value?: string | null | undefined;
5617
5635
  start_at?: string | null | undefined;
5618
5636
  target_at?: string | null | undefined;
5619
5637
  completed_at?: string | null | undefined;
@@ -5622,7 +5640,6 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5622
5640
  assigned_to?: string | null | undefined;
5623
5641
  assigned_to_display_name?: string | null | undefined;
5624
5642
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5625
- delivered_value?: string | null | undefined;
5626
5643
  }>;
5627
5644
  type StaffSupportTicketReadDto = z.infer<typeof StaffSupportTicketReadSchema>;
5628
5645
  /**
@@ -5659,8 +5676,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5659
5676
  archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5660
5677
  archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5661
5678
  }, "strip", z.ZodTypeAny, {
5662
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5663
5679
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5680
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5664
5681
  id: string;
5665
5682
  description: string;
5666
5683
  title: string;
@@ -5678,6 +5695,7 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5678
5695
  updated_by_display_name?: string | null | undefined;
5679
5696
  display_id?: string | null | undefined;
5680
5697
  credit_value?: string | null | undefined;
5698
+ delivered_value?: string | null | undefined;
5681
5699
  start_at?: string | null | undefined;
5682
5700
  target_at?: string | null | undefined;
5683
5701
  completed_at?: string | null | undefined;
@@ -5686,10 +5704,9 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5686
5704
  assigned_to?: string | null | undefined;
5687
5705
  assigned_to_display_name?: string | null | undefined;
5688
5706
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5689
- delivered_value?: string | null | undefined;
5690
5707
  }, {
5691
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5692
5708
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5709
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5693
5710
  id: string;
5694
5711
  description: string;
5695
5712
  title: string;
@@ -5707,6 +5724,7 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5707
5724
  updated_by_display_name?: string | null | undefined;
5708
5725
  display_id?: string | null | undefined;
5709
5726
  credit_value?: string | null | undefined;
5727
+ delivered_value?: string | null | undefined;
5710
5728
  start_at?: string | null | undefined;
5711
5729
  target_at?: string | null | undefined;
5712
5730
  completed_at?: string | null | undefined;
@@ -5715,7 +5733,6 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5715
5733
  assigned_to?: string | null | undefined;
5716
5734
  assigned_to_display_name?: string | null | undefined;
5717
5735
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5718
- delivered_value?: string | null | undefined;
5719
5736
  }>, "many">;
5720
5737
  pageInfo: z.ZodObject<{
5721
5738
  hasNextPage: z.ZodBoolean;
@@ -5741,8 +5758,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5741
5758
  }>;
5742
5759
  }, "strip", z.ZodTypeAny, {
5743
5760
  items: {
5744
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5745
5761
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5762
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5746
5763
  id: string;
5747
5764
  description: string;
5748
5765
  title: string;
@@ -5760,6 +5777,7 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5760
5777
  updated_by_display_name?: string | null | undefined;
5761
5778
  display_id?: string | null | undefined;
5762
5779
  credit_value?: string | null | undefined;
5780
+ delivered_value?: string | null | undefined;
5763
5781
  start_at?: string | null | undefined;
5764
5782
  target_at?: string | null | undefined;
5765
5783
  completed_at?: string | null | undefined;
@@ -5768,7 +5786,6 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5768
5786
  assigned_to?: string | null | undefined;
5769
5787
  assigned_to_display_name?: string | null | undefined;
5770
5788
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5771
- delivered_value?: string | null | undefined;
5772
5789
  }[];
5773
5790
  pageInfo: {
5774
5791
  hasNextPage: boolean;
@@ -5780,8 +5797,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5780
5797
  };
5781
5798
  }, {
5782
5799
  items: {
5783
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5784
5800
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5801
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5785
5802
  id: string;
5786
5803
  description: string;
5787
5804
  title: string;
@@ -5799,6 +5816,7 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5799
5816
  updated_by_display_name?: string | null | undefined;
5800
5817
  display_id?: string | null | undefined;
5801
5818
  credit_value?: string | null | undefined;
5819
+ delivered_value?: string | null | undefined;
5802
5820
  start_at?: string | null | undefined;
5803
5821
  target_at?: string | null | undefined;
5804
5822
  completed_at?: string | null | undefined;
@@ -5807,7 +5825,6 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5807
5825
  assigned_to?: string | null | undefined;
5808
5826
  assigned_to_display_name?: string | null | undefined;
5809
5827
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5810
- delivered_value?: string | null | undefined;
5811
5828
  }[];
5812
5829
  pageInfo: {
5813
5830
  hasNextPage: boolean;
@@ -6616,6 +6633,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6616
6633
  searchableFields: string[];
6617
6634
  }>>;
6618
6635
  }, "strip", z.ZodTypeAny, {
6636
+ type?: {
6637
+ operator: "eq" | "ne" | "in" | "notIn";
6638
+ value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6639
+ values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6640
+ caseSensitive?: boolean | undefined;
6641
+ } | undefined;
6642
+ status?: {
6643
+ operator: "eq" | "ne" | "in" | "notIn";
6644
+ value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6645
+ values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6646
+ caseSensitive?: boolean | undefined;
6647
+ } | undefined;
6648
+ first?: number | undefined;
6649
+ after?: string | undefined;
6650
+ sortBy?: string | undefined;
6651
+ sortDirection?: "asc" | "desc" | undefined;
6652
+ paginationToken?: string | undefined;
6619
6653
  created_at?: {
6620
6654
  operator: "isEmpty" | "isNotEmpty";
6621
6655
  value?: any;
@@ -6632,23 +6666,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6632
6666
  values?: any[] | undefined;
6633
6667
  caseSensitive?: boolean | undefined;
6634
6668
  } | undefined;
6635
- status?: {
6636
- operator: "eq" | "ne" | "in" | "notIn";
6637
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6638
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6639
- caseSensitive?: boolean | undefined;
6640
- } | undefined;
6641
- type?: {
6642
- operator: "eq" | "ne" | "in" | "notIn";
6643
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6644
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6645
- caseSensitive?: boolean | undefined;
6646
- } | undefined;
6647
- first?: number | undefined;
6648
- after?: string | undefined;
6649
- sortBy?: string | undefined;
6650
- sortDirection?: "asc" | "desc" | undefined;
6651
- paginationToken?: string | undefined;
6652
6669
  created_by?: {
6653
6670
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
6654
6671
  value?: string | undefined;
@@ -6687,24 +6704,30 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6687
6704
  values?: string[] | undefined;
6688
6705
  caseSensitive?: boolean | undefined;
6689
6706
  } | undefined;
6690
- priority?: {
6707
+ credit_value?: {
6691
6708
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6692
6709
  value?: number | undefined;
6693
6710
  values?: number[] | undefined;
6694
6711
  caseSensitive?: boolean | undefined;
6695
6712
  } | undefined;
6696
- is_locked?: {
6697
- value: boolean;
6698
- operator: "eq" | "ne";
6699
- values?: any[] | undefined;
6713
+ delivered_value?: {
6714
+ operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6715
+ value?: number | undefined;
6716
+ values?: number[] | undefined;
6700
6717
  caseSensitive?: boolean | undefined;
6701
6718
  } | undefined;
6702
- credit_value?: {
6719
+ priority?: {
6703
6720
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6704
6721
  value?: number | undefined;
6705
6722
  values?: number[] | undefined;
6706
6723
  caseSensitive?: boolean | undefined;
6707
6724
  } | undefined;
6725
+ is_locked?: {
6726
+ value: boolean;
6727
+ operator: "eq" | "ne";
6728
+ values?: any[] | undefined;
6729
+ caseSensitive?: boolean | undefined;
6730
+ } | undefined;
6708
6731
  start_at?: {
6709
6732
  operator: "isEmpty" | "isNotEmpty";
6710
6733
  value?: any;
@@ -6765,13 +6788,24 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6765
6788
  values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
6766
6789
  caseSensitive?: boolean | undefined;
6767
6790
  } | undefined;
6768
- delivered_value?: {
6769
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6770
- value?: number | undefined;
6771
- values?: number[] | undefined;
6791
+ }, {
6792
+ type?: {
6793
+ operator: "eq" | "ne" | "in" | "notIn";
6794
+ value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6795
+ values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6772
6796
  caseSensitive?: boolean | undefined;
6773
6797
  } | undefined;
6774
- }, {
6798
+ status?: {
6799
+ operator: "eq" | "ne" | "in" | "notIn";
6800
+ value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6801
+ values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6802
+ caseSensitive?: boolean | undefined;
6803
+ } | undefined;
6804
+ first?: number | undefined;
6805
+ after?: string | undefined;
6806
+ sortBy?: string | undefined;
6807
+ sortDirection?: "asc" | "desc" | undefined;
6808
+ paginationToken?: string | undefined;
6775
6809
  created_at?: {
6776
6810
  operator: "isEmpty" | "isNotEmpty";
6777
6811
  value?: any;
@@ -6788,23 +6822,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6788
6822
  values?: any[] | undefined;
6789
6823
  caseSensitive?: boolean | undefined;
6790
6824
  } | undefined;
6791
- status?: {
6792
- operator: "eq" | "ne" | "in" | "notIn";
6793
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6794
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6795
- caseSensitive?: boolean | undefined;
6796
- } | undefined;
6797
- type?: {
6798
- operator: "eq" | "ne" | "in" | "notIn";
6799
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6800
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6801
- caseSensitive?: boolean | undefined;
6802
- } | undefined;
6803
- first?: number | undefined;
6804
- after?: string | undefined;
6805
- sortBy?: string | undefined;
6806
- sortDirection?: "asc" | "desc" | undefined;
6807
- paginationToken?: string | undefined;
6808
6825
  created_by?: {
6809
6826
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
6810
6827
  value?: string | undefined;
@@ -6843,24 +6860,30 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6843
6860
  values?: string[] | undefined;
6844
6861
  caseSensitive?: boolean | undefined;
6845
6862
  } | undefined;
6846
- priority?: {
6863
+ credit_value?: {
6847
6864
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6848
6865
  value?: number | undefined;
6849
6866
  values?: number[] | undefined;
6850
6867
  caseSensitive?: boolean | undefined;
6851
6868
  } | undefined;
6852
- is_locked?: {
6853
- value: boolean;
6854
- operator: "eq" | "ne";
6855
- values?: any[] | undefined;
6869
+ delivered_value?: {
6870
+ operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6871
+ value?: number | undefined;
6872
+ values?: number[] | undefined;
6856
6873
  caseSensitive?: boolean | undefined;
6857
6874
  } | undefined;
6858
- credit_value?: {
6875
+ priority?: {
6859
6876
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6860
6877
  value?: number | undefined;
6861
6878
  values?: number[] | undefined;
6862
6879
  caseSensitive?: boolean | undefined;
6863
6880
  } | undefined;
6881
+ is_locked?: {
6882
+ value: boolean;
6883
+ operator: "eq" | "ne";
6884
+ values?: any[] | undefined;
6885
+ caseSensitive?: boolean | undefined;
6886
+ } | undefined;
6864
6887
  start_at?: {
6865
6888
  operator: "isEmpty" | "isNotEmpty";
6866
6889
  value?: any;
@@ -6921,12 +6944,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6921
6944
  values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
6922
6945
  caseSensitive?: boolean | undefined;
6923
6946
  } | undefined;
6924
- delivered_value?: {
6925
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6926
- value?: number | undefined;
6927
- values?: number[] | undefined;
6928
- caseSensitive?: boolean | undefined;
6929
- } | undefined;
6930
6947
  }>;
6931
6948
  type StaffSupportTicketFiltersDto = z.infer<typeof StaffSupportTicketFiltersSchema>;
6932
6949
  //#endregion
@@ -6952,12 +6969,12 @@ declare const StaffSupportTicketCreateSchema: z.ZodObject<{
6952
6969
  description?: string | null | undefined;
6953
6970
  is_internal?: boolean | undefined;
6954
6971
  credit_value?: string | null | undefined;
6972
+ delivered_value?: string | null | undefined;
6955
6973
  start_at?: string | null | undefined;
6956
6974
  target_at?: string | null | undefined;
6957
6975
  completed_at?: string | null | undefined;
6958
6976
  assigned_to?: string | null | undefined;
6959
6977
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
6960
- delivered_value?: string | null | undefined;
6961
6978
  }, {
6962
6979
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
6963
6980
  title: string;
@@ -6965,12 +6982,12 @@ declare const StaffSupportTicketCreateSchema: z.ZodObject<{
6965
6982
  description?: string | null | undefined;
6966
6983
  is_internal?: boolean | undefined;
6967
6984
  credit_value?: string | null | undefined;
6985
+ delivered_value?: string | null | undefined;
6968
6986
  start_at?: string | null | undefined;
6969
6987
  target_at?: string | null | undefined;
6970
6988
  completed_at?: string | null | undefined;
6971
6989
  assigned_to?: string | null | undefined;
6972
6990
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
6973
- delivered_value?: string | null | undefined;
6974
6991
  }>;
6975
6992
  type StaffSupportTicketCreateDto = z.infer<typeof StaffSupportTicketCreateSchema>;
6976
6993
  declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
@@ -6994,12 +7011,12 @@ declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
6994
7011
  priority: number;
6995
7012
  description?: string | null | undefined;
6996
7013
  credit_value?: string | null | undefined;
7014
+ delivered_value?: string | null | undefined;
6997
7015
  start_at?: string | null | undefined;
6998
7016
  target_at?: string | null | undefined;
6999
7017
  completed_at?: string | null | undefined;
7000
7018
  assigned_to?: string | null | undefined;
7001
7019
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7002
- delivered_value?: string | null | undefined;
7003
7020
  }, {
7004
7021
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
7005
7022
  id: string;
@@ -7007,12 +7024,12 @@ declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
7007
7024
  priority: number;
7008
7025
  description?: string | null | undefined;
7009
7026
  credit_value?: string | null | undefined;
7027
+ delivered_value?: string | null | undefined;
7010
7028
  start_at?: string | null | undefined;
7011
7029
  target_at?: string | null | undefined;
7012
7030
  completed_at?: string | null | undefined;
7013
7031
  assigned_to?: string | null | undefined;
7014
7032
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7015
- delivered_value?: string | null | undefined;
7016
7033
  }>;
7017
7034
  type StaffSupportTicketUpdateDto = z.infer<typeof StaffSupportTicketUpdateSchema>;
7018
7035
  declare const StaffSupportTicketInputSchema: z.ZodObject<{
@@ -7036,12 +7053,12 @@ declare const StaffSupportTicketInputSchema: z.ZodObject<{
7036
7053
  priority: number;
7037
7054
  description?: string | null | undefined;
7038
7055
  credit_value?: string | null | undefined;
7056
+ delivered_value?: string | null | undefined;
7039
7057
  start_at?: string | null | undefined;
7040
7058
  target_at?: string | null | undefined;
7041
7059
  completed_at?: string | null | undefined;
7042
7060
  assigned_to?: string | null | undefined;
7043
7061
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7044
- delivered_value?: string | null | undefined;
7045
7062
  }, {
7046
7063
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
7047
7064
  id: string;
@@ -7049,12 +7066,12 @@ declare const StaffSupportTicketInputSchema: z.ZodObject<{
7049
7066
  priority: number;
7050
7067
  description?: string | null | undefined;
7051
7068
  credit_value?: string | null | undefined;
7069
+ delivered_value?: string | null | undefined;
7052
7070
  start_at?: string | null | undefined;
7053
7071
  target_at?: string | null | undefined;
7054
7072
  completed_at?: string | null | undefined;
7055
7073
  assigned_to?: string | null | undefined;
7056
7074
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7057
- delivered_value?: string | null | undefined;
7058
7075
  }>;
7059
7076
  type StaffSupportTicketInputDto = StaffSupportTicketUpdateDto;
7060
7077
  //#endregion
@@ -7694,6 +7711,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
7694
7711
  searchableFields: string[];
7695
7712
  }>>;
7696
7713
  }, "strip", z.ZodTypeAny, {
7714
+ first?: number | undefined;
7715
+ after?: string | undefined;
7716
+ sortBy?: string | undefined;
7717
+ sortDirection?: "asc" | "desc" | undefined;
7718
+ paginationToken?: string | undefined;
7697
7719
  created_at?: {
7698
7720
  operator: "isEmpty" | "isNotEmpty";
7699
7721
  value?: any;
@@ -7710,11 +7732,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
7710
7732
  values?: any[] | undefined;
7711
7733
  caseSensitive?: boolean | undefined;
7712
7734
  } | undefined;
7713
- first?: number | undefined;
7714
- after?: string | undefined;
7715
- sortBy?: string | undefined;
7716
- sortDirection?: "asc" | "desc" | undefined;
7717
- paginationToken?: string | undefined;
7718
7735
  search?: {
7719
7736
  query: string;
7720
7737
  searchableFields: string[];
@@ -7794,6 +7811,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
7794
7811
  caseSensitive?: boolean | undefined;
7795
7812
  } | undefined;
7796
7813
  }, {
7814
+ first?: number | undefined;
7815
+ after?: string | undefined;
7816
+ sortBy?: string | undefined;
7817
+ sortDirection?: "asc" | "desc" | undefined;
7818
+ paginationToken?: string | undefined;
7797
7819
  created_at?: {
7798
7820
  operator: "isEmpty" | "isNotEmpty";
7799
7821
  value?: any;
@@ -7810,11 +7832,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
7810
7832
  values?: any[] | undefined;
7811
7833
  caseSensitive?: boolean | undefined;
7812
7834
  } | undefined;
7813
- first?: number | undefined;
7814
- after?: string | undefined;
7815
- sortBy?: string | undefined;
7816
- sortDirection?: "asc" | "desc" | undefined;
7817
- paginationToken?: string | undefined;
7818
7835
  search?: {
7819
7836
  query: string;
7820
7837
  searchableFields: string[];
@@ -9285,6 +9302,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9285
9302
  searchableFields: string[];
9286
9303
  }>>;
9287
9304
  }, "strip", z.ZodTypeAny, {
9305
+ first?: number | undefined;
9306
+ after?: string | undefined;
9307
+ sortBy?: string | undefined;
9308
+ sortDirection?: "asc" | "desc" | undefined;
9309
+ paginationToken?: string | undefined;
9288
9310
  created_at?: {
9289
9311
  operator: "isEmpty" | "isNotEmpty";
9290
9312
  value?: any;
@@ -9301,11 +9323,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9301
9323
  values?: any[] | undefined;
9302
9324
  caseSensitive?: boolean | undefined;
9303
9325
  } | undefined;
9304
- first?: number | undefined;
9305
- after?: string | undefined;
9306
- sortBy?: string | undefined;
9307
- sortDirection?: "asc" | "desc" | undefined;
9308
- paginationToken?: string | undefined;
9309
9326
  search?: {
9310
9327
  query: string;
9311
9328
  searchableFields: string[];
@@ -9415,6 +9432,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9415
9432
  caseSensitive?: boolean | undefined;
9416
9433
  } | undefined;
9417
9434
  }, {
9435
+ first?: number | undefined;
9436
+ after?: string | undefined;
9437
+ sortBy?: string | undefined;
9438
+ sortDirection?: "asc" | "desc" | undefined;
9439
+ paginationToken?: string | undefined;
9418
9440
  created_at?: {
9419
9441
  operator: "isEmpty" | "isNotEmpty";
9420
9442
  value?: any;
@@ -9431,11 +9453,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9431
9453
  values?: any[] | undefined;
9432
9454
  caseSensitive?: boolean | undefined;
9433
9455
  } | undefined;
9434
- first?: number | undefined;
9435
- after?: string | undefined;
9436
- sortBy?: string | undefined;
9437
- sortDirection?: "asc" | "desc" | undefined;
9438
- paginationToken?: string | undefined;
9439
9456
  search?: {
9440
9457
  query: string;
9441
9458
  searchableFields: string[];
@@ -9898,20 +9915,20 @@ declare const UserReadSchema: z.ZodObject<{
9898
9915
  created_at: z.ZodString;
9899
9916
  updated_at: z.ZodNullable<z.ZodString>;
9900
9917
  }, "strip", z.ZodTypeAny, {
9901
- created_at: string;
9902
9918
  email: string;
9919
+ created_at: string;
9920
+ id: string;
9903
9921
  username: string;
9904
9922
  email_verified: boolean;
9905
9923
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9906
- id: string;
9907
9924
  updated_at: string | null;
9908
9925
  }, {
9909
- created_at: string;
9910
9926
  email: string;
9927
+ created_at: string;
9928
+ id: string;
9911
9929
  username: string;
9912
9930
  email_verified: boolean;
9913
9931
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9914
- id: string;
9915
9932
  updated_at: string | null;
9916
9933
  }>;
9917
9934
  type UserReadDto = z.infer<typeof UserReadSchema>;
@@ -9921,11 +9938,11 @@ declare const UserUpdateSchema: z.ZodObject<{
9921
9938
  id: z.ZodString;
9922
9939
  user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
9923
9940
  }, "strip", z.ZodTypeAny, {
9924
- user_type: "consumer" | "lead" | "staff" | "super_admin";
9925
9941
  id: string;
9926
- }, {
9927
9942
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9943
+ }, {
9928
9944
  id: string;
9945
+ user_type: "consumer" | "lead" | "staff" | "super_admin";
9929
9946
  }>;
9930
9947
  type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
9931
9948
  //#endregion
@@ -10098,13 +10115,9 @@ interface AttachmentApi {
10098
10115
  */
10099
10116
  listAttachments(filters: AttachmentFiltersDto): Promise<AttachmentPageDto>;
10100
10117
  /**
10101
- * Update attachment metadata (title, description)
10118
+ * Update attachment metadata (title, description, metadata)
10102
10119
  */
10103
- updateAttachment(input: {
10104
- id: string;
10105
- title?: string | null;
10106
- description?: string | null;
10107
- }): Promise<AttachmentReadDto>;
10120
+ updateAttachment(input: UpdateAttachmentInputDto): Promise<AttachmentReadDto>;
10108
10121
  /**
10109
10122
  * Delete an attachment
10110
10123
  */
@@ -10802,5 +10815,5 @@ declare const formatCurrency: (value: number) => string;
10802
10815
  */
10803
10816
  declare const formatDollar: (amount: string | null | undefined) => string;
10804
10817
  //#endregion
10805
- 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 };
10806
10819
  //# sourceMappingURL=index.d.mts.map