@dragonmastery/dragoncore-shared 0.0.20 → 0.0.22

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +202 -192
  2. package/package.json +1 -1
package/dist/index.d.mts CHANGED
@@ -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
- id: string;
1118
1117
  email: string;
1119
- }, {
1120
1118
  id: string;
1119
+ }, {
1121
1120
  email: string;
1121
+ id: string;
1122
1122
  }>;
1123
1123
  type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
1124
1124
  //#endregion
@@ -1432,6 +1432,22 @@ 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;
1435
1451
  type?: {
1436
1452
  operator: "eq" | "ne" | "in" | "notIn";
1437
1453
  value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
@@ -1461,6 +1477,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1461
1477
  values?: number[] | undefined;
1462
1478
  caseSensitive?: boolean | undefined;
1463
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
+ }, {
1464
1491
  created_at?: {
1465
1492
  operator: "isEmpty" | "isNotEmpty";
1466
1493
  value?: any;
@@ -1477,17 +1504,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1477
1504
  values?: any[] | undefined;
1478
1505
  caseSensitive?: boolean | undefined;
1479
1506
  } | 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
1507
  type?: {
1492
1508
  operator: "eq" | "ne" | "in" | "notIn";
1493
1509
  value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
@@ -1517,22 +1533,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
1517
1533
  values?: number[] | undefined;
1518
1534
  caseSensitive?: boolean | undefined;
1519
1535
  } | 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;
1568
1569
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1569
1570
  amount: string;
1570
1571
  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;
1577
1578
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1578
1579
  amount: string;
1579
1580
  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;
1601
1602
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1602
1603
  amount: string;
1603
1604
  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;
1610
1611
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1611
1612
  amount: string;
1612
1613
  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;
1643
1644
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1644
1645
  amount: string;
1645
1646
  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;
1662
1663
  type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
1663
1664
  amount: string;
1664
1665
  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
- email: string;
1745
1744
  userId: string;
1745
+ email: 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
- email: string;
1767
1766
  userId: string;
1767
+ email: 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
- email: string;
1791
1790
  userId: string;
1791
+ email: 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;
1813
1812
  created_at: string;
1814
1813
  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
- email: string;
1820
1819
  userId: string;
1820
+ email: 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;
1842
1841
  created_at: string;
1843
1842
  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
- email: string;
1900
1899
  userId: string;
1900
+ email: 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
- email: string;
1922
1921
  userId: string;
1922
+ email: 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
- email: string;
1946
1945
  userId: string;
1946
+ email: 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;
1968
1967
  created_at: string;
1969
1968
  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
- email: string;
1975
1974
  userId: string;
1975
+ email: 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;
1997
1996
  created_at: string;
1998
1997
  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
- email: string;
2010
2009
  userId: string;
2010
+ email: 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;
2032
2031
  created_at: string;
2033
2032
  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
- email: string;
2044
2043
  userId: string;
2044
+ email: 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;
2066
2065
  created_at: string;
2067
2066
  expires_at: string;
2067
+ status: string;
2068
2068
  user_agent?: string | null | undefined;
2069
2069
  ip_address?: string | null | undefined;
2070
2070
  };
@@ -2567,11 +2567,6 @@ 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;
2575
2570
  created_at?: {
2576
2571
  operator: "isEmpty" | "isNotEmpty";
2577
2572
  value?: any;
@@ -2588,6 +2583,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
2588
2583
  values?: any[] | undefined;
2589
2584
  caseSensitive?: boolean | undefined;
2590
2585
  } | 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[];
@@ -2645,11 +2645,6 @@ 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;
2653
2648
  created_at?: {
2654
2649
  operator: "isEmpty" | "isNotEmpty";
2655
2650
  value?: any;
@@ -2666,6 +2661,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
2666
2661
  values?: any[] | undefined;
2667
2662
  caseSensitive?: boolean | undefined;
2668
2663
  } | 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[];
@@ -3560,18 +3560,18 @@ declare const signupSchema: z.ZodObject<{
3560
3560
  }>;
3561
3561
  acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
3562
3562
  }, "strip", z.ZodTypeAny, {
3563
+ email: string;
3563
3564
  passwords: {
3564
3565
  password: string;
3565
3566
  password_confirm: string;
3566
3567
  };
3567
- email: string;
3568
3568
  acceptances: Record<string, boolean>;
3569
3569
  }, {
3570
+ email: string;
3570
3571
  passwords: {
3571
3572
  password: string;
3572
3573
  password_confirm: string;
3573
3574
  };
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 {}). */
@@ -3872,8 +3872,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3872
3872
  user_id_display_name?: string | null | undefined;
3873
3873
  }>>>;
3874
3874
  }, "strip", z.ZodTypeAny, {
3875
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
3876
3875
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
3876
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
3877
3877
  id: string;
3878
3878
  description: string;
3879
3879
  title: string;
@@ -3887,10 +3887,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3887
3887
  created_by_display_name?: string | null | undefined;
3888
3888
  display_id?: string | null | undefined;
3889
3889
  credit_value?: string | null | undefined;
3890
+ display_id_prefix?: string | null | undefined;
3890
3891
  start_at?: string | null | undefined;
3891
3892
  target_at?: string | null | undefined;
3892
3893
  completed_at?: string | null | undefined;
3893
- display_id_prefix?: string | null | undefined;
3894
3894
  locked_approval_at?: string | null | undefined;
3895
3895
  my_subscription?: {
3896
3896
  created_at: string;
@@ -3904,8 +3904,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3904
3904
  user_id_display_name?: string | null | undefined;
3905
3905
  } | null | undefined;
3906
3906
  }, {
3907
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
3908
3907
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
3908
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
3909
3909
  id: string;
3910
3910
  description: string;
3911
3911
  title: string;
@@ -3919,10 +3919,10 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
3919
3919
  created_by_display_name?: string | null | undefined;
3920
3920
  display_id?: string | null | undefined;
3921
3921
  credit_value?: string | null | undefined;
3922
+ display_id_prefix?: string | null | undefined;
3922
3923
  start_at?: string | null | undefined;
3923
3924
  target_at?: string | null | undefined;
3924
3925
  completed_at?: string | null | undefined;
3925
- display_id_prefix?: string | null | undefined;
3926
3926
  locked_approval_at?: string | null | undefined;
3927
3927
  my_subscription?: {
3928
3928
  created_at: string;
@@ -3994,8 +3994,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
3994
3994
  user_id_display_name?: string | null | undefined;
3995
3995
  }>>>;
3996
3996
  }, "strip", z.ZodTypeAny, {
3997
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
3998
3997
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
3998
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
3999
3999
  id: string;
4000
4000
  description: string;
4001
4001
  title: string;
@@ -4009,10 +4009,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4009
4009
  created_by_display_name?: string | null | undefined;
4010
4010
  display_id?: string | null | undefined;
4011
4011
  credit_value?: string | null | undefined;
4012
+ display_id_prefix?: string | null | undefined;
4012
4013
  start_at?: string | null | undefined;
4013
4014
  target_at?: string | null | undefined;
4014
4015
  completed_at?: string | null | undefined;
4015
- display_id_prefix?: string | null | undefined;
4016
4016
  locked_approval_at?: string | null | undefined;
4017
4017
  my_subscription?: {
4018
4018
  created_at: string;
@@ -4026,8 +4026,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4026
4026
  user_id_display_name?: string | null | undefined;
4027
4027
  } | null | undefined;
4028
4028
  }, {
4029
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4030
4029
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4030
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4031
4031
  id: string;
4032
4032
  description: string;
4033
4033
  title: string;
@@ -4041,10 +4041,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4041
4041
  created_by_display_name?: string | null | undefined;
4042
4042
  display_id?: string | null | undefined;
4043
4043
  credit_value?: string | null | undefined;
4044
+ display_id_prefix?: string | null | undefined;
4044
4045
  start_at?: string | null | undefined;
4045
4046
  target_at?: string | null | undefined;
4046
4047
  completed_at?: string | null | undefined;
4047
- display_id_prefix?: string | null | undefined;
4048
4048
  locked_approval_at?: string | null | undefined;
4049
4049
  my_subscription?: {
4050
4050
  created_at: string;
@@ -4082,8 +4082,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4082
4082
  }>;
4083
4083
  }, "strip", z.ZodTypeAny, {
4084
4084
  items: {
4085
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4086
4085
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4086
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4087
4087
  id: string;
4088
4088
  description: string;
4089
4089
  title: string;
@@ -4097,10 +4097,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4097
4097
  created_by_display_name?: string | null | undefined;
4098
4098
  display_id?: string | null | undefined;
4099
4099
  credit_value?: string | null | undefined;
4100
+ display_id_prefix?: string | null | undefined;
4100
4101
  start_at?: string | null | undefined;
4101
4102
  target_at?: string | null | undefined;
4102
4103
  completed_at?: string | null | undefined;
4103
- display_id_prefix?: string | null | undefined;
4104
4104
  locked_approval_at?: string | null | undefined;
4105
4105
  my_subscription?: {
4106
4106
  created_at: string;
@@ -4124,8 +4124,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4124
4124
  };
4125
4125
  }, {
4126
4126
  items: {
4127
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4128
4127
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
4128
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
4129
4129
  id: string;
4130
4130
  description: string;
4131
4131
  title: string;
@@ -4139,10 +4139,10 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
4139
4139
  created_by_display_name?: string | null | undefined;
4140
4140
  display_id?: string | null | undefined;
4141
4141
  credit_value?: string | null | undefined;
4142
+ display_id_prefix?: string | null | undefined;
4142
4143
  start_at?: string | null | undefined;
4143
4144
  target_at?: string | null | undefined;
4144
4145
  completed_at?: string | null | undefined;
4145
- display_id_prefix?: string | null | undefined;
4146
4146
  locked_approval_at?: string | null | undefined;
4147
4147
  my_subscription?: {
4148
4148
  created_at: string;
@@ -4861,23 +4861,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
4861
4861
  searchableFields: string[];
4862
4862
  }>>;
4863
4863
  }, "strip", z.ZodTypeAny, {
4864
- type?: {
4865
- operator: "eq" | "ne" | "in" | "notIn";
4866
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
4867
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
4868
- caseSensitive?: boolean | undefined;
4869
- } | undefined;
4870
- status?: {
4871
- operator: "eq" | "ne" | "in" | "notIn";
4872
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
4873
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
4874
- caseSensitive?: boolean | undefined;
4875
- } | undefined;
4876
- first?: number | undefined;
4877
- after?: string | undefined;
4878
- sortBy?: string | undefined;
4879
- sortDirection?: "asc" | "desc" | undefined;
4880
- paginationToken?: string | undefined;
4881
4864
  created_at?: {
4882
4865
  operator: "isEmpty" | "isNotEmpty";
4883
4866
  value?: any;
@@ -4894,6 +4877,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
4894
4877
  values?: any[] | undefined;
4895
4878
  caseSensitive?: boolean | undefined;
4896
4879
  } | 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
4897
  created_by?: {
4898
4898
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
4899
4899
  value?: string | undefined;
@@ -4999,23 +4999,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
4999
4999
  caseSensitive?: boolean | undefined;
5000
5000
  } | undefined;
5001
5001
  }, {
5002
- type?: {
5003
- operator: "eq" | "ne" | "in" | "notIn";
5004
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
5005
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
5006
- caseSensitive?: boolean | undefined;
5007
- } | undefined;
5008
- status?: {
5009
- operator: "eq" | "ne" | "in" | "notIn";
5010
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
5011
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
5012
- caseSensitive?: boolean | undefined;
5013
- } | undefined;
5014
- first?: number | undefined;
5015
- after?: string | undefined;
5016
- sortBy?: string | undefined;
5017
- sortDirection?: "asc" | "desc" | undefined;
5018
- paginationToken?: string | undefined;
5019
5002
  created_at?: {
5020
5003
  operator: "isEmpty" | "isNotEmpty";
5021
5004
  value?: any;
@@ -5032,6 +5015,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
5032
5015
  values?: any[] | undefined;
5033
5016
  caseSensitive?: boolean | undefined;
5034
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;
5035
5035
  created_by?: {
5036
5036
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
5037
5037
  value?: string | undefined;
@@ -5174,8 +5174,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5174
5174
  archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5175
5175
  archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5176
5176
  }, "strip", z.ZodTypeAny, {
5177
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5178
5177
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5178
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5179
5179
  id: string;
5180
5180
  description: string;
5181
5181
  title: string;
@@ -5194,17 +5194,17 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5194
5194
  display_id?: string | null | undefined;
5195
5195
  credit_value?: string | null | undefined;
5196
5196
  delivered_value?: string | null | undefined;
5197
+ display_id_prefix?: string | null | undefined;
5197
5198
  start_at?: string | null | undefined;
5198
5199
  target_at?: string | null | undefined;
5199
5200
  completed_at?: string | null | undefined;
5200
- display_id_prefix?: string | null | undefined;
5201
+ locked_approval_at?: string | null | undefined;
5201
5202
  assigned_to?: string | null | undefined;
5202
5203
  assigned_to_display_name?: string | null | undefined;
5203
5204
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5204
- locked_approval_at?: string | null | undefined;
5205
5205
  }, {
5206
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5207
5206
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5207
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5208
5208
  id: string;
5209
5209
  description: string;
5210
5210
  title: string;
@@ -5223,14 +5223,14 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
5223
5223
  display_id?: string | null | undefined;
5224
5224
  credit_value?: string | null | undefined;
5225
5225
  delivered_value?: string | null | undefined;
5226
+ display_id_prefix?: string | null | undefined;
5226
5227
  start_at?: string | null | undefined;
5227
5228
  target_at?: string | null | undefined;
5228
5229
  completed_at?: string | null | undefined;
5229
- display_id_prefix?: string | null | undefined;
5230
+ locked_approval_at?: string | null | undefined;
5230
5231
  assigned_to?: string | null | undefined;
5231
5232
  assigned_to_display_name?: string | null | undefined;
5232
5233
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5233
- locked_approval_at?: string | null | undefined;
5234
5234
  }>;
5235
5235
  type StaffSupportTicketReadDto = z.infer<typeof StaffSupportTicketReadSchema>;
5236
5236
  /**
@@ -5267,8 +5267,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5267
5267
  archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5268
5268
  archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5269
5269
  }, "strip", z.ZodTypeAny, {
5270
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5271
5270
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5271
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5272
5272
  id: string;
5273
5273
  description: string;
5274
5274
  title: string;
@@ -5287,17 +5287,17 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5287
5287
  display_id?: string | null | undefined;
5288
5288
  credit_value?: string | null | undefined;
5289
5289
  delivered_value?: string | null | undefined;
5290
+ display_id_prefix?: string | null | undefined;
5290
5291
  start_at?: string | null | undefined;
5291
5292
  target_at?: string | null | undefined;
5292
5293
  completed_at?: string | null | undefined;
5293
- display_id_prefix?: string | null | undefined;
5294
+ locked_approval_at?: string | null | undefined;
5294
5295
  assigned_to?: string | null | undefined;
5295
5296
  assigned_to_display_name?: string | null | undefined;
5296
5297
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5297
- locked_approval_at?: string | null | undefined;
5298
5298
  }, {
5299
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5300
5299
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5300
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5301
5301
  id: string;
5302
5302
  description: string;
5303
5303
  title: string;
@@ -5316,14 +5316,14 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5316
5316
  display_id?: string | null | undefined;
5317
5317
  credit_value?: string | null | undefined;
5318
5318
  delivered_value?: string | null | undefined;
5319
+ display_id_prefix?: string | null | undefined;
5319
5320
  start_at?: string | null | undefined;
5320
5321
  target_at?: string | null | undefined;
5321
5322
  completed_at?: string | null | undefined;
5322
- display_id_prefix?: string | null | undefined;
5323
+ locked_approval_at?: string | null | undefined;
5323
5324
  assigned_to?: string | null | undefined;
5324
5325
  assigned_to_display_name?: string | null | undefined;
5325
5326
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5326
- locked_approval_at?: string | null | undefined;
5327
5327
  }>, "many">;
5328
5328
  pageInfo: z.ZodObject<{
5329
5329
  hasNextPage: z.ZodBoolean;
@@ -5349,8 +5349,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5349
5349
  }>;
5350
5350
  }, "strip", z.ZodTypeAny, {
5351
5351
  items: {
5352
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5353
5352
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5353
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5354
5354
  id: string;
5355
5355
  description: string;
5356
5356
  title: string;
@@ -5369,14 +5369,14 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5369
5369
  display_id?: string | null | undefined;
5370
5370
  credit_value?: string | null | undefined;
5371
5371
  delivered_value?: string | null | undefined;
5372
+ display_id_prefix?: string | null | undefined;
5372
5373
  start_at?: string | null | undefined;
5373
5374
  target_at?: string | null | undefined;
5374
5375
  completed_at?: string | null | undefined;
5375
- display_id_prefix?: string | null | undefined;
5376
+ locked_approval_at?: string | null | undefined;
5376
5377
  assigned_to?: string | null | undefined;
5377
5378
  assigned_to_display_name?: string | null | undefined;
5378
5379
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5379
- locked_approval_at?: string | null | undefined;
5380
5380
  }[];
5381
5381
  pageInfo: {
5382
5382
  hasNextPage: boolean;
@@ -5388,8 +5388,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5388
5388
  };
5389
5389
  }, {
5390
5390
  items: {
5391
- type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5392
5391
  status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
5392
+ type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
5393
5393
  id: string;
5394
5394
  description: string;
5395
5395
  title: string;
@@ -5408,14 +5408,14 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
5408
5408
  display_id?: string | null | undefined;
5409
5409
  credit_value?: string | null | undefined;
5410
5410
  delivered_value?: string | null | undefined;
5411
+ display_id_prefix?: string | null | undefined;
5411
5412
  start_at?: string | null | undefined;
5412
5413
  target_at?: string | null | undefined;
5413
5414
  completed_at?: string | null | undefined;
5414
- display_id_prefix?: string | null | undefined;
5415
+ locked_approval_at?: string | null | undefined;
5415
5416
  assigned_to?: string | null | undefined;
5416
5417
  assigned_to_display_name?: string | null | undefined;
5417
5418
  dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
5418
- locked_approval_at?: string | null | undefined;
5419
5419
  }[];
5420
5420
  pageInfo: {
5421
5421
  hasNextPage: boolean;
@@ -6224,23 +6224,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6224
6224
  searchableFields: string[];
6225
6225
  }>>;
6226
6226
  }, "strip", z.ZodTypeAny, {
6227
- type?: {
6228
- operator: "eq" | "ne" | "in" | "notIn";
6229
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6230
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6231
- caseSensitive?: boolean | undefined;
6232
- } | undefined;
6233
- status?: {
6234
- operator: "eq" | "ne" | "in" | "notIn";
6235
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6236
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6237
- caseSensitive?: boolean | undefined;
6238
- } | undefined;
6239
- first?: number | undefined;
6240
- after?: string | undefined;
6241
- sortBy?: string | undefined;
6242
- sortDirection?: "asc" | "desc" | undefined;
6243
- paginationToken?: string | undefined;
6244
6227
  created_at?: {
6245
6228
  operator: "isEmpty" | "isNotEmpty";
6246
6229
  value?: any;
@@ -6257,6 +6240,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6257
6240
  values?: any[] | undefined;
6258
6241
  caseSensitive?: boolean | undefined;
6259
6242
  } | 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
6260
  created_by?: {
6261
6261
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
6262
6262
  value?: string | undefined;
@@ -6380,23 +6380,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6380
6380
  caseSensitive?: boolean | undefined;
6381
6381
  } | undefined;
6382
6382
  }, {
6383
- type?: {
6384
- operator: "eq" | "ne" | "in" | "notIn";
6385
- value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
6386
- values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
6387
- caseSensitive?: boolean | undefined;
6388
- } | undefined;
6389
- status?: {
6390
- operator: "eq" | "ne" | "in" | "notIn";
6391
- value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
6392
- values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
6393
- caseSensitive?: boolean | undefined;
6394
- } | undefined;
6395
- first?: number | undefined;
6396
- after?: string | undefined;
6397
- sortBy?: string | undefined;
6398
- sortDirection?: "asc" | "desc" | undefined;
6399
- paginationToken?: string | undefined;
6400
6383
  created_at?: {
6401
6384
  operator: "isEmpty" | "isNotEmpty";
6402
6385
  value?: any;
@@ -6413,6 +6396,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
6413
6396
  values?: any[] | undefined;
6414
6397
  caseSensitive?: boolean | undefined;
6415
6398
  } | 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
6416
  created_by?: {
6417
6417
  operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
6418
6418
  value?: string | undefined;
@@ -7302,11 +7302,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
7302
7302
  searchableFields: string[];
7303
7303
  }>>;
7304
7304
  }, "strip", z.ZodTypeAny, {
7305
- first?: number | undefined;
7306
- after?: string | undefined;
7307
- sortBy?: string | undefined;
7308
- sortDirection?: "asc" | "desc" | undefined;
7309
- paginationToken?: string | undefined;
7310
7305
  created_at?: {
7311
7306
  operator: "isEmpty" | "isNotEmpty";
7312
7307
  value?: any;
@@ -7323,6 +7318,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
7323
7318
  values?: any[] | undefined;
7324
7319
  caseSensitive?: boolean | undefined;
7325
7320
  } | undefined;
7321
+ first?: number | undefined;
7322
+ after?: string | undefined;
7323
+ sortBy?: string | undefined;
7324
+ sortDirection?: "asc" | "desc" | undefined;
7325
+ paginationToken?: string | undefined;
7326
7326
  search?: {
7327
7327
  query: string;
7328
7328
  searchableFields: string[];
@@ -7402,11 +7402,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
7402
7402
  caseSensitive?: boolean | undefined;
7403
7403
  } | undefined;
7404
7404
  }, {
7405
- first?: number | undefined;
7406
- after?: string | undefined;
7407
- sortBy?: string | undefined;
7408
- sortDirection?: "asc" | "desc" | undefined;
7409
- paginationToken?: string | undefined;
7410
7405
  created_at?: {
7411
7406
  operator: "isEmpty" | "isNotEmpty";
7412
7407
  value?: any;
@@ -7423,6 +7418,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
7423
7418
  values?: any[] | undefined;
7424
7419
  caseSensitive?: boolean | undefined;
7425
7420
  } | undefined;
7421
+ first?: number | undefined;
7422
+ after?: string | undefined;
7423
+ sortBy?: string | undefined;
7424
+ sortDirection?: "asc" | "desc" | undefined;
7425
+ paginationToken?: string | undefined;
7426
7426
  search?: {
7427
7427
  query: string;
7428
7428
  searchableFields: string[];
@@ -8859,11 +8859,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
8859
8859
  searchableFields: string[];
8860
8860
  }>>;
8861
8861
  }, "strip", z.ZodTypeAny, {
8862
- first?: number | undefined;
8863
- after?: string | undefined;
8864
- sortBy?: string | undefined;
8865
- sortDirection?: "asc" | "desc" | undefined;
8866
- paginationToken?: string | undefined;
8867
8862
  created_at?: {
8868
8863
  operator: "isEmpty" | "isNotEmpty";
8869
8864
  value?: any;
@@ -8880,6 +8875,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
8880
8875
  values?: any[] | undefined;
8881
8876
  caseSensitive?: boolean | undefined;
8882
8877
  } | undefined;
8878
+ first?: number | undefined;
8879
+ after?: string | undefined;
8880
+ sortBy?: string | undefined;
8881
+ sortDirection?: "asc" | "desc" | undefined;
8882
+ paginationToken?: string | undefined;
8883
8883
  search?: {
8884
8884
  query: string;
8885
8885
  searchableFields: string[];
@@ -8989,11 +8989,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
8989
8989
  caseSensitive?: boolean | undefined;
8990
8990
  } | undefined;
8991
8991
  }, {
8992
- first?: number | undefined;
8993
- after?: string | undefined;
8994
- sortBy?: string | undefined;
8995
- sortDirection?: "asc" | "desc" | undefined;
8996
- paginationToken?: string | undefined;
8997
8992
  created_at?: {
8998
8993
  operator: "isEmpty" | "isNotEmpty";
8999
8994
  value?: any;
@@ -9010,6 +9005,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
9010
9005
  values?: any[] | undefined;
9011
9006
  caseSensitive?: boolean | undefined;
9012
9007
  } | undefined;
9008
+ first?: number | undefined;
9009
+ after?: string | undefined;
9010
+ sortBy?: string | undefined;
9011
+ sortDirection?: "asc" | "desc" | undefined;
9012
+ paginationToken?: string | undefined;
9013
9013
  search?: {
9014
9014
  query: string;
9015
9015
  searchableFields: string[];
@@ -9473,20 +9473,20 @@ declare const UserReadSchema: z.ZodObject<{
9473
9473
  updated_at: z.ZodNullable<z.ZodString>;
9474
9474
  }, "strip", z.ZodTypeAny, {
9475
9475
  created_at: string;
9476
- id: string;
9477
9476
  email: string;
9478
- updated_at: string | null;
9479
9477
  username: string;
9480
9478
  email_verified: boolean;
9481
9479
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9480
+ id: string;
9481
+ updated_at: string | null;
9482
9482
  }, {
9483
9483
  created_at: string;
9484
- id: string;
9485
9484
  email: string;
9486
- updated_at: string | null;
9487
9485
  username: string;
9488
9486
  email_verified: boolean;
9489
9487
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9488
+ id: string;
9489
+ updated_at: string | null;
9490
9490
  }>;
9491
9491
  type UserReadDto = z.infer<typeof UserReadSchema>;
9492
9492
  //#endregion
@@ -9495,11 +9495,11 @@ declare const UserUpdateSchema: z.ZodObject<{
9495
9495
  id: z.ZodString;
9496
9496
  user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
9497
9497
  }, "strip", z.ZodTypeAny, {
9498
- id: string;
9499
9498
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9500
- }, {
9501
9499
  id: string;
9500
+ }, {
9502
9501
  user_type: "consumer" | "lead" | "staff" | "super_admin";
9502
+ id: string;
9503
9503
  }>;
9504
9504
  type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
9505
9505
  //#endregion
@@ -9701,6 +9701,17 @@ interface VerifyEmailResult {
9701
9701
  ok: boolean;
9702
9702
  session?: LoginResponse;
9703
9703
  }
9704
+ /**
9705
+ * Result of resendVerificationEmail.
9706
+ * When cooldown applies, sent is false and seconds_until_next_send indicates wait time.
9707
+ */
9708
+ interface ResendVerificationEmailResult {
9709
+ ok: boolean;
9710
+ /** Whether an email was actually sent (false when cooldown applied) */
9711
+ sent?: boolean;
9712
+ /** When sent is false due to cooldown, seconds until next send is allowed */
9713
+ seconds_until_next_send?: number;
9714
+ }
9704
9715
  /**
9705
9716
  * Email verification API
9706
9717
  * Implement when your backend supports email verification.
@@ -9712,11 +9723,10 @@ interface EmailVerificationApi {
9712
9723
  */
9713
9724
  verifyEmail(token: string): Promise<VerifyEmailResult>;
9714
9725
  /**
9715
- * Resend verification email for the current user
9726
+ * Resend verification email for the current user.
9727
+ * When cooldown applies, sent is false and seconds_until_next_send indicates wait time.
9716
9728
  */
9717
- resendVerificationEmail(): Promise<{
9718
- ok: boolean;
9719
- }>;
9729
+ resendVerificationEmail(): Promise<ResendVerificationEmailResult>;
9720
9730
  }
9721
9731
  //#endregion
9722
9732
  //#region src/api/mfa-api.d.ts
@@ -10338,5 +10348,5 @@ declare const formatCurrency: (value: number) => string;
10338
10348
  */
10339
10349
  declare const formatDollar: (amount: string | null | undefined) => string;
10340
10350
  //#endregion
10341
- 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, 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 };
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 };
10342
10352
  //# sourceMappingURL=index.d.mts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dragonmastery/dragoncore-shared",
3
- "version": "0.0.20",
3
+ "version": "0.0.22",
4
4
  "description": "Shared types and utilities for dragoncore",
5
5
  "author": "DragonMastery",
6
6
  "license": "SEE LICENSE IN LICENSE",