@dragonmastery/dragoncore-shared 0.0.34 → 0.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +196 -196
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1478,22 +1478,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1478
1478
|
searchableFields: string[];
|
|
1479
1479
|
}>>;
|
|
1480
1480
|
}, "strip", z.ZodTypeAny, {
|
|
1481
|
-
created_at?: {
|
|
1482
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
1483
|
-
value?: any;
|
|
1484
|
-
values?: any[] | undefined;
|
|
1485
|
-
caseSensitive?: boolean | undefined;
|
|
1486
|
-
} | {
|
|
1487
|
-
values: string[];
|
|
1488
|
-
operator: "between";
|
|
1489
|
-
value?: any;
|
|
1490
|
-
caseSensitive?: boolean | undefined;
|
|
1491
|
-
} | {
|
|
1492
|
-
value: string;
|
|
1493
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1494
|
-
values?: any[] | undefined;
|
|
1495
|
-
caseSensitive?: boolean | undefined;
|
|
1496
|
-
} | undefined;
|
|
1497
1481
|
type?: {
|
|
1498
1482
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1499
1483
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1523,17 +1507,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1523
1507
|
values?: number[] | undefined;
|
|
1524
1508
|
caseSensitive?: boolean | undefined;
|
|
1525
1509
|
} | undefined;
|
|
1526
|
-
created_by?: {
|
|
1527
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1528
|
-
value?: string | undefined;
|
|
1529
|
-
values?: string[] | undefined;
|
|
1530
|
-
caseSensitive?: boolean | undefined;
|
|
1531
|
-
} | undefined;
|
|
1532
|
-
search?: {
|
|
1533
|
-
query: string;
|
|
1534
|
-
searchableFields: string[];
|
|
1535
|
-
} | undefined;
|
|
1536
|
-
}, {
|
|
1537
1510
|
created_at?: {
|
|
1538
1511
|
operator: "isEmpty" | "isNotEmpty";
|
|
1539
1512
|
value?: any;
|
|
@@ -1550,6 +1523,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1550
1523
|
values?: any[] | undefined;
|
|
1551
1524
|
caseSensitive?: boolean | undefined;
|
|
1552
1525
|
} | undefined;
|
|
1526
|
+
created_by?: {
|
|
1527
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1528
|
+
value?: string | undefined;
|
|
1529
|
+
values?: string[] | undefined;
|
|
1530
|
+
caseSensitive?: boolean | undefined;
|
|
1531
|
+
} | undefined;
|
|
1532
|
+
search?: {
|
|
1533
|
+
query: string;
|
|
1534
|
+
searchableFields: string[];
|
|
1535
|
+
} | undefined;
|
|
1536
|
+
}, {
|
|
1553
1537
|
type?: {
|
|
1554
1538
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1555
1539
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1579,6 +1563,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1579
1563
|
values?: number[] | undefined;
|
|
1580
1564
|
caseSensitive?: boolean | undefined;
|
|
1581
1565
|
} | undefined;
|
|
1566
|
+
created_at?: {
|
|
1567
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
1568
|
+
value?: any;
|
|
1569
|
+
values?: any[] | undefined;
|
|
1570
|
+
caseSensitive?: boolean | undefined;
|
|
1571
|
+
} | {
|
|
1572
|
+
values: string[];
|
|
1573
|
+
operator: "between";
|
|
1574
|
+
value?: any;
|
|
1575
|
+
caseSensitive?: boolean | undefined;
|
|
1576
|
+
} | {
|
|
1577
|
+
value: string;
|
|
1578
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1579
|
+
values?: any[] | undefined;
|
|
1580
|
+
caseSensitive?: boolean | undefined;
|
|
1581
|
+
} | undefined;
|
|
1582
1582
|
created_by?: {
|
|
1583
1583
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1584
1584
|
value?: string | undefined;
|
|
@@ -1611,19 +1611,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
|
|
|
1611
1611
|
created_at: z.ZodString;
|
|
1612
1612
|
created_by: z.ZodString;
|
|
1613
1613
|
}, "strip", z.ZodTypeAny, {
|
|
1614
|
-
created_at: string;
|
|
1615
1614
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1616
1615
|
amount: string;
|
|
1617
1616
|
balance_after: string;
|
|
1617
|
+
created_at: string;
|
|
1618
1618
|
created_by: string;
|
|
1619
1619
|
id: string;
|
|
1620
1620
|
support_ticket_id?: string | null | undefined;
|
|
1621
1621
|
description?: string | null | undefined;
|
|
1622
1622
|
}, {
|
|
1623
|
-
created_at: string;
|
|
1624
1623
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1625
1624
|
amount: string;
|
|
1626
1625
|
balance_after: string;
|
|
1626
|
+
created_at: string;
|
|
1627
1627
|
created_by: string;
|
|
1628
1628
|
id: string;
|
|
1629
1629
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1644,19 +1644,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1644
1644
|
created_at: z.ZodString;
|
|
1645
1645
|
created_by: z.ZodString;
|
|
1646
1646
|
}, "strip", z.ZodTypeAny, {
|
|
1647
|
-
created_at: string;
|
|
1648
1647
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1649
1648
|
amount: string;
|
|
1650
1649
|
balance_after: string;
|
|
1650
|
+
created_at: string;
|
|
1651
1651
|
created_by: string;
|
|
1652
1652
|
id: string;
|
|
1653
1653
|
support_ticket_id?: string | null | undefined;
|
|
1654
1654
|
description?: string | null | undefined;
|
|
1655
1655
|
}, {
|
|
1656
|
-
created_at: string;
|
|
1657
1656
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1658
1657
|
amount: string;
|
|
1659
1658
|
balance_after: string;
|
|
1659
|
+
created_at: string;
|
|
1660
1660
|
created_by: string;
|
|
1661
1661
|
id: string;
|
|
1662
1662
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1686,10 +1686,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1686
1686
|
}>;
|
|
1687
1687
|
}, "strip", z.ZodTypeAny, {
|
|
1688
1688
|
items: {
|
|
1689
|
-
created_at: string;
|
|
1690
1689
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1691
1690
|
amount: string;
|
|
1692
1691
|
balance_after: string;
|
|
1692
|
+
created_at: string;
|
|
1693
1693
|
created_by: string;
|
|
1694
1694
|
id: string;
|
|
1695
1695
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1705,10 +1705,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1705
1705
|
};
|
|
1706
1706
|
}, {
|
|
1707
1707
|
items: {
|
|
1708
|
-
created_at: string;
|
|
1709
1708
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1710
1709
|
amount: string;
|
|
1711
1710
|
balance_after: string;
|
|
1711
|
+
created_at: string;
|
|
1712
1712
|
created_by: string;
|
|
1713
1713
|
id: string;
|
|
1714
1714
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1787,8 +1787,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1787
1787
|
price_currency?: string | null | undefined;
|
|
1788
1788
|
}>, "many">>>;
|
|
1789
1789
|
}, "strip", z.ZodTypeAny, {
|
|
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,8 +1809,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1809
1809
|
price_currency?: string | null | undefined;
|
|
1810
1810
|
}[] | null | undefined;
|
|
1811
1811
|
}, {
|
|
1812
|
-
userId: string;
|
|
1813
1812
|
email: string;
|
|
1813
|
+
userId: string;
|
|
1814
1814
|
username: string;
|
|
1815
1815
|
email_verified: boolean;
|
|
1816
1816
|
user_type: string;
|
|
@@ -1833,8 +1833,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1833
1833
|
}>;
|
|
1834
1834
|
}, "strip", z.ZodTypeAny, {
|
|
1835
1835
|
user: {
|
|
1836
|
-
userId: string;
|
|
1837
1836
|
email: string;
|
|
1837
|
+
userId: string;
|
|
1838
1838
|
username: string;
|
|
1839
1839
|
email_verified: boolean;
|
|
1840
1840
|
user_type: string;
|
|
@@ -1855,15 +1855,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1855
1855
|
price_currency?: string | null | undefined;
|
|
1856
1856
|
}[] | null | undefined;
|
|
1857
1857
|
};
|
|
1858
|
+
status: string;
|
|
1858
1859
|
created_at: string;
|
|
1859
1860
|
expires_at: string;
|
|
1860
|
-
status: string;
|
|
1861
1861
|
user_agent?: string | null | undefined;
|
|
1862
1862
|
ip_address?: string | null | undefined;
|
|
1863
1863
|
}, {
|
|
1864
1864
|
user: {
|
|
1865
|
-
userId: string;
|
|
1866
1865
|
email: string;
|
|
1866
|
+
userId: string;
|
|
1867
1867
|
username: string;
|
|
1868
1868
|
email_verified: boolean;
|
|
1869
1869
|
user_type: string;
|
|
@@ -1884,9 +1884,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1884
1884
|
price_currency?: string | null | undefined;
|
|
1885
1885
|
}[] | null | undefined;
|
|
1886
1886
|
};
|
|
1887
|
+
status: string;
|
|
1887
1888
|
created_at: string;
|
|
1888
1889
|
expires_at: string;
|
|
1889
|
-
status: string;
|
|
1890
1890
|
user_agent?: string | null | undefined;
|
|
1891
1891
|
ip_address?: string | null | undefined;
|
|
1892
1892
|
}>;
|
|
@@ -1942,8 +1942,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1942
1942
|
price_currency?: string | null | undefined;
|
|
1943
1943
|
}>, "many">>>;
|
|
1944
1944
|
}, "strip", z.ZodTypeAny, {
|
|
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,8 +1964,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1964
1964
|
price_currency?: string | null | undefined;
|
|
1965
1965
|
}[] | null | undefined;
|
|
1966
1966
|
}, {
|
|
1967
|
-
userId: string;
|
|
1968
1967
|
email: string;
|
|
1968
|
+
userId: string;
|
|
1969
1969
|
username: string;
|
|
1970
1970
|
email_verified: boolean;
|
|
1971
1971
|
user_type: string;
|
|
@@ -1988,8 +1988,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1988
1988
|
}>;
|
|
1989
1989
|
}, "strip", z.ZodTypeAny, {
|
|
1990
1990
|
user: {
|
|
1991
|
-
userId: string;
|
|
1992
1991
|
email: string;
|
|
1992
|
+
userId: string;
|
|
1993
1993
|
username: string;
|
|
1994
1994
|
email_verified: boolean;
|
|
1995
1995
|
user_type: string;
|
|
@@ -2010,15 +2010,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2010
2010
|
price_currency?: string | null | undefined;
|
|
2011
2011
|
}[] | null | undefined;
|
|
2012
2012
|
};
|
|
2013
|
+
status: string;
|
|
2013
2014
|
created_at: string;
|
|
2014
2015
|
expires_at: string;
|
|
2015
|
-
status: string;
|
|
2016
2016
|
user_agent?: string | null | undefined;
|
|
2017
2017
|
ip_address?: string | null | undefined;
|
|
2018
2018
|
}, {
|
|
2019
2019
|
user: {
|
|
2020
|
-
userId: string;
|
|
2021
2020
|
email: string;
|
|
2021
|
+
userId: string;
|
|
2022
2022
|
username: string;
|
|
2023
2023
|
email_verified: boolean;
|
|
2024
2024
|
user_type: string;
|
|
@@ -2039,9 +2039,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2039
2039
|
price_currency?: string | null | undefined;
|
|
2040
2040
|
}[] | null | undefined;
|
|
2041
2041
|
};
|
|
2042
|
+
status: string;
|
|
2042
2043
|
created_at: string;
|
|
2043
2044
|
expires_at: string;
|
|
2044
|
-
status: string;
|
|
2045
2045
|
user_agent?: string | null | undefined;
|
|
2046
2046
|
ip_address?: string | null | undefined;
|
|
2047
2047
|
}>;
|
|
@@ -2052,8 +2052,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2052
2052
|
refresh_token: string;
|
|
2053
2053
|
frontend_session: {
|
|
2054
2054
|
user: {
|
|
2055
|
-
userId: string;
|
|
2056
2055
|
email: string;
|
|
2056
|
+
userId: string;
|
|
2057
2057
|
username: string;
|
|
2058
2058
|
email_verified: boolean;
|
|
2059
2059
|
user_type: string;
|
|
@@ -2074,9 +2074,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2074
2074
|
price_currency?: string | null | undefined;
|
|
2075
2075
|
}[] | null | undefined;
|
|
2076
2076
|
};
|
|
2077
|
+
status: string;
|
|
2077
2078
|
created_at: string;
|
|
2078
2079
|
expires_at: string;
|
|
2079
|
-
status: string;
|
|
2080
2080
|
user_agent?: string | null | undefined;
|
|
2081
2081
|
ip_address?: string | null | undefined;
|
|
2082
2082
|
};
|
|
@@ -2086,8 +2086,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2086
2086
|
refresh_token: string;
|
|
2087
2087
|
frontend_session: {
|
|
2088
2088
|
user: {
|
|
2089
|
-
userId: string;
|
|
2090
2089
|
email: string;
|
|
2090
|
+
userId: string;
|
|
2091
2091
|
username: string;
|
|
2092
2092
|
email_verified: boolean;
|
|
2093
2093
|
user_type: string;
|
|
@@ -2108,9 +2108,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2108
2108
|
price_currency?: string | null | undefined;
|
|
2109
2109
|
}[] | null | undefined;
|
|
2110
2110
|
};
|
|
2111
|
+
status: string;
|
|
2111
2112
|
created_at: string;
|
|
2112
2113
|
expires_at: string;
|
|
2113
|
-
status: string;
|
|
2114
2114
|
user_agent?: string | null | undefined;
|
|
2115
2115
|
ip_address?: string | null | undefined;
|
|
2116
2116
|
};
|
|
@@ -2169,8 +2169,8 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2169
2169
|
deleted_at?: string | null | undefined;
|
|
2170
2170
|
deleted_by?: string | null | undefined;
|
|
2171
2171
|
title?: string | null | undefined;
|
|
2172
|
-
body?: string | null | undefined;
|
|
2173
2172
|
tag?: string | null | undefined;
|
|
2173
|
+
body?: string | null | undefined;
|
|
2174
2174
|
original_id?: number | null | undefined;
|
|
2175
2175
|
created_by_display_name?: string | null | undefined;
|
|
2176
2176
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2188,8 +2188,8 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2188
2188
|
deleted_at?: string | null | undefined;
|
|
2189
2189
|
deleted_by?: string | null | undefined;
|
|
2190
2190
|
title?: string | null | undefined;
|
|
2191
|
-
body?: string | null | undefined;
|
|
2192
2191
|
tag?: string | null | undefined;
|
|
2192
|
+
body?: string | null | undefined;
|
|
2193
2193
|
original_id?: number | null | undefined;
|
|
2194
2194
|
created_by_display_name?: string | null | undefined;
|
|
2195
2195
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2210,17 +2210,17 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2210
2210
|
record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
2211
2211
|
is_internal: boolean;
|
|
2212
2212
|
title?: string | null | undefined;
|
|
2213
|
-
body?: string | null | undefined;
|
|
2214
2213
|
tag?: string | null | undefined;
|
|
2214
|
+
body?: string | null | undefined;
|
|
2215
2215
|
original_id?: number | null | undefined;
|
|
2216
2216
|
}, {
|
|
2217
2217
|
record_id: string;
|
|
2218
2218
|
record_type: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent";
|
|
2219
2219
|
title?: string | null | undefined;
|
|
2220
|
-
body?: string | null | undefined;
|
|
2221
2220
|
tag?: string | null | undefined;
|
|
2222
|
-
|
|
2221
|
+
body?: string | null | undefined;
|
|
2223
2222
|
original_id?: number | null | undefined;
|
|
2223
|
+
is_internal?: boolean | undefined;
|
|
2224
2224
|
}>;
|
|
2225
2225
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2226
2226
|
//#endregion
|
|
@@ -2239,19 +2239,19 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2239
2239
|
record_id?: string | undefined;
|
|
2240
2240
|
record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
|
|
2241
2241
|
title?: string | null | undefined;
|
|
2242
|
-
body?: string | null | undefined;
|
|
2243
2242
|
tag?: string | null | undefined;
|
|
2244
|
-
|
|
2243
|
+
body?: string | null | undefined;
|
|
2245
2244
|
original_id?: number | null | undefined;
|
|
2245
|
+
is_internal?: boolean | undefined;
|
|
2246
2246
|
}, {
|
|
2247
2247
|
id: string;
|
|
2248
2248
|
record_id?: string | undefined;
|
|
2249
2249
|
record_type?: "app_setting" | "attachment_folder" | "attachment" | "user" | "user_session" | "user_profile" | "refresh_token" | "refresh_token_family" | "user_subscription" | "password_reset" | "record_version" | "support_ticket" | "support_ticket_activity" | "credit_transaction" | "team_member" | "client_contact" | "client_location" | "client_profile" | "business_profile" | "tracker" | "tracker_activity" | "team" | "quote" | "note" | "followup" | "saved_filter" | "user_pinned_preset" | "record_subscriber" | "support_staff" | "user_consent" | undefined;
|
|
2250
2250
|
title?: string | null | undefined;
|
|
2251
|
-
body?: string | null | undefined;
|
|
2252
2251
|
tag?: string | null | undefined;
|
|
2253
|
-
|
|
2252
|
+
body?: string | null | undefined;
|
|
2254
2253
|
original_id?: number | null | undefined;
|
|
2254
|
+
is_internal?: boolean | undefined;
|
|
2255
2255
|
}>;
|
|
2256
2256
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2257
2257
|
//#endregion
|
|
@@ -2613,6 +2613,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2613
2613
|
searchableFields: string[];
|
|
2614
2614
|
}>>;
|
|
2615
2615
|
}, "strip", z.ZodTypeAny, {
|
|
2616
|
+
first?: number | undefined;
|
|
2617
|
+
after?: string | undefined;
|
|
2618
|
+
sortBy?: string | undefined;
|
|
2619
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2620
|
+
paginationToken?: string | undefined;
|
|
2616
2621
|
created_at?: {
|
|
2617
2622
|
operator: "isEmpty" | "isNotEmpty";
|
|
2618
2623
|
value?: any;
|
|
@@ -2629,11 +2634,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2629
2634
|
values?: any[] | undefined;
|
|
2630
2635
|
caseSensitive?: boolean | undefined;
|
|
2631
2636
|
} | undefined;
|
|
2632
|
-
first?: number | undefined;
|
|
2633
|
-
after?: string | undefined;
|
|
2634
|
-
sortBy?: string | undefined;
|
|
2635
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2636
|
-
paginationToken?: string | undefined;
|
|
2637
2637
|
search?: {
|
|
2638
2638
|
query: string;
|
|
2639
2639
|
searchableFields: string[];
|
|
@@ -2672,13 +2672,13 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2672
2672
|
values?: string[] | undefined;
|
|
2673
2673
|
caseSensitive?: boolean | undefined;
|
|
2674
2674
|
} | undefined;
|
|
2675
|
-
|
|
2675
|
+
tag?: {
|
|
2676
2676
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2677
2677
|
value?: string | undefined;
|
|
2678
2678
|
values?: string[] | undefined;
|
|
2679
2679
|
caseSensitive?: boolean | undefined;
|
|
2680
2680
|
} | undefined;
|
|
2681
|
-
|
|
2681
|
+
body?: {
|
|
2682
2682
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2683
2683
|
value?: string | undefined;
|
|
2684
2684
|
values?: string[] | undefined;
|
|
@@ -2691,6 +2691,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2691
2691
|
caseSensitive?: boolean | undefined;
|
|
2692
2692
|
} | undefined;
|
|
2693
2693
|
}, {
|
|
2694
|
+
first?: number | undefined;
|
|
2695
|
+
after?: string | undefined;
|
|
2696
|
+
sortBy?: string | undefined;
|
|
2697
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2698
|
+
paginationToken?: string | undefined;
|
|
2694
2699
|
created_at?: {
|
|
2695
2700
|
operator: "isEmpty" | "isNotEmpty";
|
|
2696
2701
|
value?: any;
|
|
@@ -2707,11 +2712,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2707
2712
|
values?: any[] | undefined;
|
|
2708
2713
|
caseSensitive?: boolean | undefined;
|
|
2709
2714
|
} | undefined;
|
|
2710
|
-
first?: number | undefined;
|
|
2711
|
-
after?: string | undefined;
|
|
2712
|
-
sortBy?: string | undefined;
|
|
2713
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2714
|
-
paginationToken?: string | undefined;
|
|
2715
2715
|
search?: {
|
|
2716
2716
|
query: string;
|
|
2717
2717
|
searchableFields: string[];
|
|
@@ -2750,13 +2750,13 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2750
2750
|
values?: string[] | undefined;
|
|
2751
2751
|
caseSensitive?: boolean | undefined;
|
|
2752
2752
|
} | undefined;
|
|
2753
|
-
|
|
2753
|
+
tag?: {
|
|
2754
2754
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2755
2755
|
value?: string | undefined;
|
|
2756
2756
|
values?: string[] | undefined;
|
|
2757
2757
|
caseSensitive?: boolean | undefined;
|
|
2758
2758
|
} | undefined;
|
|
2759
|
-
|
|
2759
|
+
body?: {
|
|
2760
2760
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2761
2761
|
value?: string | undefined;
|
|
2762
2762
|
values?: string[] | undefined;
|
|
@@ -3625,18 +3625,18 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3625
3625
|
}>;
|
|
3626
3626
|
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
3627
3627
|
}, "strip", z.ZodTypeAny, {
|
|
3628
|
-
email: string;
|
|
3629
3628
|
passwords: {
|
|
3630
3629
|
password: string;
|
|
3631
3630
|
password_confirm: string;
|
|
3632
3631
|
};
|
|
3632
|
+
email: string;
|
|
3633
3633
|
acceptances: Record<string, boolean>;
|
|
3634
3634
|
}, {
|
|
3635
|
-
email: string;
|
|
3636
3635
|
passwords: {
|
|
3637
3636
|
password: string;
|
|
3638
3637
|
password_confirm: string;
|
|
3639
3638
|
};
|
|
3639
|
+
email: string;
|
|
3640
3640
|
acceptances?: Record<string, boolean> | undefined;
|
|
3641
3641
|
}>;
|
|
3642
3642
|
/** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
|
|
@@ -3664,18 +3664,18 @@ declare const signupInitiateSchema: z.ZodObject<{
|
|
|
3664
3664
|
password_confirm: string;
|
|
3665
3665
|
}>;
|
|
3666
3666
|
}, "strip", z.ZodTypeAny, {
|
|
3667
|
-
email: string;
|
|
3668
3667
|
passwords: {
|
|
3669
3668
|
password: string;
|
|
3670
3669
|
password_confirm: string;
|
|
3671
3670
|
};
|
|
3671
|
+
email: string;
|
|
3672
3672
|
metadata?: Record<string, unknown> | undefined;
|
|
3673
3673
|
}, {
|
|
3674
|
-
email: string;
|
|
3675
3674
|
passwords: {
|
|
3676
3675
|
password: string;
|
|
3677
3676
|
password_confirm: string;
|
|
3678
3677
|
};
|
|
3678
|
+
email: string;
|
|
3679
3679
|
metadata?: Record<string, unknown> | undefined;
|
|
3680
3680
|
}>;
|
|
3681
3681
|
type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
|
|
@@ -3734,8 +3734,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3734
3734
|
price_currency?: string | null | undefined;
|
|
3735
3735
|
}>, "many">>>;
|
|
3736
3736
|
}, "strip", z.ZodTypeAny, {
|
|
3737
|
-
userId: string;
|
|
3738
3737
|
email: string;
|
|
3738
|
+
userId: string;
|
|
3739
3739
|
username: string;
|
|
3740
3740
|
email_verified: boolean;
|
|
3741
3741
|
user_type: string;
|
|
@@ -3756,8 +3756,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3756
3756
|
price_currency?: string | null | undefined;
|
|
3757
3757
|
}[] | null | undefined;
|
|
3758
3758
|
}, {
|
|
3759
|
-
userId: string;
|
|
3760
3759
|
email: string;
|
|
3760
|
+
userId: string;
|
|
3761
3761
|
username: string;
|
|
3762
3762
|
email_verified: boolean;
|
|
3763
3763
|
user_type: string;
|
|
@@ -3780,8 +3780,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3780
3780
|
}>;
|
|
3781
3781
|
}, "strip", z.ZodTypeAny, {
|
|
3782
3782
|
user: {
|
|
3783
|
-
userId: string;
|
|
3784
3783
|
email: string;
|
|
3784
|
+
userId: string;
|
|
3785
3785
|
username: string;
|
|
3786
3786
|
email_verified: boolean;
|
|
3787
3787
|
user_type: string;
|
|
@@ -3802,15 +3802,15 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3802
3802
|
price_currency?: string | null | undefined;
|
|
3803
3803
|
}[] | null | undefined;
|
|
3804
3804
|
};
|
|
3805
|
+
status: string;
|
|
3805
3806
|
created_at: string;
|
|
3806
3807
|
expires_at: string;
|
|
3807
|
-
status: string;
|
|
3808
3808
|
user_agent?: string | null | undefined;
|
|
3809
3809
|
ip_address?: string | null | undefined;
|
|
3810
3810
|
}, {
|
|
3811
3811
|
user: {
|
|
3812
|
-
userId: string;
|
|
3813
3812
|
email: string;
|
|
3813
|
+
userId: string;
|
|
3814
3814
|
username: string;
|
|
3815
3815
|
email_verified: boolean;
|
|
3816
3816
|
user_type: string;
|
|
@@ -3831,9 +3831,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3831
3831
|
price_currency?: string | null | undefined;
|
|
3832
3832
|
}[] | null | undefined;
|
|
3833
3833
|
};
|
|
3834
|
+
status: string;
|
|
3834
3835
|
created_at: string;
|
|
3835
3836
|
expires_at: string;
|
|
3836
|
-
status: string;
|
|
3837
3837
|
user_agent?: string | null | undefined;
|
|
3838
3838
|
ip_address?: string | null | undefined;
|
|
3839
3839
|
}>;
|
|
@@ -3844,8 +3844,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3844
3844
|
refresh_token: string;
|
|
3845
3845
|
frontend_session: {
|
|
3846
3846
|
user: {
|
|
3847
|
-
userId: string;
|
|
3848
3847
|
email: string;
|
|
3848
|
+
userId: string;
|
|
3849
3849
|
username: string;
|
|
3850
3850
|
email_verified: boolean;
|
|
3851
3851
|
user_type: string;
|
|
@@ -3866,9 +3866,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3866
3866
|
price_currency?: string | null | undefined;
|
|
3867
3867
|
}[] | null | undefined;
|
|
3868
3868
|
};
|
|
3869
|
+
status: string;
|
|
3869
3870
|
created_at: string;
|
|
3870
3871
|
expires_at: string;
|
|
3871
|
-
status: string;
|
|
3872
3872
|
user_agent?: string | null | undefined;
|
|
3873
3873
|
ip_address?: string | null | undefined;
|
|
3874
3874
|
};
|
|
@@ -3878,8 +3878,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3878
3878
|
refresh_token: string;
|
|
3879
3879
|
frontend_session: {
|
|
3880
3880
|
user: {
|
|
3881
|
-
userId: string;
|
|
3882
3881
|
email: string;
|
|
3882
|
+
userId: string;
|
|
3883
3883
|
username: string;
|
|
3884
3884
|
email_verified: boolean;
|
|
3885
3885
|
user_type: string;
|
|
@@ -3900,9 +3900,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3900
3900
|
price_currency?: string | null | undefined;
|
|
3901
3901
|
}[] | null | undefined;
|
|
3902
3902
|
};
|
|
3903
|
+
status: string;
|
|
3903
3904
|
created_at: string;
|
|
3904
3905
|
expires_at: string;
|
|
3905
|
-
status: string;
|
|
3906
3906
|
user_agent?: string | null | undefined;
|
|
3907
3907
|
ip_address?: string | null | undefined;
|
|
3908
3908
|
};
|
|
@@ -3915,8 +3915,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3915
3915
|
refresh_token: string;
|
|
3916
3916
|
frontend_session: {
|
|
3917
3917
|
user: {
|
|
3918
|
-
userId: string;
|
|
3919
3918
|
email: string;
|
|
3919
|
+
userId: string;
|
|
3920
3920
|
username: string;
|
|
3921
3921
|
email_verified: boolean;
|
|
3922
3922
|
user_type: string;
|
|
@@ -3937,9 +3937,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3937
3937
|
price_currency?: string | null | undefined;
|
|
3938
3938
|
}[] | null | undefined;
|
|
3939
3939
|
};
|
|
3940
|
+
status: string;
|
|
3940
3941
|
created_at: string;
|
|
3941
3942
|
expires_at: string;
|
|
3942
|
-
status: string;
|
|
3943
3943
|
user_agent?: string | null | undefined;
|
|
3944
3944
|
ip_address?: string | null | undefined;
|
|
3945
3945
|
};
|
|
@@ -3952,8 +3952,8 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3952
3952
|
refresh_token: string;
|
|
3953
3953
|
frontend_session: {
|
|
3954
3954
|
user: {
|
|
3955
|
-
userId: string;
|
|
3956
3955
|
email: string;
|
|
3956
|
+
userId: string;
|
|
3957
3957
|
username: string;
|
|
3958
3958
|
email_verified: boolean;
|
|
3959
3959
|
user_type: string;
|
|
@@ -3974,9 +3974,9 @@ declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
|
3974
3974
|
price_currency?: string | null | undefined;
|
|
3975
3975
|
}[] | null | undefined;
|
|
3976
3976
|
};
|
|
3977
|
+
status: string;
|
|
3977
3978
|
created_at: string;
|
|
3978
3979
|
expires_at: string;
|
|
3979
|
-
status: string;
|
|
3980
3980
|
user_agent?: string | null | undefined;
|
|
3981
3981
|
ip_address?: string | null | undefined;
|
|
3982
3982
|
};
|
|
@@ -4281,8 +4281,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4281
4281
|
user_id_display_name?: string | null | undefined;
|
|
4282
4282
|
}>>>;
|
|
4283
4283
|
}, "strip", z.ZodTypeAny, {
|
|
4284
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4285
4284
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4285
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4286
4286
|
id: string;
|
|
4287
4287
|
description: string;
|
|
4288
4288
|
title: string;
|
|
@@ -4313,8 +4313,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4313
4313
|
user_id_display_name?: string | null | undefined;
|
|
4314
4314
|
} | null | undefined;
|
|
4315
4315
|
}, {
|
|
4316
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4317
4316
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4317
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4318
4318
|
id: string;
|
|
4319
4319
|
description: string;
|
|
4320
4320
|
title: string;
|
|
@@ -4403,8 +4403,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4403
4403
|
user_id_display_name?: string | null | undefined;
|
|
4404
4404
|
}>>>;
|
|
4405
4405
|
}, "strip", z.ZodTypeAny, {
|
|
4406
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4407
4406
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4407
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4408
4408
|
id: string;
|
|
4409
4409
|
description: string;
|
|
4410
4410
|
title: string;
|
|
@@ -4435,8 +4435,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4435
4435
|
user_id_display_name?: string | null | undefined;
|
|
4436
4436
|
} | null | undefined;
|
|
4437
4437
|
}, {
|
|
4438
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4439
4438
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4439
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4440
4440
|
id: string;
|
|
4441
4441
|
description: string;
|
|
4442
4442
|
title: string;
|
|
@@ -4491,8 +4491,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4491
4491
|
}>;
|
|
4492
4492
|
}, "strip", z.ZodTypeAny, {
|
|
4493
4493
|
items: {
|
|
4494
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4495
4494
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4495
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4496
4496
|
id: string;
|
|
4497
4497
|
description: string;
|
|
4498
4498
|
title: string;
|
|
@@ -4533,8 +4533,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4533
4533
|
};
|
|
4534
4534
|
}, {
|
|
4535
4535
|
items: {
|
|
4536
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4537
4536
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4537
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4538
4538
|
id: string;
|
|
4539
4539
|
description: string;
|
|
4540
4540
|
title: string;
|
|
@@ -5270,6 +5270,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5270
5270
|
searchableFields: string[];
|
|
5271
5271
|
}>>;
|
|
5272
5272
|
}, "strip", z.ZodTypeAny, {
|
|
5273
|
+
type?: {
|
|
5274
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5275
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5276
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5277
|
+
caseSensitive?: boolean | undefined;
|
|
5278
|
+
} | undefined;
|
|
5279
|
+
status?: {
|
|
5280
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5281
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5282
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5283
|
+
caseSensitive?: boolean | undefined;
|
|
5284
|
+
} | undefined;
|
|
5285
|
+
first?: number | undefined;
|
|
5286
|
+
after?: string | undefined;
|
|
5287
|
+
sortBy?: string | undefined;
|
|
5288
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5289
|
+
paginationToken?: string | undefined;
|
|
5273
5290
|
created_at?: {
|
|
5274
5291
|
operator: "isEmpty" | "isNotEmpty";
|
|
5275
5292
|
value?: any;
|
|
@@ -5286,23 +5303,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5286
5303
|
values?: any[] | undefined;
|
|
5287
5304
|
caseSensitive?: boolean | undefined;
|
|
5288
5305
|
} | undefined;
|
|
5289
|
-
status?: {
|
|
5290
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5291
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5292
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5293
|
-
caseSensitive?: boolean | undefined;
|
|
5294
|
-
} | undefined;
|
|
5295
|
-
type?: {
|
|
5296
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5297
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5298
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5299
|
-
caseSensitive?: boolean | undefined;
|
|
5300
|
-
} | undefined;
|
|
5301
|
-
first?: number | undefined;
|
|
5302
|
-
after?: string | undefined;
|
|
5303
|
-
sortBy?: string | undefined;
|
|
5304
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5305
|
-
paginationToken?: string | undefined;
|
|
5306
5306
|
created_by?: {
|
|
5307
5307
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5308
5308
|
value?: string | undefined;
|
|
@@ -5408,6 +5408,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5408
5408
|
caseSensitive?: boolean | undefined;
|
|
5409
5409
|
} | undefined;
|
|
5410
5410
|
}, {
|
|
5411
|
+
type?: {
|
|
5412
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5413
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5414
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5415
|
+
caseSensitive?: boolean | undefined;
|
|
5416
|
+
} | undefined;
|
|
5417
|
+
status?: {
|
|
5418
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5419
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5420
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5421
|
+
caseSensitive?: boolean | undefined;
|
|
5422
|
+
} | undefined;
|
|
5423
|
+
first?: number | undefined;
|
|
5424
|
+
after?: string | undefined;
|
|
5425
|
+
sortBy?: string | undefined;
|
|
5426
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5427
|
+
paginationToken?: string | undefined;
|
|
5411
5428
|
created_at?: {
|
|
5412
5429
|
operator: "isEmpty" | "isNotEmpty";
|
|
5413
5430
|
value?: any;
|
|
@@ -5424,23 +5441,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5424
5441
|
values?: any[] | undefined;
|
|
5425
5442
|
caseSensitive?: boolean | undefined;
|
|
5426
5443
|
} | undefined;
|
|
5427
|
-
status?: {
|
|
5428
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5429
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5430
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5431
|
-
caseSensitive?: boolean | undefined;
|
|
5432
|
-
} | undefined;
|
|
5433
|
-
type?: {
|
|
5434
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5435
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5436
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5437
|
-
caseSensitive?: boolean | undefined;
|
|
5438
|
-
} | undefined;
|
|
5439
|
-
first?: number | undefined;
|
|
5440
|
-
after?: string | undefined;
|
|
5441
|
-
sortBy?: string | undefined;
|
|
5442
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5443
|
-
paginationToken?: string | undefined;
|
|
5444
5444
|
created_by?: {
|
|
5445
5445
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5446
5446
|
value?: string | undefined;
|
|
@@ -5583,8 +5583,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5583
5583
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5584
5584
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5585
5585
|
}, "strip", z.ZodTypeAny, {
|
|
5586
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5587
5586
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5587
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5588
5588
|
id: string;
|
|
5589
5589
|
description: string;
|
|
5590
5590
|
title: string;
|
|
@@ -5612,8 +5612,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5612
5612
|
assigned_to_display_name?: string | null | undefined;
|
|
5613
5613
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5614
5614
|
}, {
|
|
5615
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5616
5615
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5616
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5617
5617
|
id: string;
|
|
5618
5618
|
description: string;
|
|
5619
5619
|
title: string;
|
|
@@ -5676,8 +5676,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5676
5676
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5677
5677
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5678
5678
|
}, "strip", z.ZodTypeAny, {
|
|
5679
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5680
5679
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5680
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5681
5681
|
id: string;
|
|
5682
5682
|
description: string;
|
|
5683
5683
|
title: string;
|
|
@@ -5705,8 +5705,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5705
5705
|
assigned_to_display_name?: string | null | undefined;
|
|
5706
5706
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5707
5707
|
}, {
|
|
5708
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5709
5708
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5709
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5710
5710
|
id: string;
|
|
5711
5711
|
description: string;
|
|
5712
5712
|
title: string;
|
|
@@ -5758,8 +5758,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5758
5758
|
}>;
|
|
5759
5759
|
}, "strip", z.ZodTypeAny, {
|
|
5760
5760
|
items: {
|
|
5761
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5762
5761
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5762
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5763
5763
|
id: string;
|
|
5764
5764
|
description: string;
|
|
5765
5765
|
title: string;
|
|
@@ -5797,8 +5797,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5797
5797
|
};
|
|
5798
5798
|
}, {
|
|
5799
5799
|
items: {
|
|
5800
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5801
5800
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5801
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5802
5802
|
id: string;
|
|
5803
5803
|
description: string;
|
|
5804
5804
|
title: string;
|
|
@@ -6633,6 +6633,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6633
6633
|
searchableFields: string[];
|
|
6634
6634
|
}>>;
|
|
6635
6635
|
}, "strip", z.ZodTypeAny, {
|
|
6636
|
+
type?: {
|
|
6637
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6638
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6639
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6640
|
+
caseSensitive?: boolean | undefined;
|
|
6641
|
+
} | undefined;
|
|
6642
|
+
status?: {
|
|
6643
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6644
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6645
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6646
|
+
caseSensitive?: boolean | undefined;
|
|
6647
|
+
} | undefined;
|
|
6648
|
+
first?: number | undefined;
|
|
6649
|
+
after?: string | undefined;
|
|
6650
|
+
sortBy?: string | undefined;
|
|
6651
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6652
|
+
paginationToken?: string | undefined;
|
|
6636
6653
|
created_at?: {
|
|
6637
6654
|
operator: "isEmpty" | "isNotEmpty";
|
|
6638
6655
|
value?: any;
|
|
@@ -6649,23 +6666,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6649
6666
|
values?: any[] | undefined;
|
|
6650
6667
|
caseSensitive?: boolean | undefined;
|
|
6651
6668
|
} | undefined;
|
|
6652
|
-
status?: {
|
|
6653
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6654
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6655
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6656
|
-
caseSensitive?: boolean | undefined;
|
|
6657
|
-
} | undefined;
|
|
6658
|
-
type?: {
|
|
6659
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6660
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6661
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6662
|
-
caseSensitive?: boolean | undefined;
|
|
6663
|
-
} | undefined;
|
|
6664
|
-
first?: number | undefined;
|
|
6665
|
-
after?: string | undefined;
|
|
6666
|
-
sortBy?: string | undefined;
|
|
6667
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6668
|
-
paginationToken?: string | undefined;
|
|
6669
6669
|
created_by?: {
|
|
6670
6670
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6671
6671
|
value?: string | undefined;
|
|
@@ -6789,6 +6789,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6789
6789
|
caseSensitive?: boolean | undefined;
|
|
6790
6790
|
} | undefined;
|
|
6791
6791
|
}, {
|
|
6792
|
+
type?: {
|
|
6793
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6794
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6795
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6796
|
+
caseSensitive?: boolean | undefined;
|
|
6797
|
+
} | undefined;
|
|
6798
|
+
status?: {
|
|
6799
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6800
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6801
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6802
|
+
caseSensitive?: boolean | undefined;
|
|
6803
|
+
} | undefined;
|
|
6804
|
+
first?: number | undefined;
|
|
6805
|
+
after?: string | undefined;
|
|
6806
|
+
sortBy?: string | undefined;
|
|
6807
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6808
|
+
paginationToken?: string | undefined;
|
|
6792
6809
|
created_at?: {
|
|
6793
6810
|
operator: "isEmpty" | "isNotEmpty";
|
|
6794
6811
|
value?: any;
|
|
@@ -6805,23 +6822,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6805
6822
|
values?: any[] | undefined;
|
|
6806
6823
|
caseSensitive?: boolean | undefined;
|
|
6807
6824
|
} | undefined;
|
|
6808
|
-
status?: {
|
|
6809
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6810
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6811
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6812
|
-
caseSensitive?: boolean | undefined;
|
|
6813
|
-
} | undefined;
|
|
6814
|
-
type?: {
|
|
6815
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6816
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6817
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6818
|
-
caseSensitive?: boolean | undefined;
|
|
6819
|
-
} | undefined;
|
|
6820
|
-
first?: number | undefined;
|
|
6821
|
-
after?: string | undefined;
|
|
6822
|
-
sortBy?: string | undefined;
|
|
6823
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6824
|
-
paginationToken?: string | undefined;
|
|
6825
6825
|
created_by?: {
|
|
6826
6826
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6827
6827
|
value?: string | undefined;
|
|
@@ -7711,6 +7711,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7711
7711
|
searchableFields: string[];
|
|
7712
7712
|
}>>;
|
|
7713
7713
|
}, "strip", z.ZodTypeAny, {
|
|
7714
|
+
first?: number | undefined;
|
|
7715
|
+
after?: string | undefined;
|
|
7716
|
+
sortBy?: string | undefined;
|
|
7717
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7718
|
+
paginationToken?: string | undefined;
|
|
7714
7719
|
created_at?: {
|
|
7715
7720
|
operator: "isEmpty" | "isNotEmpty";
|
|
7716
7721
|
value?: any;
|
|
@@ -7727,11 +7732,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7727
7732
|
values?: any[] | undefined;
|
|
7728
7733
|
caseSensitive?: boolean | undefined;
|
|
7729
7734
|
} | undefined;
|
|
7730
|
-
first?: number | undefined;
|
|
7731
|
-
after?: string | undefined;
|
|
7732
|
-
sortBy?: string | undefined;
|
|
7733
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7734
|
-
paginationToken?: string | undefined;
|
|
7735
7735
|
search?: {
|
|
7736
7736
|
query: string;
|
|
7737
7737
|
searchableFields: string[];
|
|
@@ -7811,6 +7811,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7811
7811
|
caseSensitive?: boolean | undefined;
|
|
7812
7812
|
} | undefined;
|
|
7813
7813
|
}, {
|
|
7814
|
+
first?: number | undefined;
|
|
7815
|
+
after?: string | undefined;
|
|
7816
|
+
sortBy?: string | undefined;
|
|
7817
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7818
|
+
paginationToken?: string | undefined;
|
|
7814
7819
|
created_at?: {
|
|
7815
7820
|
operator: "isEmpty" | "isNotEmpty";
|
|
7816
7821
|
value?: any;
|
|
@@ -7827,11 +7832,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7827
7832
|
values?: any[] | undefined;
|
|
7828
7833
|
caseSensitive?: boolean | undefined;
|
|
7829
7834
|
} | undefined;
|
|
7830
|
-
first?: number | undefined;
|
|
7831
|
-
after?: string | undefined;
|
|
7832
|
-
sortBy?: string | undefined;
|
|
7833
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7834
|
-
paginationToken?: string | undefined;
|
|
7835
7835
|
search?: {
|
|
7836
7836
|
query: string;
|
|
7837
7837
|
searchableFields: string[];
|
|
@@ -9302,6 +9302,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9302
9302
|
searchableFields: string[];
|
|
9303
9303
|
}>>;
|
|
9304
9304
|
}, "strip", z.ZodTypeAny, {
|
|
9305
|
+
first?: number | undefined;
|
|
9306
|
+
after?: string | undefined;
|
|
9307
|
+
sortBy?: string | undefined;
|
|
9308
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9309
|
+
paginationToken?: string | undefined;
|
|
9305
9310
|
created_at?: {
|
|
9306
9311
|
operator: "isEmpty" | "isNotEmpty";
|
|
9307
9312
|
value?: any;
|
|
@@ -9318,11 +9323,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9318
9323
|
values?: any[] | undefined;
|
|
9319
9324
|
caseSensitive?: boolean | undefined;
|
|
9320
9325
|
} | undefined;
|
|
9321
|
-
first?: number | undefined;
|
|
9322
|
-
after?: string | undefined;
|
|
9323
|
-
sortBy?: string | undefined;
|
|
9324
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9325
|
-
paginationToken?: string | undefined;
|
|
9326
9326
|
search?: {
|
|
9327
9327
|
query: string;
|
|
9328
9328
|
searchableFields: string[];
|
|
@@ -9432,6 +9432,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9432
9432
|
caseSensitive?: boolean | undefined;
|
|
9433
9433
|
} | undefined;
|
|
9434
9434
|
}, {
|
|
9435
|
+
first?: number | undefined;
|
|
9436
|
+
after?: string | undefined;
|
|
9437
|
+
sortBy?: string | undefined;
|
|
9438
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9439
|
+
paginationToken?: string | undefined;
|
|
9435
9440
|
created_at?: {
|
|
9436
9441
|
operator: "isEmpty" | "isNotEmpty";
|
|
9437
9442
|
value?: any;
|
|
@@ -9448,11 +9453,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9448
9453
|
values?: any[] | undefined;
|
|
9449
9454
|
caseSensitive?: boolean | undefined;
|
|
9450
9455
|
} | undefined;
|
|
9451
|
-
first?: number | undefined;
|
|
9452
|
-
after?: string | undefined;
|
|
9453
|
-
sortBy?: string | undefined;
|
|
9454
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9455
|
-
paginationToken?: string | undefined;
|
|
9456
9456
|
search?: {
|
|
9457
9457
|
query: string;
|
|
9458
9458
|
searchableFields: string[];
|
|
@@ -9915,20 +9915,20 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
9915
9915
|
created_at: z.ZodString;
|
|
9916
9916
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
9917
9917
|
}, "strip", z.ZodTypeAny, {
|
|
9918
|
-
created_at: string;
|
|
9919
9918
|
email: string;
|
|
9919
|
+
created_at: string;
|
|
9920
|
+
id: string;
|
|
9920
9921
|
username: string;
|
|
9921
9922
|
email_verified: boolean;
|
|
9922
9923
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9923
|
-
id: string;
|
|
9924
9924
|
updated_at: string | null;
|
|
9925
9925
|
}, {
|
|
9926
|
-
created_at: string;
|
|
9927
9926
|
email: string;
|
|
9927
|
+
created_at: string;
|
|
9928
|
+
id: string;
|
|
9928
9929
|
username: string;
|
|
9929
9930
|
email_verified: boolean;
|
|
9930
9931
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9931
|
-
id: string;
|
|
9932
9932
|
updated_at: string | null;
|
|
9933
9933
|
}>;
|
|
9934
9934
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
@@ -9938,11 +9938,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
9938
9938
|
id: z.ZodString;
|
|
9939
9939
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
9940
9940
|
}, "strip", z.ZodTypeAny, {
|
|
9941
|
-
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9942
9941
|
id: string;
|
|
9943
|
-
}, {
|
|
9944
9942
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9943
|
+
}, {
|
|
9945
9944
|
id: string;
|
|
9945
|
+
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9946
9946
|
}>;
|
|
9947
9947
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
9948
9948
|
//#endregion
|