@dragonmastery/dragoncore-shared 0.0.30 → 0.0.32
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 +228 -661
- package/dist/index.mjs +3 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -240,22 +240,22 @@ declare const AttachmentUpdateSchema: z.ZodObject<{
|
|
|
240
240
|
record_id?: string | undefined;
|
|
241
241
|
record_type?: string | undefined;
|
|
242
242
|
metadata?: string | null | undefined;
|
|
243
|
+
folder_id?: string | null | undefined;
|
|
243
244
|
sanitized_name?: string | undefined;
|
|
244
245
|
original_name?: string | undefined;
|
|
245
246
|
content_type?: string | undefined;
|
|
246
247
|
file_size?: string | undefined;
|
|
247
|
-
folder_id?: string | null | undefined;
|
|
248
248
|
}, {
|
|
249
249
|
id: string;
|
|
250
250
|
description?: string | null | undefined;
|
|
251
251
|
record_id?: string | undefined;
|
|
252
252
|
record_type?: string | undefined;
|
|
253
253
|
metadata?: string | null | undefined;
|
|
254
|
+
folder_id?: string | null | undefined;
|
|
254
255
|
sanitized_name?: string | undefined;
|
|
255
256
|
original_name?: string | undefined;
|
|
256
257
|
content_type?: string | undefined;
|
|
257
258
|
file_size?: string | undefined;
|
|
258
|
-
folder_id?: string | null | undefined;
|
|
259
259
|
}>;
|
|
260
260
|
type AttachmentUpdateDto = z.infer<typeof AttachmentUpdateSchema>;
|
|
261
261
|
//#endregion
|
|
@@ -1129,11 +1129,11 @@ declare const createUserSchemaOutput: z.ZodObject<{
|
|
|
1129
1129
|
id: z.ZodString;
|
|
1130
1130
|
email: z.ZodString;
|
|
1131
1131
|
}, "strip", z.ZodTypeAny, {
|
|
1132
|
-
email: string;
|
|
1133
1132
|
id: string;
|
|
1134
|
-
}, {
|
|
1135
1133
|
email: string;
|
|
1134
|
+
}, {
|
|
1136
1135
|
id: string;
|
|
1136
|
+
email: string;
|
|
1137
1137
|
}>;
|
|
1138
1138
|
type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
|
|
1139
1139
|
//#endregion
|
|
@@ -1447,22 +1447,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1447
1447
|
searchableFields: string[];
|
|
1448
1448
|
}>>;
|
|
1449
1449
|
}, "strip", z.ZodTypeAny, {
|
|
1450
|
-
created_at?: {
|
|
1451
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
1452
|
-
value?: any;
|
|
1453
|
-
values?: any[] | undefined;
|
|
1454
|
-
caseSensitive?: boolean | undefined;
|
|
1455
|
-
} | {
|
|
1456
|
-
values: string[];
|
|
1457
|
-
operator: "between";
|
|
1458
|
-
value?: any;
|
|
1459
|
-
caseSensitive?: boolean | undefined;
|
|
1460
|
-
} | {
|
|
1461
|
-
value: string;
|
|
1462
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1463
|
-
values?: any[] | undefined;
|
|
1464
|
-
caseSensitive?: boolean | undefined;
|
|
1465
|
-
} | undefined;
|
|
1466
1450
|
type?: {
|
|
1467
1451
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1468
1452
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1492,17 +1476,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1492
1476
|
values?: number[] | undefined;
|
|
1493
1477
|
caseSensitive?: boolean | undefined;
|
|
1494
1478
|
} | undefined;
|
|
1495
|
-
created_by?: {
|
|
1496
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1497
|
-
value?: string | undefined;
|
|
1498
|
-
values?: string[] | undefined;
|
|
1499
|
-
caseSensitive?: boolean | undefined;
|
|
1500
|
-
} | undefined;
|
|
1501
|
-
search?: {
|
|
1502
|
-
query: string;
|
|
1503
|
-
searchableFields: string[];
|
|
1504
|
-
} | undefined;
|
|
1505
|
-
}, {
|
|
1506
1479
|
created_at?: {
|
|
1507
1480
|
operator: "isEmpty" | "isNotEmpty";
|
|
1508
1481
|
value?: any;
|
|
@@ -1519,6 +1492,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1519
1492
|
values?: any[] | undefined;
|
|
1520
1493
|
caseSensitive?: boolean | undefined;
|
|
1521
1494
|
} | undefined;
|
|
1495
|
+
created_by?: {
|
|
1496
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1497
|
+
value?: string | undefined;
|
|
1498
|
+
values?: string[] | undefined;
|
|
1499
|
+
caseSensitive?: boolean | undefined;
|
|
1500
|
+
} | undefined;
|
|
1501
|
+
search?: {
|
|
1502
|
+
query: string;
|
|
1503
|
+
searchableFields: string[];
|
|
1504
|
+
} | undefined;
|
|
1505
|
+
}, {
|
|
1522
1506
|
type?: {
|
|
1523
1507
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1524
1508
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1548,6 +1532,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1548
1532
|
values?: number[] | undefined;
|
|
1549
1533
|
caseSensitive?: boolean | undefined;
|
|
1550
1534
|
} | undefined;
|
|
1535
|
+
created_at?: {
|
|
1536
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
1537
|
+
value?: any;
|
|
1538
|
+
values?: any[] | undefined;
|
|
1539
|
+
caseSensitive?: boolean | undefined;
|
|
1540
|
+
} | {
|
|
1541
|
+
values: string[];
|
|
1542
|
+
operator: "between";
|
|
1543
|
+
value?: any;
|
|
1544
|
+
caseSensitive?: boolean | undefined;
|
|
1545
|
+
} | {
|
|
1546
|
+
value: string;
|
|
1547
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1548
|
+
values?: any[] | undefined;
|
|
1549
|
+
caseSensitive?: boolean | undefined;
|
|
1550
|
+
} | undefined;
|
|
1551
1551
|
created_by?: {
|
|
1552
1552
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1553
1553
|
value?: string | undefined;
|
|
@@ -1580,19 +1580,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
|
|
|
1580
1580
|
created_at: z.ZodString;
|
|
1581
1581
|
created_by: z.ZodString;
|
|
1582
1582
|
}, "strip", z.ZodTypeAny, {
|
|
1583
|
-
created_at: string;
|
|
1584
1583
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1585
1584
|
amount: string;
|
|
1586
1585
|
balance_after: string;
|
|
1586
|
+
created_at: string;
|
|
1587
1587
|
created_by: string;
|
|
1588
1588
|
id: string;
|
|
1589
1589
|
support_ticket_id?: string | null | undefined;
|
|
1590
1590
|
description?: string | null | undefined;
|
|
1591
1591
|
}, {
|
|
1592
|
-
created_at: string;
|
|
1593
1592
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1594
1593
|
amount: string;
|
|
1595
1594
|
balance_after: string;
|
|
1595
|
+
created_at: string;
|
|
1596
1596
|
created_by: string;
|
|
1597
1597
|
id: string;
|
|
1598
1598
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1613,19 +1613,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1613
1613
|
created_at: z.ZodString;
|
|
1614
1614
|
created_by: z.ZodString;
|
|
1615
1615
|
}, "strip", z.ZodTypeAny, {
|
|
1616
|
-
created_at: string;
|
|
1617
1616
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1618
1617
|
amount: string;
|
|
1619
1618
|
balance_after: string;
|
|
1619
|
+
created_at: string;
|
|
1620
1620
|
created_by: string;
|
|
1621
1621
|
id: string;
|
|
1622
1622
|
support_ticket_id?: string | null | undefined;
|
|
1623
1623
|
description?: string | null | undefined;
|
|
1624
1624
|
}, {
|
|
1625
|
-
created_at: string;
|
|
1626
1625
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1627
1626
|
amount: string;
|
|
1628
1627
|
balance_after: string;
|
|
1628
|
+
created_at: string;
|
|
1629
1629
|
created_by: string;
|
|
1630
1630
|
id: string;
|
|
1631
1631
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1655,10 +1655,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1655
1655
|
}>;
|
|
1656
1656
|
}, "strip", z.ZodTypeAny, {
|
|
1657
1657
|
items: {
|
|
1658
|
-
created_at: string;
|
|
1659
1658
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1660
1659
|
amount: string;
|
|
1661
1660
|
balance_after: string;
|
|
1661
|
+
created_at: string;
|
|
1662
1662
|
created_by: string;
|
|
1663
1663
|
id: string;
|
|
1664
1664
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1674,10 +1674,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1674
1674
|
};
|
|
1675
1675
|
}, {
|
|
1676
1676
|
items: {
|
|
1677
|
-
created_at: string;
|
|
1678
1677
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1679
1678
|
amount: string;
|
|
1680
1679
|
balance_after: string;
|
|
1680
|
+
created_at: string;
|
|
1681
1681
|
created_by: string;
|
|
1682
1682
|
id: string;
|
|
1683
1683
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1756,8 +1756,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1756
1756
|
price_currency?: string | null | undefined;
|
|
1757
1757
|
}>, "many">>>;
|
|
1758
1758
|
}, "strip", z.ZodTypeAny, {
|
|
1759
|
-
userId: string;
|
|
1760
1759
|
email: string;
|
|
1760
|
+
userId: string;
|
|
1761
1761
|
username: string;
|
|
1762
1762
|
email_verified: boolean;
|
|
1763
1763
|
user_type: string;
|
|
@@ -1778,8 +1778,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1778
1778
|
price_currency?: string | null | undefined;
|
|
1779
1779
|
}[] | null | undefined;
|
|
1780
1780
|
}, {
|
|
1781
|
-
userId: string;
|
|
1782
1781
|
email: string;
|
|
1782
|
+
userId: string;
|
|
1783
1783
|
username: string;
|
|
1784
1784
|
email_verified: boolean;
|
|
1785
1785
|
user_type: string;
|
|
@@ -1802,8 +1802,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1802
1802
|
}>;
|
|
1803
1803
|
}, "strip", z.ZodTypeAny, {
|
|
1804
1804
|
user: {
|
|
1805
|
-
userId: string;
|
|
1806
1805
|
email: string;
|
|
1806
|
+
userId: string;
|
|
1807
1807
|
username: string;
|
|
1808
1808
|
email_verified: boolean;
|
|
1809
1809
|
user_type: string;
|
|
@@ -1824,15 +1824,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1824
1824
|
price_currency?: string | null | undefined;
|
|
1825
1825
|
}[] | null | undefined;
|
|
1826
1826
|
};
|
|
1827
|
+
status: string;
|
|
1827
1828
|
created_at: string;
|
|
1828
1829
|
expires_at: string;
|
|
1829
|
-
status: string;
|
|
1830
1830
|
user_agent?: string | null | undefined;
|
|
1831
1831
|
ip_address?: string | null | undefined;
|
|
1832
1832
|
}, {
|
|
1833
1833
|
user: {
|
|
1834
|
-
userId: string;
|
|
1835
1834
|
email: string;
|
|
1835
|
+
userId: string;
|
|
1836
1836
|
username: string;
|
|
1837
1837
|
email_verified: boolean;
|
|
1838
1838
|
user_type: string;
|
|
@@ -1853,9 +1853,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1853
1853
|
price_currency?: string | null | undefined;
|
|
1854
1854
|
}[] | null | undefined;
|
|
1855
1855
|
};
|
|
1856
|
+
status: string;
|
|
1856
1857
|
created_at: string;
|
|
1857
1858
|
expires_at: string;
|
|
1858
|
-
status: string;
|
|
1859
1859
|
user_agent?: string | null | undefined;
|
|
1860
1860
|
ip_address?: string | null | undefined;
|
|
1861
1861
|
}>;
|
|
@@ -1911,8 +1911,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1911
1911
|
price_currency?: string | null | undefined;
|
|
1912
1912
|
}>, "many">>>;
|
|
1913
1913
|
}, "strip", z.ZodTypeAny, {
|
|
1914
|
-
userId: string;
|
|
1915
1914
|
email: string;
|
|
1915
|
+
userId: string;
|
|
1916
1916
|
username: string;
|
|
1917
1917
|
email_verified: boolean;
|
|
1918
1918
|
user_type: string;
|
|
@@ -1933,8 +1933,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1933
1933
|
price_currency?: string | null | undefined;
|
|
1934
1934
|
}[] | null | undefined;
|
|
1935
1935
|
}, {
|
|
1936
|
-
userId: string;
|
|
1937
1936
|
email: string;
|
|
1937
|
+
userId: string;
|
|
1938
1938
|
username: string;
|
|
1939
1939
|
email_verified: boolean;
|
|
1940
1940
|
user_type: string;
|
|
@@ -1957,8 +1957,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1957
1957
|
}>;
|
|
1958
1958
|
}, "strip", z.ZodTypeAny, {
|
|
1959
1959
|
user: {
|
|
1960
|
-
userId: string;
|
|
1961
1960
|
email: string;
|
|
1961
|
+
userId: string;
|
|
1962
1962
|
username: string;
|
|
1963
1963
|
email_verified: boolean;
|
|
1964
1964
|
user_type: string;
|
|
@@ -1979,15 +1979,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1979
1979
|
price_currency?: string | null | undefined;
|
|
1980
1980
|
}[] | null | undefined;
|
|
1981
1981
|
};
|
|
1982
|
+
status: string;
|
|
1982
1983
|
created_at: string;
|
|
1983
1984
|
expires_at: string;
|
|
1984
|
-
status: string;
|
|
1985
1985
|
user_agent?: string | null | undefined;
|
|
1986
1986
|
ip_address?: string | null | undefined;
|
|
1987
1987
|
}, {
|
|
1988
1988
|
user: {
|
|
1989
|
-
userId: string;
|
|
1990
1989
|
email: string;
|
|
1990
|
+
userId: string;
|
|
1991
1991
|
username: string;
|
|
1992
1992
|
email_verified: boolean;
|
|
1993
1993
|
user_type: string;
|
|
@@ -2008,9 +2008,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2008
2008
|
price_currency?: string | null | undefined;
|
|
2009
2009
|
}[] | null | undefined;
|
|
2010
2010
|
};
|
|
2011
|
+
status: string;
|
|
2011
2012
|
created_at: string;
|
|
2012
2013
|
expires_at: string;
|
|
2013
|
-
status: string;
|
|
2014
2014
|
user_agent?: string | null | undefined;
|
|
2015
2015
|
ip_address?: string | null | undefined;
|
|
2016
2016
|
}>;
|
|
@@ -2021,8 +2021,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2021
2021
|
refresh_token: string;
|
|
2022
2022
|
frontend_session: {
|
|
2023
2023
|
user: {
|
|
2024
|
-
userId: string;
|
|
2025
2024
|
email: string;
|
|
2025
|
+
userId: string;
|
|
2026
2026
|
username: string;
|
|
2027
2027
|
email_verified: boolean;
|
|
2028
2028
|
user_type: string;
|
|
@@ -2043,9 +2043,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2043
2043
|
price_currency?: string | null | undefined;
|
|
2044
2044
|
}[] | null | undefined;
|
|
2045
2045
|
};
|
|
2046
|
+
status: string;
|
|
2046
2047
|
created_at: string;
|
|
2047
2048
|
expires_at: string;
|
|
2048
|
-
status: string;
|
|
2049
2049
|
user_agent?: string | null | undefined;
|
|
2050
2050
|
ip_address?: string | null | undefined;
|
|
2051
2051
|
};
|
|
@@ -2055,8 +2055,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2055
2055
|
refresh_token: string;
|
|
2056
2056
|
frontend_session: {
|
|
2057
2057
|
user: {
|
|
2058
|
-
userId: string;
|
|
2059
2058
|
email: string;
|
|
2059
|
+
userId: string;
|
|
2060
2060
|
username: string;
|
|
2061
2061
|
email_verified: boolean;
|
|
2062
2062
|
user_type: string;
|
|
@@ -2077,9 +2077,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2077
2077
|
price_currency?: string | null | undefined;
|
|
2078
2078
|
}[] | null | undefined;
|
|
2079
2079
|
};
|
|
2080
|
+
status: string;
|
|
2080
2081
|
created_at: string;
|
|
2081
2082
|
expires_at: string;
|
|
2082
|
-
status: string;
|
|
2083
2083
|
user_agent?: string | null | undefined;
|
|
2084
2084
|
ip_address?: string | null | undefined;
|
|
2085
2085
|
};
|
|
@@ -2137,9 +2137,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2137
2137
|
archived_by?: string | null | undefined;
|
|
2138
2138
|
deleted_at?: string | null | undefined;
|
|
2139
2139
|
deleted_by?: string | null | undefined;
|
|
2140
|
-
tag?: string | null | undefined;
|
|
2141
2140
|
title?: string | null | undefined;
|
|
2142
2141
|
body?: string | null | undefined;
|
|
2142
|
+
tag?: string | null | undefined;
|
|
2143
2143
|
original_id?: number | null | undefined;
|
|
2144
2144
|
created_by_display_name?: string | null | undefined;
|
|
2145
2145
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2156,9 +2156,9 @@ declare const NoteReadSchema: z.ZodObject<{
|
|
|
2156
2156
|
archived_by?: string | null | undefined;
|
|
2157
2157
|
deleted_at?: string | null | undefined;
|
|
2158
2158
|
deleted_by?: string | null | undefined;
|
|
2159
|
-
tag?: string | null | undefined;
|
|
2160
2159
|
title?: string | null | undefined;
|
|
2161
2160
|
body?: string | null | undefined;
|
|
2161
|
+
tag?: string | null | undefined;
|
|
2162
2162
|
original_id?: number | null | undefined;
|
|
2163
2163
|
created_by_display_name?: string | null | undefined;
|
|
2164
2164
|
updated_by_display_name?: string | null | undefined;
|
|
@@ -2178,18 +2178,18 @@ declare const NoteCreateSchema: z.ZodObject<{
|
|
|
2178
2178
|
record_id: string;
|
|
2179
2179
|
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";
|
|
2180
2180
|
is_internal: boolean;
|
|
2181
|
-
tag?: string | null | undefined;
|
|
2182
2181
|
title?: string | null | undefined;
|
|
2183
2182
|
body?: string | null | undefined;
|
|
2183
|
+
tag?: string | null | undefined;
|
|
2184
2184
|
original_id?: number | null | undefined;
|
|
2185
2185
|
}, {
|
|
2186
2186
|
record_id: string;
|
|
2187
2187
|
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";
|
|
2188
|
-
tag?: string | null | undefined;
|
|
2189
2188
|
title?: string | null | undefined;
|
|
2190
2189
|
body?: string | null | undefined;
|
|
2191
|
-
|
|
2190
|
+
tag?: string | null | undefined;
|
|
2192
2191
|
is_internal?: boolean | undefined;
|
|
2192
|
+
original_id?: number | null | undefined;
|
|
2193
2193
|
}>;
|
|
2194
2194
|
type NoteCreateDto = z.infer<typeof NoteCreateSchema>;
|
|
2195
2195
|
//#endregion
|
|
@@ -2207,20 +2207,20 @@ declare const NoteUpdateSchema: z.ZodObject<{
|
|
|
2207
2207
|
id: string;
|
|
2208
2208
|
record_id?: string | undefined;
|
|
2209
2209
|
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;
|
|
2210
|
-
tag?: string | null | undefined;
|
|
2211
2210
|
title?: string | null | undefined;
|
|
2212
2211
|
body?: string | null | undefined;
|
|
2213
|
-
|
|
2212
|
+
tag?: string | null | undefined;
|
|
2214
2213
|
is_internal?: boolean | undefined;
|
|
2214
|
+
original_id?: number | null | undefined;
|
|
2215
2215
|
}, {
|
|
2216
2216
|
id: string;
|
|
2217
2217
|
record_id?: string | undefined;
|
|
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" | undefined;
|
|
2219
|
-
tag?: string | null | undefined;
|
|
2220
2219
|
title?: string | null | undefined;
|
|
2221
2220
|
body?: string | null | undefined;
|
|
2222
|
-
|
|
2221
|
+
tag?: string | null | undefined;
|
|
2223
2222
|
is_internal?: boolean | undefined;
|
|
2223
|
+
original_id?: number | null | undefined;
|
|
2224
2224
|
}>;
|
|
2225
2225
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2226
2226
|
//#endregion
|
|
@@ -2582,6 +2582,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2582
2582
|
searchableFields: string[];
|
|
2583
2583
|
}>>;
|
|
2584
2584
|
}, "strip", z.ZodTypeAny, {
|
|
2585
|
+
first?: number | undefined;
|
|
2586
|
+
after?: string | undefined;
|
|
2587
|
+
sortBy?: string | undefined;
|
|
2588
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2589
|
+
paginationToken?: string | undefined;
|
|
2585
2590
|
created_at?: {
|
|
2586
2591
|
operator: "isEmpty" | "isNotEmpty";
|
|
2587
2592
|
value?: any;
|
|
@@ -2598,11 +2603,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2598
2603
|
values?: any[] | undefined;
|
|
2599
2604
|
caseSensitive?: boolean | undefined;
|
|
2600
2605
|
} | undefined;
|
|
2601
|
-
first?: number | undefined;
|
|
2602
|
-
after?: string | undefined;
|
|
2603
|
-
sortBy?: string | undefined;
|
|
2604
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2605
|
-
paginationToken?: string | undefined;
|
|
2606
2606
|
search?: {
|
|
2607
2607
|
query: string;
|
|
2608
2608
|
searchableFields: string[];
|
|
@@ -2635,19 +2635,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2635
2635
|
values?: any[] | undefined;
|
|
2636
2636
|
caseSensitive?: boolean | undefined;
|
|
2637
2637
|
} | undefined;
|
|
2638
|
-
|
|
2638
|
+
title?: {
|
|
2639
2639
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2640
2640
|
value?: string | undefined;
|
|
2641
2641
|
values?: string[] | undefined;
|
|
2642
2642
|
caseSensitive?: boolean | undefined;
|
|
2643
2643
|
} | undefined;
|
|
2644
|
-
|
|
2644
|
+
body?: {
|
|
2645
2645
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2646
2646
|
value?: string | undefined;
|
|
2647
2647
|
values?: string[] | undefined;
|
|
2648
2648
|
caseSensitive?: boolean | undefined;
|
|
2649
2649
|
} | undefined;
|
|
2650
|
-
|
|
2650
|
+
tag?: {
|
|
2651
2651
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2652
2652
|
value?: string | undefined;
|
|
2653
2653
|
values?: string[] | undefined;
|
|
@@ -2660,6 +2660,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2660
2660
|
caseSensitive?: boolean | undefined;
|
|
2661
2661
|
} | undefined;
|
|
2662
2662
|
}, {
|
|
2663
|
+
first?: number | undefined;
|
|
2664
|
+
after?: string | undefined;
|
|
2665
|
+
sortBy?: string | undefined;
|
|
2666
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2667
|
+
paginationToken?: string | undefined;
|
|
2663
2668
|
created_at?: {
|
|
2664
2669
|
operator: "isEmpty" | "isNotEmpty";
|
|
2665
2670
|
value?: any;
|
|
@@ -2676,11 +2681,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2676
2681
|
values?: any[] | undefined;
|
|
2677
2682
|
caseSensitive?: boolean | undefined;
|
|
2678
2683
|
} | undefined;
|
|
2679
|
-
first?: number | undefined;
|
|
2680
|
-
after?: string | undefined;
|
|
2681
|
-
sortBy?: string | undefined;
|
|
2682
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2683
|
-
paginationToken?: string | undefined;
|
|
2684
2684
|
search?: {
|
|
2685
2685
|
query: string;
|
|
2686
2686
|
searchableFields: string[];
|
|
@@ -2713,19 +2713,19 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2713
2713
|
values?: any[] | undefined;
|
|
2714
2714
|
caseSensitive?: boolean | undefined;
|
|
2715
2715
|
} | undefined;
|
|
2716
|
-
|
|
2716
|
+
title?: {
|
|
2717
2717
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2718
2718
|
value?: string | undefined;
|
|
2719
2719
|
values?: string[] | undefined;
|
|
2720
2720
|
caseSensitive?: boolean | undefined;
|
|
2721
2721
|
} | undefined;
|
|
2722
|
-
|
|
2722
|
+
body?: {
|
|
2723
2723
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2724
2724
|
value?: string | undefined;
|
|
2725
2725
|
values?: string[] | undefined;
|
|
2726
2726
|
caseSensitive?: boolean | undefined;
|
|
2727
2727
|
} | undefined;
|
|
2728
|
-
|
|
2728
|
+
tag?: {
|
|
2729
2729
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2730
2730
|
value?: string | undefined;
|
|
2731
2731
|
values?: string[] | undefined;
|
|
@@ -3594,18 +3594,18 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3594
3594
|
}>;
|
|
3595
3595
|
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
3596
3596
|
}, "strip", z.ZodTypeAny, {
|
|
3597
|
-
email: string;
|
|
3598
3597
|
passwords: {
|
|
3599
3598
|
password: string;
|
|
3600
3599
|
password_confirm: string;
|
|
3601
3600
|
};
|
|
3601
|
+
email: string;
|
|
3602
3602
|
acceptances: Record<string, boolean>;
|
|
3603
3603
|
}, {
|
|
3604
|
-
email: string;
|
|
3605
3604
|
passwords: {
|
|
3606
3605
|
password: string;
|
|
3607
3606
|
password_confirm: string;
|
|
3608
3607
|
};
|
|
3608
|
+
email: string;
|
|
3609
3609
|
acceptances?: Record<string, boolean> | undefined;
|
|
3610
3610
|
}>;
|
|
3611
3611
|
/** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
|
|
@@ -3633,77 +3633,23 @@ declare const signupInitiateSchema: z.ZodObject<{
|
|
|
3633
3633
|
password_confirm: string;
|
|
3634
3634
|
}>;
|
|
3635
3635
|
}, "strip", z.ZodTypeAny, {
|
|
3636
|
-
email: string;
|
|
3637
3636
|
passwords: {
|
|
3638
3637
|
password: string;
|
|
3639
3638
|
password_confirm: string;
|
|
3640
3639
|
};
|
|
3640
|
+
email: string;
|
|
3641
3641
|
metadata?: Record<string, unknown> | undefined;
|
|
3642
3642
|
}, {
|
|
3643
|
-
email: string;
|
|
3644
3643
|
passwords: {
|
|
3645
3644
|
password: string;
|
|
3646
3645
|
password_confirm: string;
|
|
3647
3646
|
};
|
|
3647
|
+
email: string;
|
|
3648
3648
|
metadata?: Record<string, unknown> | undefined;
|
|
3649
3649
|
}>;
|
|
3650
3650
|
type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
|
|
3651
|
-
/** Response when
|
|
3652
|
-
declare const
|
|
3653
|
-
created: z.ZodLiteral<false>;
|
|
3654
|
-
signup_consent_token: z.ZodString;
|
|
3655
|
-
consents: z.ZodArray<z.ZodObject<{
|
|
3656
|
-
type: z.ZodString;
|
|
3657
|
-
required: z.ZodBoolean;
|
|
3658
|
-
url: z.ZodString;
|
|
3659
|
-
label: z.ZodString;
|
|
3660
|
-
version: z.ZodString;
|
|
3661
|
-
effective_at: z.ZodString;
|
|
3662
|
-
content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3663
|
-
}, "strip", z.ZodTypeAny, {
|
|
3664
|
-
type: string;
|
|
3665
|
-
required: boolean;
|
|
3666
|
-
url: string;
|
|
3667
|
-
label: string;
|
|
3668
|
-
version: string;
|
|
3669
|
-
effective_at: string;
|
|
3670
|
-
content?: string | null | undefined;
|
|
3671
|
-
}, {
|
|
3672
|
-
type: string;
|
|
3673
|
-
required: boolean;
|
|
3674
|
-
url: string;
|
|
3675
|
-
label: string;
|
|
3676
|
-
version: string;
|
|
3677
|
-
effective_at: string;
|
|
3678
|
-
content?: string | null | undefined;
|
|
3679
|
-
}>, "many">;
|
|
3680
|
-
}, "strip", z.ZodTypeAny, {
|
|
3681
|
-
created: false;
|
|
3682
|
-
signup_consent_token: string;
|
|
3683
|
-
consents: {
|
|
3684
|
-
type: string;
|
|
3685
|
-
required: boolean;
|
|
3686
|
-
url: string;
|
|
3687
|
-
label: string;
|
|
3688
|
-
version: string;
|
|
3689
|
-
effective_at: string;
|
|
3690
|
-
content?: string | null | undefined;
|
|
3691
|
-
}[];
|
|
3692
|
-
}, {
|
|
3693
|
-
created: false;
|
|
3694
|
-
signup_consent_token: string;
|
|
3695
|
-
consents: {
|
|
3696
|
-
type: string;
|
|
3697
|
-
required: boolean;
|
|
3698
|
-
url: string;
|
|
3699
|
-
label: string;
|
|
3700
|
-
version: string;
|
|
3701
|
-
effective_at: string;
|
|
3702
|
-
content?: string | null | undefined;
|
|
3703
|
-
}[];
|
|
3704
|
-
}>;
|
|
3705
|
-
/** Response when account is created immediately (no consents). */
|
|
3706
|
-
declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
3651
|
+
/** Response when account is created. Session has consents_complete: false when consents are pending. */
|
|
3652
|
+
declare const signupInitiateResponseSchema: z.ZodObject<{
|
|
3707
3653
|
created: z.ZodLiteral<true>;
|
|
3708
3654
|
session: z.ZodObject<{
|
|
3709
3655
|
frontend_session: z.ZodObject<{
|
|
@@ -3757,8 +3703,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3757
3703
|
price_currency?: string | null | undefined;
|
|
3758
3704
|
}>, "many">>>;
|
|
3759
3705
|
}, "strip", z.ZodTypeAny, {
|
|
3760
|
-
userId: string;
|
|
3761
3706
|
email: string;
|
|
3707
|
+
userId: string;
|
|
3762
3708
|
username: string;
|
|
3763
3709
|
email_verified: boolean;
|
|
3764
3710
|
user_type: string;
|
|
@@ -3779,8 +3725,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3779
3725
|
price_currency?: string | null | undefined;
|
|
3780
3726
|
}[] | null | undefined;
|
|
3781
3727
|
}, {
|
|
3782
|
-
userId: string;
|
|
3783
3728
|
email: string;
|
|
3729
|
+
userId: string;
|
|
3784
3730
|
username: string;
|
|
3785
3731
|
email_verified: boolean;
|
|
3786
3732
|
user_type: string;
|
|
@@ -3803,8 +3749,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3803
3749
|
}>;
|
|
3804
3750
|
}, "strip", z.ZodTypeAny, {
|
|
3805
3751
|
user: {
|
|
3806
|
-
userId: string;
|
|
3807
3752
|
email: string;
|
|
3753
|
+
userId: string;
|
|
3808
3754
|
username: string;
|
|
3809
3755
|
email_verified: boolean;
|
|
3810
3756
|
user_type: string;
|
|
@@ -3825,15 +3771,15 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3825
3771
|
price_currency?: string | null | undefined;
|
|
3826
3772
|
}[] | null | undefined;
|
|
3827
3773
|
};
|
|
3774
|
+
status: string;
|
|
3828
3775
|
created_at: string;
|
|
3829
3776
|
expires_at: string;
|
|
3830
|
-
status: string;
|
|
3831
3777
|
user_agent?: string | null | undefined;
|
|
3832
3778
|
ip_address?: string | null | undefined;
|
|
3833
3779
|
}, {
|
|
3834
3780
|
user: {
|
|
3835
|
-
userId: string;
|
|
3836
3781
|
email: string;
|
|
3782
|
+
userId: string;
|
|
3837
3783
|
username: string;
|
|
3838
3784
|
email_verified: boolean;
|
|
3839
3785
|
user_type: string;
|
|
@@ -3854,9 +3800,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3854
3800
|
price_currency?: string | null | undefined;
|
|
3855
3801
|
}[] | null | undefined;
|
|
3856
3802
|
};
|
|
3803
|
+
status: string;
|
|
3857
3804
|
created_at: string;
|
|
3858
3805
|
expires_at: string;
|
|
3859
|
-
status: string;
|
|
3860
3806
|
user_agent?: string | null | undefined;
|
|
3861
3807
|
ip_address?: string | null | undefined;
|
|
3862
3808
|
}>;
|
|
@@ -3867,8 +3813,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3867
3813
|
refresh_token: string;
|
|
3868
3814
|
frontend_session: {
|
|
3869
3815
|
user: {
|
|
3870
|
-
userId: string;
|
|
3871
3816
|
email: string;
|
|
3817
|
+
userId: string;
|
|
3872
3818
|
username: string;
|
|
3873
3819
|
email_verified: boolean;
|
|
3874
3820
|
user_type: string;
|
|
@@ -3889,9 +3835,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3889
3835
|
price_currency?: string | null | undefined;
|
|
3890
3836
|
}[] | null | undefined;
|
|
3891
3837
|
};
|
|
3838
|
+
status: string;
|
|
3892
3839
|
created_at: string;
|
|
3893
3840
|
expires_at: string;
|
|
3894
|
-
status: string;
|
|
3895
3841
|
user_agent?: string | null | undefined;
|
|
3896
3842
|
ip_address?: string | null | undefined;
|
|
3897
3843
|
};
|
|
@@ -3901,8 +3847,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3901
3847
|
refresh_token: string;
|
|
3902
3848
|
frontend_session: {
|
|
3903
3849
|
user: {
|
|
3904
|
-
userId: string;
|
|
3905
3850
|
email: string;
|
|
3851
|
+
userId: string;
|
|
3906
3852
|
username: string;
|
|
3907
3853
|
email_verified: boolean;
|
|
3908
3854
|
user_type: string;
|
|
@@ -3923,9 +3869,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3923
3869
|
price_currency?: string | null | undefined;
|
|
3924
3870
|
}[] | null | undefined;
|
|
3925
3871
|
};
|
|
3872
|
+
status: string;
|
|
3926
3873
|
created_at: string;
|
|
3927
3874
|
expires_at: string;
|
|
3928
|
-
status: string;
|
|
3929
3875
|
user_agent?: string | null | undefined;
|
|
3930
3876
|
ip_address?: string | null | undefined;
|
|
3931
3877
|
};
|
|
@@ -3938,8 +3884,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3938
3884
|
refresh_token: string;
|
|
3939
3885
|
frontend_session: {
|
|
3940
3886
|
user: {
|
|
3941
|
-
userId: string;
|
|
3942
3887
|
email: string;
|
|
3888
|
+
userId: string;
|
|
3943
3889
|
username: string;
|
|
3944
3890
|
email_verified: boolean;
|
|
3945
3891
|
user_type: string;
|
|
@@ -3960,9 +3906,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3960
3906
|
price_currency?: string | null | undefined;
|
|
3961
3907
|
}[] | null | undefined;
|
|
3962
3908
|
};
|
|
3909
|
+
status: string;
|
|
3963
3910
|
created_at: string;
|
|
3964
3911
|
expires_at: string;
|
|
3965
|
-
status: string;
|
|
3966
3912
|
user_agent?: string | null | undefined;
|
|
3967
3913
|
ip_address?: string | null | undefined;
|
|
3968
3914
|
};
|
|
@@ -3975,8 +3921,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3975
3921
|
refresh_token: string;
|
|
3976
3922
|
frontend_session: {
|
|
3977
3923
|
user: {
|
|
3978
|
-
userId: string;
|
|
3979
3924
|
email: string;
|
|
3925
|
+
userId: string;
|
|
3980
3926
|
username: string;
|
|
3981
3927
|
email_verified: boolean;
|
|
3982
3928
|
user_type: string;
|
|
@@ -3997,9 +3943,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3997
3943
|
price_currency?: string | null | undefined;
|
|
3998
3944
|
}[] | null | undefined;
|
|
3999
3945
|
};
|
|
3946
|
+
status: string;
|
|
4000
3947
|
created_at: string;
|
|
4001
3948
|
expires_at: string;
|
|
4002
|
-
status: string;
|
|
4003
3949
|
user_agent?: string | null | undefined;
|
|
4004
3950
|
ip_address?: string | null | undefined;
|
|
4005
3951
|
};
|
|
@@ -4007,378 +3953,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
4007
3953
|
user_details_token: string;
|
|
4008
3954
|
};
|
|
4009
3955
|
}>;
|
|
4010
|
-
declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [z.ZodObject<{
|
|
4011
|
-
created: z.ZodLiteral<false>;
|
|
4012
|
-
signup_consent_token: z.ZodString;
|
|
4013
|
-
consents: z.ZodArray<z.ZodObject<{
|
|
4014
|
-
type: z.ZodString;
|
|
4015
|
-
required: z.ZodBoolean;
|
|
4016
|
-
url: z.ZodString;
|
|
4017
|
-
label: z.ZodString;
|
|
4018
|
-
version: z.ZodString;
|
|
4019
|
-
effective_at: z.ZodString;
|
|
4020
|
-
content: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4021
|
-
}, "strip", z.ZodTypeAny, {
|
|
4022
|
-
type: string;
|
|
4023
|
-
required: boolean;
|
|
4024
|
-
url: string;
|
|
4025
|
-
label: string;
|
|
4026
|
-
version: string;
|
|
4027
|
-
effective_at: string;
|
|
4028
|
-
content?: string | null | undefined;
|
|
4029
|
-
}, {
|
|
4030
|
-
type: string;
|
|
4031
|
-
required: boolean;
|
|
4032
|
-
url: string;
|
|
4033
|
-
label: string;
|
|
4034
|
-
version: string;
|
|
4035
|
-
effective_at: string;
|
|
4036
|
-
content?: string | null | undefined;
|
|
4037
|
-
}>, "many">;
|
|
4038
|
-
}, "strip", z.ZodTypeAny, {
|
|
4039
|
-
created: false;
|
|
4040
|
-
signup_consent_token: string;
|
|
4041
|
-
consents: {
|
|
4042
|
-
type: string;
|
|
4043
|
-
required: boolean;
|
|
4044
|
-
url: string;
|
|
4045
|
-
label: string;
|
|
4046
|
-
version: string;
|
|
4047
|
-
effective_at: string;
|
|
4048
|
-
content?: string | null | undefined;
|
|
4049
|
-
}[];
|
|
4050
|
-
}, {
|
|
4051
|
-
created: false;
|
|
4052
|
-
signup_consent_token: string;
|
|
4053
|
-
consents: {
|
|
4054
|
-
type: string;
|
|
4055
|
-
required: boolean;
|
|
4056
|
-
url: string;
|
|
4057
|
-
label: string;
|
|
4058
|
-
version: string;
|
|
4059
|
-
effective_at: string;
|
|
4060
|
-
content?: string | null | undefined;
|
|
4061
|
-
}[];
|
|
4062
|
-
}>, z.ZodObject<{
|
|
4063
|
-
created: z.ZodLiteral<true>;
|
|
4064
|
-
session: z.ZodObject<{
|
|
4065
|
-
frontend_session: z.ZodObject<{
|
|
4066
|
-
created_at: z.ZodString;
|
|
4067
|
-
expires_at: z.ZodString;
|
|
4068
|
-
status: z.ZodString;
|
|
4069
|
-
user_agent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4070
|
-
ip_address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4071
|
-
user: z.ZodObject<{
|
|
4072
|
-
userId: z.ZodString;
|
|
4073
|
-
email: z.ZodString;
|
|
4074
|
-
username: z.ZodString;
|
|
4075
|
-
email_verified: z.ZodBoolean;
|
|
4076
|
-
user_type: z.ZodString;
|
|
4077
|
-
first_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4078
|
-
last_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4079
|
-
avatar_url: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4080
|
-
consents_complete: z.ZodOptional<z.ZodBoolean>;
|
|
4081
|
-
subscriptions: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4082
|
-
subscription_id: z.ZodString;
|
|
4083
|
-
subscription_status: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4084
|
-
subscription_created: z.ZodString;
|
|
4085
|
-
subscription_current_period_start: z.ZodString;
|
|
4086
|
-
subscription_current_period_end: z.ZodString;
|
|
4087
|
-
subscription_cancel_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4088
|
-
subscription_canceled_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4089
|
-
product_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4090
|
-
price_amount: z.ZodNullable<z.ZodNumber>;
|
|
4091
|
-
price_currency: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4092
|
-
}, "strip", z.ZodTypeAny, {
|
|
4093
|
-
subscription_id: string;
|
|
4094
|
-
subscription_created: string;
|
|
4095
|
-
subscription_current_period_start: string;
|
|
4096
|
-
subscription_current_period_end: string;
|
|
4097
|
-
price_amount: number | null;
|
|
4098
|
-
subscription_status?: string | null | undefined;
|
|
4099
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4100
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4101
|
-
product_name?: string | null | undefined;
|
|
4102
|
-
price_currency?: string | null | undefined;
|
|
4103
|
-
}, {
|
|
4104
|
-
subscription_id: string;
|
|
4105
|
-
subscription_created: string;
|
|
4106
|
-
subscription_current_period_start: string;
|
|
4107
|
-
subscription_current_period_end: string;
|
|
4108
|
-
price_amount: number | null;
|
|
4109
|
-
subscription_status?: string | null | undefined;
|
|
4110
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4111
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4112
|
-
product_name?: string | null | undefined;
|
|
4113
|
-
price_currency?: string | null | undefined;
|
|
4114
|
-
}>, "many">>>;
|
|
4115
|
-
}, "strip", z.ZodTypeAny, {
|
|
4116
|
-
userId: string;
|
|
4117
|
-
email: string;
|
|
4118
|
-
username: string;
|
|
4119
|
-
email_verified: boolean;
|
|
4120
|
-
user_type: string;
|
|
4121
|
-
first_name?: string | null | undefined;
|
|
4122
|
-
last_name?: string | null | undefined;
|
|
4123
|
-
avatar_url?: string | null | undefined;
|
|
4124
|
-
consents_complete?: boolean | undefined;
|
|
4125
|
-
subscriptions?: {
|
|
4126
|
-
subscription_id: string;
|
|
4127
|
-
subscription_created: string;
|
|
4128
|
-
subscription_current_period_start: string;
|
|
4129
|
-
subscription_current_period_end: string;
|
|
4130
|
-
price_amount: number | null;
|
|
4131
|
-
subscription_status?: string | null | undefined;
|
|
4132
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4133
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4134
|
-
product_name?: string | null | undefined;
|
|
4135
|
-
price_currency?: string | null | undefined;
|
|
4136
|
-
}[] | null | undefined;
|
|
4137
|
-
}, {
|
|
4138
|
-
userId: string;
|
|
4139
|
-
email: string;
|
|
4140
|
-
username: string;
|
|
4141
|
-
email_verified: boolean;
|
|
4142
|
-
user_type: string;
|
|
4143
|
-
first_name?: string | null | undefined;
|
|
4144
|
-
last_name?: string | null | undefined;
|
|
4145
|
-
avatar_url?: string | null | undefined;
|
|
4146
|
-
consents_complete?: boolean | undefined;
|
|
4147
|
-
subscriptions?: {
|
|
4148
|
-
subscription_id: string;
|
|
4149
|
-
subscription_created: string;
|
|
4150
|
-
subscription_current_period_start: string;
|
|
4151
|
-
subscription_current_period_end: string;
|
|
4152
|
-
price_amount: number | null;
|
|
4153
|
-
subscription_status?: string | null | undefined;
|
|
4154
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4155
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4156
|
-
product_name?: string | null | undefined;
|
|
4157
|
-
price_currency?: string | null | undefined;
|
|
4158
|
-
}[] | null | undefined;
|
|
4159
|
-
}>;
|
|
4160
|
-
}, "strip", z.ZodTypeAny, {
|
|
4161
|
-
user: {
|
|
4162
|
-
userId: string;
|
|
4163
|
-
email: string;
|
|
4164
|
-
username: string;
|
|
4165
|
-
email_verified: boolean;
|
|
4166
|
-
user_type: string;
|
|
4167
|
-
first_name?: string | null | undefined;
|
|
4168
|
-
last_name?: string | null | undefined;
|
|
4169
|
-
avatar_url?: string | null | undefined;
|
|
4170
|
-
consents_complete?: boolean | undefined;
|
|
4171
|
-
subscriptions?: {
|
|
4172
|
-
subscription_id: string;
|
|
4173
|
-
subscription_created: string;
|
|
4174
|
-
subscription_current_period_start: string;
|
|
4175
|
-
subscription_current_period_end: string;
|
|
4176
|
-
price_amount: number | null;
|
|
4177
|
-
subscription_status?: string | null | undefined;
|
|
4178
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4179
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4180
|
-
product_name?: string | null | undefined;
|
|
4181
|
-
price_currency?: string | null | undefined;
|
|
4182
|
-
}[] | null | undefined;
|
|
4183
|
-
};
|
|
4184
|
-
created_at: string;
|
|
4185
|
-
expires_at: string;
|
|
4186
|
-
status: string;
|
|
4187
|
-
user_agent?: string | null | undefined;
|
|
4188
|
-
ip_address?: string | null | undefined;
|
|
4189
|
-
}, {
|
|
4190
|
-
user: {
|
|
4191
|
-
userId: string;
|
|
4192
|
-
email: string;
|
|
4193
|
-
username: string;
|
|
4194
|
-
email_verified: boolean;
|
|
4195
|
-
user_type: string;
|
|
4196
|
-
first_name?: string | null | undefined;
|
|
4197
|
-
last_name?: string | null | undefined;
|
|
4198
|
-
avatar_url?: string | null | undefined;
|
|
4199
|
-
consents_complete?: boolean | undefined;
|
|
4200
|
-
subscriptions?: {
|
|
4201
|
-
subscription_id: string;
|
|
4202
|
-
subscription_created: string;
|
|
4203
|
-
subscription_current_period_start: string;
|
|
4204
|
-
subscription_current_period_end: string;
|
|
4205
|
-
price_amount: number | null;
|
|
4206
|
-
subscription_status?: string | null | undefined;
|
|
4207
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4208
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4209
|
-
product_name?: string | null | undefined;
|
|
4210
|
-
price_currency?: string | null | undefined;
|
|
4211
|
-
}[] | null | undefined;
|
|
4212
|
-
};
|
|
4213
|
-
created_at: string;
|
|
4214
|
-
expires_at: string;
|
|
4215
|
-
status: string;
|
|
4216
|
-
user_agent?: string | null | undefined;
|
|
4217
|
-
ip_address?: string | null | undefined;
|
|
4218
|
-
}>;
|
|
4219
|
-
access_token: z.ZodString;
|
|
4220
|
-
refresh_token: z.ZodString;
|
|
4221
|
-
user_details_token: z.ZodString;
|
|
4222
|
-
}, "strip", z.ZodTypeAny, {
|
|
4223
|
-
refresh_token: string;
|
|
4224
|
-
frontend_session: {
|
|
4225
|
-
user: {
|
|
4226
|
-
userId: string;
|
|
4227
|
-
email: string;
|
|
4228
|
-
username: string;
|
|
4229
|
-
email_verified: boolean;
|
|
4230
|
-
user_type: string;
|
|
4231
|
-
first_name?: string | null | undefined;
|
|
4232
|
-
last_name?: string | null | undefined;
|
|
4233
|
-
avatar_url?: string | null | undefined;
|
|
4234
|
-
consents_complete?: boolean | undefined;
|
|
4235
|
-
subscriptions?: {
|
|
4236
|
-
subscription_id: string;
|
|
4237
|
-
subscription_created: string;
|
|
4238
|
-
subscription_current_period_start: string;
|
|
4239
|
-
subscription_current_period_end: string;
|
|
4240
|
-
price_amount: number | null;
|
|
4241
|
-
subscription_status?: string | null | undefined;
|
|
4242
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4243
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4244
|
-
product_name?: string | null | undefined;
|
|
4245
|
-
price_currency?: string | null | undefined;
|
|
4246
|
-
}[] | null | undefined;
|
|
4247
|
-
};
|
|
4248
|
-
created_at: string;
|
|
4249
|
-
expires_at: string;
|
|
4250
|
-
status: string;
|
|
4251
|
-
user_agent?: string | null | undefined;
|
|
4252
|
-
ip_address?: string | null | undefined;
|
|
4253
|
-
};
|
|
4254
|
-
access_token: string;
|
|
4255
|
-
user_details_token: string;
|
|
4256
|
-
}, {
|
|
4257
|
-
refresh_token: string;
|
|
4258
|
-
frontend_session: {
|
|
4259
|
-
user: {
|
|
4260
|
-
userId: string;
|
|
4261
|
-
email: string;
|
|
4262
|
-
username: string;
|
|
4263
|
-
email_verified: boolean;
|
|
4264
|
-
user_type: string;
|
|
4265
|
-
first_name?: string | null | undefined;
|
|
4266
|
-
last_name?: string | null | undefined;
|
|
4267
|
-
avatar_url?: string | null | undefined;
|
|
4268
|
-
consents_complete?: boolean | undefined;
|
|
4269
|
-
subscriptions?: {
|
|
4270
|
-
subscription_id: string;
|
|
4271
|
-
subscription_created: string;
|
|
4272
|
-
subscription_current_period_start: string;
|
|
4273
|
-
subscription_current_period_end: string;
|
|
4274
|
-
price_amount: number | null;
|
|
4275
|
-
subscription_status?: string | null | undefined;
|
|
4276
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4277
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4278
|
-
product_name?: string | null | undefined;
|
|
4279
|
-
price_currency?: string | null | undefined;
|
|
4280
|
-
}[] | null | undefined;
|
|
4281
|
-
};
|
|
4282
|
-
created_at: string;
|
|
4283
|
-
expires_at: string;
|
|
4284
|
-
status: string;
|
|
4285
|
-
user_agent?: string | null | undefined;
|
|
4286
|
-
ip_address?: string | null | undefined;
|
|
4287
|
-
};
|
|
4288
|
-
access_token: string;
|
|
4289
|
-
user_details_token: string;
|
|
4290
|
-
}>;
|
|
4291
|
-
}, "strip", z.ZodTypeAny, {
|
|
4292
|
-
created: true;
|
|
4293
|
-
session: {
|
|
4294
|
-
refresh_token: string;
|
|
4295
|
-
frontend_session: {
|
|
4296
|
-
user: {
|
|
4297
|
-
userId: string;
|
|
4298
|
-
email: string;
|
|
4299
|
-
username: string;
|
|
4300
|
-
email_verified: boolean;
|
|
4301
|
-
user_type: string;
|
|
4302
|
-
first_name?: string | null | undefined;
|
|
4303
|
-
last_name?: string | null | undefined;
|
|
4304
|
-
avatar_url?: string | null | undefined;
|
|
4305
|
-
consents_complete?: boolean | undefined;
|
|
4306
|
-
subscriptions?: {
|
|
4307
|
-
subscription_id: string;
|
|
4308
|
-
subscription_created: string;
|
|
4309
|
-
subscription_current_period_start: string;
|
|
4310
|
-
subscription_current_period_end: string;
|
|
4311
|
-
price_amount: number | null;
|
|
4312
|
-
subscription_status?: string | null | undefined;
|
|
4313
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4314
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4315
|
-
product_name?: string | null | undefined;
|
|
4316
|
-
price_currency?: string | null | undefined;
|
|
4317
|
-
}[] | null | undefined;
|
|
4318
|
-
};
|
|
4319
|
-
created_at: string;
|
|
4320
|
-
expires_at: string;
|
|
4321
|
-
status: string;
|
|
4322
|
-
user_agent?: string | null | undefined;
|
|
4323
|
-
ip_address?: string | null | undefined;
|
|
4324
|
-
};
|
|
4325
|
-
access_token: string;
|
|
4326
|
-
user_details_token: string;
|
|
4327
|
-
};
|
|
4328
|
-
}, {
|
|
4329
|
-
created: true;
|
|
4330
|
-
session: {
|
|
4331
|
-
refresh_token: string;
|
|
4332
|
-
frontend_session: {
|
|
4333
|
-
user: {
|
|
4334
|
-
userId: string;
|
|
4335
|
-
email: string;
|
|
4336
|
-
username: string;
|
|
4337
|
-
email_verified: boolean;
|
|
4338
|
-
user_type: string;
|
|
4339
|
-
first_name?: string | null | undefined;
|
|
4340
|
-
last_name?: string | null | undefined;
|
|
4341
|
-
avatar_url?: string | null | undefined;
|
|
4342
|
-
consents_complete?: boolean | undefined;
|
|
4343
|
-
subscriptions?: {
|
|
4344
|
-
subscription_id: string;
|
|
4345
|
-
subscription_created: string;
|
|
4346
|
-
subscription_current_period_start: string;
|
|
4347
|
-
subscription_current_period_end: string;
|
|
4348
|
-
price_amount: number | null;
|
|
4349
|
-
subscription_status?: string | null | undefined;
|
|
4350
|
-
subscription_cancel_at?: string | null | undefined;
|
|
4351
|
-
subscription_canceled_at?: string | null | undefined;
|
|
4352
|
-
product_name?: string | null | undefined;
|
|
4353
|
-
price_currency?: string | null | undefined;
|
|
4354
|
-
}[] | null | undefined;
|
|
4355
|
-
};
|
|
4356
|
-
created_at: string;
|
|
4357
|
-
expires_at: string;
|
|
4358
|
-
status: string;
|
|
4359
|
-
user_agent?: string | null | undefined;
|
|
4360
|
-
ip_address?: string | null | undefined;
|
|
4361
|
-
};
|
|
4362
|
-
access_token: string;
|
|
4363
|
-
user_details_token: string;
|
|
4364
|
-
};
|
|
4365
|
-
}>]>;
|
|
4366
3956
|
type SignupInitiateResponseDto = z.infer<typeof signupInitiateResponseSchema>;
|
|
4367
3957
|
//#endregion
|
|
4368
|
-
//#region src/validation/signup_complete_zod.d.ts
|
|
4369
|
-
/** Input for signupComplete - acceptances only. Token is in Authorization: Bearer header. */
|
|
4370
|
-
declare const signupCompleteSchema: z.ZodObject<{
|
|
4371
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4372
|
-
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
4373
|
-
}, "strip", z.ZodTypeAny, {
|
|
4374
|
-
acceptances: Record<string, boolean>;
|
|
4375
|
-
metadata?: Record<string, unknown> | undefined;
|
|
4376
|
-
}, {
|
|
4377
|
-
acceptances?: Record<string, boolean> | undefined;
|
|
4378
|
-
metadata?: Record<string, unknown> | undefined;
|
|
4379
|
-
}>;
|
|
4380
|
-
type SignupCompleteInputDto = z.infer<typeof signupCompleteSchema>;
|
|
4381
|
-
//#endregion
|
|
4382
3958
|
//#region src/validation/record_subscriber/record_subscriber_create_zod.d.ts
|
|
4383
3959
|
declare const RecordSubscriberCreateSchema: z.ZodObject<{
|
|
4384
3960
|
record_type: z.ZodEnum<["app_setting", "attachment_folder", "attachment", "user", "user_session", "user_profile", "refresh_token", "refresh_token_family", "user_subscription", "password_reset", "record_version", "support_ticket", "support_ticket_activity", "credit_transaction", "team_member", "client_contact", "client_location", "client_profile", "business_profile", "tracker", "tracker_activity", "team", "quote", "note", "followup", "saved_filter", "user_pinned_preset", "record_subscriber", "support_staff", "user_consent"]>;
|
|
@@ -4674,8 +4250,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4674
4250
|
user_id_display_name?: string | null | undefined;
|
|
4675
4251
|
}>>>;
|
|
4676
4252
|
}, "strip", z.ZodTypeAny, {
|
|
4677
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4678
4253
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4254
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4679
4255
|
id: string;
|
|
4680
4256
|
description: string;
|
|
4681
4257
|
title: string;
|
|
@@ -4687,12 +4263,12 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4687
4263
|
updated_by?: string | null | undefined;
|
|
4688
4264
|
archived_at?: string | null | undefined;
|
|
4689
4265
|
created_by_display_name?: string | null | undefined;
|
|
4690
|
-
credit_value?: string | null | undefined;
|
|
4691
4266
|
display_id?: string | null | undefined;
|
|
4267
|
+
credit_value?: string | null | undefined;
|
|
4268
|
+
display_id_prefix?: string | null | undefined;
|
|
4692
4269
|
start_at?: string | null | undefined;
|
|
4693
4270
|
target_at?: string | null | undefined;
|
|
4694
4271
|
completed_at?: string | null | undefined;
|
|
4695
|
-
display_id_prefix?: string | null | undefined;
|
|
4696
4272
|
locked_approval_at?: string | null | undefined;
|
|
4697
4273
|
my_subscription?: {
|
|
4698
4274
|
created_at: string;
|
|
@@ -4706,8 +4282,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4706
4282
|
user_id_display_name?: string | null | undefined;
|
|
4707
4283
|
} | null | undefined;
|
|
4708
4284
|
}, {
|
|
4709
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4710
4285
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4286
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4711
4287
|
id: string;
|
|
4712
4288
|
description: string;
|
|
4713
4289
|
title: string;
|
|
@@ -4719,12 +4295,12 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4719
4295
|
updated_by?: string | null | undefined;
|
|
4720
4296
|
archived_at?: string | null | undefined;
|
|
4721
4297
|
created_by_display_name?: string | null | undefined;
|
|
4722
|
-
credit_value?: string | null | undefined;
|
|
4723
4298
|
display_id?: string | null | undefined;
|
|
4299
|
+
credit_value?: string | null | undefined;
|
|
4300
|
+
display_id_prefix?: string | null | undefined;
|
|
4724
4301
|
start_at?: string | null | undefined;
|
|
4725
4302
|
target_at?: string | null | undefined;
|
|
4726
4303
|
completed_at?: string | null | undefined;
|
|
4727
|
-
display_id_prefix?: string | null | undefined;
|
|
4728
4304
|
locked_approval_at?: string | null | undefined;
|
|
4729
4305
|
my_subscription?: {
|
|
4730
4306
|
created_at: string;
|
|
@@ -4796,8 +4372,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4796
4372
|
user_id_display_name?: string | null | undefined;
|
|
4797
4373
|
}>>>;
|
|
4798
4374
|
}, "strip", z.ZodTypeAny, {
|
|
4799
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4800
4375
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4376
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4801
4377
|
id: string;
|
|
4802
4378
|
description: string;
|
|
4803
4379
|
title: string;
|
|
@@ -4809,12 +4385,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4809
4385
|
updated_by?: string | null | undefined;
|
|
4810
4386
|
archived_at?: string | null | undefined;
|
|
4811
4387
|
created_by_display_name?: string | null | undefined;
|
|
4812
|
-
credit_value?: string | null | undefined;
|
|
4813
4388
|
display_id?: string | null | undefined;
|
|
4389
|
+
credit_value?: string | null | undefined;
|
|
4390
|
+
display_id_prefix?: string | null | undefined;
|
|
4814
4391
|
start_at?: string | null | undefined;
|
|
4815
4392
|
target_at?: string | null | undefined;
|
|
4816
4393
|
completed_at?: string | null | undefined;
|
|
4817
|
-
display_id_prefix?: string | null | undefined;
|
|
4818
4394
|
locked_approval_at?: string | null | undefined;
|
|
4819
4395
|
my_subscription?: {
|
|
4820
4396
|
created_at: string;
|
|
@@ -4828,8 +4404,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4828
4404
|
user_id_display_name?: string | null | undefined;
|
|
4829
4405
|
} | null | undefined;
|
|
4830
4406
|
}, {
|
|
4831
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4832
4407
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4408
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4833
4409
|
id: string;
|
|
4834
4410
|
description: string;
|
|
4835
4411
|
title: string;
|
|
@@ -4841,12 +4417,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4841
4417
|
updated_by?: string | null | undefined;
|
|
4842
4418
|
archived_at?: string | null | undefined;
|
|
4843
4419
|
created_by_display_name?: string | null | undefined;
|
|
4844
|
-
credit_value?: string | null | undefined;
|
|
4845
4420
|
display_id?: string | null | undefined;
|
|
4421
|
+
credit_value?: string | null | undefined;
|
|
4422
|
+
display_id_prefix?: string | null | undefined;
|
|
4846
4423
|
start_at?: string | null | undefined;
|
|
4847
4424
|
target_at?: string | null | undefined;
|
|
4848
4425
|
completed_at?: string | null | undefined;
|
|
4849
|
-
display_id_prefix?: string | null | undefined;
|
|
4850
4426
|
locked_approval_at?: string | null | undefined;
|
|
4851
4427
|
my_subscription?: {
|
|
4852
4428
|
created_at: string;
|
|
@@ -4884,8 +4460,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4884
4460
|
}>;
|
|
4885
4461
|
}, "strip", z.ZodTypeAny, {
|
|
4886
4462
|
items: {
|
|
4887
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4888
4463
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4464
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4889
4465
|
id: string;
|
|
4890
4466
|
description: string;
|
|
4891
4467
|
title: string;
|
|
@@ -4897,12 +4473,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4897
4473
|
updated_by?: string | null | undefined;
|
|
4898
4474
|
archived_at?: string | null | undefined;
|
|
4899
4475
|
created_by_display_name?: string | null | undefined;
|
|
4900
|
-
credit_value?: string | null | undefined;
|
|
4901
4476
|
display_id?: string | null | undefined;
|
|
4477
|
+
credit_value?: string | null | undefined;
|
|
4478
|
+
display_id_prefix?: string | null | undefined;
|
|
4902
4479
|
start_at?: string | null | undefined;
|
|
4903
4480
|
target_at?: string | null | undefined;
|
|
4904
4481
|
completed_at?: string | null | undefined;
|
|
4905
|
-
display_id_prefix?: string | null | undefined;
|
|
4906
4482
|
locked_approval_at?: string | null | undefined;
|
|
4907
4483
|
my_subscription?: {
|
|
4908
4484
|
created_at: string;
|
|
@@ -4926,8 +4502,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4926
4502
|
};
|
|
4927
4503
|
}, {
|
|
4928
4504
|
items: {
|
|
4929
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4930
4505
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4506
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4931
4507
|
id: string;
|
|
4932
4508
|
description: string;
|
|
4933
4509
|
title: string;
|
|
@@ -4939,12 +4515,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4939
4515
|
updated_by?: string | null | undefined;
|
|
4940
4516
|
archived_at?: string | null | undefined;
|
|
4941
4517
|
created_by_display_name?: string | null | undefined;
|
|
4942
|
-
credit_value?: string | null | undefined;
|
|
4943
4518
|
display_id?: string | null | undefined;
|
|
4519
|
+
credit_value?: string | null | undefined;
|
|
4520
|
+
display_id_prefix?: string | null | undefined;
|
|
4944
4521
|
start_at?: string | null | undefined;
|
|
4945
4522
|
target_at?: string | null | undefined;
|
|
4946
4523
|
completed_at?: string | null | undefined;
|
|
4947
|
-
display_id_prefix?: string | null | undefined;
|
|
4948
4524
|
locked_approval_at?: string | null | undefined;
|
|
4949
4525
|
my_subscription?: {
|
|
4950
4526
|
created_at: string;
|
|
@@ -5663,6 +5239,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5663
5239
|
searchableFields: string[];
|
|
5664
5240
|
}>>;
|
|
5665
5241
|
}, "strip", z.ZodTypeAny, {
|
|
5242
|
+
type?: {
|
|
5243
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5244
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5245
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5246
|
+
caseSensitive?: boolean | undefined;
|
|
5247
|
+
} | undefined;
|
|
5248
|
+
status?: {
|
|
5249
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5250
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5251
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5252
|
+
caseSensitive?: boolean | undefined;
|
|
5253
|
+
} | undefined;
|
|
5254
|
+
first?: number | undefined;
|
|
5255
|
+
after?: string | undefined;
|
|
5256
|
+
sortBy?: string | undefined;
|
|
5257
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5258
|
+
paginationToken?: string | undefined;
|
|
5666
5259
|
created_at?: {
|
|
5667
5260
|
operator: "isEmpty" | "isNotEmpty";
|
|
5668
5261
|
value?: any;
|
|
@@ -5679,23 +5272,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5679
5272
|
values?: any[] | undefined;
|
|
5680
5273
|
caseSensitive?: boolean | undefined;
|
|
5681
5274
|
} | undefined;
|
|
5682
|
-
status?: {
|
|
5683
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5684
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5685
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5686
|
-
caseSensitive?: boolean | undefined;
|
|
5687
|
-
} | undefined;
|
|
5688
|
-
type?: {
|
|
5689
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5690
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5691
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5692
|
-
caseSensitive?: boolean | undefined;
|
|
5693
|
-
} | undefined;
|
|
5694
|
-
first?: number | undefined;
|
|
5695
|
-
after?: string | undefined;
|
|
5696
|
-
sortBy?: string | undefined;
|
|
5697
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5698
|
-
paginationToken?: string | undefined;
|
|
5699
5275
|
created_by?: {
|
|
5700
5276
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5701
5277
|
value?: string | undefined;
|
|
@@ -5801,6 +5377,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5801
5377
|
caseSensitive?: boolean | undefined;
|
|
5802
5378
|
} | undefined;
|
|
5803
5379
|
}, {
|
|
5380
|
+
type?: {
|
|
5381
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5382
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5383
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5384
|
+
caseSensitive?: boolean | undefined;
|
|
5385
|
+
} | undefined;
|
|
5386
|
+
status?: {
|
|
5387
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5388
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5389
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5390
|
+
caseSensitive?: boolean | undefined;
|
|
5391
|
+
} | undefined;
|
|
5392
|
+
first?: number | undefined;
|
|
5393
|
+
after?: string | undefined;
|
|
5394
|
+
sortBy?: string | undefined;
|
|
5395
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5396
|
+
paginationToken?: string | undefined;
|
|
5804
5397
|
created_at?: {
|
|
5805
5398
|
operator: "isEmpty" | "isNotEmpty";
|
|
5806
5399
|
value?: any;
|
|
@@ -5817,23 +5410,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5817
5410
|
values?: any[] | undefined;
|
|
5818
5411
|
caseSensitive?: boolean | undefined;
|
|
5819
5412
|
} | undefined;
|
|
5820
|
-
status?: {
|
|
5821
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5822
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5823
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5824
|
-
caseSensitive?: boolean | undefined;
|
|
5825
|
-
} | undefined;
|
|
5826
|
-
type?: {
|
|
5827
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5828
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5829
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5830
|
-
caseSensitive?: boolean | undefined;
|
|
5831
|
-
} | undefined;
|
|
5832
|
-
first?: number | undefined;
|
|
5833
|
-
after?: string | undefined;
|
|
5834
|
-
sortBy?: string | undefined;
|
|
5835
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5836
|
-
paginationToken?: string | undefined;
|
|
5837
5413
|
created_by?: {
|
|
5838
5414
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5839
5415
|
value?: string | undefined;
|
|
@@ -5976,8 +5552,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5976
5552
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5977
5553
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5978
5554
|
}, "strip", z.ZodTypeAny, {
|
|
5979
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5980
5555
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5556
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5981
5557
|
id: string;
|
|
5982
5558
|
description: string;
|
|
5983
5559
|
title: string;
|
|
@@ -5993,20 +5569,20 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5993
5569
|
archived_by?: string | null | undefined;
|
|
5994
5570
|
created_by_display_name?: string | null | undefined;
|
|
5995
5571
|
updated_by_display_name?: string | null | undefined;
|
|
5572
|
+
display_id?: string | null | undefined;
|
|
5996
5573
|
credit_value?: string | null | undefined;
|
|
5997
5574
|
delivered_value?: string | null | undefined;
|
|
5998
|
-
|
|
5575
|
+
display_id_prefix?: string | null | undefined;
|
|
5999
5576
|
start_at?: string | null | undefined;
|
|
6000
5577
|
target_at?: string | null | undefined;
|
|
6001
5578
|
completed_at?: string | null | undefined;
|
|
6002
|
-
display_id_prefix?: string | null | undefined;
|
|
6003
5579
|
locked_approval_at?: string | null | undefined;
|
|
6004
5580
|
assigned_to?: string | null | undefined;
|
|
6005
5581
|
assigned_to_display_name?: string | null | undefined;
|
|
6006
5582
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
6007
5583
|
}, {
|
|
6008
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6009
5584
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5585
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6010
5586
|
id: string;
|
|
6011
5587
|
description: string;
|
|
6012
5588
|
title: string;
|
|
@@ -6022,13 +5598,13 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
6022
5598
|
archived_by?: string | null | undefined;
|
|
6023
5599
|
created_by_display_name?: string | null | undefined;
|
|
6024
5600
|
updated_by_display_name?: string | null | undefined;
|
|
5601
|
+
display_id?: string | null | undefined;
|
|
6025
5602
|
credit_value?: string | null | undefined;
|
|
6026
5603
|
delivered_value?: string | null | undefined;
|
|
6027
|
-
|
|
5604
|
+
display_id_prefix?: string | null | undefined;
|
|
6028
5605
|
start_at?: string | null | undefined;
|
|
6029
5606
|
target_at?: string | null | undefined;
|
|
6030
5607
|
completed_at?: string | null | undefined;
|
|
6031
|
-
display_id_prefix?: string | null | undefined;
|
|
6032
5608
|
locked_approval_at?: string | null | undefined;
|
|
6033
5609
|
assigned_to?: string | null | undefined;
|
|
6034
5610
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6069,8 +5645,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6069
5645
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6070
5646
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6071
5647
|
}, "strip", z.ZodTypeAny, {
|
|
6072
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6073
5648
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5649
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6074
5650
|
id: string;
|
|
6075
5651
|
description: string;
|
|
6076
5652
|
title: string;
|
|
@@ -6086,20 +5662,20 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6086
5662
|
archived_by?: string | null | undefined;
|
|
6087
5663
|
created_by_display_name?: string | null | undefined;
|
|
6088
5664
|
updated_by_display_name?: string | null | undefined;
|
|
5665
|
+
display_id?: string | null | undefined;
|
|
6089
5666
|
credit_value?: string | null | undefined;
|
|
6090
5667
|
delivered_value?: string | null | undefined;
|
|
6091
|
-
|
|
5668
|
+
display_id_prefix?: string | null | undefined;
|
|
6092
5669
|
start_at?: string | null | undefined;
|
|
6093
5670
|
target_at?: string | null | undefined;
|
|
6094
5671
|
completed_at?: string | null | undefined;
|
|
6095
|
-
display_id_prefix?: string | null | undefined;
|
|
6096
5672
|
locked_approval_at?: string | null | undefined;
|
|
6097
5673
|
assigned_to?: string | null | undefined;
|
|
6098
5674
|
assigned_to_display_name?: string | null | undefined;
|
|
6099
5675
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
6100
5676
|
}, {
|
|
6101
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6102
5677
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5678
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6103
5679
|
id: string;
|
|
6104
5680
|
description: string;
|
|
6105
5681
|
title: string;
|
|
@@ -6115,13 +5691,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6115
5691
|
archived_by?: string | null | undefined;
|
|
6116
5692
|
created_by_display_name?: string | null | undefined;
|
|
6117
5693
|
updated_by_display_name?: string | null | undefined;
|
|
5694
|
+
display_id?: string | null | undefined;
|
|
6118
5695
|
credit_value?: string | null | undefined;
|
|
6119
5696
|
delivered_value?: string | null | undefined;
|
|
6120
|
-
|
|
5697
|
+
display_id_prefix?: string | null | undefined;
|
|
6121
5698
|
start_at?: string | null | undefined;
|
|
6122
5699
|
target_at?: string | null | undefined;
|
|
6123
5700
|
completed_at?: string | null | undefined;
|
|
6124
|
-
display_id_prefix?: string | null | undefined;
|
|
6125
5701
|
locked_approval_at?: string | null | undefined;
|
|
6126
5702
|
assigned_to?: string | null | undefined;
|
|
6127
5703
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6151,8 +5727,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6151
5727
|
}>;
|
|
6152
5728
|
}, "strip", z.ZodTypeAny, {
|
|
6153
5729
|
items: {
|
|
6154
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6155
5730
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5731
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6156
5732
|
id: string;
|
|
6157
5733
|
description: string;
|
|
6158
5734
|
title: string;
|
|
@@ -6168,13 +5744,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6168
5744
|
archived_by?: string | null | undefined;
|
|
6169
5745
|
created_by_display_name?: string | null | undefined;
|
|
6170
5746
|
updated_by_display_name?: string | null | undefined;
|
|
5747
|
+
display_id?: string | null | undefined;
|
|
6171
5748
|
credit_value?: string | null | undefined;
|
|
6172
5749
|
delivered_value?: string | null | undefined;
|
|
6173
|
-
|
|
5750
|
+
display_id_prefix?: string | null | undefined;
|
|
6174
5751
|
start_at?: string | null | undefined;
|
|
6175
5752
|
target_at?: string | null | undefined;
|
|
6176
5753
|
completed_at?: string | null | undefined;
|
|
6177
|
-
display_id_prefix?: string | null | undefined;
|
|
6178
5754
|
locked_approval_at?: string | null | undefined;
|
|
6179
5755
|
assigned_to?: string | null | undefined;
|
|
6180
5756
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6190,8 +5766,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6190
5766
|
};
|
|
6191
5767
|
}, {
|
|
6192
5768
|
items: {
|
|
6193
|
-
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6194
5769
|
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5770
|
+
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6195
5771
|
id: string;
|
|
6196
5772
|
description: string;
|
|
6197
5773
|
title: string;
|
|
@@ -6207,13 +5783,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6207
5783
|
archived_by?: string | null | undefined;
|
|
6208
5784
|
created_by_display_name?: string | null | undefined;
|
|
6209
5785
|
updated_by_display_name?: string | null | undefined;
|
|
5786
|
+
display_id?: string | null | undefined;
|
|
6210
5787
|
credit_value?: string | null | undefined;
|
|
6211
5788
|
delivered_value?: string | null | undefined;
|
|
6212
|
-
|
|
5789
|
+
display_id_prefix?: string | null | undefined;
|
|
6213
5790
|
start_at?: string | null | undefined;
|
|
6214
5791
|
target_at?: string | null | undefined;
|
|
6215
5792
|
completed_at?: string | null | undefined;
|
|
6216
|
-
display_id_prefix?: string | null | undefined;
|
|
6217
5793
|
locked_approval_at?: string | null | undefined;
|
|
6218
5794
|
assigned_to?: string | null | undefined;
|
|
6219
5795
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -7026,6 +6602,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7026
6602
|
searchableFields: string[];
|
|
7027
6603
|
}>>;
|
|
7028
6604
|
}, "strip", z.ZodTypeAny, {
|
|
6605
|
+
type?: {
|
|
6606
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6607
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6608
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6609
|
+
caseSensitive?: boolean | undefined;
|
|
6610
|
+
} | undefined;
|
|
6611
|
+
status?: {
|
|
6612
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6613
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6614
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6615
|
+
caseSensitive?: boolean | undefined;
|
|
6616
|
+
} | undefined;
|
|
6617
|
+
first?: number | undefined;
|
|
6618
|
+
after?: string | undefined;
|
|
6619
|
+
sortBy?: string | undefined;
|
|
6620
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6621
|
+
paginationToken?: string | undefined;
|
|
7029
6622
|
created_at?: {
|
|
7030
6623
|
operator: "isEmpty" | "isNotEmpty";
|
|
7031
6624
|
value?: any;
|
|
@@ -7042,23 +6635,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7042
6635
|
values?: any[] | undefined;
|
|
7043
6636
|
caseSensitive?: boolean | undefined;
|
|
7044
6637
|
} | undefined;
|
|
7045
|
-
status?: {
|
|
7046
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7047
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7048
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7049
|
-
caseSensitive?: boolean | undefined;
|
|
7050
|
-
} | undefined;
|
|
7051
|
-
type?: {
|
|
7052
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7053
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7054
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7055
|
-
caseSensitive?: boolean | undefined;
|
|
7056
|
-
} | undefined;
|
|
7057
|
-
first?: number | undefined;
|
|
7058
|
-
after?: string | undefined;
|
|
7059
|
-
sortBy?: string | undefined;
|
|
7060
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7061
|
-
paginationToken?: string | undefined;
|
|
7062
6638
|
created_by?: {
|
|
7063
6639
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7064
6640
|
value?: string | undefined;
|
|
@@ -7182,6 +6758,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7182
6758
|
caseSensitive?: boolean | undefined;
|
|
7183
6759
|
} | undefined;
|
|
7184
6760
|
}, {
|
|
6761
|
+
type?: {
|
|
6762
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6763
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6764
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6765
|
+
caseSensitive?: boolean | undefined;
|
|
6766
|
+
} | undefined;
|
|
6767
|
+
status?: {
|
|
6768
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6769
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6770
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6771
|
+
caseSensitive?: boolean | undefined;
|
|
6772
|
+
} | undefined;
|
|
6773
|
+
first?: number | undefined;
|
|
6774
|
+
after?: string | undefined;
|
|
6775
|
+
sortBy?: string | undefined;
|
|
6776
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6777
|
+
paginationToken?: string | undefined;
|
|
7185
6778
|
created_at?: {
|
|
7186
6779
|
operator: "isEmpty" | "isNotEmpty";
|
|
7187
6780
|
value?: any;
|
|
@@ -7198,23 +6791,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7198
6791
|
values?: any[] | undefined;
|
|
7199
6792
|
caseSensitive?: boolean | undefined;
|
|
7200
6793
|
} | undefined;
|
|
7201
|
-
status?: {
|
|
7202
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7203
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7204
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7205
|
-
caseSensitive?: boolean | undefined;
|
|
7206
|
-
} | undefined;
|
|
7207
|
-
type?: {
|
|
7208
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7209
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7210
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7211
|
-
caseSensitive?: boolean | undefined;
|
|
7212
|
-
} | undefined;
|
|
7213
|
-
first?: number | undefined;
|
|
7214
|
-
after?: string | undefined;
|
|
7215
|
-
sortBy?: string | undefined;
|
|
7216
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7217
|
-
paginationToken?: string | undefined;
|
|
7218
6794
|
created_by?: {
|
|
7219
6795
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7220
6796
|
value?: string | undefined;
|
|
@@ -8104,6 +7680,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8104
7680
|
searchableFields: string[];
|
|
8105
7681
|
}>>;
|
|
8106
7682
|
}, "strip", z.ZodTypeAny, {
|
|
7683
|
+
first?: number | undefined;
|
|
7684
|
+
after?: string | undefined;
|
|
7685
|
+
sortBy?: string | undefined;
|
|
7686
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7687
|
+
paginationToken?: string | undefined;
|
|
8107
7688
|
created_at?: {
|
|
8108
7689
|
operator: "isEmpty" | "isNotEmpty";
|
|
8109
7690
|
value?: any;
|
|
@@ -8120,11 +7701,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8120
7701
|
values?: any[] | undefined;
|
|
8121
7702
|
caseSensitive?: boolean | undefined;
|
|
8122
7703
|
} | undefined;
|
|
8123
|
-
first?: number | undefined;
|
|
8124
|
-
after?: string | undefined;
|
|
8125
|
-
sortBy?: string | undefined;
|
|
8126
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8127
|
-
paginationToken?: string | undefined;
|
|
8128
7704
|
search?: {
|
|
8129
7705
|
query: string;
|
|
8130
7706
|
searchableFields: string[];
|
|
@@ -8204,6 +7780,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8204
7780
|
caseSensitive?: boolean | undefined;
|
|
8205
7781
|
} | undefined;
|
|
8206
7782
|
}, {
|
|
7783
|
+
first?: number | undefined;
|
|
7784
|
+
after?: string | undefined;
|
|
7785
|
+
sortBy?: string | undefined;
|
|
7786
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7787
|
+
paginationToken?: string | undefined;
|
|
8207
7788
|
created_at?: {
|
|
8208
7789
|
operator: "isEmpty" | "isNotEmpty";
|
|
8209
7790
|
value?: any;
|
|
@@ -8220,11 +7801,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8220
7801
|
values?: any[] | undefined;
|
|
8221
7802
|
caseSensitive?: boolean | undefined;
|
|
8222
7803
|
} | undefined;
|
|
8223
|
-
first?: number | undefined;
|
|
8224
|
-
after?: string | undefined;
|
|
8225
|
-
sortBy?: string | undefined;
|
|
8226
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8227
|
-
paginationToken?: string | undefined;
|
|
8228
7804
|
search?: {
|
|
8229
7805
|
query: string;
|
|
8230
7806
|
searchableFields: string[];
|
|
@@ -9695,6 +9271,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9695
9271
|
searchableFields: string[];
|
|
9696
9272
|
}>>;
|
|
9697
9273
|
}, "strip", z.ZodTypeAny, {
|
|
9274
|
+
first?: number | undefined;
|
|
9275
|
+
after?: string | undefined;
|
|
9276
|
+
sortBy?: string | undefined;
|
|
9277
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9278
|
+
paginationToken?: string | undefined;
|
|
9698
9279
|
created_at?: {
|
|
9699
9280
|
operator: "isEmpty" | "isNotEmpty";
|
|
9700
9281
|
value?: any;
|
|
@@ -9711,11 +9292,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9711
9292
|
values?: any[] | undefined;
|
|
9712
9293
|
caseSensitive?: boolean | undefined;
|
|
9713
9294
|
} | undefined;
|
|
9714
|
-
first?: number | undefined;
|
|
9715
|
-
after?: string | undefined;
|
|
9716
|
-
sortBy?: string | undefined;
|
|
9717
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9718
|
-
paginationToken?: string | undefined;
|
|
9719
9295
|
search?: {
|
|
9720
9296
|
query: string;
|
|
9721
9297
|
searchableFields: string[];
|
|
@@ -9825,6 +9401,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9825
9401
|
caseSensitive?: boolean | undefined;
|
|
9826
9402
|
} | undefined;
|
|
9827
9403
|
}, {
|
|
9404
|
+
first?: number | undefined;
|
|
9405
|
+
after?: string | undefined;
|
|
9406
|
+
sortBy?: string | undefined;
|
|
9407
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9408
|
+
paginationToken?: string | undefined;
|
|
9828
9409
|
created_at?: {
|
|
9829
9410
|
operator: "isEmpty" | "isNotEmpty";
|
|
9830
9411
|
value?: any;
|
|
@@ -9841,11 +9422,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9841
9422
|
values?: any[] | undefined;
|
|
9842
9423
|
caseSensitive?: boolean | undefined;
|
|
9843
9424
|
} | undefined;
|
|
9844
|
-
first?: number | undefined;
|
|
9845
|
-
after?: string | undefined;
|
|
9846
|
-
sortBy?: string | undefined;
|
|
9847
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9848
|
-
paginationToken?: string | undefined;
|
|
9849
9425
|
search?: {
|
|
9850
9426
|
query: string;
|
|
9851
9427
|
searchableFields: string[];
|
|
@@ -10309,19 +9885,19 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
10309
9885
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
10310
9886
|
}, "strip", z.ZodTypeAny, {
|
|
10311
9887
|
created_at: string;
|
|
9888
|
+
id: string;
|
|
10312
9889
|
email: string;
|
|
10313
9890
|
username: string;
|
|
10314
9891
|
email_verified: boolean;
|
|
10315
9892
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10316
|
-
id: string;
|
|
10317
9893
|
updated_at: string | null;
|
|
10318
9894
|
}, {
|
|
10319
9895
|
created_at: string;
|
|
9896
|
+
id: string;
|
|
10320
9897
|
email: string;
|
|
10321
9898
|
username: string;
|
|
10322
9899
|
email_verified: boolean;
|
|
10323
9900
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10324
|
-
id: string;
|
|
10325
9901
|
updated_at: string | null;
|
|
10326
9902
|
}>;
|
|
10327
9903
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
@@ -10331,11 +9907,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
10331
9907
|
id: z.ZodString;
|
|
10332
9908
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
10333
9909
|
}, "strip", z.ZodTypeAny, {
|
|
10334
|
-
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10335
9910
|
id: string;
|
|
10336
|
-
}, {
|
|
10337
9911
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9912
|
+
}, {
|
|
10338
9913
|
id: string;
|
|
9914
|
+
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10339
9915
|
}>;
|
|
10340
9916
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
10341
9917
|
//#endregion
|
|
@@ -10957,18 +10533,9 @@ interface UserApi {
|
|
|
10957
10533
|
*/
|
|
10958
10534
|
signupUser(input: SignupInputDto): Promise<CreateUserDtoOutput>;
|
|
10959
10535
|
/**
|
|
10960
|
-
*
|
|
10961
|
-
* Used when SignupConsentFlow opens in new tab (no sessionStorage). Returns empty when consent feature disabled.
|
|
10962
|
-
*/
|
|
10963
|
-
getSignupConsentsForToken(): Promise<SignupRequirementsDto>;
|
|
10964
|
-
/**
|
|
10965
|
-
* Initiate signup - returns session if no consents, or token+consents if consents required
|
|
10536
|
+
* Initiate signup - always returns session. When consents are required, session has consents_complete: false.
|
|
10966
10537
|
*/
|
|
10967
10538
|
signupInitiate(input: SignupInitiateInputDto): Promise<SignupInitiateResponseDto>;
|
|
10968
|
-
/**
|
|
10969
|
-
* Complete signup after accepting consents. Requires signup_consent token in Authorization: Bearer header.
|
|
10970
|
-
*/
|
|
10971
|
-
signupComplete(input: SignupCompleteInputDto): Promise<LoginResponse>;
|
|
10972
10539
|
/**
|
|
10973
10540
|
* Create a new user
|
|
10974
10541
|
*/
|
|
@@ -11213,5 +10780,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
11213
10780
|
*/
|
|
11214
10781
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
11215
10782
|
//#endregion
|
|
11216
|
-
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DefaultReferralTeamFormDto, DefaultReferralTeamFormSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, REFERRAL_TAG_ERROR_MESSAGE, REFERRAL_TAG_MAX, REFERRAL_TAG_MIN, REFERRAL_TAG_REGEX, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, ReferralTagValueSchema, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SetReferralTagDto, SetReferralTagSchema,
|
|
10783
|
+
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DefaultReferralTeamFormDto, DefaultReferralTeamFormSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, REFERRAL_TAG_ERROR_MESSAGE, REFERRAL_TAG_MAX, REFERRAL_TAG_MIN, REFERRAL_TAG_REGEX, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, ReferralTagValueSchema, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SetReferralTagDto, SetReferralTagSchema, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInitiateInputDto, SignupInitiateResponseDto, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, normalizeToReferralTag, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupInitiateResponseSchema, signupInitiateSchema, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
11217
10784
|
//# sourceMappingURL=index.d.mts.map
|