@dragonmastery/dragoncore-shared 0.0.32 → 0.0.33

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
@@ -197,6 +197,7 @@ declare const AttachmentCreateSchema: z.ZodObject<{
197
197
  original_name: z.ZodString;
198
198
  content_type: z.ZodString;
199
199
  file_size: z.ZodString;
200
+ title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
200
201
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
201
202
  metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
202
203
  folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -209,6 +210,7 @@ declare const AttachmentCreateSchema: z.ZodObject<{
209
210
  file_size: string;
210
211
  description?: string | null | undefined;
211
212
  metadata?: string | null | undefined;
213
+ title?: string | null | undefined;
212
214
  folder_id?: string | null | undefined;
213
215
  }, {
214
216
  record_id: string;
@@ -219,11 +221,11 @@ declare const AttachmentCreateSchema: z.ZodObject<{
219
221
  file_size: string;
220
222
  description?: string | null | undefined;
221
223
  metadata?: string | null | undefined;
224
+ title?: string | null | undefined;
222
225
  folder_id?: string | null | undefined;
223
226
  }>;
224
227
  type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
225
228
  declare const AttachmentUpdateSchema: z.ZodObject<{
226
- description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
227
229
  metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
228
230
  } & {
229
231
  id: z.ZodString;
@@ -233,6 +235,8 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
233
235
  original_name: z.ZodOptional<z.ZodString>;
234
236
  content_type: z.ZodOptional<z.ZodString>;
235
237
  file_size: z.ZodOptional<z.ZodString>;
238
+ title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
239
+ description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
236
240
  folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
237
241
  }, "strip", z.ZodTypeAny, {
238
242
  id: string;
@@ -240,22 +244,24 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
240
244
  record_id?: string | undefined;
241
245
  record_type?: string | undefined;
242
246
  metadata?: string | null | undefined;
243
- folder_id?: string | null | undefined;
244
247
  sanitized_name?: string | undefined;
245
248
  original_name?: string | undefined;
246
249
  content_type?: string | undefined;
247
250
  file_size?: string | undefined;
251
+ title?: string | null | undefined;
252
+ folder_id?: string | null | undefined;
248
253
  }, {
249
254
  id: string;
250
255
  description?: string | null | undefined;
251
256
  record_id?: string | undefined;
252
257
  record_type?: string | undefined;
253
258
  metadata?: string | null | undefined;
254
- folder_id?: string | null | undefined;
255
259
  sanitized_name?: string | undefined;
256
260
  original_name?: string | undefined;
257
261
  content_type?: string | undefined;
258
262
  file_size?: string | undefined;
263
+ title?: string | null | undefined;
264
+ folder_id?: string | null | undefined;
259
265
  }>;
260
266
  type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
261
267
  //#endregion
@@ -268,6 +274,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
268
274
  original_name: z.ZodString;
269
275
  content_type: z.ZodString;
270
276
  file_size: z.ZodString;
277
+ title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
271
278
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
272
279
  metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
273
280
  folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -295,6 +302,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
295
302
  metadata?: string | null | undefined;
296
303
  updated_at?: string | null | undefined;
297
304
  updated_by?: string | null | undefined;
305
+ title?: string | null | undefined;
298
306
  folder_id?: string | null | undefined;
299
307
  archived_at?: string | null | undefined;
300
308
  archived_by?: string | null | undefined;
@@ -314,6 +322,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
314
322
  metadata?: string | null | undefined;
315
323
  updated_at?: string | null | undefined;
316
324
  updated_by?: string | null | undefined;
325
+ title?: string | null | undefined;
317
326
  folder_id?: string | null | undefined;
318
327
  archived_at?: string | null | undefined;
319
328
  archived_by?: string | null | undefined;
@@ -405,6 +414,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
405
414
  metadata?: string | null | undefined;
406
415
  updated_at?: string | null | undefined;
407
416
  updated_by?: string | null | undefined;
417
+ title?: string | null | undefined;
408
418
  folder_id?: string | null | undefined;
409
419
  archived_at?: string | null | undefined;
410
420
  archived_by?: string | null | undefined;
@@ -449,6 +459,7 @@ declare const AttachmentPageSchema: z.ZodObject<{
449
459
  metadata?: string | null | undefined;
450
460
  updated_at?: string | null | undefined;
451
461
  updated_by?: string | null | undefined;
462
+ title?: string | null | undefined;
452
463
  folder_id?: string | null | undefined;
453
464
  archived_at?: string | null | undefined;
454
465
  archived_by?: string | null | undefined;
@@ -485,6 +496,7 @@ declare const AttachmentReadSchema: z.ZodObject<{
485
496
  original_name: z.ZodString;
486
497
  content_type: z.ZodString;
487
498
  file_size: z.ZodString;
499
+ title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
488
500
  description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
489
501
  metadata: z.ZodNullable<z.ZodOptional<z.ZodString>>;
490
502
  folder_id: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -512,6 +524,7 @@ declare const AttachmentReadSchema: z.ZodObject<{
512
524
  metadata?: string | null | undefined;
513
525
  updated_at?: string | null | undefined;
514
526
  updated_by?: string | null | undefined;
527
+ title?: string | null | undefined;
515
528
  folder_id?: string | null | undefined;
516
529
  archived_at?: string | null | undefined;
517
530
  archived_by?: string | null | undefined;
@@ -531,6 +544,7 @@ declare const AttachmentReadSchema: z.ZodObject<{
531
544
  metadata?: string | null | undefined;
532
545
  updated_at?: string | null | undefined;
533
546
  updated_by?: string | null | undefined;
547
+ title?: string | null | undefined;
534
548
  folder_id?: string | null | undefined;
535
549
  archived_at?: string | null | undefined;
536
550
  archived_by?: string | null | undefined;
@@ -1129,11 +1143,11 @@ declare const createUserSchemaOutput: z.ZodObject<{
1129
1143
  id: z.ZodString;
1130
1144
  email: z.ZodString;
1131
1145
  }, "strip", z.ZodTypeAny, {
1132
- id: string;
1133
1146
  email: string;
1134
- }, {
1135
1147
  id: string;
1148
+ }, {
1136
1149
  email: string;
1150
+ id: string;
1137
1151
  }>;
1138
1152
  type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
1139
1153
  //#endregion
@@ -1447,6 +1461,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1447
1461
  searchableFields: string[];
1448
1462
  }>>;
1449
1463
  }, "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;
1450
1480
  type?: {
1451
1481
  operator: "eq" | "ne" | "in" | "notIn";
1452
1482
  value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
@@ -1476,6 +1506,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1476
1506
  values?: number[] | undefined;
1477
1507
  caseSensitive?: boolean | undefined;
1478
1508
  } | 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
+ }, {
1479
1520
  created_at?: {
1480
1521
  operator: "isEmpty" | "isNotEmpty";
1481
1522
  value?: any;
@@ -1492,17 +1533,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1492
1533
  values?: any[] | undefined;
1493
1534
  caseSensitive?: boolean | undefined;
1494
1535
  } | undefined;
1495
- created_by?: {
1496
- operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
1497
- value?: string | undefined;
1498
- values?: string[] | undefined;
1499
- caseSensitive?: boolean | undefined;
1500
- } | undefined;
1501
- search?: {
1502
- query: string;
1503
- searchableFields: string[];
1504
- } | undefined;
1505
- }, {
1506
1536
  type?: {
1507
1537
  operator: "eq" | "ne" | "in" | "notIn";
1508
1538
  value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
@@ -1532,22 +1562,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1532
1562
  values?: number[] | undefined;
1533
1563
  caseSensitive?: boolean | undefined;
1534
1564
  } | undefined;
1535
- created_at?: {
1536
- operator: "isEmpty" | "isNotEmpty";
1537
- value?: any;
1538
- values?: any[] | undefined;
1539
- caseSensitive?: boolean | undefined;
1540
- } | {
1541
- values: string[];
1542
- operator: "between";
1543
- value?: any;
1544
- caseSensitive?: boolean | undefined;
1545
- } | {
1546
- value: string;
1547
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
1548
- values?: any[] | undefined;
1549
- caseSensitive?: boolean | undefined;
1550
- } | undefined;
1551
1565
  created_by?: {
1552
1566
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
1553
1567
  value?: string | undefined;
@@ -1580,19 +1594,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
1580
1594
  created_at: z.ZodString;
1581
1595
  created_by: z.ZodString;
1582
1596
  }, "strip", z.ZodTypeAny, {
1597
+ created_at: string;
1583
1598
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1584
1599
  amount: string;
1585
1600
  balance_after: string;
1586
- created_at: string;
1587
1601
  created_by: string;
1588
1602
  id: string;
1589
1603
  support_ticket_id?: string | null | undefined;
1590
1604
  description?: string | null | undefined;
1591
1605
  }, {
1606
+ created_at: string;
1592
1607
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1593
1608
  amount: string;
1594
1609
  balance_after: string;
1595
- created_at: string;
1596
1610
  created_by: string;
1597
1611
  id: string;
1598
1612
  support_ticket_id?: string | null | undefined;
@@ -1613,19 +1627,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
1613
1627
  created_at: z.ZodString;
1614
1628
  created_by: z.ZodString;
1615
1629
  }, "strip", z.ZodTypeAny, {
1630
+ created_at: string;
1616
1631
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1617
1632
  amount: string;
1618
1633
  balance_after: string;
1619
- created_at: string;
1620
1634
  created_by: string;
1621
1635
  id: string;
1622
1636
  support_ticket_id?: string | null | undefined;
1623
1637
  description?: string | null | undefined;
1624
1638
  }, {
1639
+ created_at: string;
1625
1640
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1626
1641
  amount: string;
1627
1642
  balance_after: string;
1628
- created_at: string;
1629
1643
  created_by: string;
1630
1644
  id: string;
1631
1645
  support_ticket_id?: string | null | undefined;
@@ -1655,10 +1669,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
1655
1669
  }>;
1656
1670
  }, "strip", z.ZodTypeAny, {
1657
1671
  items: {
1672
+ created_at: string;
1658
1673
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1659
1674
  amount: string;
1660
1675
  balance_after: string;
1661
- created_at: string;
1662
1676
  created_by: string;
1663
1677
  id: string;
1664
1678
  support_ticket_id?: string | null | undefined;
@@ -1674,10 +1688,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
1674
1688
  };
1675
1689
  }, {
1676
1690
  items: {
1691
+ created_at: string;
1677
1692
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1678
1693
  amount: string;
1679
1694
  balance_after: string;
1680
- created_at: string;
1681
1695
  created_by: string;
1682
1696
  id: string;
1683
1697
  support_ticket_id?: string | null | undefined;
@@ -1756,8 +1770,8 @@ declare const userSessionSchema: z.ZodObject<{
1756
1770
  price_currency?: string | null | undefined;
1757
1771
  }>, "many">>>;
1758
1772
  }, "strip", z.ZodTypeAny, {
1759
- email: string;
1760
1773
  userId: string;
1774
+ email: string;
1761
1775
  username: string;
1762
1776
  email_verified: boolean;
1763
1777
  user_type: string;
@@ -1778,8 +1792,8 @@ declare const userSessionSchema: z.ZodObject<{
1778
1792
  price_currency?: string | null | undefined;
1779
1793
  }[] | null | undefined;
1780
1794
  }, {
1781
- email: string;
1782
1795
  userId: string;
1796
+ email: string;
1783
1797
  username: string;
1784
1798
  email_verified: boolean;
1785
1799
  user_type: string;
@@ -1802,8 +1816,8 @@ declare const userSessionSchema: z.ZodObject<{
1802
1816
  }>;
1803
1817
  }, "strip", z.ZodTypeAny, {
1804
1818
  user: {
1805
- email: string;
1806
1819
  userId: string;
1820
+ email: string;
1807
1821
  username: string;
1808
1822
  email_verified: boolean;
1809
1823
  user_type: string;
@@ -1824,15 +1838,15 @@ declare const userSessionSchema: z.ZodObject<{
1824
1838
  price_currency?: string | null | undefined;
1825
1839
  }[] | null | undefined;
1826
1840
  };
1827
- status: string;
1828
1841
  created_at: string;
1829
1842
  expires_at: string;
1843
+ status: string;
1830
1844
  user_agent?: string | null | undefined;
1831
1845
  ip_address?: string | null | undefined;
1832
1846
  }, {
1833
1847
  user: {
1834
- email: string;
1835
1848
  userId: string;
1849
+ email: string;
1836
1850
  username: string;
1837
1851
  email_verified: boolean;
1838
1852
  user_type: string;
@@ -1853,9 +1867,9 @@ declare const userSessionSchema: z.ZodObject<{
1853
1867
  price_currency?: string | null | undefined;
1854
1868
  }[] | null | undefined;
1855
1869
  };
1856
- status: string;
1857
1870
  created_at: string;
1858
1871
  expires_at: string;
1872
+ status: string;
1859
1873
  user_agent?: string | null | undefined;
1860
1874
  ip_address?: string | null | undefined;
1861
1875
  }>;
@@ -1911,8 +1925,8 @@ declare const loginResponseSchema: z.ZodObject<{
1911
1925
  price_currency?: string | null | undefined;
1912
1926
  }>, "many">>>;
1913
1927
  }, "strip", z.ZodTypeAny, {
1914
- email: string;
1915
1928
  userId: string;
1929
+ email: string;
1916
1930
  username: string;
1917
1931
  email_verified: boolean;
1918
1932
  user_type: string;
@@ -1933,8 +1947,8 @@ declare const loginResponseSchema: z.ZodObject<{
1933
1947
  price_currency?: string | null | undefined;
1934
1948
  }[] | null | undefined;
1935
1949
  }, {
1936
- email: string;
1937
1950
  userId: string;
1951
+ email: string;
1938
1952
  username: string;
1939
1953
  email_verified: boolean;
1940
1954
  user_type: string;
@@ -1957,8 +1971,8 @@ declare const loginResponseSchema: z.ZodObject<{
1957
1971
  }>;
1958
1972
  }, "strip", z.ZodTypeAny, {
1959
1973
  user: {
1960
- email: string;
1961
1974
  userId: string;
1975
+ email: string;
1962
1976
  username: string;
1963
1977
  email_verified: boolean;
1964
1978
  user_type: string;
@@ -1979,15 +1993,15 @@ declare const loginResponseSchema: z.ZodObject<{
1979
1993
  price_currency?: string | null | undefined;
1980
1994
  }[] | null | undefined;
1981
1995
  };
1982
- status: string;
1983
1996
  created_at: string;
1984
1997
  expires_at: string;
1998
+ status: string;
1985
1999
  user_agent?: string | null | undefined;
1986
2000
  ip_address?: string | null | undefined;
1987
2001
  }, {
1988
2002
  user: {
1989
- email: string;
1990
2003
  userId: string;
2004
+ email: string;
1991
2005
  username: string;
1992
2006
  email_verified: boolean;
1993
2007
  user_type: string;
@@ -2008,9 +2022,9 @@ declare const loginResponseSchema: z.ZodObject<{
2008
2022
  price_currency?: string | null | undefined;
2009
2023
  }[] | null | undefined;
2010
2024
  };
2011
- status: string;
2012
2025
  created_at: string;
2013
2026
  expires_at: string;
2027
+ status: string;
2014
2028
  user_agent?: string | null | undefined;
2015
2029
  ip_address?: string | null | undefined;
2016
2030
  }>;
@@ -2021,8 +2035,8 @@ declare const loginResponseSchema: z.ZodObject<{
2021
2035
  refresh_token: string;
2022
2036
  frontend_session: {
2023
2037
  user: {
2024
- email: string;
2025
2038
  userId: string;
2039
+ email: string;
2026
2040
  username: string;
2027
2041
  email_verified: boolean;
2028
2042
  user_type: string;
@@ -2043,9 +2057,9 @@ declare const loginResponseSchema: z.ZodObject<{
2043
2057
  price_currency?: string | null | undefined;
2044
2058
  }[] | null | undefined;
2045
2059
  };
2046
- status: string;
2047
2060
  created_at: string;
2048
2061
  expires_at: string;
2062
+ status: string;
2049
2063
  user_agent?: string | null | undefined;
2050
2064
  ip_address?: string | null | undefined;
2051
2065
  };
@@ -2055,8 +2069,8 @@ declare const loginResponseSchema: z.ZodObject<{
2055
2069
  refresh_token: string;
2056
2070
  frontend_session: {
2057
2071
  user: {
2058
- email: string;
2059
2072
  userId: string;
2073
+ email: string;
2060
2074
  username: string;
2061
2075
  email_verified: boolean;
2062
2076
  user_type: string;
@@ -2077,9 +2091,9 @@ declare const loginResponseSchema: z.ZodObject<{
2077
2091
  price_currency?: string | null | undefined;
2078
2092
  }[] | null | undefined;
2079
2093
  };
2080
- status: string;
2081
2094
  created_at: string;
2082
2095
  expires_at: string;
2096
+ status: string;
2083
2097
  user_agent?: string | null | undefined;
2084
2098
  ip_address?: string | null | undefined;
2085
2099
  };
@@ -2133,11 +2147,11 @@ declare const NoteReadSchema: z.ZodObject<{
2133
2147
  is_internal: boolean;
2134
2148
  updated_at?: string | null | undefined;
2135
2149
  updated_by?: string | null | undefined;
2150
+ title?: string | null | undefined;
2136
2151
  archived_at?: string | null | undefined;
2137
2152
  archived_by?: string | null | undefined;
2138
2153
  deleted_at?: string | null | undefined;
2139
2154
  deleted_by?: string | null | undefined;
2140
- title?: string | null | undefined;
2141
2155
  body?: string | null | undefined;
2142
2156
  tag?: string | null | undefined;
2143
2157
  original_id?: number | null | undefined;
@@ -2152,11 +2166,11 @@ declare const NoteReadSchema: z.ZodObject<{
2152
2166
  is_internal: boolean;
2153
2167
  updated_at?: string | null | undefined;
2154
2168
  updated_by?: string | null | undefined;
2169
+ title?: string | null | undefined;
2155
2170
  archived_at?: string | null | undefined;
2156
2171
  archived_by?: string | null | undefined;
2157
2172
  deleted_at?: string | null | undefined;
2158
2173
  deleted_by?: string | null | undefined;
2159
- title?: string | null | undefined;
2160
2174
  body?: string | null | undefined;
2161
2175
  tag?: string | null | undefined;
2162
2176
  original_id?: number | null | undefined;
@@ -2582,11 +2596,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
2582
2596
  searchableFields: string[];
2583
2597
  }>>;
2584
2598
  }, "strip", z.ZodTypeAny, {
2585
- first?: number | undefined;
2586
- after?: string | undefined;
2587
- sortBy?: string | undefined;
2588
- sortDirection?: "asc" | "desc" | undefined;
2589
- paginationToken?: string | undefined;
2590
2599
  created_at?: {
2591
2600
  operator: "isEmpty" | "isNotEmpty";
2592
2601
  value?: any;
@@ -2603,6 +2612,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
2603
2612
  values?: any[] | undefined;
2604
2613
  caseSensitive?: boolean | undefined;
2605
2614
  } | undefined;
2615
+ first?: number | undefined;
2616
+ after?: string | undefined;
2617
+ sortBy?: string | undefined;
2618
+ sortDirection?: "asc" | "desc" | undefined;
2619
+ paginationToken?: string | undefined;
2606
2620
  search?: {
2607
2621
  query: string;
2608
2622
  searchableFields: string[];
@@ -2660,11 +2674,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
2660
2674
  caseSensitive?: boolean | undefined;
2661
2675
  } | undefined;
2662
2676
  }, {
2663
- first?: number | undefined;
2664
- after?: string | undefined;
2665
- sortBy?: string | undefined;
2666
- sortDirection?: "asc" | "desc" | undefined;
2667
- paginationToken?: string | undefined;
2668
2677
  created_at?: {
2669
2678
  operator: "isEmpty" | "isNotEmpty";
2670
2679
  value?: any;
@@ -2681,6 +2690,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
2681
2690
  values?: any[] | undefined;
2682
2691
  caseSensitive?: boolean | undefined;
2683
2692
  } | undefined;
2693
+ first?: number | undefined;
2694
+ after?: string | undefined;
2695
+ sortBy?: string | undefined;
2696
+ sortDirection?: "asc" | "desc" | undefined;
2697
+ paginationToken?: string | undefined;
2684
2698
  search?: {
2685
2699
  query: string;
2686
2700
  searchableFields: string[];
@@ -3594,18 +3608,18 @@ declare const signupSchema: z.ZodObject<{
3594
3608
  }>;
3595
3609
  acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
3596
3610
  }, "strip", z.ZodTypeAny, {
3611
+ email: string;
3597
3612
  passwords: {
3598
3613
  password: string;
3599
3614
  password_confirm: string;
3600
3615
  };
3601
- email: string;
3602
3616
  acceptances: Record<string, boolean>;
3603
3617
  }, {
3618
+ email: string;
3604
3619
  passwords: {
3605
3620
  password: string;
3606
3621
  password_confirm: string;
3607
3622
  };
3608
- email: string;
3609
3623
  acceptances?: Record<string, boolean> | undefined;
3610
3624
  }>;
3611
3625
  /** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
@@ -3633,18 +3647,18 @@ declare const signupInitiateSchema: z.ZodObject<{
3633
3647
  password_confirm: string;
3634
3648
  }>;
3635
3649
  }, "strip", z.ZodTypeAny, {
3650
+ email: string;
3636
3651
  passwords: {
3637
3652
  password: string;
3638
3653
  password_confirm: string;
3639
3654
  };
3640
- email: string;
3641
3655
  metadata?: Record<string, unknown> | undefined;
3642
3656
  }, {
3657
+ email: string;
3643
3658
  passwords: {
3644
3659
  password: string;
3645
3660
  password_confirm: string;
3646
3661
  };
3647
- email: string;
3648
3662
  metadata?: Record<string, unknown> | undefined;
3649
3663
  }>;
3650
3664
  type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
@@ -3703,8 +3717,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3703
3717
  price_currency?: string | null | undefined;
3704
3718
  }>, "many">>>;
3705
3719
  }, "strip", z.ZodTypeAny, {
3706
- email: string;
3707
3720
  userId: string;
3721
+ email: string;
3708
3722
  username: string;
3709
3723
  email_verified: boolean;
3710
3724
  user_type: string;
@@ -3725,8 +3739,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3725
3739
  price_currency?: string | null | undefined;
3726
3740
  }[] | null | undefined;
3727
3741
  }, {
3728
- email: string;
3729
3742
  userId: string;
3743
+ email: string;
3730
3744
  username: string;
3731
3745
  email_verified: boolean;
3732
3746
  user_type: string;
@@ -3749,8 +3763,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3749
3763
  }>;
3750
3764
  }, "strip", z.ZodTypeAny, {
3751
3765
  user: {
3752
- email: string;
3753
3766
  userId: string;
3767
+ email: string;
3754
3768
  username: string;
3755
3769
  email_verified: boolean;
3756
3770
  user_type: string;
@@ -3771,15 +3785,15 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3771
3785
  price_currency?: string | null | undefined;
3772
3786
  }[] | null | undefined;
3773
3787
  };
3774
- status: string;
3775
3788
  created_at: string;
3776
3789
  expires_at: string;
3790
+ status: string;
3777
3791
  user_agent?: string | null | undefined;
3778
3792
  ip_address?: string | null | undefined;
3779
3793
  }, {
3780
3794
  user: {
3781
- email: string;
3782
3795
  userId: string;
3796
+ email: string;
3783
3797
  username: string;
3784
3798
  email_verified: boolean;
3785
3799
  user_type: string;
@@ -3800,9 +3814,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3800
3814
  price_currency?: string | null | undefined;
3801
3815
  }[] | null | undefined;
3802
3816
  };
3803
- status: string;
3804
3817
  created_at: string;
3805
3818
  expires_at: string;
3819
+ status: string;
3806
3820
  user_agent?: string | null | undefined;
3807
3821
  ip_address?: string | null | undefined;
3808
3822
  }>;
@@ -3813,8 +3827,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3813
3827
  refresh_token: string;
3814
3828
  frontend_session: {
3815
3829
  user: {
3816
- email: string;
3817
3830
  userId: string;
3831
+ email: string;
3818
3832
  username: string;
3819
3833
  email_verified: boolean;
3820
3834
  user_type: string;
@@ -3835,9 +3849,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3835
3849
  price_currency?: string | null | undefined;
3836
3850
  }[] | null | undefined;
3837
3851
  };
3838
- status: string;
3839
3852
  created_at: string;
3840
3853
  expires_at: string;
3854
+ status: string;
3841
3855
  user_agent?: string | null | undefined;
3842
3856
  ip_address?: string | null | undefined;
3843
3857
  };
@@ -3847,8 +3861,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3847
3861
  refresh_token: string;
3848
3862
  frontend_session: {
3849
3863
  user: {
3850
- email: string;
3851
3864
  userId: string;
3865
+ email: string;
3852
3866
  username: string;
3853
3867
  email_verified: boolean;
3854
3868
  user_type: string;
@@ -3869,9 +3883,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3869
3883
  price_currency?: string | null | undefined;
3870
3884
  }[] | null | undefined;
3871
3885
  };
3872
- status: string;
3873
3886
  created_at: string;
3874
3887
  expires_at: string;
3888
+ status: string;
3875
3889
  user_agent?: string | null | undefined;
3876
3890
  ip_address?: string | null | undefined;
3877
3891
  };
@@ -3884,8 +3898,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3884
3898
  refresh_token: string;
3885
3899
  frontend_session: {
3886
3900
  user: {
3887
- email: string;
3888
3901
  userId: string;
3902
+ email: string;
3889
3903
  username: string;
3890
3904
  email_verified: boolean;
3891
3905
  user_type: string;
@@ -3906,9 +3920,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3906
3920
  price_currency?: string | null | undefined;
3907
3921
  }[] | null | undefined;
3908
3922
  };
3909
- status: string;
3910
3923
  created_at: string;
3911
3924
  expires_at: string;
3925
+ status: string;
3912
3926
  user_agent?: string | null | undefined;
3913
3927
  ip_address?: string | null | undefined;
3914
3928
  };
@@ -3921,8 +3935,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3921
3935
  refresh_token: string;
3922
3936
  frontend_session: {
3923
3937
  user: {
3924
- email: string;
3925
3938
  userId: string;
3939
+ email: string;
3926
3940
  username: string;
3927
3941
  email_verified: boolean;
3928
3942
  user_type: string;
@@ -3943,9 +3957,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
3943
3957
  price_currency?: string | null | undefined;
3944
3958
  }[] | null | undefined;
3945
3959
  };
3946
- status: string;
3947
3960
  created_at: string;
3948
3961
  expires_at: string;
3962
+ status: string;
3949
3963
  user_agent?: string | null | undefined;
3950
3964
  ip_address?: string | null | undefined;
3951
3965
  };
@@ -4250,8 +4264,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
4250
4264
  user_id_display_name?: string | null | undefined;
4251
4265
  }>>>;
4252
4266
  }, "strip", z.ZodTypeAny, {
4253
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4254
4267
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4268
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4255
4269
  id: string;
4256
4270
  description: string;
4257
4271
  title: string;
@@ -4265,10 +4279,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
4265
4279
  created_by_display_name?: string | null | undefined;
4266
4280
  display_id?: string | null | undefined;
4267
4281
  credit_value?: string | null | undefined;
4268
- display_id_prefix?: string | null | undefined;
4269
4282
  start_at?: string | null | undefined;
4270
4283
  target_at?: string | null | undefined;
4271
4284
  completed_at?: string | null | undefined;
4285
+ display_id_prefix?: string | null | undefined;
4272
4286
  locked_approval_at?: string | null | undefined;
4273
4287
  my_subscription?: {
4274
4288
  created_at: string;
@@ -4282,8 +4296,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
4282
4296
  user_id_display_name?: string | null | undefined;
4283
4297
  } | null | undefined;
4284
4298
  }, {
4285
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4286
4299
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4300
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4287
4301
  id: string;
4288
4302
  description: string;
4289
4303
  title: string;
@@ -4297,10 +4311,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
4297
4311
  created_by_display_name?: string | null | undefined;
4298
4312
  display_id?: string | null | undefined;
4299
4313
  credit_value?: string | null | undefined;
4300
- display_id_prefix?: string | null | undefined;
4301
4314
  start_at?: string | null | undefined;
4302
4315
  target_at?: string | null | undefined;
4303
4316
  completed_at?: string | null | undefined;
4317
+ display_id_prefix?: string | null | undefined;
4304
4318
  locked_approval_at?: string | null | undefined;
4305
4319
  my_subscription?: {
4306
4320
  created_at: string;
@@ -4372,8 +4386,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4372
4386
  user_id_display_name?: string | null | undefined;
4373
4387
  }>>>;
4374
4388
  }, "strip", z.ZodTypeAny, {
4375
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4376
4389
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4390
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4377
4391
  id: string;
4378
4392
  description: string;
4379
4393
  title: string;
@@ -4387,10 +4401,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4387
4401
  created_by_display_name?: string | null | undefined;
4388
4402
  display_id?: string | null | undefined;
4389
4403
  credit_value?: string | null | undefined;
4390
- display_id_prefix?: string | null | undefined;
4391
4404
  start_at?: string | null | undefined;
4392
4405
  target_at?: string | null | undefined;
4393
4406
  completed_at?: string | null | undefined;
4407
+ display_id_prefix?: string | null | undefined;
4394
4408
  locked_approval_at?: string | null | undefined;
4395
4409
  my_subscription?: {
4396
4410
  created_at: string;
@@ -4404,8 +4418,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4404
4418
  user_id_display_name?: string | null | undefined;
4405
4419
  } | null | undefined;
4406
4420
  }, {
4407
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4408
4421
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4422
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4409
4423
  id: string;
4410
4424
  description: string;
4411
4425
  title: string;
@@ -4419,10 +4433,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4419
4433
  created_by_display_name?: string | null | undefined;
4420
4434
  display_id?: string | null | undefined;
4421
4435
  credit_value?: string | null | undefined;
4422
- display_id_prefix?: string | null | undefined;
4423
4436
  start_at?: string | null | undefined;
4424
4437
  target_at?: string | null | undefined;
4425
4438
  completed_at?: string | null | undefined;
4439
+ display_id_prefix?: string | null | undefined;
4426
4440
  locked_approval_at?: string | null | undefined;
4427
4441
  my_subscription?: {
4428
4442
  created_at: string;
@@ -4460,8 +4474,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4460
4474
  }>;
4461
4475
  }, "strip", z.ZodTypeAny, {
4462
4476
  items: {
4463
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4464
4477
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4478
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4465
4479
  id: string;
4466
4480
  description: string;
4467
4481
  title: string;
@@ -4475,10 +4489,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4475
4489
  created_by_display_name?: string | null | undefined;
4476
4490
  display_id?: string | null | undefined;
4477
4491
  credit_value?: string | null | undefined;
4478
- display_id_prefix?: string | null | undefined;
4479
4492
  start_at?: string | null | undefined;
4480
4493
  target_at?: string | null | undefined;
4481
4494
  completed_at?: string | null | undefined;
4495
+ display_id_prefix?: string | null | undefined;
4482
4496
  locked_approval_at?: string | null | undefined;
4483
4497
  my_subscription?: {
4484
4498
  created_at: string;
@@ -4502,8 +4516,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4502
4516
  };
4503
4517
  }, {
4504
4518
  items: {
4505
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4506
4519
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4520
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4507
4521
  id: string;
4508
4522
  description: string;
4509
4523
  title: string;
@@ -4517,10 +4531,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4517
4531
  created_by_display_name?: string | null | undefined;
4518
4532
  display_id?: string | null | undefined;
4519
4533
  credit_value?: string | null | undefined;
4520
- display_id_prefix?: string | null | undefined;
4521
4534
  start_at?: string | null | undefined;
4522
4535
  target_at?: string | null | undefined;
4523
4536
  completed_at?: string | null | undefined;
4537
+ display_id_prefix?: string | null | undefined;
4524
4538
  locked_approval_at?: string | null | undefined;
4525
4539
  my_subscription?: {
4526
4540
  created_at: string;
@@ -5239,23 +5253,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5239
5253
  searchableFields: string[];
5240
5254
  }>>;
5241
5255
  }, "strip", z.ZodTypeAny, {
5242
- type?: {
5243
- operator: "eq" | "ne" | "in" | "notIn";
5244
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5245
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5246
- caseSensitive?: boolean | undefined;
5247
- } | undefined;
5248
- status?: {
5249
- operator: "eq" | "ne" | "in" | "notIn";
5250
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5251
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5252
- caseSensitive?: boolean | undefined;
5253
- } | undefined;
5254
- first?: number | undefined;
5255
- after?: string | undefined;
5256
- sortBy?: string | undefined;
5257
- sortDirection?: "asc" | "desc" | undefined;
5258
- paginationToken?: string | undefined;
5259
5256
  created_at?: {
5260
5257
  operator: "isEmpty" | "isNotEmpty";
5261
5258
  value?: any;
@@ -5272,6 +5269,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5272
5269
  values?: any[] | undefined;
5273
5270
  caseSensitive?: boolean | undefined;
5274
5271
  } | 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;
5275
5289
  created_by?: {
5276
5290
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
5277
5291
  value?: string | undefined;
@@ -5310,12 +5324,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5310
5324
  values?: string[] | undefined;
5311
5325
  caseSensitive?: boolean | undefined;
5312
5326
  } | undefined;
5313
- credit_value?: {
5314
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5315
- value?: number | undefined;
5316
- values?: number[] | undefined;
5317
- caseSensitive?: boolean | undefined;
5318
- } | undefined;
5319
5327
  priority?: {
5320
5328
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5321
5329
  value?: number | undefined;
@@ -5328,6 +5336,12 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5328
5336
  values?: any[] | undefined;
5329
5337
  caseSensitive?: boolean | undefined;
5330
5338
  } | 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;
5331
5345
  start_at?: {
5332
5346
  operator: "isEmpty" | "isNotEmpty";
5333
5347
  value?: any;
@@ -5377,27 +5391,10 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5377
5391
  caseSensitive?: boolean | undefined;
5378
5392
  } | undefined;
5379
5393
  }, {
5380
- type?: {
5381
- operator: "eq" | "ne" | "in" | "notIn";
5382
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5383
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5384
- caseSensitive?: boolean | undefined;
5385
- } | undefined;
5386
- status?: {
5387
- operator: "eq" | "ne" | "in" | "notIn";
5388
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5389
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5390
- caseSensitive?: boolean | undefined;
5391
- } | undefined;
5392
- first?: number | undefined;
5393
- after?: string | undefined;
5394
- sortBy?: string | undefined;
5395
- sortDirection?: "asc" | "desc" | undefined;
5396
- paginationToken?: string | undefined;
5397
- created_at?: {
5398
- operator: "isEmpty" | "isNotEmpty";
5399
- value?: any;
5400
- values?: any[] | undefined;
5394
+ created_at?: {
5395
+ operator: "isEmpty" | "isNotEmpty";
5396
+ value?: any;
5397
+ values?: any[] | undefined;
5401
5398
  caseSensitive?: boolean | undefined;
5402
5399
  } | {
5403
5400
  values: string[];
@@ -5410,6 +5407,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5410
5407
  values?: any[] | undefined;
5411
5408
  caseSensitive?: boolean | undefined;
5412
5409
  } | 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;
5413
5427
  created_by?: {
5414
5428
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
5415
5429
  value?: string | undefined;
@@ -5448,12 +5462,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5448
5462
  values?: string[] | undefined;
5449
5463
  caseSensitive?: boolean | undefined;
5450
5464
  } | undefined;
5451
- credit_value?: {
5452
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5453
- value?: number | undefined;
5454
- values?: number[] | undefined;
5455
- caseSensitive?: boolean | undefined;
5456
- } | undefined;
5457
5465
  priority?: {
5458
5466
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
5459
5467
  value?: number | undefined;
@@ -5466,6 +5474,12 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5466
5474
  values?: any[] | undefined;
5467
5475
  caseSensitive?: boolean | undefined;
5468
5476
  } | 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;
5469
5483
  start_at?: {
5470
5484
  operator: "isEmpty" | "isNotEmpty";
5471
5485
  value?: any;
@@ -5552,8 +5566,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5552
5566
  archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5553
5567
  archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5554
5568
  }, "strip", z.ZodTypeAny, {
5555
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5556
5569
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5570
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5557
5571
  id: string;
5558
5572
  description: string;
5559
5573
  title: string;
@@ -5571,18 +5585,18 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5571
5585
  updated_by_display_name?: string | null | undefined;
5572
5586
  display_id?: string | null | undefined;
5573
5587
  credit_value?: string | null | undefined;
5574
- delivered_value?: string | null | undefined;
5575
- display_id_prefix?: string | null | undefined;
5576
5588
  start_at?: string | null | undefined;
5577
5589
  target_at?: string | null | undefined;
5578
5590
  completed_at?: string | null | undefined;
5591
+ display_id_prefix?: string | null | undefined;
5579
5592
  locked_approval_at?: string | null | undefined;
5580
5593
  assigned_to?: string | null | undefined;
5581
5594
  assigned_to_display_name?: string | null | undefined;
5582
5595
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5596
+ delivered_value?: string | null | undefined;
5583
5597
  }, {
5584
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5585
5598
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5599
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5586
5600
  id: string;
5587
5601
  description: string;
5588
5602
  title: string;
@@ -5600,15 +5614,15 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5600
5614
  updated_by_display_name?: string | null | undefined;
5601
5615
  display_id?: string | null | undefined;
5602
5616
  credit_value?: string | null | undefined;
5603
- delivered_value?: string | null | undefined;
5604
- display_id_prefix?: string | null | undefined;
5605
5617
  start_at?: string | null | undefined;
5606
5618
  target_at?: string | null | undefined;
5607
5619
  completed_at?: string | null | undefined;
5620
+ display_id_prefix?: string | null | undefined;
5608
5621
  locked_approval_at?: string | null | undefined;
5609
5622
  assigned_to?: string | null | undefined;
5610
5623
  assigned_to_display_name?: string | null | undefined;
5611
5624
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5625
+ delivered_value?: string | null | undefined;
5612
5626
  }>;
5613
5627
  type StaffSupportTicketReadDto = z.infer<typeof StaffSupportTicketReadSchema>;
5614
5628
  /**
@@ -5645,8 +5659,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5645
5659
  archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5646
5660
  archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5647
5661
  }, "strip", z.ZodTypeAny, {
5648
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5649
5662
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5663
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5650
5664
  id: string;
5651
5665
  description: string;
5652
5666
  title: string;
@@ -5664,18 +5678,18 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5664
5678
  updated_by_display_name?: string | null | undefined;
5665
5679
  display_id?: string | null | undefined;
5666
5680
  credit_value?: string | null | undefined;
5667
- delivered_value?: string | null | undefined;
5668
- display_id_prefix?: string | null | undefined;
5669
5681
  start_at?: string | null | undefined;
5670
5682
  target_at?: string | null | undefined;
5671
5683
  completed_at?: string | null | undefined;
5684
+ display_id_prefix?: string | null | undefined;
5672
5685
  locked_approval_at?: string | null | undefined;
5673
5686
  assigned_to?: string | null | undefined;
5674
5687
  assigned_to_display_name?: string | null | undefined;
5675
5688
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5689
+ delivered_value?: string | null | undefined;
5676
5690
  }, {
5677
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5678
5691
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5692
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5679
5693
  id: string;
5680
5694
  description: string;
5681
5695
  title: string;
@@ -5693,15 +5707,15 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5693
5707
  updated_by_display_name?: string | null | undefined;
5694
5708
  display_id?: string | null | undefined;
5695
5709
  credit_value?: string | null | undefined;
5696
- delivered_value?: string | null | undefined;
5697
- display_id_prefix?: string | null | undefined;
5698
5710
  start_at?: string | null | undefined;
5699
5711
  target_at?: string | null | undefined;
5700
5712
  completed_at?: string | null | undefined;
5713
+ display_id_prefix?: string | null | undefined;
5701
5714
  locked_approval_at?: string | null | undefined;
5702
5715
  assigned_to?: string | null | undefined;
5703
5716
  assigned_to_display_name?: string | null | undefined;
5704
5717
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5718
+ delivered_value?: string | null | undefined;
5705
5719
  }>, "many">;
5706
5720
  pageInfo: z.ZodObject<{
5707
5721
  hasNextPage: z.ZodBoolean;
@@ -5727,8 +5741,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5727
5741
  }>;
5728
5742
  }, "strip", z.ZodTypeAny, {
5729
5743
  items: {
5730
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5731
5744
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5745
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5732
5746
  id: string;
5733
5747
  description: string;
5734
5748
  title: string;
@@ -5746,15 +5760,15 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5746
5760
  updated_by_display_name?: string | null | undefined;
5747
5761
  display_id?: string | null | undefined;
5748
5762
  credit_value?: string | null | undefined;
5749
- delivered_value?: string | null | undefined;
5750
- display_id_prefix?: string | null | undefined;
5751
5763
  start_at?: string | null | undefined;
5752
5764
  target_at?: string | null | undefined;
5753
5765
  completed_at?: string | null | undefined;
5766
+ display_id_prefix?: string | null | undefined;
5754
5767
  locked_approval_at?: string | null | undefined;
5755
5768
  assigned_to?: string | null | undefined;
5756
5769
  assigned_to_display_name?: string | null | undefined;
5757
5770
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5771
+ delivered_value?: string | null | undefined;
5758
5772
  }[];
5759
5773
  pageInfo: {
5760
5774
  hasNextPage: boolean;
@@ -5766,8 +5780,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5766
5780
  };
5767
5781
  }, {
5768
5782
  items: {
5769
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5770
5783
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5784
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5771
5785
  id: string;
5772
5786
  description: string;
5773
5787
  title: string;
@@ -5785,15 +5799,15 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5785
5799
  updated_by_display_name?: string | null | undefined;
5786
5800
  display_id?: string | null | undefined;
5787
5801
  credit_value?: string | null | undefined;
5788
- delivered_value?: string | null | undefined;
5789
- display_id_prefix?: string | null | undefined;
5790
5802
  start_at?: string | null | undefined;
5791
5803
  target_at?: string | null | undefined;
5792
5804
  completed_at?: string | null | undefined;
5805
+ display_id_prefix?: string | null | undefined;
5793
5806
  locked_approval_at?: string | null | undefined;
5794
5807
  assigned_to?: string | null | undefined;
5795
5808
  assigned_to_display_name?: string | null | undefined;
5796
5809
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5810
+ delivered_value?: string | null | undefined;
5797
5811
  }[];
5798
5812
  pageInfo: {
5799
5813
  hasNextPage: boolean;
@@ -6602,23 +6616,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6602
6616
  searchableFields: string[];
6603
6617
  }>>;
6604
6618
  }, "strip", z.ZodTypeAny, {
6605
- type?: {
6606
- operator: "eq" | "ne" | "in" | "notIn";
6607
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6608
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6609
- caseSensitive?: boolean | undefined;
6610
- } | undefined;
6611
- status?: {
6612
- operator: "eq" | "ne" | "in" | "notIn";
6613
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6614
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6615
- caseSensitive?: boolean | undefined;
6616
- } | undefined;
6617
- first?: number | undefined;
6618
- after?: string | undefined;
6619
- sortBy?: string | undefined;
6620
- sortDirection?: "asc" | "desc" | undefined;
6621
- paginationToken?: string | undefined;
6622
6619
  created_at?: {
6623
6620
  operator: "isEmpty" | "isNotEmpty";
6624
6621
  value?: any;
@@ -6635,6 +6632,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6635
6632
  values?: any[] | undefined;
6636
6633
  caseSensitive?: boolean | undefined;
6637
6634
  } | 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;
6638
6652
  created_by?: {
6639
6653
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
6640
6654
  value?: string | undefined;
@@ -6673,18 +6687,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6673
6687
  values?: string[] | undefined;
6674
6688
  caseSensitive?: boolean | undefined;
6675
6689
  } | undefined;
6676
- credit_value?: {
6677
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6678
- value?: number | undefined;
6679
- values?: number[] | undefined;
6680
- caseSensitive?: boolean | undefined;
6681
- } | undefined;
6682
- delivered_value?: {
6683
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6684
- value?: number | undefined;
6685
- values?: number[] | undefined;
6686
- caseSensitive?: boolean | undefined;
6687
- } | undefined;
6688
6690
  priority?: {
6689
6691
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6690
6692
  value?: number | undefined;
@@ -6697,6 +6699,12 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6697
6699
  values?: any[] | undefined;
6698
6700
  caseSensitive?: boolean | undefined;
6699
6701
  } | undefined;
6702
+ credit_value?: {
6703
+ operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6704
+ value?: number | undefined;
6705
+ values?: number[] | undefined;
6706
+ caseSensitive?: boolean | undefined;
6707
+ } | undefined;
6700
6708
  start_at?: {
6701
6709
  operator: "isEmpty" | "isNotEmpty";
6702
6710
  value?: any;
@@ -6757,24 +6765,13 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6757
6765
  values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
6758
6766
  caseSensitive?: boolean | undefined;
6759
6767
  } | undefined;
6760
- }, {
6761
- type?: {
6762
- operator: "eq" | "ne" | "in" | "notIn";
6763
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6764
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6765
- caseSensitive?: boolean | undefined;
6766
- } | undefined;
6767
- status?: {
6768
- operator: "eq" | "ne" | "in" | "notIn";
6769
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6770
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6768
+ delivered_value?: {
6769
+ operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6770
+ value?: number | undefined;
6771
+ values?: number[] | undefined;
6771
6772
  caseSensitive?: boolean | undefined;
6772
6773
  } | undefined;
6773
- first?: number | undefined;
6774
- after?: string | undefined;
6775
- sortBy?: string | undefined;
6776
- sortDirection?: "asc" | "desc" | undefined;
6777
- paginationToken?: string | undefined;
6774
+ }, {
6778
6775
  created_at?: {
6779
6776
  operator: "isEmpty" | "isNotEmpty";
6780
6777
  value?: any;
@@ -6791,6 +6788,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6791
6788
  values?: any[] | undefined;
6792
6789
  caseSensitive?: boolean | undefined;
6793
6790
  } | 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;
6794
6808
  created_by?: {
6795
6809
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
6796
6810
  value?: string | undefined;
@@ -6829,18 +6843,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6829
6843
  values?: string[] | undefined;
6830
6844
  caseSensitive?: boolean | undefined;
6831
6845
  } | undefined;
6832
- credit_value?: {
6833
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6834
- value?: number | undefined;
6835
- values?: number[] | undefined;
6836
- caseSensitive?: boolean | undefined;
6837
- } | undefined;
6838
- delivered_value?: {
6839
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6840
- value?: number | undefined;
6841
- values?: number[] | undefined;
6842
- caseSensitive?: boolean | undefined;
6843
- } | undefined;
6844
6846
  priority?: {
6845
6847
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6846
6848
  value?: number | undefined;
@@ -6853,6 +6855,12 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6853
6855
  values?: any[] | undefined;
6854
6856
  caseSensitive?: boolean | undefined;
6855
6857
  } | undefined;
6858
+ credit_value?: {
6859
+ operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "between" | "in" | "notIn";
6860
+ value?: number | undefined;
6861
+ values?: number[] | undefined;
6862
+ caseSensitive?: boolean | undefined;
6863
+ } | undefined;
6856
6864
  start_at?: {
6857
6865
  operator: "isEmpty" | "isNotEmpty";
6858
6866
  value?: any;
@@ -6913,6 +6921,12 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6913
6921
  values?: ("PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED")[] | undefined;
6914
6922
  caseSensitive?: boolean | undefined;
6915
6923
  } | 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;
6916
6930
  }>;
6917
6931
  type StaffSupportTicketFiltersDto = z.infer<typeof StaffSupportTicketFiltersSchema>;
6918
6932
  //#endregion
@@ -6938,12 +6952,12 @@ declare const StaffSupportTicketCreateSchema: z.ZodObject<{
6938
6952
  description?: string | null | undefined;
6939
6953
  is_internal?: boolean | undefined;
6940
6954
  credit_value?: string | null | undefined;
6941
- delivered_value?: string | null | undefined;
6942
6955
  start_at?: string | null | undefined;
6943
6956
  target_at?: string | null | undefined;
6944
6957
  completed_at?: string | null | undefined;
6945
6958
  assigned_to?: string | null | undefined;
6946
6959
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
6960
+ delivered_value?: string | null | undefined;
6947
6961
  }, {
6948
6962
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
6949
6963
  title: string;
@@ -6951,12 +6965,12 @@ declare const StaffSupportTicketCreateSchema: z.ZodObject<{
6951
6965
  description?: string | null | undefined;
6952
6966
  is_internal?: boolean | undefined;
6953
6967
  credit_value?: string | null | undefined;
6954
- delivered_value?: string | null | undefined;
6955
6968
  start_at?: string | null | undefined;
6956
6969
  target_at?: string | null | undefined;
6957
6970
  completed_at?: string | null | undefined;
6958
6971
  assigned_to?: string | null | undefined;
6959
6972
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
6973
+ delivered_value?: string | null | undefined;
6960
6974
  }>;
6961
6975
  type StaffSupportTicketCreateDto = z.infer<typeof StaffSupportTicketCreateSchema>;
6962
6976
  declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
@@ -6980,12 +6994,12 @@ declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
6980
6994
  priority: number;
6981
6995
  description?: string | null | undefined;
6982
6996
  credit_value?: string | null | undefined;
6983
- delivered_value?: string | null | undefined;
6984
6997
  start_at?: string | null | undefined;
6985
6998
  target_at?: string | null | undefined;
6986
6999
  completed_at?: string | null | undefined;
6987
7000
  assigned_to?: string | null | undefined;
6988
7001
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7002
+ delivered_value?: string | null | undefined;
6989
7003
  }, {
6990
7004
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
6991
7005
  id: string;
@@ -6993,12 +7007,12 @@ declare const StaffSupportTicketUpdateSchema: z.ZodObject<{
6993
7007
  priority: number;
6994
7008
  description?: string | null | undefined;
6995
7009
  credit_value?: string | null | undefined;
6996
- delivered_value?: string | null | undefined;
6997
7010
  start_at?: string | null | undefined;
6998
7011
  target_at?: string | null | undefined;
6999
7012
  completed_at?: string | null | undefined;
7000
7013
  assigned_to?: string | null | undefined;
7001
7014
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7015
+ delivered_value?: string | null | undefined;
7002
7016
  }>;
7003
7017
  type StaffSupportTicketUpdateDto = z.infer<typeof StaffSupportTicketUpdateSchema>;
7004
7018
  declare const StaffSupportTicketInputSchema: z.ZodObject<{
@@ -7022,12 +7036,12 @@ declare const StaffSupportTicketInputSchema: z.ZodObject<{
7022
7036
  priority: number;
7023
7037
  description?: string | null | undefined;
7024
7038
  credit_value?: string | null | undefined;
7025
- delivered_value?: string | null | undefined;
7026
7039
  start_at?: string | null | undefined;
7027
7040
  target_at?: string | null | undefined;
7028
7041
  completed_at?: string | null | undefined;
7029
7042
  assigned_to?: string | null | undefined;
7030
7043
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7044
+ delivered_value?: string | null | undefined;
7031
7045
  }, {
7032
7046
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
7033
7047
  id: string;
@@ -7035,12 +7049,12 @@ declare const StaffSupportTicketInputSchema: z.ZodObject<{
7035
7049
  priority: number;
7036
7050
  description?: string | null | undefined;
7037
7051
  credit_value?: string | null | undefined;
7038
- delivered_value?: string | null | undefined;
7039
7052
  start_at?: string | null | undefined;
7040
7053
  target_at?: string | null | undefined;
7041
7054
  completed_at?: string | null | undefined;
7042
7055
  assigned_to?: string | null | undefined;
7043
7056
  dev_lifecycle?: "VERIFICATION" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | undefined;
7057
+ delivered_value?: string | null | undefined;
7044
7058
  }>;
7045
7059
  type StaffSupportTicketInputDto = StaffSupportTicketUpdateDto;
7046
7060
  //#endregion
@@ -7680,11 +7694,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
7680
7694
  searchableFields: string[];
7681
7695
  }>>;
7682
7696
  }, "strip", z.ZodTypeAny, {
7683
- first?: number | undefined;
7684
- after?: string | undefined;
7685
- sortBy?: string | undefined;
7686
- sortDirection?: "asc" | "desc" | undefined;
7687
- paginationToken?: string | undefined;
7688
7697
  created_at?: {
7689
7698
  operator: "isEmpty" | "isNotEmpty";
7690
7699
  value?: any;
@@ -7701,6 +7710,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
7701
7710
  values?: any[] | undefined;
7702
7711
  caseSensitive?: boolean | undefined;
7703
7712
  } | undefined;
7713
+ first?: number | undefined;
7714
+ after?: string | undefined;
7715
+ sortBy?: string | undefined;
7716
+ sortDirection?: "asc" | "desc" | undefined;
7717
+ paginationToken?: string | undefined;
7704
7718
  search?: {
7705
7719
  query: string;
7706
7720
  searchableFields: string[];
@@ -7780,11 +7794,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
7780
7794
  caseSensitive?: boolean | undefined;
7781
7795
  } | undefined;
7782
7796
  }, {
7783
- first?: number | undefined;
7784
- after?: string | undefined;
7785
- sortBy?: string | undefined;
7786
- sortDirection?: "asc" | "desc" | undefined;
7787
- paginationToken?: string | undefined;
7788
7797
  created_at?: {
7789
7798
  operator: "isEmpty" | "isNotEmpty";
7790
7799
  value?: any;
@@ -7801,6 +7810,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
7801
7810
  values?: any[] | undefined;
7802
7811
  caseSensitive?: boolean | undefined;
7803
7812
  } | undefined;
7813
+ first?: number | undefined;
7814
+ after?: string | undefined;
7815
+ sortBy?: string | undefined;
7816
+ sortDirection?: "asc" | "desc" | undefined;
7817
+ paginationToken?: string | undefined;
7804
7818
  search?: {
7805
7819
  query: string;
7806
7820
  searchableFields: string[];
@@ -7907,14 +7921,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
7907
7921
  url?: string | null | undefined;
7908
7922
  unique_name?: string | null | undefined;
7909
7923
  legal_name?: string | null | undefined;
7910
- contact_email?: string | null | undefined;
7911
- address_city?: string | null | undefined;
7912
- address_zip?: string | null | undefined;
7913
7924
  contact_name?: string | null | undefined;
7925
+ contact_email?: string | null | undefined;
7914
7926
  contact_business_phone?: string | null | undefined;
7915
7927
  contact_mobile_phone?: string | null | undefined;
7916
7928
  contact_time_zone?: string | null | undefined;
7917
7929
  address_full?: string | null | undefined;
7930
+ address_city?: string | null | undefined;
7931
+ address_zip?: string | null | undefined;
7918
7932
  twitter_username?: string | null | undefined;
7919
7933
  logo?: string | null | undefined;
7920
7934
  email_sent_from?: string | null | undefined;
@@ -7925,14 +7939,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
7925
7939
  url?: string | null | undefined;
7926
7940
  unique_name?: string | null | undefined;
7927
7941
  legal_name?: string | null | undefined;
7928
- contact_email?: string | null | undefined;
7929
- address_city?: string | null | undefined;
7930
- address_zip?: string | null | undefined;
7931
7942
  contact_name?: string | null | undefined;
7943
+ contact_email?: string | null | undefined;
7932
7944
  contact_business_phone?: string | null | undefined;
7933
7945
  contact_mobile_phone?: string | null | undefined;
7934
7946
  contact_time_zone?: string | null | undefined;
7935
7947
  address_full?: string | null | undefined;
7948
+ address_city?: string | null | undefined;
7949
+ address_zip?: string | null | undefined;
7936
7950
  twitter_username?: string | null | undefined;
7937
7951
  logo?: string | null | undefined;
7938
7952
  email_sent_from?: string | null | undefined;
@@ -7962,14 +7976,14 @@ declare const TeamCreateSchema: z.ZodObject<{
7962
7976
  url?: string | null | undefined;
7963
7977
  unique_name?: string | null | undefined;
7964
7978
  legal_name?: string | null | undefined;
7965
- contact_email?: string | null | undefined;
7966
- address_city?: string | null | undefined;
7967
- address_zip?: string | null | undefined;
7968
7979
  contact_name?: string | null | undefined;
7980
+ contact_email?: string | null | undefined;
7969
7981
  contact_business_phone?: string | null | undefined;
7970
7982
  contact_mobile_phone?: string | null | undefined;
7971
7983
  contact_time_zone?: string | null | undefined;
7972
7984
  address_full?: string | null | undefined;
7985
+ address_city?: string | null | undefined;
7986
+ address_zip?: string | null | undefined;
7973
7987
  twitter_username?: string | null | undefined;
7974
7988
  logo?: string | null | undefined;
7975
7989
  email_sent_from?: string | null | undefined;
@@ -7980,14 +7994,14 @@ declare const TeamCreateSchema: z.ZodObject<{
7980
7994
  url?: string | null | undefined;
7981
7995
  unique_name?: string | null | undefined;
7982
7996
  legal_name?: string | null | undefined;
7983
- contact_email?: string | null | undefined;
7984
- address_city?: string | null | undefined;
7985
- address_zip?: string | null | undefined;
7986
7997
  contact_name?: string | null | undefined;
7998
+ contact_email?: string | null | undefined;
7987
7999
  contact_business_phone?: string | null | undefined;
7988
8000
  contact_mobile_phone?: string | null | undefined;
7989
8001
  contact_time_zone?: string | null | undefined;
7990
8002
  address_full?: string | null | undefined;
8003
+ address_city?: string | null | undefined;
8004
+ address_zip?: string | null | undefined;
7991
8005
  twitter_username?: string | null | undefined;
7992
8006
  logo?: string | null | undefined;
7993
8007
  email_sent_from?: string | null | undefined;
@@ -8021,14 +8035,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
8021
8035
  url?: string | null | undefined;
8022
8036
  unique_name?: string | null | undefined;
8023
8037
  legal_name?: string | null | undefined;
8024
- contact_email?: string | null | undefined;
8025
- address_city?: string | null | undefined;
8026
- address_zip?: string | null | undefined;
8027
8038
  contact_name?: string | null | undefined;
8039
+ contact_email?: string | null | undefined;
8028
8040
  contact_business_phone?: string | null | undefined;
8029
8041
  contact_mobile_phone?: string | null | undefined;
8030
8042
  contact_time_zone?: string | null | undefined;
8031
8043
  address_full?: string | null | undefined;
8044
+ address_city?: string | null | undefined;
8045
+ address_zip?: string | null | undefined;
8032
8046
  twitter_username?: string | null | undefined;
8033
8047
  logo?: string | null | undefined;
8034
8048
  email_sent_from?: string | null | undefined;
@@ -8040,14 +8054,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
8040
8054
  url?: string | null | undefined;
8041
8055
  unique_name?: string | null | undefined;
8042
8056
  legal_name?: string | null | undefined;
8043
- contact_email?: string | null | undefined;
8044
- address_city?: string | null | undefined;
8045
- address_zip?: string | null | undefined;
8046
8057
  contact_name?: string | null | undefined;
8058
+ contact_email?: string | null | undefined;
8047
8059
  contact_business_phone?: string | null | undefined;
8048
8060
  contact_mobile_phone?: string | null | undefined;
8049
8061
  contact_time_zone?: string | null | undefined;
8050
8062
  address_full?: string | null | undefined;
8063
+ address_city?: string | null | undefined;
8064
+ address_zip?: string | null | undefined;
8051
8065
  twitter_username?: string | null | undefined;
8052
8066
  logo?: string | null | undefined;
8053
8067
  email_sent_from?: string | null | undefined;
@@ -8105,14 +8119,14 @@ declare const TeamPageSchema: z.ZodObject<{
8105
8119
  updated_by_display_name?: string | null | undefined;
8106
8120
  unique_name?: string | null | undefined;
8107
8121
  legal_name?: string | null | undefined;
8108
- contact_email?: string | null | undefined;
8109
- address_city?: string | null | undefined;
8110
- address_zip?: string | null | undefined;
8111
8122
  contact_name?: string | null | undefined;
8123
+ contact_email?: string | null | undefined;
8112
8124
  contact_business_phone?: string | null | undefined;
8113
8125
  contact_mobile_phone?: string | null | undefined;
8114
8126
  contact_time_zone?: string | null | undefined;
8115
8127
  address_full?: string | null | undefined;
8128
+ address_city?: string | null | undefined;
8129
+ address_zip?: string | null | undefined;
8116
8130
  twitter_username?: string | null | undefined;
8117
8131
  logo?: string | null | undefined;
8118
8132
  email_sent_from?: string | null | undefined;
@@ -8135,14 +8149,14 @@ declare const TeamPageSchema: z.ZodObject<{
8135
8149
  updated_by_display_name?: string | null | undefined;
8136
8150
  unique_name?: string | null | undefined;
8137
8151
  legal_name?: string | null | undefined;
8138
- contact_email?: string | null | undefined;
8139
- address_city?: string | null | undefined;
8140
- address_zip?: string | null | undefined;
8141
8152
  contact_name?: string | null | undefined;
8153
+ contact_email?: string | null | undefined;
8142
8154
  contact_business_phone?: string | null | undefined;
8143
8155
  contact_mobile_phone?: string | null | undefined;
8144
8156
  contact_time_zone?: string | null | undefined;
8145
8157
  address_full?: string | null | undefined;
8158
+ address_city?: string | null | undefined;
8159
+ address_zip?: string | null | undefined;
8146
8160
  twitter_username?: string | null | undefined;
8147
8161
  logo?: string | null | undefined;
8148
8162
  email_sent_from?: string | null | undefined;
@@ -8189,14 +8203,14 @@ declare const TeamPageSchema: z.ZodObject<{
8189
8203
  updated_by_display_name?: string | null | undefined;
8190
8204
  unique_name?: string | null | undefined;
8191
8205
  legal_name?: string | null | undefined;
8192
- contact_email?: string | null | undefined;
8193
- address_city?: string | null | undefined;
8194
- address_zip?: string | null | undefined;
8195
8206
  contact_name?: string | null | undefined;
8207
+ contact_email?: string | null | undefined;
8196
8208
  contact_business_phone?: string | null | undefined;
8197
8209
  contact_mobile_phone?: string | null | undefined;
8198
8210
  contact_time_zone?: string | null | undefined;
8199
8211
  address_full?: string | null | undefined;
8212
+ address_city?: string | null | undefined;
8213
+ address_zip?: string | null | undefined;
8200
8214
  twitter_username?: string | null | undefined;
8201
8215
  logo?: string | null | undefined;
8202
8216
  email_sent_from?: string | null | undefined;
@@ -8229,14 +8243,14 @@ declare const TeamPageSchema: z.ZodObject<{
8229
8243
  updated_by_display_name?: string | null | undefined;
8230
8244
  unique_name?: string | null | undefined;
8231
8245
  legal_name?: string | null | undefined;
8232
- contact_email?: string | null | undefined;
8233
- address_city?: string | null | undefined;
8234
- address_zip?: string | null | undefined;
8235
8246
  contact_name?: string | null | undefined;
8247
+ contact_email?: string | null | undefined;
8236
8248
  contact_business_phone?: string | null | undefined;
8237
8249
  contact_mobile_phone?: string | null | undefined;
8238
8250
  contact_time_zone?: string | null | undefined;
8239
8251
  address_full?: string | null | undefined;
8252
+ address_city?: string | null | undefined;
8253
+ address_zip?: string | null | undefined;
8240
8254
  twitter_username?: string | null | undefined;
8241
8255
  logo?: string | null | undefined;
8242
8256
  email_sent_from?: string | null | undefined;
@@ -8303,14 +8317,14 @@ declare const TeamReadSchema: z.ZodObject<{
8303
8317
  updated_by_display_name?: string | null | undefined;
8304
8318
  unique_name?: string | null | undefined;
8305
8319
  legal_name?: string | null | undefined;
8306
- contact_email?: string | null | undefined;
8307
- address_city?: string | null | undefined;
8308
- address_zip?: string | null | undefined;
8309
8320
  contact_name?: string | null | undefined;
8321
+ contact_email?: string | null | undefined;
8310
8322
  contact_business_phone?: string | null | undefined;
8311
8323
  contact_mobile_phone?: string | null | undefined;
8312
8324
  contact_time_zone?: string | null | undefined;
8313
8325
  address_full?: string | null | undefined;
8326
+ address_city?: string | null | undefined;
8327
+ address_zip?: string | null | undefined;
8314
8328
  twitter_username?: string | null | undefined;
8315
8329
  logo?: string | null | undefined;
8316
8330
  email_sent_from?: string | null | undefined;
@@ -8333,14 +8347,14 @@ declare const TeamReadSchema: z.ZodObject<{
8333
8347
  updated_by_display_name?: string | null | undefined;
8334
8348
  unique_name?: string | null | undefined;
8335
8349
  legal_name?: string | null | undefined;
8336
- contact_email?: string | null | undefined;
8337
- address_city?: string | null | undefined;
8338
- address_zip?: string | null | undefined;
8339
8350
  contact_name?: string | null | undefined;
8351
+ contact_email?: string | null | undefined;
8340
8352
  contact_business_phone?: string | null | undefined;
8341
8353
  contact_mobile_phone?: string | null | undefined;
8342
8354
  contact_time_zone?: string | null | undefined;
8343
8355
  address_full?: string | null | undefined;
8356
+ address_city?: string | null | undefined;
8357
+ address_zip?: string | null | undefined;
8344
8358
  twitter_username?: string | null | undefined;
8345
8359
  logo?: string | null | undefined;
8346
8360
  email_sent_from?: string | null | undefined;
@@ -8420,14 +8434,14 @@ declare const TeamOptionSchema: z.ZodObject<{
8420
8434
  updated_by_display_name?: string | null | undefined;
8421
8435
  unique_name?: string | null | undefined;
8422
8436
  legal_name?: string | null | undefined;
8423
- contact_email?: string | null | undefined;
8424
- address_city?: string | null | undefined;
8425
- address_zip?: string | null | undefined;
8426
8437
  contact_name?: string | null | undefined;
8438
+ contact_email?: string | null | undefined;
8427
8439
  contact_business_phone?: string | null | undefined;
8428
8440
  contact_mobile_phone?: string | null | undefined;
8429
8441
  contact_time_zone?: string | null | undefined;
8430
8442
  address_full?: string | null | undefined;
8443
+ address_city?: string | null | undefined;
8444
+ address_zip?: string | null | undefined;
8431
8445
  twitter_username?: string | null | undefined;
8432
8446
  logo?: string | null | undefined;
8433
8447
  email_sent_from?: string | null | undefined;
@@ -8450,14 +8464,14 @@ declare const TeamOptionSchema: z.ZodObject<{
8450
8464
  updated_by_display_name?: string | null | undefined;
8451
8465
  unique_name?: string | null | undefined;
8452
8466
  legal_name?: string | null | undefined;
8453
- contact_email?: string | null | undefined;
8454
- address_city?: string | null | undefined;
8455
- address_zip?: string | null | undefined;
8456
8467
  contact_name?: string | null | undefined;
8468
+ contact_email?: string | null | undefined;
8457
8469
  contact_business_phone?: string | null | undefined;
8458
8470
  contact_mobile_phone?: string | null | undefined;
8459
8471
  contact_time_zone?: string | null | undefined;
8460
8472
  address_full?: string | null | undefined;
8473
+ address_city?: string | null | undefined;
8474
+ address_zip?: string | null | undefined;
8461
8475
  twitter_username?: string | null | undefined;
8462
8476
  logo?: string | null | undefined;
8463
8477
  email_sent_from?: string | null | undefined;
@@ -8517,14 +8531,14 @@ declare const UserTeamsSchema: z.ZodObject<{
8517
8531
  updated_by_display_name?: string | null | undefined;
8518
8532
  unique_name?: string | null | undefined;
8519
8533
  legal_name?: string | null | undefined;
8520
- contact_email?: string | null | undefined;
8521
- address_city?: string | null | undefined;
8522
- address_zip?: string | null | undefined;
8523
8534
  contact_name?: string | null | undefined;
8535
+ contact_email?: string | null | undefined;
8524
8536
  contact_business_phone?: string | null | undefined;
8525
8537
  contact_mobile_phone?: string | null | undefined;
8526
8538
  contact_time_zone?: string | null | undefined;
8527
8539
  address_full?: string | null | undefined;
8540
+ address_city?: string | null | undefined;
8541
+ address_zip?: string | null | undefined;
8528
8542
  twitter_username?: string | null | undefined;
8529
8543
  logo?: string | null | undefined;
8530
8544
  email_sent_from?: string | null | undefined;
@@ -8547,14 +8561,14 @@ declare const UserTeamsSchema: z.ZodObject<{
8547
8561
  updated_by_display_name?: string | null | undefined;
8548
8562
  unique_name?: string | null | undefined;
8549
8563
  legal_name?: string | null | undefined;
8550
- contact_email?: string | null | undefined;
8551
- address_city?: string | null | undefined;
8552
- address_zip?: string | null | undefined;
8553
8564
  contact_name?: string | null | undefined;
8565
+ contact_email?: string | null | undefined;
8554
8566
  contact_business_phone?: string | null | undefined;
8555
8567
  contact_mobile_phone?: string | null | undefined;
8556
8568
  contact_time_zone?: string | null | undefined;
8557
8569
  address_full?: string | null | undefined;
8570
+ address_city?: string | null | undefined;
8571
+ address_zip?: string | null | undefined;
8558
8572
  twitter_username?: string | null | undefined;
8559
8573
  logo?: string | null | undefined;
8560
8574
  email_sent_from?: string | null | undefined;
@@ -8579,14 +8593,14 @@ declare const UserTeamsSchema: z.ZodObject<{
8579
8593
  updated_by_display_name?: string | null | undefined;
8580
8594
  unique_name?: string | null | undefined;
8581
8595
  legal_name?: string | null | undefined;
8582
- contact_email?: string | null | undefined;
8583
- address_city?: string | null | undefined;
8584
- address_zip?: string | null | undefined;
8585
8596
  contact_name?: string | null | undefined;
8597
+ contact_email?: string | null | undefined;
8586
8598
  contact_business_phone?: string | null | undefined;
8587
8599
  contact_mobile_phone?: string | null | undefined;
8588
8600
  contact_time_zone?: string | null | undefined;
8589
8601
  address_full?: string | null | undefined;
8602
+ address_city?: string | null | undefined;
8603
+ address_zip?: string | null | undefined;
8590
8604
  twitter_username?: string | null | undefined;
8591
8605
  logo?: string | null | undefined;
8592
8606
  email_sent_from?: string | null | undefined;
@@ -8611,14 +8625,14 @@ declare const UserTeamsSchema: z.ZodObject<{
8611
8625
  updated_by_display_name?: string | null | undefined;
8612
8626
  unique_name?: string | null | undefined;
8613
8627
  legal_name?: string | null | undefined;
8614
- contact_email?: string | null | undefined;
8615
- address_city?: string | null | undefined;
8616
- address_zip?: string | null | undefined;
8617
8628
  contact_name?: string | null | undefined;
8629
+ contact_email?: string | null | undefined;
8618
8630
  contact_business_phone?: string | null | undefined;
8619
8631
  contact_mobile_phone?: string | null | undefined;
8620
8632
  contact_time_zone?: string | null | undefined;
8621
8633
  address_full?: string | null | undefined;
8634
+ address_city?: string | null | undefined;
8635
+ address_zip?: string | null | undefined;
8622
8636
  twitter_username?: string | null | undefined;
8623
8637
  logo?: string | null | undefined;
8624
8638
  email_sent_from?: string | null | undefined;
@@ -9271,11 +9285,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9271
9285
  searchableFields: string[];
9272
9286
  }>>;
9273
9287
  }, "strip", z.ZodTypeAny, {
9274
- first?: number | undefined;
9275
- after?: string | undefined;
9276
- sortBy?: string | undefined;
9277
- sortDirection?: "asc" | "desc" | undefined;
9278
- paginationToken?: string | undefined;
9279
9288
  created_at?: {
9280
9289
  operator: "isEmpty" | "isNotEmpty";
9281
9290
  value?: any;
@@ -9292,6 +9301,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9292
9301
  values?: any[] | undefined;
9293
9302
  caseSensitive?: boolean | undefined;
9294
9303
  } | undefined;
9304
+ first?: number | undefined;
9305
+ after?: string | undefined;
9306
+ sortBy?: string | undefined;
9307
+ sortDirection?: "asc" | "desc" | undefined;
9308
+ paginationToken?: string | undefined;
9295
9309
  search?: {
9296
9310
  query: string;
9297
9311
  searchableFields: string[];
@@ -9401,11 +9415,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9401
9415
  caseSensitive?: boolean | undefined;
9402
9416
  } | undefined;
9403
9417
  }, {
9404
- first?: number | undefined;
9405
- after?: string | undefined;
9406
- sortBy?: string | undefined;
9407
- sortDirection?: "asc" | "desc" | undefined;
9408
- paginationToken?: string | undefined;
9409
9418
  created_at?: {
9410
9419
  operator: "isEmpty" | "isNotEmpty";
9411
9420
  value?: any;
@@ -9422,6 +9431,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9422
9431
  values?: any[] | undefined;
9423
9432
  caseSensitive?: boolean | undefined;
9424
9433
  } | undefined;
9434
+ first?: number | undefined;
9435
+ after?: string | undefined;
9436
+ sortBy?: string | undefined;
9437
+ sortDirection?: "asc" | "desc" | undefined;
9438
+ paginationToken?: string | undefined;
9425
9439
  search?: {
9426
9440
  query: string;
9427
9441
  searchableFields: string[];
@@ -9885,19 +9899,19 @@ declare const UserReadSchema: z.ZodObject<{
9885
9899
  updated_at: z.ZodNullable<z.ZodString>;
9886
9900
  }, "strip", z.ZodTypeAny, {
9887
9901
  created_at: string;
9888
- id: string;
9889
9902
  email: string;
9890
9903
  username: string;
9891
9904
  email_verified: boolean;
9892
9905
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9906
+ id: string;
9893
9907
  updated_at: string | null;
9894
9908
  }, {
9895
9909
  created_at: string;
9896
- id: string;
9897
9910
  email: string;
9898
9911
  username: string;
9899
9912
  email_verified: boolean;
9900
9913
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9914
+ id: string;
9901
9915
  updated_at: string | null;
9902
9916
  }>;
9903
9917
  type UserReadDto = z.infer<typeof UserReadSchema>;
@@ -9907,11 +9921,11 @@ declare const UserUpdateSchema: z.ZodObject<{
9907
9921
  id: z.ZodString;
9908
9922
  user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
9909
9923
  }, "strip", z.ZodTypeAny, {
9910
- id: string;
9911
9924
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9912
- }, {
9913
9925
  id: string;
9926
+ }, {
9914
9927
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9928
+ id: string;
9915
9929
  }>;
9916
9930
  type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
9917
9931
  //#endregion
@@ -10083,6 +10097,14 @@ interface AttachmentApi {
10083
10097
  * List attachments with filters
10084
10098
  */
10085
10099
  listAttachments(filters: AttachmentFiltersDto): Promise<AttachmentPageDto>;
10100
+ /**
10101
+ * Update attachment metadata (title, description)
10102
+ */
10103
+ updateAttachment(input: {
10104
+ id: string;
10105
+ title?: string | null;
10106
+ description?: string | null;
10107
+ }): Promise<AttachmentReadDto>;
10086
10108
  /**
10087
10109
  * Delete an attachment
10088
10110
  */