@dragonmastery/dragoncore-shared 0.0.22 → 0.0.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -147,12 +147,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
147
147
  updated_at?: string | null | undefined;
148
148
  updated_by?: string | null | undefined;
149
149
  metadata?: string | null | undefined;
150
+ parent_folder_id?: string | null | undefined;
151
+ file_count?: number | undefined;
150
152
  archived_at?: string | null | undefined;
151
153
  archived_by?: string | null | undefined;
152
154
  deleted_at?: string | null | undefined;
153
155
  deleted_by?: string | null | undefined;
154
- parent_folder_id?: string | null | undefined;
155
- file_count?: number | undefined;
156
156
  }, {
157
157
  created_at: string;
158
158
  created_by: string;
@@ -165,12 +165,12 @@ declare const AttachmentFolderReadSchema: z.ZodObject<{
165
165
  updated_at?: string | null | undefined;
166
166
  updated_by?: string | null | undefined;
167
167
  metadata?: string | null | undefined;
168
+ parent_folder_id?: string | null | undefined;
169
+ file_count?: number | undefined;
168
170
  archived_at?: string | null | undefined;
169
171
  archived_by?: string | null | undefined;
170
172
  deleted_at?: string | null | undefined;
171
173
  deleted_by?: string | null | undefined;
172
- parent_folder_id?: string | null | undefined;
173
- file_count?: number | undefined;
174
174
  }>;
175
175
  type AttachmentFolderReadDto = z.infer<typeof AttachmentFolderReadSchema>;
176
176
  //#endregion
@@ -193,8 +193,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
193
193
  content_type: string;
194
194
  file_size: string;
195
195
  description?: string | null | undefined;
196
- metadata?: string | null | undefined;
197
196
  folder_id?: string | null | undefined;
197
+ metadata?: string | null | undefined;
198
198
  }, {
199
199
  record_id: string;
200
200
  record_type: string;
@@ -203,8 +203,8 @@ declare const AttachmentCreateSchema: z.ZodObject<{
203
203
  content_type: string;
204
204
  file_size: string;
205
205
  description?: string | null | undefined;
206
- metadata?: string | null | undefined;
207
206
  folder_id?: string | null | undefined;
207
+ metadata?: string | null | undefined;
208
208
  }>;
209
209
  type AttachmentCreateDto = z.infer<typeof AttachmentCreateSchema>;
210
210
  declare const AttachmentUpdateSchema: z.ZodObject<{
@@ -224,23 +224,23 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
224
224
  description?: string | null | undefined;
225
225
  record_id?: string | undefined;
226
226
  record_type?: string | undefined;
227
+ folder_id?: string | null | undefined;
227
228
  sanitized_name?: string | undefined;
228
229
  original_name?: string | undefined;
230
+ metadata?: string | null | undefined;
229
231
  content_type?: string | undefined;
230
232
  file_size?: string | undefined;
231
- metadata?: string | null | undefined;
232
- folder_id?: string | null | undefined;
233
233
  }, {
234
234
  id: string;
235
235
  description?: string | null | undefined;
236
236
  record_id?: string | undefined;
237
237
  record_type?: string | undefined;
238
+ folder_id?: string | null | undefined;
238
239
  sanitized_name?: string | undefined;
239
240
  original_name?: string | undefined;
241
+ metadata?: string | null | undefined;
240
242
  content_type?: string | undefined;
241
243
  file_size?: string | undefined;
242
- metadata?: string | null | undefined;
243
- folder_id?: string | null | undefined;
244
244
  }>;
245
245
  type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
246
246
  //#endregion
@@ -279,8 +279,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
279
279
  description?: string | null | undefined;
280
280
  updated_at?: string | null | undefined;
281
281
  updated_by?: string | null | undefined;
282
- metadata?: string | null | undefined;
283
282
  folder_id?: string | null | undefined;
283
+ metadata?: string | null | undefined;
284
284
  archived_at?: string | null | undefined;
285
285
  archived_by?: string | null | undefined;
286
286
  deleted_at?: string | null | undefined;
@@ -298,8 +298,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
298
298
  description?: string | null | undefined;
299
299
  updated_at?: string | null | undefined;
300
300
  updated_by?: string | null | undefined;
301
- metadata?: string | null | undefined;
302
301
  folder_id?: string | null | undefined;
302
+ metadata?: string | null | undefined;
303
303
  archived_at?: string | null | undefined;
304
304
  archived_by?: string | null | undefined;
305
305
  deleted_at?: string | null | undefined;
@@ -336,12 +336,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
336
336
  updated_at?: string | null | undefined;
337
337
  updated_by?: string | null | undefined;
338
338
  metadata?: string | null | undefined;
339
+ parent_folder_id?: string | null | undefined;
340
+ file_count?: number | undefined;
339
341
  archived_at?: string | null | undefined;
340
342
  archived_by?: string | null | undefined;
341
343
  deleted_at?: string | null | undefined;
342
344
  deleted_by?: string | null | undefined;
343
- parent_folder_id?: string | null | undefined;
344
- file_count?: number | undefined;
345
345
  }, {
346
346
  created_at: string;
347
347
  created_by: string;
@@ -354,12 +354,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
354
354
  updated_at?: string | null | undefined;
355
355
  updated_by?: string | null | undefined;
356
356
  metadata?: string | null | undefined;
357
+ parent_folder_id?: string | null | undefined;
358
+ file_count?: number | undefined;
357
359
  archived_at?: string | null | undefined;
358
360
  archived_by?: string | null | undefined;
359
361
  deleted_at?: string | null | undefined;
360
362
  deleted_by?: string | null | undefined;
361
- parent_folder_id?: string | null | undefined;
362
- file_count?: number | undefined;
363
363
  }>, "many">;
364
364
  pageInfo: z.ZodObject<{
365
365
  hasNextPage: z.ZodBoolean;
@@ -389,8 +389,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
389
389
  description?: string | null | undefined;
390
390
  updated_at?: string | null | undefined;
391
391
  updated_by?: string | null | undefined;
392
- metadata?: string | null | undefined;
393
392
  folder_id?: string | null | undefined;
393
+ metadata?: string | null | undefined;
394
394
  archived_at?: string | null | undefined;
395
395
  archived_by?: string | null | undefined;
396
396
  deleted_at?: string | null | undefined;
@@ -408,12 +408,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
408
408
  updated_at?: string | null | undefined;
409
409
  updated_by?: string | null | undefined;
410
410
  metadata?: string | null | undefined;
411
+ parent_folder_id?: string | null | undefined;
412
+ file_count?: number | undefined;
411
413
  archived_at?: string | null | undefined;
412
414
  archived_by?: string | null | undefined;
413
415
  deleted_at?: string | null | undefined;
414
416
  deleted_by?: string | null | undefined;
415
- parent_folder_id?: string | null | undefined;
416
- file_count?: number | undefined;
417
417
  }[];
418
418
  }, {
419
419
  pageInfo: {
@@ -433,8 +433,8 @@ declare const AttachmentPageSchema: z.ZodObject<{
433
433
  description?: string | null | undefined;
434
434
  updated_at?: string | null | undefined;
435
435
  updated_by?: string | null | undefined;
436
- metadata?: string | null | undefined;
437
436
  folder_id?: string | null | undefined;
437
+ metadata?: string | null | undefined;
438
438
  archived_at?: string | null | undefined;
439
439
  archived_by?: string | null | undefined;
440
440
  deleted_at?: string | null | undefined;
@@ -452,12 +452,12 @@ declare const AttachmentPageSchema: z.ZodObject<{
452
452
  updated_at?: string | null | undefined;
453
453
  updated_by?: string | null | undefined;
454
454
  metadata?: string | null | undefined;
455
+ parent_folder_id?: string | null | undefined;
456
+ file_count?: number | undefined;
455
457
  archived_at?: string | null | undefined;
456
458
  archived_by?: string | null | undefined;
457
459
  deleted_at?: string | null | undefined;
458
460
  deleted_by?: string | null | undefined;
459
- parent_folder_id?: string | null | undefined;
460
- file_count?: number | undefined;
461
461
  }[];
462
462
  }>;
463
463
  type AttachmentPageDto = z.infer<typeof AttachmentPageSchema>;
@@ -496,8 +496,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
496
496
  description?: string | null | undefined;
497
497
  updated_at?: string | null | undefined;
498
498
  updated_by?: string | null | undefined;
499
- metadata?: string | null | undefined;
500
499
  folder_id?: string | null | undefined;
500
+ metadata?: string | null | undefined;
501
501
  archived_at?: string | null | undefined;
502
502
  archived_by?: string | null | undefined;
503
503
  deleted_at?: string | null | undefined;
@@ -515,8 +515,8 @@ declare const AttachmentReadSchema: z.ZodObject<{
515
515
  description?: string | null | undefined;
516
516
  updated_at?: string | null | undefined;
517
517
  updated_by?: string | null | undefined;
518
- metadata?: string | null | undefined;
519
518
  folder_id?: string | null | undefined;
519
+ metadata?: string | null | undefined;
520
520
  archived_at?: string | null | undefined;
521
521
  archived_by?: string | null | undefined;
522
522
  deleted_at?: string | null | undefined;
@@ -1114,11 +1114,11 @@ declare const createUserSchemaOutput: z.ZodObject<{
1114
1114
  id: z.ZodString;
1115
1115
  email: z.ZodString;
1116
1116
  }, "strip", z.ZodTypeAny, {
1117
- email: string;
1118
1117
  id: string;
1119
- }, {
1120
1118
  email: string;
1119
+ }, {
1121
1120
  id: string;
1121
+ email: string;
1122
1122
  }>;
1123
1123
  type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
1124
1124
  //#endregion
@@ -1432,22 +1432,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1432
1432
  searchableFields: string[];
1433
1433
  }>>;
1434
1434
  }, "strip", z.ZodTypeAny, {
1435
- created_at?: {
1436
- operator: "isEmpty" | "isNotEmpty";
1437
- value?: any;
1438
- values?: any[] | undefined;
1439
- caseSensitive?: boolean | undefined;
1440
- } | {
1441
- values: string[];
1442
- operator: "between";
1443
- value?: any;
1444
- caseSensitive?: boolean | undefined;
1445
- } | {
1446
- value: string;
1447
- operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
1448
- values?: any[] | undefined;
1449
- caseSensitive?: boolean | undefined;
1450
- } | undefined;
1451
1435
  type?: {
1452
1436
  operator: "eq" | "ne" | "in" | "notIn";
1453
1437
  value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
@@ -1477,17 +1461,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1477
1461
  values?: number[] | undefined;
1478
1462
  caseSensitive?: boolean | undefined;
1479
1463
  } | undefined;
1480
- created_by?: {
1481
- operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
1482
- value?: string | undefined;
1483
- values?: string[] | undefined;
1484
- caseSensitive?: boolean | undefined;
1485
- } | undefined;
1486
- search?: {
1487
- query: string;
1488
- searchableFields: string[];
1489
- } | undefined;
1490
- }, {
1491
1464
  created_at?: {
1492
1465
  operator: "isEmpty" | "isNotEmpty";
1493
1466
  value?: any;
@@ -1504,6 +1477,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1504
1477
  values?: any[] | undefined;
1505
1478
  caseSensitive?: boolean | undefined;
1506
1479
  } | undefined;
1480
+ created_by?: {
1481
+ operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
1482
+ value?: string | undefined;
1483
+ values?: string[] | undefined;
1484
+ caseSensitive?: boolean | undefined;
1485
+ } | undefined;
1486
+ search?: {
1487
+ query: string;
1488
+ searchableFields: string[];
1489
+ } | undefined;
1490
+ }, {
1507
1491
  type?: {
1508
1492
  operator: "eq" | "ne" | "in" | "notIn";
1509
1493
  value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
@@ -1533,6 +1517,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1533
1517
  values?: number[] | undefined;
1534
1518
  caseSensitive?: boolean | undefined;
1535
1519
  } | undefined;
1520
+ created_at?: {
1521
+ operator: "isEmpty" | "isNotEmpty";
1522
+ value?: any;
1523
+ values?: any[] | undefined;
1524
+ caseSensitive?: boolean | undefined;
1525
+ } | {
1526
+ values: string[];
1527
+ operator: "between";
1528
+ value?: any;
1529
+ caseSensitive?: boolean | undefined;
1530
+ } | {
1531
+ value: string;
1532
+ operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
1533
+ values?: any[] | undefined;
1534
+ caseSensitive?: boolean | undefined;
1535
+ } | undefined;
1536
1536
  created_by?: {
1537
1537
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
1538
1538
  value?: string | undefined;
@@ -1565,19 +1565,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
1565
1565
  created_at: z.ZodString;
1566
1566
  created_by: z.ZodString;
1567
1567
  }, "strip", z.ZodTypeAny, {
1568
- created_at: string;
1569
1568
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1570
1569
  amount: string;
1571
1570
  balance_after: string;
1571
+ created_at: string;
1572
1572
  created_by: string;
1573
1573
  id: string;
1574
1574
  support_ticket_id?: string | null | undefined;
1575
1575
  description?: string | null | undefined;
1576
1576
  }, {
1577
- created_at: string;
1578
1577
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1579
1578
  amount: string;
1580
1579
  balance_after: string;
1580
+ created_at: string;
1581
1581
  created_by: string;
1582
1582
  id: string;
1583
1583
  support_ticket_id?: string | null | undefined;
@@ -1598,19 +1598,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
1598
1598
  created_at: z.ZodString;
1599
1599
  created_by: z.ZodString;
1600
1600
  }, "strip", z.ZodTypeAny, {
1601
- created_at: string;
1602
1601
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1603
1602
  amount: string;
1604
1603
  balance_after: string;
1604
+ created_at: string;
1605
1605
  created_by: string;
1606
1606
  id: string;
1607
1607
  support_ticket_id?: string | null | undefined;
1608
1608
  description?: string | null | undefined;
1609
1609
  }, {
1610
- created_at: string;
1611
1610
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1612
1611
  amount: string;
1613
1612
  balance_after: string;
1613
+ created_at: string;
1614
1614
  created_by: string;
1615
1615
  id: string;
1616
1616
  support_ticket_id?: string | null | undefined;
@@ -1640,10 +1640,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
1640
1640
  }>;
1641
1641
  }, "strip", z.ZodTypeAny, {
1642
1642
  items: {
1643
- created_at: string;
1644
1643
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1645
1644
  amount: string;
1646
1645
  balance_after: string;
1646
+ created_at: string;
1647
1647
  created_by: string;
1648
1648
  id: string;
1649
1649
  support_ticket_id?: string | null | undefined;
@@ -1659,10 +1659,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
1659
1659
  };
1660
1660
  }, {
1661
1661
  items: {
1662
- created_at: string;
1663
1662
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1664
1663
  amount: string;
1665
1664
  balance_after: string;
1665
+ created_at: string;
1666
1666
  created_by: string;
1667
1667
  id: string;
1668
1668
  support_ticket_id?: string | null | undefined;
@@ -1741,8 +1741,8 @@ declare const userSessionSchema: z.ZodObject<{
1741
1741
  price_currency?: string | null | undefined;
1742
1742
  }>, "many">>>;
1743
1743
  }, "strip", z.ZodTypeAny, {
1744
- userId: string;
1745
1744
  email: string;
1745
+ userId: string;
1746
1746
  username: string;
1747
1747
  email_verified: boolean;
1748
1748
  user_type: string;
@@ -1763,8 +1763,8 @@ declare const userSessionSchema: z.ZodObject<{
1763
1763
  price_currency?: string | null | undefined;
1764
1764
  }[] | null | undefined;
1765
1765
  }, {
1766
- userId: string;
1767
1766
  email: string;
1767
+ userId: string;
1768
1768
  username: string;
1769
1769
  email_verified: boolean;
1770
1770
  user_type: string;
@@ -1787,8 +1787,8 @@ declare const userSessionSchema: z.ZodObject<{
1787
1787
  }>;
1788
1788
  }, "strip", z.ZodTypeAny, {
1789
1789
  user: {
1790
- userId: string;
1791
1790
  email: string;
1791
+ userId: string;
1792
1792
  username: string;
1793
1793
  email_verified: boolean;
1794
1794
  user_type: string;
@@ -1809,15 +1809,15 @@ declare const userSessionSchema: z.ZodObject<{
1809
1809
  price_currency?: string | null | undefined;
1810
1810
  }[] | null | undefined;
1811
1811
  };
1812
+ status: string;
1812
1813
  created_at: string;
1813
1814
  expires_at: string;
1814
- status: string;
1815
1815
  user_agent?: string | null | undefined;
1816
1816
  ip_address?: string | null | undefined;
1817
1817
  }, {
1818
1818
  user: {
1819
- userId: string;
1820
1819
  email: string;
1820
+ userId: string;
1821
1821
  username: string;
1822
1822
  email_verified: boolean;
1823
1823
  user_type: string;
@@ -1838,9 +1838,9 @@ declare const userSessionSchema: z.ZodObject<{
1838
1838
  price_currency?: string | null | undefined;
1839
1839
  }[] | null | undefined;
1840
1840
  };
1841
+ status: string;
1841
1842
  created_at: string;
1842
1843
  expires_at: string;
1843
- status: string;
1844
1844
  user_agent?: string | null | undefined;
1845
1845
  ip_address?: string | null | undefined;
1846
1846
  }>;
@@ -1896,8 +1896,8 @@ declare const loginResponseSchema: z.ZodObject<{
1896
1896
  price_currency?: string | null | undefined;
1897
1897
  }>, "many">>>;
1898
1898
  }, "strip", z.ZodTypeAny, {
1899
- userId: string;
1900
1899
  email: string;
1900
+ userId: string;
1901
1901
  username: string;
1902
1902
  email_verified: boolean;
1903
1903
  user_type: string;
@@ -1918,8 +1918,8 @@ declare const loginResponseSchema: z.ZodObject<{
1918
1918
  price_currency?: string | null | undefined;
1919
1919
  }[] | null | undefined;
1920
1920
  }, {
1921
- userId: string;
1922
1921
  email: string;
1922
+ userId: string;
1923
1923
  username: string;
1924
1924
  email_verified: boolean;
1925
1925
  user_type: string;
@@ -1942,8 +1942,8 @@ declare const loginResponseSchema: z.ZodObject<{
1942
1942
  }>;
1943
1943
  }, "strip", z.ZodTypeAny, {
1944
1944
  user: {
1945
- userId: string;
1946
1945
  email: string;
1946
+ userId: string;
1947
1947
  username: string;
1948
1948
  email_verified: boolean;
1949
1949
  user_type: string;
@@ -1964,15 +1964,15 @@ declare const loginResponseSchema: z.ZodObject<{
1964
1964
  price_currency?: string | null | undefined;
1965
1965
  }[] | null | undefined;
1966
1966
  };
1967
+ status: string;
1967
1968
  created_at: string;
1968
1969
  expires_at: string;
1969
- status: string;
1970
1970
  user_agent?: string | null | undefined;
1971
1971
  ip_address?: string | null | undefined;
1972
1972
  }, {
1973
1973
  user: {
1974
- userId: string;
1975
1974
  email: string;
1975
+ userId: string;
1976
1976
  username: string;
1977
1977
  email_verified: boolean;
1978
1978
  user_type: string;
@@ -1993,9 +1993,9 @@ declare const loginResponseSchema: z.ZodObject<{
1993
1993
  price_currency?: string | null | undefined;
1994
1994
  }[] | null | undefined;
1995
1995
  };
1996
+ status: string;
1996
1997
  created_at: string;
1997
1998
  expires_at: string;
1998
- status: string;
1999
1999
  user_agent?: string | null | undefined;
2000
2000
  ip_address?: string | null | undefined;
2001
2001
  }>;
@@ -2006,8 +2006,8 @@ declare const loginResponseSchema: z.ZodObject<{
2006
2006
  refresh_token: string;
2007
2007
  frontend_session: {
2008
2008
  user: {
2009
- userId: string;
2010
2009
  email: string;
2010
+ userId: string;
2011
2011
  username: string;
2012
2012
  email_verified: boolean;
2013
2013
  user_type: string;
@@ -2028,9 +2028,9 @@ declare const loginResponseSchema: z.ZodObject<{
2028
2028
  price_currency?: string | null | undefined;
2029
2029
  }[] | null | undefined;
2030
2030
  };
2031
+ status: string;
2031
2032
  created_at: string;
2032
2033
  expires_at: string;
2033
- status: string;
2034
2034
  user_agent?: string | null | undefined;
2035
2035
  ip_address?: string | null | undefined;
2036
2036
  };
@@ -2040,8 +2040,8 @@ declare const loginResponseSchema: z.ZodObject<{
2040
2040
  refresh_token: string;
2041
2041
  frontend_session: {
2042
2042
  user: {
2043
- userId: string;
2044
2043
  email: string;
2044
+ userId: string;
2045
2045
  username: string;
2046
2046
  email_verified: boolean;
2047
2047
  user_type: string;
@@ -2062,9 +2062,9 @@ declare const loginResponseSchema: z.ZodObject<{
2062
2062
  price_currency?: string | null | undefined;
2063
2063
  }[] | null | undefined;
2064
2064
  };
2065
+ status: string;
2065
2066
  created_at: string;
2066
2067
  expires_at: string;
2067
- status: string;
2068
2068
  user_agent?: string | null | undefined;
2069
2069
  ip_address?: string | null | undefined;
2070
2070
  };
@@ -2122,9 +2122,9 @@ declare const NoteReadSchema: z.ZodObject<{
2122
2122
  archived_by?: string | null | undefined;
2123
2123
  deleted_at?: string | null | undefined;
2124
2124
  deleted_by?: string | null | undefined;
2125
+ tag?: string | null | undefined;
2125
2126
  title?: string | null | undefined;
2126
2127
  body?: string | null | undefined;
2127
- tag?: string | null | undefined;
2128
2128
  original_id?: number | null | undefined;
2129
2129
  created_by_display_name?: string | null | undefined;
2130
2130
  updated_by_display_name?: string | null | undefined;
@@ -2141,9 +2141,9 @@ declare const NoteReadSchema: z.ZodObject<{
2141
2141
  archived_by?: string | null | undefined;
2142
2142
  deleted_at?: string | null | undefined;
2143
2143
  deleted_by?: string | null | undefined;
2144
+ tag?: string | null | undefined;
2144
2145
  title?: string | null | undefined;
2145
2146
  body?: string | null | undefined;
2146
- tag?: string | null | undefined;
2147
2147
  original_id?: number | null | undefined;
2148
2148
  created_by_display_name?: string | null | undefined;
2149
2149
  updated_by_display_name?: string | null | undefined;
@@ -2163,18 +2163,18 @@ declare const NoteCreateSchema: z.ZodObject<{
2163
2163
  record_id: string;
2164
2164
  record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
2165
2165
  is_internal: boolean;
2166
+ tag?: string | null | undefined;
2166
2167
  title?: string | null | undefined;
2167
2168
  body?: string | null | undefined;
2168
- tag?: string | null | undefined;
2169
2169
  original_id?: number | null | undefined;
2170
2170
  }, {
2171
2171
  record_id: string;
2172
2172
  record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
2173
+ tag?: string | null | undefined;
2173
2174
  title?: string | null | undefined;
2174
2175
  body?: string | null | undefined;
2175
- tag?: string | null | undefined;
2176
- is_internal?: boolean | undefined;
2177
2176
  original_id?: number | null | undefined;
2177
+ is_internal?: boolean | undefined;
2178
2178
  }>;
2179
2179
  type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
2180
2180
  //#endregion
@@ -2192,20 +2192,20 @@ declare const NoteUpdateSchema: z.ZodObject<{
2192
2192
  id: string;
2193
2193
  record_id?: string | undefined;
2194
2194
  record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
2195
+ tag?: string | null | undefined;
2195
2196
  title?: string | null | undefined;
2196
2197
  body?: string | null | undefined;
2197
- tag?: string | null | undefined;
2198
- is_internal?: boolean | undefined;
2199
2198
  original_id?: number | null | undefined;
2199
+ is_internal?: boolean | undefined;
2200
2200
  }, {
2201
2201
  id: string;
2202
2202
  record_id?: string | undefined;
2203
2203
  record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
2204
+ tag?: string | null | undefined;
2204
2205
  title?: string | null | undefined;
2205
2206
  body?: string | null | undefined;
2206
- tag?: string | null | undefined;
2207
- is_internal?: boolean | undefined;
2208
2207
  original_id?: number | null | undefined;
2208
+ is_internal?: boolean | undefined;
2209
2209
  }>;
2210
2210
  type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
2211
2211
  //#endregion
@@ -2567,6 +2567,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
2567
2567
  searchableFields: string[];
2568
2568
  }>>;
2569
2569
  }, "strip", z.ZodTypeAny, {
2570
+ first?: number | undefined;
2571
+ after?: string | undefined;
2572
+ sortBy?: string | undefined;
2573
+ sortDirection?: "asc" | "desc" | undefined;
2574
+ paginationToken?: string | undefined;
2570
2575
  created_at?: {
2571
2576
  operator: "isEmpty" | "isNotEmpty";
2572
2577
  value?: any;
@@ -2583,11 +2588,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
2583
2588
  values?: any[] | undefined;
2584
2589
  caseSensitive?: boolean | undefined;
2585
2590
  } | undefined;
2586
- first?: number | undefined;
2587
- after?: string | undefined;
2588
- sortBy?: string | undefined;
2589
- sortDirection?: "asc" | "desc" | undefined;
2590
- paginationToken?: string | undefined;
2591
2591
  search?: {
2592
2592
  query: string;
2593
2593
  searchableFields: string[];
@@ -2620,19 +2620,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
2620
2620
  values?: any[] | undefined;
2621
2621
  caseSensitive?: boolean | undefined;
2622
2622
  } | undefined;
2623
- title?: {
2623
+ tag?: {
2624
2624
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2625
2625
  value?: string | undefined;
2626
2626
  values?: string[] | undefined;
2627
2627
  caseSensitive?: boolean | undefined;
2628
2628
  } | undefined;
2629
- body?: {
2629
+ title?: {
2630
2630
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2631
2631
  value?: string | undefined;
2632
2632
  values?: string[] | undefined;
2633
2633
  caseSensitive?: boolean | undefined;
2634
2634
  } | undefined;
2635
- tag?: {
2635
+ body?: {
2636
2636
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2637
2637
  value?: string | undefined;
2638
2638
  values?: string[] | undefined;
@@ -2645,6 +2645,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
2645
2645
  caseSensitive?: boolean | undefined;
2646
2646
  } | undefined;
2647
2647
  }, {
2648
+ first?: number | undefined;
2649
+ after?: string | undefined;
2650
+ sortBy?: string | undefined;
2651
+ sortDirection?: "asc" | "desc" | undefined;
2652
+ paginationToken?: string | undefined;
2648
2653
  created_at?: {
2649
2654
  operator: "isEmpty" | "isNotEmpty";
2650
2655
  value?: any;
@@ -2661,11 +2666,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
2661
2666
  values?: any[] | undefined;
2662
2667
  caseSensitive?: boolean | undefined;
2663
2668
  } | undefined;
2664
- first?: number | undefined;
2665
- after?: string | undefined;
2666
- sortBy?: string | undefined;
2667
- sortDirection?: "asc" | "desc" | undefined;
2668
- paginationToken?: string | undefined;
2669
2669
  search?: {
2670
2670
  query: string;
2671
2671
  searchableFields: string[];
@@ -2698,19 +2698,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
2698
2698
  values?: any[] | undefined;
2699
2699
  caseSensitive?: boolean | undefined;
2700
2700
  } | undefined;
2701
- title?: {
2701
+ tag?: {
2702
2702
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2703
2703
  value?: string | undefined;
2704
2704
  values?: string[] | undefined;
2705
2705
  caseSensitive?: boolean | undefined;
2706
2706
  } | undefined;
2707
- body?: {
2707
+ title?: {
2708
2708
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2709
2709
  value?: string | undefined;
2710
2710
  values?: string[] | undefined;
2711
2711
  caseSensitive?: boolean | undefined;
2712
2712
  } | undefined;
2713
- tag?: {
2713
+ body?: {
2714
2714
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
2715
2715
  value?: string | undefined;
2716
2716
  values?: string[] | undefined;
@@ -3560,23 +3560,785 @@ declare const signupSchema: z.ZodObject<{
3560
3560
  }>;
3561
3561
  acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
3562
3562
  }, "strip", z.ZodTypeAny, {
3563
- email: string;
3564
3563
  passwords: {
3565
3564
  password: string;
3566
3565
  password_confirm: string;
3567
3566
  };
3567
+ email: string;
3568
3568
  acceptances: Record<string, boolean>;
3569
3569
  }, {
3570
- email: string;
3571
3570
  passwords: {
3572
3571
  password: string;
3573
3572
  password_confirm: string;
3574
3573
  };
3574
+ email: string;
3575
3575
  acceptances?: Record<string, boolean> | undefined;
3576
3576
  }>;
3577
3577
  /** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
3578
3578
  type SignupInputDto = z.output<typeof signupSchema>;
3579
3579
  //#endregion
3580
+ //#region src/validation/signup_initiate_zod.d.ts
3581
+ /** Input for signupInitiate - email and password only (no acceptances). */
3582
+ declare const signupInitiateSchema: z.ZodObject<{
3583
+ email: z.ZodString;
3584
+ passwords: z.ZodEffects<z.ZodObject<{
3585
+ password: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
3586
+ password_confirm: z.ZodString;
3587
+ }, "strip", z.ZodTypeAny, {
3588
+ password: string;
3589
+ password_confirm: string;
3590
+ }, {
3591
+ password: string;
3592
+ password_confirm: string;
3593
+ }>, {
3594
+ password: string;
3595
+ password_confirm: string;
3596
+ }, {
3597
+ password: string;
3598
+ password_confirm: string;
3599
+ }>;
3600
+ }, "strip", z.ZodTypeAny, {
3601
+ passwords: {
3602
+ password: string;
3603
+ password_confirm: string;
3604
+ };
3605
+ email: string;
3606
+ }, {
3607
+ passwords: {
3608
+ password: string;
3609
+ password_confirm: string;
3610
+ };
3611
+ email: string;
3612
+ }>;
3613
+ type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
3614
+ /** Response when consents are required - token + consents to display. */
3615
+ declare const signupInitiateConsentRequiredSchema: z.ZodObject<{
3616
+ created: z.ZodLiteral<false>;
3617
+ signup_consent_token: z.ZodString;
3618
+ consents: z.ZodArray<z.ZodObject<{
3619
+ type: z.ZodString;
3620
+ required: z.ZodBoolean;
3621
+ url: z.ZodString;
3622
+ label: z.ZodString;
3623
+ version: z.ZodString;
3624
+ effective_at: z.ZodString;
3625
+ content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3626
+ }, "strip", z.ZodTypeAny, {
3627
+ type: string;
3628
+ required: boolean;
3629
+ url: string;
3630
+ label: string;
3631
+ version: string;
3632
+ effective_at: string;
3633
+ content?: string | null | undefined;
3634
+ }, {
3635
+ type: string;
3636
+ required: boolean;
3637
+ url: string;
3638
+ label: string;
3639
+ version: string;
3640
+ effective_at: string;
3641
+ content?: string | null | undefined;
3642
+ }>, "many">;
3643
+ }, "strip", z.ZodTypeAny, {
3644
+ created: false;
3645
+ signup_consent_token: string;
3646
+ consents: {
3647
+ type: string;
3648
+ required: boolean;
3649
+ url: string;
3650
+ label: string;
3651
+ version: string;
3652
+ effective_at: string;
3653
+ content?: string | null | undefined;
3654
+ }[];
3655
+ }, {
3656
+ created: false;
3657
+ signup_consent_token: string;
3658
+ consents: {
3659
+ type: string;
3660
+ required: boolean;
3661
+ url: string;
3662
+ label: string;
3663
+ version: string;
3664
+ effective_at: string;
3665
+ content?: string | null | undefined;
3666
+ }[];
3667
+ }>;
3668
+ /** Response when account is created immediately (no consents). */
3669
+ declare const signupInitiateCreatedSchema: z.ZodObject<{
3670
+ created: z.ZodLiteral<true>;
3671
+ session: z.ZodObject<{
3672
+ frontend_session: z.ZodObject<{
3673
+ created_at: z.ZodString;
3674
+ expires_at: z.ZodString;
3675
+ status: z.ZodString;
3676
+ user_agent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3677
+ ip_address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3678
+ user: z.ZodObject<{
3679
+ userId: z.ZodString;
3680
+ email: z.ZodString;
3681
+ username: z.ZodString;
3682
+ email_verified: z.ZodBoolean;
3683
+ user_type: z.ZodString;
3684
+ first_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3685
+ last_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3686
+ avatar_url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3687
+ consents_complete: z.ZodOptional<z.ZodBoolean>;
3688
+ subscriptions: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3689
+ subscription_id: z.ZodString;
3690
+ subscription_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3691
+ subscription_created: z.ZodString;
3692
+ subscription_current_period_start: z.ZodString;
3693
+ subscription_current_period_end: z.ZodString;
3694
+ subscription_cancel_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3695
+ subscription_canceled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3696
+ product_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3697
+ price_amount: z.ZodNullable<z.ZodNumber>;
3698
+ price_currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3699
+ }, "strip", z.ZodTypeAny, {
3700
+ subscription_id: string;
3701
+ subscription_created: string;
3702
+ subscription_current_period_start: string;
3703
+ subscription_current_period_end: string;
3704
+ price_amount: number | null;
3705
+ subscription_status?: string | null | undefined;
3706
+ subscription_cancel_at?: string | null | undefined;
3707
+ subscription_canceled_at?: string | null | undefined;
3708
+ product_name?: string | null | undefined;
3709
+ price_currency?: string | null | undefined;
3710
+ }, {
3711
+ subscription_id: string;
3712
+ subscription_created: string;
3713
+ subscription_current_period_start: string;
3714
+ subscription_current_period_end: string;
3715
+ price_amount: number | null;
3716
+ subscription_status?: string | null | undefined;
3717
+ subscription_cancel_at?: string | null | undefined;
3718
+ subscription_canceled_at?: string | null | undefined;
3719
+ product_name?: string | null | undefined;
3720
+ price_currency?: string | null | undefined;
3721
+ }>, "many">>>;
3722
+ }, "strip", z.ZodTypeAny, {
3723
+ email: string;
3724
+ userId: string;
3725
+ username: string;
3726
+ email_verified: boolean;
3727
+ user_type: string;
3728
+ first_name?: string | null | undefined;
3729
+ last_name?: string | null | undefined;
3730
+ avatar_url?: string | null | undefined;
3731
+ consents_complete?: boolean | undefined;
3732
+ subscriptions?: {
3733
+ subscription_id: string;
3734
+ subscription_created: string;
3735
+ subscription_current_period_start: string;
3736
+ subscription_current_period_end: string;
3737
+ price_amount: number | null;
3738
+ subscription_status?: string | null | undefined;
3739
+ subscription_cancel_at?: string | null | undefined;
3740
+ subscription_canceled_at?: string | null | undefined;
3741
+ product_name?: string | null | undefined;
3742
+ price_currency?: string | null | undefined;
3743
+ }[] | null | undefined;
3744
+ }, {
3745
+ email: string;
3746
+ userId: string;
3747
+ username: string;
3748
+ email_verified: boolean;
3749
+ user_type: string;
3750
+ first_name?: string | null | undefined;
3751
+ last_name?: string | null | undefined;
3752
+ avatar_url?: string | null | undefined;
3753
+ consents_complete?: boolean | undefined;
3754
+ subscriptions?: {
3755
+ subscription_id: string;
3756
+ subscription_created: string;
3757
+ subscription_current_period_start: string;
3758
+ subscription_current_period_end: string;
3759
+ price_amount: number | null;
3760
+ subscription_status?: string | null | undefined;
3761
+ subscription_cancel_at?: string | null | undefined;
3762
+ subscription_canceled_at?: string | null | undefined;
3763
+ product_name?: string | null | undefined;
3764
+ price_currency?: string | null | undefined;
3765
+ }[] | null | undefined;
3766
+ }>;
3767
+ }, "strip", z.ZodTypeAny, {
3768
+ user: {
3769
+ email: string;
3770
+ userId: string;
3771
+ username: string;
3772
+ email_verified: boolean;
3773
+ user_type: string;
3774
+ first_name?: string | null | undefined;
3775
+ last_name?: string | null | undefined;
3776
+ avatar_url?: string | null | undefined;
3777
+ consents_complete?: boolean | undefined;
3778
+ subscriptions?: {
3779
+ subscription_id: string;
3780
+ subscription_created: string;
3781
+ subscription_current_period_start: string;
3782
+ subscription_current_period_end: string;
3783
+ price_amount: number | null;
3784
+ subscription_status?: string | null | undefined;
3785
+ subscription_cancel_at?: string | null | undefined;
3786
+ subscription_canceled_at?: string | null | undefined;
3787
+ product_name?: string | null | undefined;
3788
+ price_currency?: string | null | undefined;
3789
+ }[] | null | undefined;
3790
+ };
3791
+ status: string;
3792
+ created_at: string;
3793
+ expires_at: string;
3794
+ user_agent?: string | null | undefined;
3795
+ ip_address?: string | null | undefined;
3796
+ }, {
3797
+ user: {
3798
+ email: string;
3799
+ userId: string;
3800
+ username: string;
3801
+ email_verified: boolean;
3802
+ user_type: string;
3803
+ first_name?: string | null | undefined;
3804
+ last_name?: string | null | undefined;
3805
+ avatar_url?: string | null | undefined;
3806
+ consents_complete?: boolean | undefined;
3807
+ subscriptions?: {
3808
+ subscription_id: string;
3809
+ subscription_created: string;
3810
+ subscription_current_period_start: string;
3811
+ subscription_current_period_end: string;
3812
+ price_amount: number | null;
3813
+ subscription_status?: string | null | undefined;
3814
+ subscription_cancel_at?: string | null | undefined;
3815
+ subscription_canceled_at?: string | null | undefined;
3816
+ product_name?: string | null | undefined;
3817
+ price_currency?: string | null | undefined;
3818
+ }[] | null | undefined;
3819
+ };
3820
+ status: string;
3821
+ created_at: string;
3822
+ expires_at: string;
3823
+ user_agent?: string | null | undefined;
3824
+ ip_address?: string | null | undefined;
3825
+ }>;
3826
+ access_token: z.ZodString;
3827
+ refresh_token: z.ZodString;
3828
+ user_details_token: z.ZodString;
3829
+ }, "strip", z.ZodTypeAny, {
3830
+ refresh_token: string;
3831
+ frontend_session: {
3832
+ user: {
3833
+ email: string;
3834
+ userId: string;
3835
+ username: string;
3836
+ email_verified: boolean;
3837
+ user_type: string;
3838
+ first_name?: string | null | undefined;
3839
+ last_name?: string | null | undefined;
3840
+ avatar_url?: string | null | undefined;
3841
+ consents_complete?: boolean | undefined;
3842
+ subscriptions?: {
3843
+ subscription_id: string;
3844
+ subscription_created: string;
3845
+ subscription_current_period_start: string;
3846
+ subscription_current_period_end: string;
3847
+ price_amount: number | null;
3848
+ subscription_status?: string | null | undefined;
3849
+ subscription_cancel_at?: string | null | undefined;
3850
+ subscription_canceled_at?: string | null | undefined;
3851
+ product_name?: string | null | undefined;
3852
+ price_currency?: string | null | undefined;
3853
+ }[] | null | undefined;
3854
+ };
3855
+ status: string;
3856
+ created_at: string;
3857
+ expires_at: string;
3858
+ user_agent?: string | null | undefined;
3859
+ ip_address?: string | null | undefined;
3860
+ };
3861
+ access_token: string;
3862
+ user_details_token: string;
3863
+ }, {
3864
+ refresh_token: string;
3865
+ frontend_session: {
3866
+ user: {
3867
+ email: string;
3868
+ userId: string;
3869
+ username: string;
3870
+ email_verified: boolean;
3871
+ user_type: string;
3872
+ first_name?: string | null | undefined;
3873
+ last_name?: string | null | undefined;
3874
+ avatar_url?: string | null | undefined;
3875
+ consents_complete?: boolean | undefined;
3876
+ subscriptions?: {
3877
+ subscription_id: string;
3878
+ subscription_created: string;
3879
+ subscription_current_period_start: string;
3880
+ subscription_current_period_end: string;
3881
+ price_amount: number | null;
3882
+ subscription_status?: string | null | undefined;
3883
+ subscription_cancel_at?: string | null | undefined;
3884
+ subscription_canceled_at?: string | null | undefined;
3885
+ product_name?: string | null | undefined;
3886
+ price_currency?: string | null | undefined;
3887
+ }[] | null | undefined;
3888
+ };
3889
+ status: string;
3890
+ created_at: string;
3891
+ expires_at: string;
3892
+ user_agent?: string | null | undefined;
3893
+ ip_address?: string | null | undefined;
3894
+ };
3895
+ access_token: string;
3896
+ user_details_token: string;
3897
+ }>;
3898
+ }, "strip", z.ZodTypeAny, {
3899
+ created: true;
3900
+ session: {
3901
+ refresh_token: string;
3902
+ frontend_session: {
3903
+ user: {
3904
+ email: string;
3905
+ userId: string;
3906
+ username: string;
3907
+ email_verified: boolean;
3908
+ user_type: string;
3909
+ first_name?: string | null | undefined;
3910
+ last_name?: string | null | undefined;
3911
+ avatar_url?: string | null | undefined;
3912
+ consents_complete?: boolean | undefined;
3913
+ subscriptions?: {
3914
+ subscription_id: string;
3915
+ subscription_created: string;
3916
+ subscription_current_period_start: string;
3917
+ subscription_current_period_end: string;
3918
+ price_amount: number | null;
3919
+ subscription_status?: string | null | undefined;
3920
+ subscription_cancel_at?: string | null | undefined;
3921
+ subscription_canceled_at?: string | null | undefined;
3922
+ product_name?: string | null | undefined;
3923
+ price_currency?: string | null | undefined;
3924
+ }[] | null | undefined;
3925
+ };
3926
+ status: string;
3927
+ created_at: string;
3928
+ expires_at: string;
3929
+ user_agent?: string | null | undefined;
3930
+ ip_address?: string | null | undefined;
3931
+ };
3932
+ access_token: string;
3933
+ user_details_token: string;
3934
+ };
3935
+ }, {
3936
+ created: true;
3937
+ session: {
3938
+ refresh_token: string;
3939
+ frontend_session: {
3940
+ user: {
3941
+ email: string;
3942
+ userId: string;
3943
+ username: string;
3944
+ email_verified: boolean;
3945
+ user_type: string;
3946
+ first_name?: string | null | undefined;
3947
+ last_name?: string | null | undefined;
3948
+ avatar_url?: string | null | undefined;
3949
+ consents_complete?: boolean | undefined;
3950
+ subscriptions?: {
3951
+ subscription_id: string;
3952
+ subscription_created: string;
3953
+ subscription_current_period_start: string;
3954
+ subscription_current_period_end: string;
3955
+ price_amount: number | null;
3956
+ subscription_status?: string | null | undefined;
3957
+ subscription_cancel_at?: string | null | undefined;
3958
+ subscription_canceled_at?: string | null | undefined;
3959
+ product_name?: string | null | undefined;
3960
+ price_currency?: string | null | undefined;
3961
+ }[] | null | undefined;
3962
+ };
3963
+ status: string;
3964
+ created_at: string;
3965
+ expires_at: string;
3966
+ user_agent?: string | null | undefined;
3967
+ ip_address?: string | null | undefined;
3968
+ };
3969
+ access_token: string;
3970
+ user_details_token: string;
3971
+ };
3972
+ }>;
3973
+ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [z.ZodObject<{
3974
+ created: z.ZodLiteral<false>;
3975
+ signup_consent_token: z.ZodString;
3976
+ consents: z.ZodArray<z.ZodObject<{
3977
+ type: z.ZodString;
3978
+ required: z.ZodBoolean;
3979
+ url: z.ZodString;
3980
+ label: z.ZodString;
3981
+ version: z.ZodString;
3982
+ effective_at: z.ZodString;
3983
+ content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3984
+ }, "strip", z.ZodTypeAny, {
3985
+ type: string;
3986
+ required: boolean;
3987
+ url: string;
3988
+ label: string;
3989
+ version: string;
3990
+ effective_at: string;
3991
+ content?: string | null | undefined;
3992
+ }, {
3993
+ type: string;
3994
+ required: boolean;
3995
+ url: string;
3996
+ label: string;
3997
+ version: string;
3998
+ effective_at: string;
3999
+ content?: string | null | undefined;
4000
+ }>, "many">;
4001
+ }, "strip", z.ZodTypeAny, {
4002
+ created: false;
4003
+ signup_consent_token: string;
4004
+ consents: {
4005
+ type: string;
4006
+ required: boolean;
4007
+ url: string;
4008
+ label: string;
4009
+ version: string;
4010
+ effective_at: string;
4011
+ content?: string | null | undefined;
4012
+ }[];
4013
+ }, {
4014
+ created: false;
4015
+ signup_consent_token: string;
4016
+ consents: {
4017
+ type: string;
4018
+ required: boolean;
4019
+ url: string;
4020
+ label: string;
4021
+ version: string;
4022
+ effective_at: string;
4023
+ content?: string | null | undefined;
4024
+ }[];
4025
+ }>, z.ZodObject<{
4026
+ created: z.ZodLiteral<true>;
4027
+ session: z.ZodObject<{
4028
+ frontend_session: z.ZodObject<{
4029
+ created_at: z.ZodString;
4030
+ expires_at: z.ZodString;
4031
+ status: z.ZodString;
4032
+ user_agent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4033
+ ip_address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4034
+ user: z.ZodObject<{
4035
+ userId: z.ZodString;
4036
+ email: z.ZodString;
4037
+ username: z.ZodString;
4038
+ email_verified: z.ZodBoolean;
4039
+ user_type: z.ZodString;
4040
+ first_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4041
+ last_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4042
+ avatar_url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4043
+ consents_complete: z.ZodOptional<z.ZodBoolean>;
4044
+ subscriptions: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
4045
+ subscription_id: z.ZodString;
4046
+ subscription_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4047
+ subscription_created: z.ZodString;
4048
+ subscription_current_period_start: z.ZodString;
4049
+ subscription_current_period_end: z.ZodString;
4050
+ subscription_cancel_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4051
+ subscription_canceled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4052
+ product_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4053
+ price_amount: z.ZodNullable<z.ZodNumber>;
4054
+ price_currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
4055
+ }, "strip", z.ZodTypeAny, {
4056
+ subscription_id: string;
4057
+ subscription_created: string;
4058
+ subscription_current_period_start: string;
4059
+ subscription_current_period_end: string;
4060
+ price_amount: number | null;
4061
+ subscription_status?: string | null | undefined;
4062
+ subscription_cancel_at?: string | null | undefined;
4063
+ subscription_canceled_at?: string | null | undefined;
4064
+ product_name?: string | null | undefined;
4065
+ price_currency?: string | null | undefined;
4066
+ }, {
4067
+ subscription_id: string;
4068
+ subscription_created: string;
4069
+ subscription_current_period_start: string;
4070
+ subscription_current_period_end: string;
4071
+ price_amount: number | null;
4072
+ subscription_status?: string | null | undefined;
4073
+ subscription_cancel_at?: string | null | undefined;
4074
+ subscription_canceled_at?: string | null | undefined;
4075
+ product_name?: string | null | undefined;
4076
+ price_currency?: string | null | undefined;
4077
+ }>, "many">>>;
4078
+ }, "strip", z.ZodTypeAny, {
4079
+ email: string;
4080
+ userId: string;
4081
+ username: string;
4082
+ email_verified: boolean;
4083
+ user_type: string;
4084
+ first_name?: string | null | undefined;
4085
+ last_name?: string | null | undefined;
4086
+ avatar_url?: string | null | undefined;
4087
+ consents_complete?: boolean | undefined;
4088
+ subscriptions?: {
4089
+ subscription_id: string;
4090
+ subscription_created: string;
4091
+ subscription_current_period_start: string;
4092
+ subscription_current_period_end: string;
4093
+ price_amount: number | null;
4094
+ subscription_status?: string | null | undefined;
4095
+ subscription_cancel_at?: string | null | undefined;
4096
+ subscription_canceled_at?: string | null | undefined;
4097
+ product_name?: string | null | undefined;
4098
+ price_currency?: string | null | undefined;
4099
+ }[] | null | undefined;
4100
+ }, {
4101
+ email: string;
4102
+ userId: string;
4103
+ username: string;
4104
+ email_verified: boolean;
4105
+ user_type: string;
4106
+ first_name?: string | null | undefined;
4107
+ last_name?: string | null | undefined;
4108
+ avatar_url?: string | null | undefined;
4109
+ consents_complete?: boolean | undefined;
4110
+ subscriptions?: {
4111
+ subscription_id: string;
4112
+ subscription_created: string;
4113
+ subscription_current_period_start: string;
4114
+ subscription_current_period_end: string;
4115
+ price_amount: number | null;
4116
+ subscription_status?: string | null | undefined;
4117
+ subscription_cancel_at?: string | null | undefined;
4118
+ subscription_canceled_at?: string | null | undefined;
4119
+ product_name?: string | null | undefined;
4120
+ price_currency?: string | null | undefined;
4121
+ }[] | null | undefined;
4122
+ }>;
4123
+ }, "strip", z.ZodTypeAny, {
4124
+ user: {
4125
+ email: string;
4126
+ userId: string;
4127
+ username: string;
4128
+ email_verified: boolean;
4129
+ user_type: string;
4130
+ first_name?: string | null | undefined;
4131
+ last_name?: string | null | undefined;
4132
+ avatar_url?: string | null | undefined;
4133
+ consents_complete?: boolean | undefined;
4134
+ subscriptions?: {
4135
+ subscription_id: string;
4136
+ subscription_created: string;
4137
+ subscription_current_period_start: string;
4138
+ subscription_current_period_end: string;
4139
+ price_amount: number | null;
4140
+ subscription_status?: string | null | undefined;
4141
+ subscription_cancel_at?: string | null | undefined;
4142
+ subscription_canceled_at?: string | null | undefined;
4143
+ product_name?: string | null | undefined;
4144
+ price_currency?: string | null | undefined;
4145
+ }[] | null | undefined;
4146
+ };
4147
+ status: string;
4148
+ created_at: string;
4149
+ expires_at: string;
4150
+ user_agent?: string | null | undefined;
4151
+ ip_address?: string | null | undefined;
4152
+ }, {
4153
+ user: {
4154
+ email: string;
4155
+ userId: string;
4156
+ username: string;
4157
+ email_verified: boolean;
4158
+ user_type: string;
4159
+ first_name?: string | null | undefined;
4160
+ last_name?: string | null | undefined;
4161
+ avatar_url?: string | null | undefined;
4162
+ consents_complete?: boolean | undefined;
4163
+ subscriptions?: {
4164
+ subscription_id: string;
4165
+ subscription_created: string;
4166
+ subscription_current_period_start: string;
4167
+ subscription_current_period_end: string;
4168
+ price_amount: number | null;
4169
+ subscription_status?: string | null | undefined;
4170
+ subscription_cancel_at?: string | null | undefined;
4171
+ subscription_canceled_at?: string | null | undefined;
4172
+ product_name?: string | null | undefined;
4173
+ price_currency?: string | null | undefined;
4174
+ }[] | null | undefined;
4175
+ };
4176
+ status: string;
4177
+ created_at: string;
4178
+ expires_at: string;
4179
+ user_agent?: string | null | undefined;
4180
+ ip_address?: string | null | undefined;
4181
+ }>;
4182
+ access_token: z.ZodString;
4183
+ refresh_token: z.ZodString;
4184
+ user_details_token: z.ZodString;
4185
+ }, "strip", z.ZodTypeAny, {
4186
+ refresh_token: string;
4187
+ frontend_session: {
4188
+ user: {
4189
+ email: string;
4190
+ userId: string;
4191
+ username: string;
4192
+ email_verified: boolean;
4193
+ user_type: string;
4194
+ first_name?: string | null | undefined;
4195
+ last_name?: string | null | undefined;
4196
+ avatar_url?: string | null | undefined;
4197
+ consents_complete?: boolean | undefined;
4198
+ subscriptions?: {
4199
+ subscription_id: string;
4200
+ subscription_created: string;
4201
+ subscription_current_period_start: string;
4202
+ subscription_current_period_end: string;
4203
+ price_amount: number | null;
4204
+ subscription_status?: string | null | undefined;
4205
+ subscription_cancel_at?: string | null | undefined;
4206
+ subscription_canceled_at?: string | null | undefined;
4207
+ product_name?: string | null | undefined;
4208
+ price_currency?: string | null | undefined;
4209
+ }[] | null | undefined;
4210
+ };
4211
+ status: string;
4212
+ created_at: string;
4213
+ expires_at: string;
4214
+ user_agent?: string | null | undefined;
4215
+ ip_address?: string | null | undefined;
4216
+ };
4217
+ access_token: string;
4218
+ user_details_token: string;
4219
+ }, {
4220
+ refresh_token: string;
4221
+ frontend_session: {
4222
+ user: {
4223
+ email: string;
4224
+ userId: string;
4225
+ username: string;
4226
+ email_verified: boolean;
4227
+ user_type: string;
4228
+ first_name?: string | null | undefined;
4229
+ last_name?: string | null | undefined;
4230
+ avatar_url?: string | null | undefined;
4231
+ consents_complete?: boolean | undefined;
4232
+ subscriptions?: {
4233
+ subscription_id: string;
4234
+ subscription_created: string;
4235
+ subscription_current_period_start: string;
4236
+ subscription_current_period_end: string;
4237
+ price_amount: number | null;
4238
+ subscription_status?: string | null | undefined;
4239
+ subscription_cancel_at?: string | null | undefined;
4240
+ subscription_canceled_at?: string | null | undefined;
4241
+ product_name?: string | null | undefined;
4242
+ price_currency?: string | null | undefined;
4243
+ }[] | null | undefined;
4244
+ };
4245
+ status: string;
4246
+ created_at: string;
4247
+ expires_at: string;
4248
+ user_agent?: string | null | undefined;
4249
+ ip_address?: string | null | undefined;
4250
+ };
4251
+ access_token: string;
4252
+ user_details_token: string;
4253
+ }>;
4254
+ }, "strip", z.ZodTypeAny, {
4255
+ created: true;
4256
+ session: {
4257
+ refresh_token: string;
4258
+ frontend_session: {
4259
+ user: {
4260
+ email: string;
4261
+ userId: string;
4262
+ username: string;
4263
+ email_verified: boolean;
4264
+ user_type: string;
4265
+ first_name?: string | null | undefined;
4266
+ last_name?: string | null | undefined;
4267
+ avatar_url?: string | null | undefined;
4268
+ consents_complete?: boolean | undefined;
4269
+ subscriptions?: {
4270
+ subscription_id: string;
4271
+ subscription_created: string;
4272
+ subscription_current_period_start: string;
4273
+ subscription_current_period_end: string;
4274
+ price_amount: number | null;
4275
+ subscription_status?: string | null | undefined;
4276
+ subscription_cancel_at?: string | null | undefined;
4277
+ subscription_canceled_at?: string | null | undefined;
4278
+ product_name?: string | null | undefined;
4279
+ price_currency?: string | null | undefined;
4280
+ }[] | null | undefined;
4281
+ };
4282
+ status: string;
4283
+ created_at: string;
4284
+ expires_at: string;
4285
+ user_agent?: string | null | undefined;
4286
+ ip_address?: string | null | undefined;
4287
+ };
4288
+ access_token: string;
4289
+ user_details_token: string;
4290
+ };
4291
+ }, {
4292
+ created: true;
4293
+ session: {
4294
+ refresh_token: string;
4295
+ frontend_session: {
4296
+ user: {
4297
+ email: string;
4298
+ userId: string;
4299
+ username: string;
4300
+ email_verified: boolean;
4301
+ user_type: string;
4302
+ first_name?: string | null | undefined;
4303
+ last_name?: string | null | undefined;
4304
+ avatar_url?: string | null | undefined;
4305
+ consents_complete?: boolean | undefined;
4306
+ subscriptions?: {
4307
+ subscription_id: string;
4308
+ subscription_created: string;
4309
+ subscription_current_period_start: string;
4310
+ subscription_current_period_end: string;
4311
+ price_amount: number | null;
4312
+ subscription_status?: string | null | undefined;
4313
+ subscription_cancel_at?: string | null | undefined;
4314
+ subscription_canceled_at?: string | null | undefined;
4315
+ product_name?: string | null | undefined;
4316
+ price_currency?: string | null | undefined;
4317
+ }[] | null | undefined;
4318
+ };
4319
+ status: string;
4320
+ created_at: string;
4321
+ expires_at: string;
4322
+ user_agent?: string | null | undefined;
4323
+ ip_address?: string | null | undefined;
4324
+ };
4325
+ access_token: string;
4326
+ user_details_token: string;
4327
+ };
4328
+ }>]>;
4329
+ type SignupInitiateResponseDto = z.infer<typeof signupInitiateResponseSchema>;
4330
+ //#endregion
4331
+ //#region src/validation/signup_complete_zod.d.ts
4332
+ /** Input for signupComplete - acceptances only. Token is in Authorization: Bearer header. */
4333
+ declare const signupCompleteSchema: z.ZodObject<{
4334
+ acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
4335
+ }, "strip", z.ZodTypeAny, {
4336
+ acceptances: Record<string, boolean>;
4337
+ }, {
4338
+ acceptances?: Record<string, boolean> | undefined;
4339
+ }>;
4340
+ type SignupCompleteInputDto = z.infer<typeof signupCompleteSchema>;
4341
+ //#endregion
3580
4342
  //#region src/validation/record_subscriber/record_subscriber_create_zod.d.ts
3581
4343
  declare const RecordSubscriberCreateSchema: z.ZodObject<{
3582
4344
  record_type: z.ZodEnum<["app_setting", "attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff", "user_consent"]>;
@@ -3872,8 +4634,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3872
4634
  user_id_display_name?: string | null | undefined;
3873
4635
  }>>>;
3874
4636
  }, "strip", z.ZodTypeAny, {
3875
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
3876
4637
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4638
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
3877
4639
  id: string;
3878
4640
  description: string;
3879
4641
  title: string;
@@ -3887,10 +4649,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3887
4649
  created_by_display_name?: string | null | undefined;
3888
4650
  display_id?: string | null | undefined;
3889
4651
  credit_value?: string | null | undefined;
3890
- display_id_prefix?: string | null | undefined;
3891
4652
  start_at?: string | null | undefined;
3892
4653
  target_at?: string | null | undefined;
3893
4654
  completed_at?: string | null | undefined;
4655
+ display_id_prefix?: string | null | undefined;
3894
4656
  locked_approval_at?: string | null | undefined;
3895
4657
  my_subscription?: {
3896
4658
  created_at: string;
@@ -3904,8 +4666,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3904
4666
  user_id_display_name?: string | null | undefined;
3905
4667
  } | null | undefined;
3906
4668
  }, {
3907
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
3908
4669
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4670
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
3909
4671
  id: string;
3910
4672
  description: string;
3911
4673
  title: string;
@@ -3919,10 +4681,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3919
4681
  created_by_display_name?: string | null | undefined;
3920
4682
  display_id?: string | null | undefined;
3921
4683
  credit_value?: string | null | undefined;
3922
- display_id_prefix?: string | null | undefined;
3923
4684
  start_at?: string | null | undefined;
3924
4685
  target_at?: string | null | undefined;
3925
4686
  completed_at?: string | null | undefined;
4687
+ display_id_prefix?: string | null | undefined;
3926
4688
  locked_approval_at?: string | null | undefined;
3927
4689
  my_subscription?: {
3928
4690
  created_at: string;
@@ -3994,8 +4756,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
3994
4756
  user_id_display_name?: string | null | undefined;
3995
4757
  }>>>;
3996
4758
  }, "strip", z.ZodTypeAny, {
3997
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
3998
4759
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4760
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
3999
4761
  id: string;
4000
4762
  description: string;
4001
4763
  title: string;
@@ -4009,10 +4771,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4009
4771
  created_by_display_name?: string | null | undefined;
4010
4772
  display_id?: string | null | undefined;
4011
4773
  credit_value?: string | null | undefined;
4012
- display_id_prefix?: string | null | undefined;
4013
4774
  start_at?: string | null | undefined;
4014
4775
  target_at?: string | null | undefined;
4015
4776
  completed_at?: string | null | undefined;
4777
+ display_id_prefix?: string | null | undefined;
4016
4778
  locked_approval_at?: string | null | undefined;
4017
4779
  my_subscription?: {
4018
4780
  created_at: string;
@@ -4026,8 +4788,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4026
4788
  user_id_display_name?: string | null | undefined;
4027
4789
  } | null | undefined;
4028
4790
  }, {
4029
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4030
4791
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4792
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4031
4793
  id: string;
4032
4794
  description: string;
4033
4795
  title: string;
@@ -4041,10 +4803,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4041
4803
  created_by_display_name?: string | null | undefined;
4042
4804
  display_id?: string | null | undefined;
4043
4805
  credit_value?: string | null | undefined;
4044
- display_id_prefix?: string | null | undefined;
4045
4806
  start_at?: string | null | undefined;
4046
4807
  target_at?: string | null | undefined;
4047
4808
  completed_at?: string | null | undefined;
4809
+ display_id_prefix?: string | null | undefined;
4048
4810
  locked_approval_at?: string | null | undefined;
4049
4811
  my_subscription?: {
4050
4812
  created_at: string;
@@ -4082,8 +4844,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4082
4844
  }>;
4083
4845
  }, "strip", z.ZodTypeAny, {
4084
4846
  items: {
4085
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4086
4847
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4848
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4087
4849
  id: string;
4088
4850
  description: string;
4089
4851
  title: string;
@@ -4097,10 +4859,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4097
4859
  created_by_display_name?: string | null | undefined;
4098
4860
  display_id?: string | null | undefined;
4099
4861
  credit_value?: string | null | undefined;
4100
- display_id_prefix?: string | null | undefined;
4101
4862
  start_at?: string | null | undefined;
4102
4863
  target_at?: string | null | undefined;
4103
4864
  completed_at?: string | null | undefined;
4865
+ display_id_prefix?: string | null | undefined;
4104
4866
  locked_approval_at?: string | null | undefined;
4105
4867
  my_subscription?: {
4106
4868
  created_at: string;
@@ -4124,8 +4886,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4124
4886
  };
4125
4887
  }, {
4126
4888
  items: {
4127
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4128
4889
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4890
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4129
4891
  id: string;
4130
4892
  description: string;
4131
4893
  title: string;
@@ -4139,10 +4901,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4139
4901
  created_by_display_name?: string | null | undefined;
4140
4902
  display_id?: string | null | undefined;
4141
4903
  credit_value?: string | null | undefined;
4142
- display_id_prefix?: string | null | undefined;
4143
4904
  start_at?: string | null | undefined;
4144
4905
  target_at?: string | null | undefined;
4145
4906
  completed_at?: string | null | undefined;
4907
+ display_id_prefix?: string | null | undefined;
4146
4908
  locked_approval_at?: string | null | undefined;
4147
4909
  my_subscription?: {
4148
4910
  created_at: string;
@@ -4861,6 +5623,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
4861
5623
  searchableFields: string[];
4862
5624
  }>>;
4863
5625
  }, "strip", z.ZodTypeAny, {
5626
+ type?: {
5627
+ operator: "eq" | "ne" | "in" | "notIn";
5628
+ value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5629
+ values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5630
+ caseSensitive?: boolean | undefined;
5631
+ } | undefined;
5632
+ status?: {
5633
+ operator: "eq" | "ne" | "in" | "notIn";
5634
+ value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5635
+ values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5636
+ caseSensitive?: boolean | undefined;
5637
+ } | undefined;
5638
+ first?: number | undefined;
5639
+ after?: string | undefined;
5640
+ sortBy?: string | undefined;
5641
+ sortDirection?: "asc" | "desc" | undefined;
5642
+ paginationToken?: string | undefined;
4864
5643
  created_at?: {
4865
5644
  operator: "isEmpty" | "isNotEmpty";
4866
5645
  value?: any;
@@ -4877,23 +5656,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
4877
5656
  values?: any[] | undefined;
4878
5657
  caseSensitive?: boolean | undefined;
4879
5658
  } | undefined;
4880
- status?: {
4881
- operator: "eq" | "ne" | "in" | "notIn";
4882
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
4883
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
4884
- caseSensitive?: boolean | undefined;
4885
- } | undefined;
4886
- type?: {
4887
- operator: "eq" | "ne" | "in" | "notIn";
4888
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
4889
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
4890
- caseSensitive?: boolean | undefined;
4891
- } | undefined;
4892
- first?: number | undefined;
4893
- after?: string | undefined;
4894
- sortBy?: string | undefined;
4895
- sortDirection?: "asc" | "desc" | undefined;
4896
- paginationToken?: string | undefined;
4897
5659
  created_by?: {
4898
5660
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
4899
5661
  value?: string | undefined;
@@ -4999,6 +5761,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
4999
5761
  caseSensitive?: boolean | undefined;
5000
5762
  } | undefined;
5001
5763
  }, {
5764
+ type?: {
5765
+ operator: "eq" | "ne" | "in" | "notIn";
5766
+ value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5767
+ values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5768
+ caseSensitive?: boolean | undefined;
5769
+ } | undefined;
5770
+ status?: {
5771
+ operator: "eq" | "ne" | "in" | "notIn";
5772
+ value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5773
+ values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5774
+ caseSensitive?: boolean | undefined;
5775
+ } | undefined;
5776
+ first?: number | undefined;
5777
+ after?: string | undefined;
5778
+ sortBy?: string | undefined;
5779
+ sortDirection?: "asc" | "desc" | undefined;
5780
+ paginationToken?: string | undefined;
5002
5781
  created_at?: {
5003
5782
  operator: "isEmpty" | "isNotEmpty";
5004
5783
  value?: any;
@@ -5013,25 +5792,8 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5013
5792
  value: string;
5014
5793
  operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
5015
5794
  values?: any[] | undefined;
5016
- caseSensitive?: boolean | undefined;
5017
- } | undefined;
5018
- status?: {
5019
- operator: "eq" | "ne" | "in" | "notIn";
5020
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5021
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5022
- caseSensitive?: boolean | undefined;
5023
- } | undefined;
5024
- type?: {
5025
- operator: "eq" | "ne" | "in" | "notIn";
5026
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5027
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5028
- caseSensitive?: boolean | undefined;
5029
- } | undefined;
5030
- first?: number | undefined;
5031
- after?: string | undefined;
5032
- sortBy?: string | undefined;
5033
- sortDirection?: "asc" | "desc" | undefined;
5034
- paginationToken?: string | undefined;
5795
+ caseSensitive?: boolean | undefined;
5796
+ } | undefined;
5035
5797
  created_by?: {
5036
5798
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
5037
5799
  value?: string | undefined;
@@ -5174,8 +5936,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5174
5936
  archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5175
5937
  archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5176
5938
  }, "strip", z.ZodTypeAny, {
5177
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5178
5939
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5940
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5179
5941
  id: string;
5180
5942
  description: string;
5181
5943
  title: string;
@@ -5194,17 +5956,17 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5194
5956
  display_id?: string | null | undefined;
5195
5957
  credit_value?: string | null | undefined;
5196
5958
  delivered_value?: string | null | undefined;
5197
- display_id_prefix?: string | null | undefined;
5198
5959
  start_at?: string | null | undefined;
5199
5960
  target_at?: string | null | undefined;
5200
5961
  completed_at?: string | null | undefined;
5962
+ display_id_prefix?: string | null | undefined;
5201
5963
  locked_approval_at?: string | null | undefined;
5202
5964
  assigned_to?: string | null | undefined;
5203
5965
  assigned_to_display_name?: string | null | undefined;
5204
5966
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5205
5967
  }, {
5206
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5207
5968
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5969
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5208
5970
  id: string;
5209
5971
  description: string;
5210
5972
  title: string;
@@ -5223,10 +5985,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5223
5985
  display_id?: string | null | undefined;
5224
5986
  credit_value?: string | null | undefined;
5225
5987
  delivered_value?: string | null | undefined;
5226
- display_id_prefix?: string | null | undefined;
5227
5988
  start_at?: string | null | undefined;
5228
5989
  target_at?: string | null | undefined;
5229
5990
  completed_at?: string | null | undefined;
5991
+ display_id_prefix?: string | null | undefined;
5230
5992
  locked_approval_at?: string | null | undefined;
5231
5993
  assigned_to?: string | null | undefined;
5232
5994
  assigned_to_display_name?: string | null | undefined;
@@ -5267,8 +6029,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5267
6029
  archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5268
6030
  archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5269
6031
  }, "strip", z.ZodTypeAny, {
5270
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5271
6032
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
6033
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5272
6034
  id: string;
5273
6035
  description: string;
5274
6036
  title: string;
@@ -5287,17 +6049,17 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5287
6049
  display_id?: string | null | undefined;
5288
6050
  credit_value?: string | null | undefined;
5289
6051
  delivered_value?: string | null | undefined;
5290
- display_id_prefix?: string | null | undefined;
5291
6052
  start_at?: string | null | undefined;
5292
6053
  target_at?: string | null | undefined;
5293
6054
  completed_at?: string | null | undefined;
6055
+ display_id_prefix?: string | null | undefined;
5294
6056
  locked_approval_at?: string | null | undefined;
5295
6057
  assigned_to?: string | null | undefined;
5296
6058
  assigned_to_display_name?: string | null | undefined;
5297
6059
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5298
6060
  }, {
5299
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5300
6061
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
6062
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5301
6063
  id: string;
5302
6064
  description: string;
5303
6065
  title: string;
@@ -5316,10 +6078,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5316
6078
  display_id?: string | null | undefined;
5317
6079
  credit_value?: string | null | undefined;
5318
6080
  delivered_value?: string | null | undefined;
5319
- display_id_prefix?: string | null | undefined;
5320
6081
  start_at?: string | null | undefined;
5321
6082
  target_at?: string | null | undefined;
5322
6083
  completed_at?: string | null | undefined;
6084
+ display_id_prefix?: string | null | undefined;
5323
6085
  locked_approval_at?: string | null | undefined;
5324
6086
  assigned_to?: string | null | undefined;
5325
6087
  assigned_to_display_name?: string | null | undefined;
@@ -5349,8 +6111,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5349
6111
  }>;
5350
6112
  }, "strip", z.ZodTypeAny, {
5351
6113
  items: {
5352
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5353
6114
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
6115
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5354
6116
  id: string;
5355
6117
  description: string;
5356
6118
  title: string;
@@ -5369,10 +6131,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5369
6131
  display_id?: string | null | undefined;
5370
6132
  credit_value?: string | null | undefined;
5371
6133
  delivered_value?: string | null | undefined;
5372
- display_id_prefix?: string | null | undefined;
5373
6134
  start_at?: string | null | undefined;
5374
6135
  target_at?: string | null | undefined;
5375
6136
  completed_at?: string | null | undefined;
6137
+ display_id_prefix?: string | null | undefined;
5376
6138
  locked_approval_at?: string | null | undefined;
5377
6139
  assigned_to?: string | null | undefined;
5378
6140
  assigned_to_display_name?: string | null | undefined;
@@ -5388,8 +6150,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5388
6150
  };
5389
6151
  }, {
5390
6152
  items: {
5391
- status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5392
6153
  type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
6154
+ status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5393
6155
  id: string;
5394
6156
  description: string;
5395
6157
  title: string;
@@ -5408,10 +6170,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5408
6170
  display_id?: string | null | undefined;
5409
6171
  credit_value?: string | null | undefined;
5410
6172
  delivered_value?: string | null | undefined;
5411
- display_id_prefix?: string | null | undefined;
5412
6173
  start_at?: string | null | undefined;
5413
6174
  target_at?: string | null | undefined;
5414
6175
  completed_at?: string | null | undefined;
6176
+ display_id_prefix?: string | null | undefined;
5415
6177
  locked_approval_at?: string | null | undefined;
5416
6178
  assigned_to?: string | null | undefined;
5417
6179
  assigned_to_display_name?: string | null | undefined;
@@ -6224,6 +6986,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6224
6986
  searchableFields: string[];
6225
6987
  }>>;
6226
6988
  }, "strip", z.ZodTypeAny, {
6989
+ type?: {
6990
+ operator: "eq" | "ne" | "in" | "notIn";
6991
+ value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6992
+ values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6993
+ caseSensitive?: boolean | undefined;
6994
+ } | undefined;
6995
+ status?: {
6996
+ operator: "eq" | "ne" | "in" | "notIn";
6997
+ value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6998
+ values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6999
+ caseSensitive?: boolean | undefined;
7000
+ } | undefined;
7001
+ first?: number | undefined;
7002
+ after?: string | undefined;
7003
+ sortBy?: string | undefined;
7004
+ sortDirection?: "asc" | "desc" | undefined;
7005
+ paginationToken?: string | undefined;
6227
7006
  created_at?: {
6228
7007
  operator: "isEmpty" | "isNotEmpty";
6229
7008
  value?: any;
@@ -6240,23 +7019,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6240
7019
  values?: any[] | undefined;
6241
7020
  caseSensitive?: boolean | undefined;
6242
7021
  } | undefined;
6243
- status?: {
6244
- operator: "eq" | "ne" | "in" | "notIn";
6245
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6246
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6247
- caseSensitive?: boolean | undefined;
6248
- } | undefined;
6249
- type?: {
6250
- operator: "eq" | "ne" | "in" | "notIn";
6251
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6252
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6253
- caseSensitive?: boolean | undefined;
6254
- } | undefined;
6255
- first?: number | undefined;
6256
- after?: string | undefined;
6257
- sortBy?: string | undefined;
6258
- sortDirection?: "asc" | "desc" | undefined;
6259
- paginationToken?: string | undefined;
6260
7022
  created_by?: {
6261
7023
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
6262
7024
  value?: string | undefined;
@@ -6380,6 +7142,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6380
7142
  caseSensitive?: boolean | undefined;
6381
7143
  } | undefined;
6382
7144
  }, {
7145
+ type?: {
7146
+ operator: "eq" | "ne" | "in" | "notIn";
7147
+ value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
7148
+ values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
7149
+ caseSensitive?: boolean | undefined;
7150
+ } | undefined;
7151
+ status?: {
7152
+ operator: "eq" | "ne" | "in" | "notIn";
7153
+ value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
7154
+ values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
7155
+ caseSensitive?: boolean | undefined;
7156
+ } | undefined;
7157
+ first?: number | undefined;
7158
+ after?: string | undefined;
7159
+ sortBy?: string | undefined;
7160
+ sortDirection?: "asc" | "desc" | undefined;
7161
+ paginationToken?: string | undefined;
6383
7162
  created_at?: {
6384
7163
  operator: "isEmpty" | "isNotEmpty";
6385
7164
  value?: any;
@@ -6396,23 +7175,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6396
7175
  values?: any[] | undefined;
6397
7176
  caseSensitive?: boolean | undefined;
6398
7177
  } | undefined;
6399
- status?: {
6400
- operator: "eq" | "ne" | "in" | "notIn";
6401
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6402
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6403
- caseSensitive?: boolean | undefined;
6404
- } | undefined;
6405
- type?: {
6406
- operator: "eq" | "ne" | "in" | "notIn";
6407
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6408
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6409
- caseSensitive?: boolean | undefined;
6410
- } | undefined;
6411
- first?: number | undefined;
6412
- after?: string | undefined;
6413
- sortBy?: string | undefined;
6414
- sortDirection?: "asc" | "desc" | undefined;
6415
- paginationToken?: string | undefined;
6416
7178
  created_by?: {
6417
7179
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
6418
7180
  value?: string | undefined;
@@ -7302,6 +8064,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
7302
8064
  searchableFields: string[];
7303
8065
  }>>;
7304
8066
  }, "strip", z.ZodTypeAny, {
8067
+ first?: number | undefined;
8068
+ after?: string | undefined;
8069
+ sortBy?: string | undefined;
8070
+ sortDirection?: "asc" | "desc" | undefined;
8071
+ paginationToken?: string | undefined;
7305
8072
  created_at?: {
7306
8073
  operator: "isEmpty" | "isNotEmpty";
7307
8074
  value?: any;
@@ -7318,11 +8085,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
7318
8085
  values?: any[] | undefined;
7319
8086
  caseSensitive?: boolean | undefined;
7320
8087
  } | undefined;
7321
- first?: number | undefined;
7322
- after?: string | undefined;
7323
- sortBy?: string | undefined;
7324
- sortDirection?: "asc" | "desc" | undefined;
7325
- paginationToken?: string | undefined;
7326
8088
  search?: {
7327
8089
  query: string;
7328
8090
  searchableFields: string[];
@@ -7402,6 +8164,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
7402
8164
  caseSensitive?: boolean | undefined;
7403
8165
  } | undefined;
7404
8166
  }, {
8167
+ first?: number | undefined;
8168
+ after?: string | undefined;
8169
+ sortBy?: string | undefined;
8170
+ sortDirection?: "asc" | "desc" | undefined;
8171
+ paginationToken?: string | undefined;
7405
8172
  created_at?: {
7406
8173
  operator: "isEmpty" | "isNotEmpty";
7407
8174
  value?: any;
@@ -7418,11 +8185,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
7418
8185
  values?: any[] | undefined;
7419
8186
  caseSensitive?: boolean | undefined;
7420
8187
  } | undefined;
7421
- first?: number | undefined;
7422
- after?: string | undefined;
7423
- sortBy?: string | undefined;
7424
- sortDirection?: "asc" | "desc" | undefined;
7425
- paginationToken?: string | undefined;
7426
8188
  search?: {
7427
8189
  query: string;
7428
8190
  searchableFields: string[];
@@ -7529,14 +8291,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
7529
8291
  url?: string | null | undefined;
7530
8292
  unique_name?: string | null | undefined;
7531
8293
  legal_name?: string | null | undefined;
7532
- contact_name?: string | null | undefined;
7533
8294
  contact_email?: string | null | undefined;
8295
+ address_city?: string | null | undefined;
8296
+ address_zip?: string | null | undefined;
8297
+ contact_name?: string | null | undefined;
7534
8298
  contact_business_phone?: string | null | undefined;
7535
8299
  contact_mobile_phone?: string | null | undefined;
7536
8300
  contact_time_zone?: string | null | undefined;
7537
8301
  address_full?: string | null | undefined;
7538
- address_city?: string | null | undefined;
7539
- address_zip?: string | null | undefined;
7540
8302
  twitter_username?: string | null | undefined;
7541
8303
  logo?: string | null | undefined;
7542
8304
  email_sent_from?: string | null | undefined;
@@ -7547,14 +8309,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
7547
8309
  url?: string | null | undefined;
7548
8310
  unique_name?: string | null | undefined;
7549
8311
  legal_name?: string | null | undefined;
7550
- contact_name?: string | null | undefined;
7551
8312
  contact_email?: string | null | undefined;
8313
+ address_city?: string | null | undefined;
8314
+ address_zip?: string | null | undefined;
8315
+ contact_name?: string | null | undefined;
7552
8316
  contact_business_phone?: string | null | undefined;
7553
8317
  contact_mobile_phone?: string | null | undefined;
7554
8318
  contact_time_zone?: string | null | undefined;
7555
8319
  address_full?: string | null | undefined;
7556
- address_city?: string | null | undefined;
7557
- address_zip?: string | null | undefined;
7558
8320
  twitter_username?: string | null | undefined;
7559
8321
  logo?: string | null | undefined;
7560
8322
  email_sent_from?: string | null | undefined;
@@ -7584,14 +8346,14 @@ declare const TeamCreateSchema: z.ZodObject<{
7584
8346
  url?: string | null | undefined;
7585
8347
  unique_name?: string | null | undefined;
7586
8348
  legal_name?: string | null | undefined;
7587
- contact_name?: string | null | undefined;
7588
8349
  contact_email?: string | null | undefined;
8350
+ address_city?: string | null | undefined;
8351
+ address_zip?: string | null | undefined;
8352
+ contact_name?: string | null | undefined;
7589
8353
  contact_business_phone?: string | null | undefined;
7590
8354
  contact_mobile_phone?: string | null | undefined;
7591
8355
  contact_time_zone?: string | null | undefined;
7592
8356
  address_full?: string | null | undefined;
7593
- address_city?: string | null | undefined;
7594
- address_zip?: string | null | undefined;
7595
8357
  twitter_username?: string | null | undefined;
7596
8358
  logo?: string | null | undefined;
7597
8359
  email_sent_from?: string | null | undefined;
@@ -7602,14 +8364,14 @@ declare const TeamCreateSchema: z.ZodObject<{
7602
8364
  url?: string | null | undefined;
7603
8365
  unique_name?: string | null | undefined;
7604
8366
  legal_name?: string | null | undefined;
7605
- contact_name?: string | null | undefined;
7606
8367
  contact_email?: string | null | undefined;
8368
+ address_city?: string | null | undefined;
8369
+ address_zip?: string | null | undefined;
8370
+ contact_name?: string | null | undefined;
7607
8371
  contact_business_phone?: string | null | undefined;
7608
8372
  contact_mobile_phone?: string | null | undefined;
7609
8373
  contact_time_zone?: string | null | undefined;
7610
8374
  address_full?: string | null | undefined;
7611
- address_city?: string | null | undefined;
7612
- address_zip?: string | null | undefined;
7613
8375
  twitter_username?: string | null | undefined;
7614
8376
  logo?: string | null | undefined;
7615
8377
  email_sent_from?: string | null | undefined;
@@ -7643,14 +8405,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
7643
8405
  url?: string | null | undefined;
7644
8406
  unique_name?: string | null | undefined;
7645
8407
  legal_name?: string | null | undefined;
7646
- contact_name?: string | null | undefined;
7647
8408
  contact_email?: string | null | undefined;
8409
+ address_city?: string | null | undefined;
8410
+ address_zip?: string | null | undefined;
8411
+ contact_name?: string | null | undefined;
7648
8412
  contact_business_phone?: string | null | undefined;
7649
8413
  contact_mobile_phone?: string | null | undefined;
7650
8414
  contact_time_zone?: string | null | undefined;
7651
8415
  address_full?: string | null | undefined;
7652
- address_city?: string | null | undefined;
7653
- address_zip?: string | null | undefined;
7654
8416
  twitter_username?: string | null | undefined;
7655
8417
  logo?: string | null | undefined;
7656
8418
  email_sent_from?: string | null | undefined;
@@ -7662,14 +8424,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
7662
8424
  url?: string | null | undefined;
7663
8425
  unique_name?: string | null | undefined;
7664
8426
  legal_name?: string | null | undefined;
7665
- contact_name?: string | null | undefined;
7666
8427
  contact_email?: string | null | undefined;
8428
+ address_city?: string | null | undefined;
8429
+ address_zip?: string | null | undefined;
8430
+ contact_name?: string | null | undefined;
7667
8431
  contact_business_phone?: string | null | undefined;
7668
8432
  contact_mobile_phone?: string | null | undefined;
7669
8433
  contact_time_zone?: string | null | undefined;
7670
8434
  address_full?: string | null | undefined;
7671
- address_city?: string | null | undefined;
7672
- address_zip?: string | null | undefined;
7673
8435
  twitter_username?: string | null | undefined;
7674
8436
  logo?: string | null | undefined;
7675
8437
  email_sent_from?: string | null | undefined;
@@ -7726,14 +8488,14 @@ declare const TeamPageSchema: z.ZodObject<{
7726
8488
  updated_by_display_name?: string | null | undefined;
7727
8489
  unique_name?: string | null | undefined;
7728
8490
  legal_name?: string | null | undefined;
7729
- contact_name?: string | null | undefined;
7730
8491
  contact_email?: string | null | undefined;
8492
+ address_city?: string | null | undefined;
8493
+ address_zip?: string | null | undefined;
8494
+ contact_name?: string | null | undefined;
7731
8495
  contact_business_phone?: string | null | undefined;
7732
8496
  contact_mobile_phone?: string | null | undefined;
7733
8497
  contact_time_zone?: string | null | undefined;
7734
8498
  address_full?: string | null | undefined;
7735
- address_city?: string | null | undefined;
7736
- address_zip?: string | null | undefined;
7737
8499
  twitter_username?: string | null | undefined;
7738
8500
  logo?: string | null | undefined;
7739
8501
  email_sent_from?: string | null | undefined;
@@ -7755,14 +8517,14 @@ declare const TeamPageSchema: z.ZodObject<{
7755
8517
  updated_by_display_name?: string | null | undefined;
7756
8518
  unique_name?: string | null | undefined;
7757
8519
  legal_name?: string | null | undefined;
7758
- contact_name?: string | null | undefined;
7759
8520
  contact_email?: string | null | undefined;
8521
+ address_city?: string | null | undefined;
8522
+ address_zip?: string | null | undefined;
8523
+ contact_name?: string | null | undefined;
7760
8524
  contact_business_phone?: string | null | undefined;
7761
8525
  contact_mobile_phone?: string | null | undefined;
7762
8526
  contact_time_zone?: string | null | undefined;
7763
8527
  address_full?: string | null | undefined;
7764
- address_city?: string | null | undefined;
7765
- address_zip?: string | null | undefined;
7766
8528
  twitter_username?: string | null | undefined;
7767
8529
  logo?: string | null | undefined;
7768
8530
  email_sent_from?: string | null | undefined;
@@ -7808,14 +8570,14 @@ declare const TeamPageSchema: z.ZodObject<{
7808
8570
  updated_by_display_name?: string | null | undefined;
7809
8571
  unique_name?: string | null | undefined;
7810
8572
  legal_name?: string | null | undefined;
7811
- contact_name?: string | null | undefined;
7812
8573
  contact_email?: string | null | undefined;
8574
+ address_city?: string | null | undefined;
8575
+ address_zip?: string | null | undefined;
8576
+ contact_name?: string | null | undefined;
7813
8577
  contact_business_phone?: string | null | undefined;
7814
8578
  contact_mobile_phone?: string | null | undefined;
7815
8579
  contact_time_zone?: string | null | undefined;
7816
8580
  address_full?: string | null | undefined;
7817
- address_city?: string | null | undefined;
7818
- address_zip?: string | null | undefined;
7819
8581
  twitter_username?: string | null | undefined;
7820
8582
  logo?: string | null | undefined;
7821
8583
  email_sent_from?: string | null | undefined;
@@ -7847,14 +8609,14 @@ declare const TeamPageSchema: z.ZodObject<{
7847
8609
  updated_by_display_name?: string | null | undefined;
7848
8610
  unique_name?: string | null | undefined;
7849
8611
  legal_name?: string | null | undefined;
7850
- contact_name?: string | null | undefined;
7851
8612
  contact_email?: string | null | undefined;
8613
+ address_city?: string | null | undefined;
8614
+ address_zip?: string | null | undefined;
8615
+ contact_name?: string | null | undefined;
7852
8616
  contact_business_phone?: string | null | undefined;
7853
8617
  contact_mobile_phone?: string | null | undefined;
7854
8618
  contact_time_zone?: string | null | undefined;
7855
8619
  address_full?: string | null | undefined;
7856
- address_city?: string | null | undefined;
7857
- address_zip?: string | null | undefined;
7858
8620
  twitter_username?: string | null | undefined;
7859
8621
  logo?: string | null | undefined;
7860
8622
  email_sent_from?: string | null | undefined;
@@ -7919,14 +8681,14 @@ declare const TeamReadSchema: z.ZodObject<{
7919
8681
  updated_by_display_name?: string | null | undefined;
7920
8682
  unique_name?: string | null | undefined;
7921
8683
  legal_name?: string | null | undefined;
7922
- contact_name?: string | null | undefined;
7923
8684
  contact_email?: string | null | undefined;
8685
+ address_city?: string | null | undefined;
8686
+ address_zip?: string | null | undefined;
8687
+ contact_name?: string | null | undefined;
7924
8688
  contact_business_phone?: string | null | undefined;
7925
8689
  contact_mobile_phone?: string | null | undefined;
7926
8690
  contact_time_zone?: string | null | undefined;
7927
8691
  address_full?: string | null | undefined;
7928
- address_city?: string | null | undefined;
7929
- address_zip?: string | null | undefined;
7930
8692
  twitter_username?: string | null | undefined;
7931
8693
  logo?: string | null | undefined;
7932
8694
  email_sent_from?: string | null | undefined;
@@ -7948,14 +8710,14 @@ declare const TeamReadSchema: z.ZodObject<{
7948
8710
  updated_by_display_name?: string | null | undefined;
7949
8711
  unique_name?: string | null | undefined;
7950
8712
  legal_name?: string | null | undefined;
7951
- contact_name?: string | null | undefined;
7952
8713
  contact_email?: string | null | undefined;
8714
+ address_city?: string | null | undefined;
8715
+ address_zip?: string | null | undefined;
8716
+ contact_name?: string | null | undefined;
7953
8717
  contact_business_phone?: string | null | undefined;
7954
8718
  contact_mobile_phone?: string | null | undefined;
7955
8719
  contact_time_zone?: string | null | undefined;
7956
8720
  address_full?: string | null | undefined;
7957
- address_city?: string | null | undefined;
7958
- address_zip?: string | null | undefined;
7959
8721
  twitter_username?: string | null | undefined;
7960
8722
  logo?: string | null | undefined;
7961
8723
  email_sent_from?: string | null | undefined;
@@ -8015,14 +8777,14 @@ declare const TeamOptionSchema: z.ZodObject<{
8015
8777
  updated_by_display_name?: string | null | undefined;
8016
8778
  unique_name?: string | null | undefined;
8017
8779
  legal_name?: string | null | undefined;
8018
- contact_name?: string | null | undefined;
8019
8780
  contact_email?: string | null | undefined;
8781
+ address_city?: string | null | undefined;
8782
+ address_zip?: string | null | undefined;
8783
+ contact_name?: string | null | undefined;
8020
8784
  contact_business_phone?: string | null | undefined;
8021
8785
  contact_mobile_phone?: string | null | undefined;
8022
8786
  contact_time_zone?: string | null | undefined;
8023
8787
  address_full?: string | null | undefined;
8024
- address_city?: string | null | undefined;
8025
- address_zip?: string | null | undefined;
8026
8788
  twitter_username?: string | null | undefined;
8027
8789
  logo?: string | null | undefined;
8028
8790
  email_sent_from?: string | null | undefined;
@@ -8044,14 +8806,14 @@ declare const TeamOptionSchema: z.ZodObject<{
8044
8806
  updated_by_display_name?: string | null | undefined;
8045
8807
  unique_name?: string | null | undefined;
8046
8808
  legal_name?: string | null | undefined;
8047
- contact_name?: string | null | undefined;
8048
8809
  contact_email?: string | null | undefined;
8810
+ address_city?: string | null | undefined;
8811
+ address_zip?: string | null | undefined;
8812
+ contact_name?: string | null | undefined;
8049
8813
  contact_business_phone?: string | null | undefined;
8050
8814
  contact_mobile_phone?: string | null | undefined;
8051
8815
  contact_time_zone?: string | null | undefined;
8052
8816
  address_full?: string | null | undefined;
8053
- address_city?: string | null | undefined;
8054
- address_zip?: string | null | undefined;
8055
8817
  twitter_username?: string | null | undefined;
8056
8818
  logo?: string | null | undefined;
8057
8819
  email_sent_from?: string | null | undefined;
@@ -8109,14 +8871,14 @@ declare const UserTeamsSchema: z.ZodObject<{
8109
8871
  updated_by_display_name?: string | null | undefined;
8110
8872
  unique_name?: string | null | undefined;
8111
8873
  legal_name?: string | null | undefined;
8112
- contact_name?: string | null | undefined;
8113
8874
  contact_email?: string | null | undefined;
8875
+ address_city?: string | null | undefined;
8876
+ address_zip?: string | null | undefined;
8877
+ contact_name?: string | null | undefined;
8114
8878
  contact_business_phone?: string | null | undefined;
8115
8879
  contact_mobile_phone?: string | null | undefined;
8116
8880
  contact_time_zone?: string | null | undefined;
8117
8881
  address_full?: string | null | undefined;
8118
- address_city?: string | null | undefined;
8119
- address_zip?: string | null | undefined;
8120
8882
  twitter_username?: string | null | undefined;
8121
8883
  logo?: string | null | undefined;
8122
8884
  email_sent_from?: string | null | undefined;
@@ -8138,14 +8900,14 @@ declare const UserTeamsSchema: z.ZodObject<{
8138
8900
  updated_by_display_name?: string | null | undefined;
8139
8901
  unique_name?: string | null | undefined;
8140
8902
  legal_name?: string | null | undefined;
8141
- contact_name?: string | null | undefined;
8142
8903
  contact_email?: string | null | undefined;
8904
+ address_city?: string | null | undefined;
8905
+ address_zip?: string | null | undefined;
8906
+ contact_name?: string | null | undefined;
8143
8907
  contact_business_phone?: string | null | undefined;
8144
8908
  contact_mobile_phone?: string | null | undefined;
8145
8909
  contact_time_zone?: string | null | undefined;
8146
8910
  address_full?: string | null | undefined;
8147
- address_city?: string | null | undefined;
8148
- address_zip?: string | null | undefined;
8149
8911
  twitter_username?: string | null | undefined;
8150
8912
  logo?: string | null | undefined;
8151
8913
  email_sent_from?: string | null | undefined;
@@ -8169,14 +8931,14 @@ declare const UserTeamsSchema: z.ZodObject<{
8169
8931
  updated_by_display_name?: string | null | undefined;
8170
8932
  unique_name?: string | null | undefined;
8171
8933
  legal_name?: string | null | undefined;
8172
- contact_name?: string | null | undefined;
8173
8934
  contact_email?: string | null | undefined;
8935
+ address_city?: string | null | undefined;
8936
+ address_zip?: string | null | undefined;
8937
+ contact_name?: string | null | undefined;
8174
8938
  contact_business_phone?: string | null | undefined;
8175
8939
  contact_mobile_phone?: string | null | undefined;
8176
8940
  contact_time_zone?: string | null | undefined;
8177
8941
  address_full?: string | null | undefined;
8178
- address_city?: string | null | undefined;
8179
- address_zip?: string | null | undefined;
8180
8942
  twitter_username?: string | null | undefined;
8181
8943
  logo?: string | null | undefined;
8182
8944
  email_sent_from?: string | null | undefined;
@@ -8200,14 +8962,14 @@ declare const UserTeamsSchema: z.ZodObject<{
8200
8962
  updated_by_display_name?: string | null | undefined;
8201
8963
  unique_name?: string | null | undefined;
8202
8964
  legal_name?: string | null | undefined;
8203
- contact_name?: string | null | undefined;
8204
8965
  contact_email?: string | null | undefined;
8966
+ address_city?: string | null | undefined;
8967
+ address_zip?: string | null | undefined;
8968
+ contact_name?: string | null | undefined;
8205
8969
  contact_business_phone?: string | null | undefined;
8206
8970
  contact_mobile_phone?: string | null | undefined;
8207
8971
  contact_time_zone?: string | null | undefined;
8208
8972
  address_full?: string | null | undefined;
8209
- address_city?: string | null | undefined;
8210
- address_zip?: string | null | undefined;
8211
8973
  twitter_username?: string | null | undefined;
8212
8974
  logo?: string | null | undefined;
8213
8975
  email_sent_from?: string | null | undefined;
@@ -8859,6 +9621,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
8859
9621
  searchableFields: string[];
8860
9622
  }>>;
8861
9623
  }, "strip", z.ZodTypeAny, {
9624
+ first?: number | undefined;
9625
+ after?: string | undefined;
9626
+ sortBy?: string | undefined;
9627
+ sortDirection?: "asc" | "desc" | undefined;
9628
+ paginationToken?: string | undefined;
8862
9629
  created_at?: {
8863
9630
  operator: "isEmpty" | "isNotEmpty";
8864
9631
  value?: any;
@@ -8875,11 +9642,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
8875
9642
  values?: any[] | undefined;
8876
9643
  caseSensitive?: boolean | undefined;
8877
9644
  } | undefined;
8878
- first?: number | undefined;
8879
- after?: string | undefined;
8880
- sortBy?: string | undefined;
8881
- sortDirection?: "asc" | "desc" | undefined;
8882
- paginationToken?: string | undefined;
8883
9645
  search?: {
8884
9646
  query: string;
8885
9647
  searchableFields: string[];
@@ -8989,6 +9751,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
8989
9751
  caseSensitive?: boolean | undefined;
8990
9752
  } | undefined;
8991
9753
  }, {
9754
+ first?: number | undefined;
9755
+ after?: string | undefined;
9756
+ sortBy?: string | undefined;
9757
+ sortDirection?: "asc" | "desc" | undefined;
9758
+ paginationToken?: string | undefined;
8992
9759
  created_at?: {
8993
9760
  operator: "isEmpty" | "isNotEmpty";
8994
9761
  value?: any;
@@ -9005,11 +9772,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9005
9772
  values?: any[] | undefined;
9006
9773
  caseSensitive?: boolean | undefined;
9007
9774
  } | undefined;
9008
- first?: number | undefined;
9009
- after?: string | undefined;
9010
- sortBy?: string | undefined;
9011
- sortDirection?: "asc" | "desc" | undefined;
9012
- paginationToken?: string | undefined;
9013
9775
  search?: {
9014
9776
  query: string;
9015
9777
  searchableFields: string[];
@@ -9473,19 +10235,19 @@ declare const UserReadSchema: z.ZodObject<{
9473
10235
  updated_at: z.ZodNullable<z.ZodString>;
9474
10236
  }, "strip", z.ZodTypeAny, {
9475
10237
  created_at: string;
10238
+ id: string;
9476
10239
  email: string;
9477
10240
  username: string;
9478
10241
  email_verified: boolean;
9479
10242
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9480
- id: string;
9481
10243
  updated_at: string | null;
9482
10244
  }, {
9483
10245
  created_at: string;
10246
+ id: string;
9484
10247
  email: string;
9485
10248
  username: string;
9486
10249
  email_verified: boolean;
9487
10250
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9488
- id: string;
9489
10251
  updated_at: string | null;
9490
10252
  }>;
9491
10253
  type UserReadDto = z.infer<typeof UserReadSchema>;
@@ -9495,11 +10257,11 @@ declare const UserUpdateSchema: z.ZodObject<{
9495
10257
  id: z.ZodString;
9496
10258
  user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
9497
10259
  }, "strip", z.ZodTypeAny, {
9498
- user_type: "consumer" | "lead" | "staff" | "super_admin";
9499
10260
  id: string;
9500
- }, {
9501
10261
  user_type: "consumer" | "lead" | "staff" | "super_admin";
10262
+ }, {
9502
10263
  id: string;
10264
+ user_type: "consumer" | "lead" | "staff" | "super_admin";
9503
10265
  }>;
9504
10266
  type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
9505
10267
  //#endregion
@@ -10104,6 +10866,19 @@ interface UserApi {
10104
10866
  * Sign up a new user
10105
10867
  */
10106
10868
  signupUser(input: SignupInputDto): Promise<CreateUserDtoOutput>;
10869
+ /**
10870
+ * Get signup consents for the current signup_consent token. Requires token in Authorization header.
10871
+ * Used when SignupConsentFlow opens in new tab (no sessionStorage). Returns empty when consent feature disabled.
10872
+ */
10873
+ getSignupConsentsForToken(): Promise<SignupRequirementsDto>;
10874
+ /**
10875
+ * Initiate signup - returns session if no consents, or token+consents if consents required
10876
+ */
10877
+ signupInitiate(input: SignupInitiateInputDto): Promise<SignupInitiateResponseDto>;
10878
+ /**
10879
+ * Complete signup after accepting consents. Requires signup_consent token in Authorization: Bearer header.
10880
+ */
10881
+ signupComplete(input: SignupCompleteInputDto): Promise<LoginResponse>;
10107
10882
  /**
10108
10883
  * Create a new user
10109
10884
  */
@@ -10348,5 +11123,5 @@ declare const formatCurrency: (value: number) => string;
10348
11123
  */
10349
11124
  declare const formatDollar: (amount: string | null | undefined) => string;
10350
11125
  //#endregion
10351
- export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, 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, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
11126
+ export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, 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, SignupCompleteInputDto, 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, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupCompleteSchema, signupInitiateConsentRequiredSchema, signupInitiateCreatedSchema, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
10352
11127
  //# sourceMappingURL=index.d.mts.map