@dragonmastery/dragoncore-shared 0.0.29 → 0.0.30
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 +290 -290
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -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
|
-
id: string;
|
|
1133
1132
|
email: string;
|
|
1134
|
-
}, {
|
|
1135
1133
|
id: string;
|
|
1134
|
+
}, {
|
|
1136
1135
|
email: string;
|
|
1136
|
+
id: string;
|
|
1137
1137
|
}>;
|
|
1138
1138
|
type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
|
|
1139
1139
|
//#endregion
|
|
@@ -1447,6 +1447,22 @@ 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;
|
|
1450
1466
|
type?: {
|
|
1451
1467
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1452
1468
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1476,6 +1492,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1476
1492
|
values?: number[] | undefined;
|
|
1477
1493
|
caseSensitive?: boolean | undefined;
|
|
1478
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
|
+
}, {
|
|
1479
1506
|
created_at?: {
|
|
1480
1507
|
operator: "isEmpty" | "isNotEmpty";
|
|
1481
1508
|
value?: any;
|
|
@@ -1492,17 +1519,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1492
1519
|
values?: any[] | undefined;
|
|
1493
1520
|
caseSensitive?: boolean | undefined;
|
|
1494
1521
|
} | 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
1522
|
type?: {
|
|
1507
1523
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1508
1524
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1532,22 +1548,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1532
1548
|
values?: number[] | undefined;
|
|
1533
1549
|
caseSensitive?: boolean | undefined;
|
|
1534
1550
|
} | 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;
|
|
1583
1584
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1584
1585
|
amount: string;
|
|
1585
1586
|
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;
|
|
1592
1593
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1593
1594
|
amount: string;
|
|
1594
1595
|
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;
|
|
1616
1617
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1617
1618
|
amount: string;
|
|
1618
1619
|
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;
|
|
1625
1626
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1626
1627
|
amount: string;
|
|
1627
1628
|
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;
|
|
1658
1659
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1659
1660
|
amount: string;
|
|
1660
1661
|
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;
|
|
1677
1678
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1678
1679
|
amount: string;
|
|
1679
1680
|
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
|
-
email: string;
|
|
1760
1759
|
userId: string;
|
|
1760
|
+
email: 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
|
-
email: string;
|
|
1782
1781
|
userId: string;
|
|
1782
|
+
email: 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
|
-
email: string;
|
|
1806
1805
|
userId: string;
|
|
1806
|
+
email: 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;
|
|
1828
1827
|
created_at: string;
|
|
1829
1828
|
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
|
-
email: string;
|
|
1835
1834
|
userId: string;
|
|
1835
|
+
email: 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;
|
|
1857
1856
|
created_at: string;
|
|
1858
1857
|
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
|
-
email: string;
|
|
1915
1914
|
userId: string;
|
|
1915
|
+
email: 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
|
-
email: string;
|
|
1937
1936
|
userId: string;
|
|
1937
|
+
email: 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
|
-
email: string;
|
|
1961
1960
|
userId: string;
|
|
1961
|
+
email: 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;
|
|
1983
1982
|
created_at: string;
|
|
1984
1983
|
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
|
-
email: string;
|
|
1990
1989
|
userId: string;
|
|
1990
|
+
email: 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;
|
|
2012
2011
|
created_at: string;
|
|
2013
2012
|
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
|
-
email: string;
|
|
2025
2024
|
userId: string;
|
|
2025
|
+
email: 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;
|
|
2047
2046
|
created_at: string;
|
|
2048
2047
|
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
|
-
email: string;
|
|
2059
2058
|
userId: string;
|
|
2059
|
+
email: 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;
|
|
2081
2080
|
created_at: string;
|
|
2082
2081
|
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;
|
|
2140
2141
|
title?: string | null | undefined;
|
|
2141
2142
|
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;
|
|
2159
2160
|
title?: string | null | undefined;
|
|
2160
2161
|
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;
|
|
2181
2182
|
title?: string | null | undefined;
|
|
2182
2183
|
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;
|
|
2188
2189
|
title?: string | null | undefined;
|
|
2189
2190
|
body?: string | null | undefined;
|
|
2190
|
-
tag?: string | null | undefined;
|
|
2191
|
-
is_internal?: boolean | undefined;
|
|
2192
2191
|
original_id?: number | null | undefined;
|
|
2192
|
+
is_internal?: boolean | 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;
|
|
2210
2211
|
title?: string | null | undefined;
|
|
2211
2212
|
body?: string | null | undefined;
|
|
2212
|
-
tag?: string | null | undefined;
|
|
2213
|
-
is_internal?: boolean | undefined;
|
|
2214
2213
|
original_id?: number | null | undefined;
|
|
2214
|
+
is_internal?: boolean | 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;
|
|
2219
2220
|
title?: string | null | undefined;
|
|
2220
2221
|
body?: string | null | undefined;
|
|
2221
|
-
tag?: string | null | undefined;
|
|
2222
|
-
is_internal?: boolean | undefined;
|
|
2223
2222
|
original_id?: number | null | undefined;
|
|
2223
|
+
is_internal?: boolean | undefined;
|
|
2224
2224
|
}>;
|
|
2225
2225
|
type NoteUpdateDto = z.infer<typeof NoteUpdateSchema>;
|
|
2226
2226
|
//#endregion
|
|
@@ -2582,11 +2582,6 @@ 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;
|
|
2590
2585
|
created_at?: {
|
|
2591
2586
|
operator: "isEmpty" | "isNotEmpty";
|
|
2592
2587
|
value?: any;
|
|
@@ -2603,6 +2598,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2603
2598
|
values?: any[] | undefined;
|
|
2604
2599
|
caseSensitive?: boolean | undefined;
|
|
2605
2600
|
} | 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
|
+
tag?: {
|
|
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
|
+
title?: {
|
|
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
|
+
body?: {
|
|
2651
2651
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
2652
2652
|
value?: string | undefined;
|
|
2653
2653
|
values?: string[] | undefined;
|
|
@@ -2660,11 +2660,6 @@ 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;
|
|
2668
2663
|
created_at?: {
|
|
2669
2664
|
operator: "isEmpty" | "isNotEmpty";
|
|
2670
2665
|
value?: any;
|
|
@@ -2681,6 +2676,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2681
2676
|
values?: any[] | undefined;
|
|
2682
2677
|
caseSensitive?: boolean | undefined;
|
|
2683
2678
|
} | 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
|
+
tag?: {
|
|
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
|
+
title?: {
|
|
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
|
+
body?: {
|
|
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;
|
|
3597
3598
|
passwords: {
|
|
3598
3599
|
password: string;
|
|
3599
3600
|
password_confirm: string;
|
|
3600
3601
|
};
|
|
3601
|
-
email: string;
|
|
3602
3602
|
acceptances: Record<string, boolean>;
|
|
3603
3603
|
}, {
|
|
3604
|
+
email: string;
|
|
3604
3605
|
passwords: {
|
|
3605
3606
|
password: string;
|
|
3606
3607
|
password_confirm: string;
|
|
3607
3608
|
};
|
|
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,18 +3633,18 @@ declare const signupInitiateSchema: z.ZodObject<{
|
|
|
3633
3633
|
password_confirm: string;
|
|
3634
3634
|
}>;
|
|
3635
3635
|
}, "strip", z.ZodTypeAny, {
|
|
3636
|
+
email: string;
|
|
3636
3637
|
passwords: {
|
|
3637
3638
|
password: string;
|
|
3638
3639
|
password_confirm: string;
|
|
3639
3640
|
};
|
|
3640
|
-
email: string;
|
|
3641
3641
|
metadata?: Record<string, unknown> | undefined;
|
|
3642
3642
|
}, {
|
|
3643
|
+
email: string;
|
|
3643
3644
|
passwords: {
|
|
3644
3645
|
password: string;
|
|
3645
3646
|
password_confirm: string;
|
|
3646
3647
|
};
|
|
3647
|
-
email: string;
|
|
3648
3648
|
metadata?: Record<string, unknown> | undefined;
|
|
3649
3649
|
}>;
|
|
3650
3650
|
type SignupInitiateInputDto = z.infer<typeof signupInitiateSchema>;
|
|
@@ -3757,8 +3757,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3757
3757
|
price_currency?: string | null | undefined;
|
|
3758
3758
|
}>, "many">>>;
|
|
3759
3759
|
}, "strip", z.ZodTypeAny, {
|
|
3760
|
-
email: string;
|
|
3761
3760
|
userId: string;
|
|
3761
|
+
email: string;
|
|
3762
3762
|
username: string;
|
|
3763
3763
|
email_verified: boolean;
|
|
3764
3764
|
user_type: string;
|
|
@@ -3779,8 +3779,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3779
3779
|
price_currency?: string | null | undefined;
|
|
3780
3780
|
}[] | null | undefined;
|
|
3781
3781
|
}, {
|
|
3782
|
-
email: string;
|
|
3783
3782
|
userId: string;
|
|
3783
|
+
email: string;
|
|
3784
3784
|
username: string;
|
|
3785
3785
|
email_verified: boolean;
|
|
3786
3786
|
user_type: string;
|
|
@@ -3803,8 +3803,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3803
3803
|
}>;
|
|
3804
3804
|
}, "strip", z.ZodTypeAny, {
|
|
3805
3805
|
user: {
|
|
3806
|
-
email: string;
|
|
3807
3806
|
userId: string;
|
|
3807
|
+
email: string;
|
|
3808
3808
|
username: string;
|
|
3809
3809
|
email_verified: boolean;
|
|
3810
3810
|
user_type: string;
|
|
@@ -3825,15 +3825,15 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3825
3825
|
price_currency?: string | null | undefined;
|
|
3826
3826
|
}[] | null | undefined;
|
|
3827
3827
|
};
|
|
3828
|
-
status: string;
|
|
3829
3828
|
created_at: string;
|
|
3830
3829
|
expires_at: string;
|
|
3830
|
+
status: string;
|
|
3831
3831
|
user_agent?: string | null | undefined;
|
|
3832
3832
|
ip_address?: string | null | undefined;
|
|
3833
3833
|
}, {
|
|
3834
3834
|
user: {
|
|
3835
|
-
email: string;
|
|
3836
3835
|
userId: string;
|
|
3836
|
+
email: string;
|
|
3837
3837
|
username: string;
|
|
3838
3838
|
email_verified: boolean;
|
|
3839
3839
|
user_type: string;
|
|
@@ -3854,9 +3854,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3854
3854
|
price_currency?: string | null | undefined;
|
|
3855
3855
|
}[] | null | undefined;
|
|
3856
3856
|
};
|
|
3857
|
-
status: string;
|
|
3858
3857
|
created_at: string;
|
|
3859
3858
|
expires_at: string;
|
|
3859
|
+
status: string;
|
|
3860
3860
|
user_agent?: string | null | undefined;
|
|
3861
3861
|
ip_address?: string | null | undefined;
|
|
3862
3862
|
}>;
|
|
@@ -3867,8 +3867,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3867
3867
|
refresh_token: string;
|
|
3868
3868
|
frontend_session: {
|
|
3869
3869
|
user: {
|
|
3870
|
-
email: string;
|
|
3871
3870
|
userId: string;
|
|
3871
|
+
email: string;
|
|
3872
3872
|
username: string;
|
|
3873
3873
|
email_verified: boolean;
|
|
3874
3874
|
user_type: string;
|
|
@@ -3889,9 +3889,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3889
3889
|
price_currency?: string | null | undefined;
|
|
3890
3890
|
}[] | null | undefined;
|
|
3891
3891
|
};
|
|
3892
|
-
status: string;
|
|
3893
3892
|
created_at: string;
|
|
3894
3893
|
expires_at: string;
|
|
3894
|
+
status: string;
|
|
3895
3895
|
user_agent?: string | null | undefined;
|
|
3896
3896
|
ip_address?: string | null | undefined;
|
|
3897
3897
|
};
|
|
@@ -3901,8 +3901,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3901
3901
|
refresh_token: string;
|
|
3902
3902
|
frontend_session: {
|
|
3903
3903
|
user: {
|
|
3904
|
-
email: string;
|
|
3905
3904
|
userId: string;
|
|
3905
|
+
email: string;
|
|
3906
3906
|
username: string;
|
|
3907
3907
|
email_verified: boolean;
|
|
3908
3908
|
user_type: string;
|
|
@@ -3923,9 +3923,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3923
3923
|
price_currency?: string | null | undefined;
|
|
3924
3924
|
}[] | null | undefined;
|
|
3925
3925
|
};
|
|
3926
|
-
status: string;
|
|
3927
3926
|
created_at: string;
|
|
3928
3927
|
expires_at: string;
|
|
3928
|
+
status: string;
|
|
3929
3929
|
user_agent?: string | null | undefined;
|
|
3930
3930
|
ip_address?: string | null | undefined;
|
|
3931
3931
|
};
|
|
@@ -3938,8 +3938,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3938
3938
|
refresh_token: string;
|
|
3939
3939
|
frontend_session: {
|
|
3940
3940
|
user: {
|
|
3941
|
-
email: string;
|
|
3942
3941
|
userId: string;
|
|
3942
|
+
email: string;
|
|
3943
3943
|
username: string;
|
|
3944
3944
|
email_verified: boolean;
|
|
3945
3945
|
user_type: string;
|
|
@@ -3960,9 +3960,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3960
3960
|
price_currency?: string | null | undefined;
|
|
3961
3961
|
}[] | null | undefined;
|
|
3962
3962
|
};
|
|
3963
|
-
status: string;
|
|
3964
3963
|
created_at: string;
|
|
3965
3964
|
expires_at: string;
|
|
3965
|
+
status: string;
|
|
3966
3966
|
user_agent?: string | null | undefined;
|
|
3967
3967
|
ip_address?: string | null | undefined;
|
|
3968
3968
|
};
|
|
@@ -3975,8 +3975,8 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3975
3975
|
refresh_token: string;
|
|
3976
3976
|
frontend_session: {
|
|
3977
3977
|
user: {
|
|
3978
|
-
email: string;
|
|
3979
3978
|
userId: string;
|
|
3979
|
+
email: string;
|
|
3980
3980
|
username: string;
|
|
3981
3981
|
email_verified: boolean;
|
|
3982
3982
|
user_type: string;
|
|
@@ -3997,9 +3997,9 @@ declare const signupInitiateCreatedSchema: z.ZodObject<{
|
|
|
3997
3997
|
price_currency?: string | null | undefined;
|
|
3998
3998
|
}[] | null | undefined;
|
|
3999
3999
|
};
|
|
4000
|
-
status: string;
|
|
4001
4000
|
created_at: string;
|
|
4002
4001
|
expires_at: string;
|
|
4002
|
+
status: string;
|
|
4003
4003
|
user_agent?: string | null | undefined;
|
|
4004
4004
|
ip_address?: string | null | undefined;
|
|
4005
4005
|
};
|
|
@@ -4113,8 +4113,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4113
4113
|
price_currency?: string | null | undefined;
|
|
4114
4114
|
}>, "many">>>;
|
|
4115
4115
|
}, "strip", z.ZodTypeAny, {
|
|
4116
|
-
email: string;
|
|
4117
4116
|
userId: string;
|
|
4117
|
+
email: string;
|
|
4118
4118
|
username: string;
|
|
4119
4119
|
email_verified: boolean;
|
|
4120
4120
|
user_type: string;
|
|
@@ -4135,8 +4135,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4135
4135
|
price_currency?: string | null | undefined;
|
|
4136
4136
|
}[] | null | undefined;
|
|
4137
4137
|
}, {
|
|
4138
|
-
email: string;
|
|
4139
4138
|
userId: string;
|
|
4139
|
+
email: string;
|
|
4140
4140
|
username: string;
|
|
4141
4141
|
email_verified: boolean;
|
|
4142
4142
|
user_type: string;
|
|
@@ -4159,8 +4159,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4159
4159
|
}>;
|
|
4160
4160
|
}, "strip", z.ZodTypeAny, {
|
|
4161
4161
|
user: {
|
|
4162
|
-
email: string;
|
|
4163
4162
|
userId: string;
|
|
4163
|
+
email: string;
|
|
4164
4164
|
username: string;
|
|
4165
4165
|
email_verified: boolean;
|
|
4166
4166
|
user_type: string;
|
|
@@ -4181,15 +4181,15 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4181
4181
|
price_currency?: string | null | undefined;
|
|
4182
4182
|
}[] | null | undefined;
|
|
4183
4183
|
};
|
|
4184
|
-
status: string;
|
|
4185
4184
|
created_at: string;
|
|
4186
4185
|
expires_at: string;
|
|
4186
|
+
status: string;
|
|
4187
4187
|
user_agent?: string | null | undefined;
|
|
4188
4188
|
ip_address?: string | null | undefined;
|
|
4189
4189
|
}, {
|
|
4190
4190
|
user: {
|
|
4191
|
-
email: string;
|
|
4192
4191
|
userId: string;
|
|
4192
|
+
email: string;
|
|
4193
4193
|
username: string;
|
|
4194
4194
|
email_verified: boolean;
|
|
4195
4195
|
user_type: string;
|
|
@@ -4210,9 +4210,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4210
4210
|
price_currency?: string | null | undefined;
|
|
4211
4211
|
}[] | null | undefined;
|
|
4212
4212
|
};
|
|
4213
|
-
status: string;
|
|
4214
4213
|
created_at: string;
|
|
4215
4214
|
expires_at: string;
|
|
4215
|
+
status: string;
|
|
4216
4216
|
user_agent?: string | null | undefined;
|
|
4217
4217
|
ip_address?: string | null | undefined;
|
|
4218
4218
|
}>;
|
|
@@ -4223,8 +4223,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4223
4223
|
refresh_token: string;
|
|
4224
4224
|
frontend_session: {
|
|
4225
4225
|
user: {
|
|
4226
|
-
email: string;
|
|
4227
4226
|
userId: string;
|
|
4227
|
+
email: string;
|
|
4228
4228
|
username: string;
|
|
4229
4229
|
email_verified: boolean;
|
|
4230
4230
|
user_type: string;
|
|
@@ -4245,9 +4245,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4245
4245
|
price_currency?: string | null | undefined;
|
|
4246
4246
|
}[] | null | undefined;
|
|
4247
4247
|
};
|
|
4248
|
-
status: string;
|
|
4249
4248
|
created_at: string;
|
|
4250
4249
|
expires_at: string;
|
|
4250
|
+
status: string;
|
|
4251
4251
|
user_agent?: string | null | undefined;
|
|
4252
4252
|
ip_address?: string | null | undefined;
|
|
4253
4253
|
};
|
|
@@ -4257,8 +4257,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4257
4257
|
refresh_token: string;
|
|
4258
4258
|
frontend_session: {
|
|
4259
4259
|
user: {
|
|
4260
|
-
email: string;
|
|
4261
4260
|
userId: string;
|
|
4261
|
+
email: string;
|
|
4262
4262
|
username: string;
|
|
4263
4263
|
email_verified: boolean;
|
|
4264
4264
|
user_type: string;
|
|
@@ -4279,9 +4279,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4279
4279
|
price_currency?: string | null | undefined;
|
|
4280
4280
|
}[] | null | undefined;
|
|
4281
4281
|
};
|
|
4282
|
-
status: string;
|
|
4283
4282
|
created_at: string;
|
|
4284
4283
|
expires_at: string;
|
|
4284
|
+
status: string;
|
|
4285
4285
|
user_agent?: string | null | undefined;
|
|
4286
4286
|
ip_address?: string | null | undefined;
|
|
4287
4287
|
};
|
|
@@ -4294,8 +4294,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4294
4294
|
refresh_token: string;
|
|
4295
4295
|
frontend_session: {
|
|
4296
4296
|
user: {
|
|
4297
|
-
email: string;
|
|
4298
4297
|
userId: string;
|
|
4298
|
+
email: string;
|
|
4299
4299
|
username: string;
|
|
4300
4300
|
email_verified: boolean;
|
|
4301
4301
|
user_type: string;
|
|
@@ -4316,9 +4316,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4316
4316
|
price_currency?: string | null | undefined;
|
|
4317
4317
|
}[] | null | undefined;
|
|
4318
4318
|
};
|
|
4319
|
-
status: string;
|
|
4320
4319
|
created_at: string;
|
|
4321
4320
|
expires_at: string;
|
|
4321
|
+
status: string;
|
|
4322
4322
|
user_agent?: string | null | undefined;
|
|
4323
4323
|
ip_address?: string | null | undefined;
|
|
4324
4324
|
};
|
|
@@ -4331,8 +4331,8 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4331
4331
|
refresh_token: string;
|
|
4332
4332
|
frontend_session: {
|
|
4333
4333
|
user: {
|
|
4334
|
-
email: string;
|
|
4335
4334
|
userId: string;
|
|
4335
|
+
email: string;
|
|
4336
4336
|
username: string;
|
|
4337
4337
|
email_verified: boolean;
|
|
4338
4338
|
user_type: string;
|
|
@@ -4353,9 +4353,9 @@ declare const signupInitiateResponseSchema: z.ZodDiscriminatedUnion<"created", [
|
|
|
4353
4353
|
price_currency?: string | null | undefined;
|
|
4354
4354
|
}[] | null | undefined;
|
|
4355
4355
|
};
|
|
4356
|
-
status: string;
|
|
4357
4356
|
created_at: string;
|
|
4358
4357
|
expires_at: string;
|
|
4358
|
+
status: string;
|
|
4359
4359
|
user_agent?: string | null | undefined;
|
|
4360
4360
|
ip_address?: string | null | undefined;
|
|
4361
4361
|
};
|
|
@@ -4674,8 +4674,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4674
4674
|
user_id_display_name?: string | null | undefined;
|
|
4675
4675
|
}>>>;
|
|
4676
4676
|
}, "strip", z.ZodTypeAny, {
|
|
4677
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4678
4677
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4678
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4679
4679
|
id: string;
|
|
4680
4680
|
description: string;
|
|
4681
4681
|
title: string;
|
|
@@ -4687,12 +4687,12 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4687
4687
|
updated_by?: string | null | undefined;
|
|
4688
4688
|
archived_at?: string | null | undefined;
|
|
4689
4689
|
created_by_display_name?: string | null | undefined;
|
|
4690
|
-
display_id?: string | null | undefined;
|
|
4691
4690
|
credit_value?: string | null | undefined;
|
|
4692
|
-
|
|
4691
|
+
display_id?: string | null | undefined;
|
|
4693
4692
|
start_at?: string | null | undefined;
|
|
4694
4693
|
target_at?: string | null | undefined;
|
|
4695
4694
|
completed_at?: string | null | undefined;
|
|
4695
|
+
display_id_prefix?: string | null | undefined;
|
|
4696
4696
|
locked_approval_at?: string | null | undefined;
|
|
4697
4697
|
my_subscription?: {
|
|
4698
4698
|
created_at: string;
|
|
@@ -4706,8 +4706,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4706
4706
|
user_id_display_name?: string | null | undefined;
|
|
4707
4707
|
} | null | undefined;
|
|
4708
4708
|
}, {
|
|
4709
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4710
4709
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4710
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4711
4711
|
id: string;
|
|
4712
4712
|
description: string;
|
|
4713
4713
|
title: string;
|
|
@@ -4719,12 +4719,12 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
4719
4719
|
updated_by?: string | null | undefined;
|
|
4720
4720
|
archived_at?: string | null | undefined;
|
|
4721
4721
|
created_by_display_name?: string | null | undefined;
|
|
4722
|
-
display_id?: string | null | undefined;
|
|
4723
4722
|
credit_value?: string | null | undefined;
|
|
4724
|
-
|
|
4723
|
+
display_id?: string | null | undefined;
|
|
4725
4724
|
start_at?: string | null | undefined;
|
|
4726
4725
|
target_at?: string | null | undefined;
|
|
4727
4726
|
completed_at?: string | null | undefined;
|
|
4727
|
+
display_id_prefix?: string | null | undefined;
|
|
4728
4728
|
locked_approval_at?: string | null | undefined;
|
|
4729
4729
|
my_subscription?: {
|
|
4730
4730
|
created_at: string;
|
|
@@ -4796,8 +4796,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4796
4796
|
user_id_display_name?: string | null | undefined;
|
|
4797
4797
|
}>>>;
|
|
4798
4798
|
}, "strip", z.ZodTypeAny, {
|
|
4799
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4800
4799
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4800
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4801
4801
|
id: string;
|
|
4802
4802
|
description: string;
|
|
4803
4803
|
title: string;
|
|
@@ -4809,12 +4809,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4809
4809
|
updated_by?: string | null | undefined;
|
|
4810
4810
|
archived_at?: string | null | undefined;
|
|
4811
4811
|
created_by_display_name?: string | null | undefined;
|
|
4812
|
-
display_id?: string | null | undefined;
|
|
4813
4812
|
credit_value?: string | null | undefined;
|
|
4814
|
-
|
|
4813
|
+
display_id?: string | null | undefined;
|
|
4815
4814
|
start_at?: string | null | undefined;
|
|
4816
4815
|
target_at?: string | null | undefined;
|
|
4817
4816
|
completed_at?: string | null | undefined;
|
|
4817
|
+
display_id_prefix?: string | null | undefined;
|
|
4818
4818
|
locked_approval_at?: string | null | undefined;
|
|
4819
4819
|
my_subscription?: {
|
|
4820
4820
|
created_at: string;
|
|
@@ -4828,8 +4828,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4828
4828
|
user_id_display_name?: string | null | undefined;
|
|
4829
4829
|
} | null | undefined;
|
|
4830
4830
|
}, {
|
|
4831
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4832
4831
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4832
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4833
4833
|
id: string;
|
|
4834
4834
|
description: string;
|
|
4835
4835
|
title: string;
|
|
@@ -4841,12 +4841,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4841
4841
|
updated_by?: string | null | undefined;
|
|
4842
4842
|
archived_at?: string | null | undefined;
|
|
4843
4843
|
created_by_display_name?: string | null | undefined;
|
|
4844
|
-
display_id?: string | null | undefined;
|
|
4845
4844
|
credit_value?: string | null | undefined;
|
|
4846
|
-
|
|
4845
|
+
display_id?: string | null | undefined;
|
|
4847
4846
|
start_at?: string | null | undefined;
|
|
4848
4847
|
target_at?: string | null | undefined;
|
|
4849
4848
|
completed_at?: string | null | undefined;
|
|
4849
|
+
display_id_prefix?: string | null | undefined;
|
|
4850
4850
|
locked_approval_at?: string | null | undefined;
|
|
4851
4851
|
my_subscription?: {
|
|
4852
4852
|
created_at: string;
|
|
@@ -4884,8 +4884,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4884
4884
|
}>;
|
|
4885
4885
|
}, "strip", z.ZodTypeAny, {
|
|
4886
4886
|
items: {
|
|
4887
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4888
4887
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4888
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4889
4889
|
id: string;
|
|
4890
4890
|
description: string;
|
|
4891
4891
|
title: string;
|
|
@@ -4897,12 +4897,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4897
4897
|
updated_by?: string | null | undefined;
|
|
4898
4898
|
archived_at?: string | null | undefined;
|
|
4899
4899
|
created_by_display_name?: string | null | undefined;
|
|
4900
|
-
display_id?: string | null | undefined;
|
|
4901
4900
|
credit_value?: string | null | undefined;
|
|
4902
|
-
|
|
4901
|
+
display_id?: string | null | undefined;
|
|
4903
4902
|
start_at?: string | null | undefined;
|
|
4904
4903
|
target_at?: string | null | undefined;
|
|
4905
4904
|
completed_at?: string | null | undefined;
|
|
4905
|
+
display_id_prefix?: string | null | undefined;
|
|
4906
4906
|
locked_approval_at?: string | null | undefined;
|
|
4907
4907
|
my_subscription?: {
|
|
4908
4908
|
created_at: string;
|
|
@@ -4926,8 +4926,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4926
4926
|
};
|
|
4927
4927
|
}, {
|
|
4928
4928
|
items: {
|
|
4929
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4930
4929
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4930
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4931
4931
|
id: string;
|
|
4932
4932
|
description: string;
|
|
4933
4933
|
title: string;
|
|
@@ -4939,12 +4939,12 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4939
4939
|
updated_by?: string | null | undefined;
|
|
4940
4940
|
archived_at?: string | null | undefined;
|
|
4941
4941
|
created_by_display_name?: string | null | undefined;
|
|
4942
|
-
display_id?: string | null | undefined;
|
|
4943
4942
|
credit_value?: string | null | undefined;
|
|
4944
|
-
|
|
4943
|
+
display_id?: string | null | undefined;
|
|
4945
4944
|
start_at?: string | null | undefined;
|
|
4946
4945
|
target_at?: string | null | undefined;
|
|
4947
4946
|
completed_at?: string | null | undefined;
|
|
4947
|
+
display_id_prefix?: string | null | undefined;
|
|
4948
4948
|
locked_approval_at?: string | null | undefined;
|
|
4949
4949
|
my_subscription?: {
|
|
4950
4950
|
created_at: string;
|
|
@@ -5663,23 +5663,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5663
5663
|
searchableFields: string[];
|
|
5664
5664
|
}>>;
|
|
5665
5665
|
}, "strip", z.ZodTypeAny, {
|
|
5666
|
-
type?: {
|
|
5667
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5668
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5669
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5670
|
-
caseSensitive?: boolean | undefined;
|
|
5671
|
-
} | undefined;
|
|
5672
|
-
status?: {
|
|
5673
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5674
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5675
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5676
|
-
caseSensitive?: boolean | undefined;
|
|
5677
|
-
} | undefined;
|
|
5678
|
-
first?: number | undefined;
|
|
5679
|
-
after?: string | undefined;
|
|
5680
|
-
sortBy?: string | undefined;
|
|
5681
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5682
|
-
paginationToken?: string | undefined;
|
|
5683
5666
|
created_at?: {
|
|
5684
5667
|
operator: "isEmpty" | "isNotEmpty";
|
|
5685
5668
|
value?: any;
|
|
@@ -5696,6 +5679,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5696
5679
|
values?: any[] | undefined;
|
|
5697
5680
|
caseSensitive?: boolean | undefined;
|
|
5698
5681
|
} | 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
5699
|
created_by?: {
|
|
5700
5700
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5701
5701
|
value?: string | undefined;
|
|
@@ -5801,23 +5801,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5801
5801
|
caseSensitive?: boolean | undefined;
|
|
5802
5802
|
} | undefined;
|
|
5803
5803
|
}, {
|
|
5804
|
-
type?: {
|
|
5805
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5806
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5807
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5808
|
-
caseSensitive?: boolean | undefined;
|
|
5809
|
-
} | undefined;
|
|
5810
|
-
status?: {
|
|
5811
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5812
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5813
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5814
|
-
caseSensitive?: boolean | undefined;
|
|
5815
|
-
} | undefined;
|
|
5816
|
-
first?: number | undefined;
|
|
5817
|
-
after?: string | undefined;
|
|
5818
|
-
sortBy?: string | undefined;
|
|
5819
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5820
|
-
paginationToken?: string | undefined;
|
|
5821
5804
|
created_at?: {
|
|
5822
5805
|
operator: "isEmpty" | "isNotEmpty";
|
|
5823
5806
|
value?: any;
|
|
@@ -5834,6 +5817,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5834
5817
|
values?: any[] | undefined;
|
|
5835
5818
|
caseSensitive?: boolean | undefined;
|
|
5836
5819
|
} | 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
5837
|
created_by?: {
|
|
5838
5838
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5839
5839
|
value?: string | undefined;
|
|
@@ -5976,8 +5976,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5976
5976
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5977
5977
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5978
5978
|
}, "strip", z.ZodTypeAny, {
|
|
5979
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5980
5979
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5980
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5981
5981
|
id: string;
|
|
5982
5982
|
description: string;
|
|
5983
5983
|
title: string;
|
|
@@ -5993,20 +5993,20 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5993
5993
|
archived_by?: string | null | undefined;
|
|
5994
5994
|
created_by_display_name?: string | null | undefined;
|
|
5995
5995
|
updated_by_display_name?: string | null | undefined;
|
|
5996
|
-
display_id?: string | null | undefined;
|
|
5997
5996
|
credit_value?: string | null | undefined;
|
|
5998
5997
|
delivered_value?: string | null | undefined;
|
|
5999
|
-
|
|
5998
|
+
display_id?: string | null | undefined;
|
|
6000
5999
|
start_at?: string | null | undefined;
|
|
6001
6000
|
target_at?: string | null | undefined;
|
|
6002
6001
|
completed_at?: string | null | undefined;
|
|
6002
|
+
display_id_prefix?: string | null | undefined;
|
|
6003
6003
|
locked_approval_at?: string | null | undefined;
|
|
6004
6004
|
assigned_to?: string | null | undefined;
|
|
6005
6005
|
assigned_to_display_name?: string | null | undefined;
|
|
6006
6006
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
6007
6007
|
}, {
|
|
6008
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6009
6008
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6009
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6010
6010
|
id: string;
|
|
6011
6011
|
description: string;
|
|
6012
6012
|
title: string;
|
|
@@ -6022,13 +6022,13 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
6022
6022
|
archived_by?: string | null | undefined;
|
|
6023
6023
|
created_by_display_name?: string | null | undefined;
|
|
6024
6024
|
updated_by_display_name?: string | null | undefined;
|
|
6025
|
-
display_id?: string | null | undefined;
|
|
6026
6025
|
credit_value?: string | null | undefined;
|
|
6027
6026
|
delivered_value?: string | null | undefined;
|
|
6028
|
-
|
|
6027
|
+
display_id?: string | null | undefined;
|
|
6029
6028
|
start_at?: string | null | undefined;
|
|
6030
6029
|
target_at?: string | null | undefined;
|
|
6031
6030
|
completed_at?: string | null | undefined;
|
|
6031
|
+
display_id_prefix?: string | null | undefined;
|
|
6032
6032
|
locked_approval_at?: string | null | undefined;
|
|
6033
6033
|
assigned_to?: string | null | undefined;
|
|
6034
6034
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6069,8 +6069,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6069
6069
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6070
6070
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6071
6071
|
}, "strip", z.ZodTypeAny, {
|
|
6072
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6073
6072
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6073
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6074
6074
|
id: string;
|
|
6075
6075
|
description: string;
|
|
6076
6076
|
title: string;
|
|
@@ -6086,20 +6086,20 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6086
6086
|
archived_by?: string | null | undefined;
|
|
6087
6087
|
created_by_display_name?: string | null | undefined;
|
|
6088
6088
|
updated_by_display_name?: string | null | undefined;
|
|
6089
|
-
display_id?: string | null | undefined;
|
|
6090
6089
|
credit_value?: string | null | undefined;
|
|
6091
6090
|
delivered_value?: string | null | undefined;
|
|
6092
|
-
|
|
6091
|
+
display_id?: string | null | undefined;
|
|
6093
6092
|
start_at?: string | null | undefined;
|
|
6094
6093
|
target_at?: string | null | undefined;
|
|
6095
6094
|
completed_at?: string | null | undefined;
|
|
6095
|
+
display_id_prefix?: string | null | undefined;
|
|
6096
6096
|
locked_approval_at?: string | null | undefined;
|
|
6097
6097
|
assigned_to?: string | null | undefined;
|
|
6098
6098
|
assigned_to_display_name?: string | null | undefined;
|
|
6099
6099
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
6100
6100
|
}, {
|
|
6101
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6102
6101
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6102
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6103
6103
|
id: string;
|
|
6104
6104
|
description: string;
|
|
6105
6105
|
title: string;
|
|
@@ -6115,13 +6115,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6115
6115
|
archived_by?: string | null | undefined;
|
|
6116
6116
|
created_by_display_name?: string | null | undefined;
|
|
6117
6117
|
updated_by_display_name?: string | null | undefined;
|
|
6118
|
-
display_id?: string | null | undefined;
|
|
6119
6118
|
credit_value?: string | null | undefined;
|
|
6120
6119
|
delivered_value?: string | null | undefined;
|
|
6121
|
-
|
|
6120
|
+
display_id?: string | null | undefined;
|
|
6122
6121
|
start_at?: string | null | undefined;
|
|
6123
6122
|
target_at?: string | null | undefined;
|
|
6124
6123
|
completed_at?: string | null | undefined;
|
|
6124
|
+
display_id_prefix?: string | null | undefined;
|
|
6125
6125
|
locked_approval_at?: string | null | undefined;
|
|
6126
6126
|
assigned_to?: string | null | undefined;
|
|
6127
6127
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6151,8 +6151,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6151
6151
|
}>;
|
|
6152
6152
|
}, "strip", z.ZodTypeAny, {
|
|
6153
6153
|
items: {
|
|
6154
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6155
6154
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6155
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6156
6156
|
id: string;
|
|
6157
6157
|
description: string;
|
|
6158
6158
|
title: string;
|
|
@@ -6168,13 +6168,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6168
6168
|
archived_by?: string | null | undefined;
|
|
6169
6169
|
created_by_display_name?: string | null | undefined;
|
|
6170
6170
|
updated_by_display_name?: string | null | undefined;
|
|
6171
|
-
display_id?: string | null | undefined;
|
|
6172
6171
|
credit_value?: string | null | undefined;
|
|
6173
6172
|
delivered_value?: string | null | undefined;
|
|
6174
|
-
|
|
6173
|
+
display_id?: string | null | undefined;
|
|
6175
6174
|
start_at?: string | null | undefined;
|
|
6176
6175
|
target_at?: string | null | undefined;
|
|
6177
6176
|
completed_at?: string | null | undefined;
|
|
6177
|
+
display_id_prefix?: string | null | undefined;
|
|
6178
6178
|
locked_approval_at?: string | null | undefined;
|
|
6179
6179
|
assigned_to?: string | null | undefined;
|
|
6180
6180
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -6190,8 +6190,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6190
6190
|
};
|
|
6191
6191
|
}, {
|
|
6192
6192
|
items: {
|
|
6193
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6194
6193
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
6194
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
6195
6195
|
id: string;
|
|
6196
6196
|
description: string;
|
|
6197
6197
|
title: string;
|
|
@@ -6207,13 +6207,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
6207
6207
|
archived_by?: string | null | undefined;
|
|
6208
6208
|
created_by_display_name?: string | null | undefined;
|
|
6209
6209
|
updated_by_display_name?: string | null | undefined;
|
|
6210
|
-
display_id?: string | null | undefined;
|
|
6211
6210
|
credit_value?: string | null | undefined;
|
|
6212
6211
|
delivered_value?: string | null | undefined;
|
|
6213
|
-
|
|
6212
|
+
display_id?: string | null | undefined;
|
|
6214
6213
|
start_at?: string | null | undefined;
|
|
6215
6214
|
target_at?: string | null | undefined;
|
|
6216
6215
|
completed_at?: string | null | undefined;
|
|
6216
|
+
display_id_prefix?: string | null | undefined;
|
|
6217
6217
|
locked_approval_at?: string | null | undefined;
|
|
6218
6218
|
assigned_to?: string | null | undefined;
|
|
6219
6219
|
assigned_to_display_name?: string | null | undefined;
|
|
@@ -7026,23 +7026,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7026
7026
|
searchableFields: string[];
|
|
7027
7027
|
}>>;
|
|
7028
7028
|
}, "strip", z.ZodTypeAny, {
|
|
7029
|
-
type?: {
|
|
7030
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7031
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7032
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7033
|
-
caseSensitive?: boolean | undefined;
|
|
7034
|
-
} | undefined;
|
|
7035
|
-
status?: {
|
|
7036
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7037
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7038
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7039
|
-
caseSensitive?: boolean | undefined;
|
|
7040
|
-
} | undefined;
|
|
7041
|
-
first?: number | undefined;
|
|
7042
|
-
after?: string | undefined;
|
|
7043
|
-
sortBy?: string | undefined;
|
|
7044
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7045
|
-
paginationToken?: string | undefined;
|
|
7046
7029
|
created_at?: {
|
|
7047
7030
|
operator: "isEmpty" | "isNotEmpty";
|
|
7048
7031
|
value?: any;
|
|
@@ -7059,6 +7042,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7059
7042
|
values?: any[] | undefined;
|
|
7060
7043
|
caseSensitive?: boolean | undefined;
|
|
7061
7044
|
} | 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
7062
|
created_by?: {
|
|
7063
7063
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7064
7064
|
value?: string | undefined;
|
|
@@ -7182,23 +7182,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7182
7182
|
caseSensitive?: boolean | undefined;
|
|
7183
7183
|
} | undefined;
|
|
7184
7184
|
}, {
|
|
7185
|
-
type?: {
|
|
7186
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7187
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
7188
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
7189
|
-
caseSensitive?: boolean | undefined;
|
|
7190
|
-
} | undefined;
|
|
7191
|
-
status?: {
|
|
7192
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
7193
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
7194
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
7195
|
-
caseSensitive?: boolean | undefined;
|
|
7196
|
-
} | undefined;
|
|
7197
|
-
first?: number | undefined;
|
|
7198
|
-
after?: string | undefined;
|
|
7199
|
-
sortBy?: string | undefined;
|
|
7200
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7201
|
-
paginationToken?: string | undefined;
|
|
7202
7185
|
created_at?: {
|
|
7203
7186
|
operator: "isEmpty" | "isNotEmpty";
|
|
7204
7187
|
value?: any;
|
|
@@ -7215,6 +7198,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
7215
7198
|
values?: any[] | undefined;
|
|
7216
7199
|
caseSensitive?: boolean | undefined;
|
|
7217
7200
|
} | 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
7218
|
created_by?: {
|
|
7219
7219
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7220
7220
|
value?: string | undefined;
|
|
@@ -8104,11 +8104,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8104
8104
|
searchableFields: string[];
|
|
8105
8105
|
}>>;
|
|
8106
8106
|
}, "strip", z.ZodTypeAny, {
|
|
8107
|
-
first?: number | undefined;
|
|
8108
|
-
after?: string | undefined;
|
|
8109
|
-
sortBy?: string | undefined;
|
|
8110
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8111
|
-
paginationToken?: string | undefined;
|
|
8112
8107
|
created_at?: {
|
|
8113
8108
|
operator: "isEmpty" | "isNotEmpty";
|
|
8114
8109
|
value?: any;
|
|
@@ -8125,6 +8120,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8125
8120
|
values?: any[] | undefined;
|
|
8126
8121
|
caseSensitive?: boolean | undefined;
|
|
8127
8122
|
} | undefined;
|
|
8123
|
+
first?: number | undefined;
|
|
8124
|
+
after?: string | undefined;
|
|
8125
|
+
sortBy?: string | undefined;
|
|
8126
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8127
|
+
paginationToken?: string | undefined;
|
|
8128
8128
|
search?: {
|
|
8129
8129
|
query: string;
|
|
8130
8130
|
searchableFields: string[];
|
|
@@ -8204,11 +8204,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8204
8204
|
caseSensitive?: boolean | undefined;
|
|
8205
8205
|
} | undefined;
|
|
8206
8206
|
}, {
|
|
8207
|
-
first?: number | undefined;
|
|
8208
|
-
after?: string | undefined;
|
|
8209
|
-
sortBy?: string | undefined;
|
|
8210
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8211
|
-
paginationToken?: string | undefined;
|
|
8212
8207
|
created_at?: {
|
|
8213
8208
|
operator: "isEmpty" | "isNotEmpty";
|
|
8214
8209
|
value?: any;
|
|
@@ -8225,6 +8220,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
8225
8220
|
values?: any[] | undefined;
|
|
8226
8221
|
caseSensitive?: boolean | undefined;
|
|
8227
8222
|
} | undefined;
|
|
8223
|
+
first?: number | undefined;
|
|
8224
|
+
after?: string | undefined;
|
|
8225
|
+
sortBy?: string | undefined;
|
|
8226
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8227
|
+
paginationToken?: string | undefined;
|
|
8228
8228
|
search?: {
|
|
8229
8229
|
query: string;
|
|
8230
8230
|
searchableFields: string[];
|
|
@@ -8331,14 +8331,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8331
8331
|
url?: string | null | undefined;
|
|
8332
8332
|
unique_name?: string | null | undefined;
|
|
8333
8333
|
legal_name?: string | null | undefined;
|
|
8334
|
-
contact_name?: string | null | undefined;
|
|
8335
8334
|
contact_email?: string | null | undefined;
|
|
8335
|
+
address_city?: string | null | undefined;
|
|
8336
|
+
address_zip?: string | null | undefined;
|
|
8337
|
+
contact_name?: string | null | undefined;
|
|
8336
8338
|
contact_business_phone?: string | null | undefined;
|
|
8337
8339
|
contact_mobile_phone?: string | null | undefined;
|
|
8338
8340
|
contact_time_zone?: string | null | undefined;
|
|
8339
8341
|
address_full?: string | null | undefined;
|
|
8340
|
-
address_city?: string | null | undefined;
|
|
8341
|
-
address_zip?: string | null | undefined;
|
|
8342
8342
|
twitter_username?: string | null | undefined;
|
|
8343
8343
|
logo?: string | null | undefined;
|
|
8344
8344
|
email_sent_from?: string | null | undefined;
|
|
@@ -8349,14 +8349,14 @@ declare const TeamInputBaseSchema: z.ZodObject<{
|
|
|
8349
8349
|
url?: string | null | undefined;
|
|
8350
8350
|
unique_name?: string | null | undefined;
|
|
8351
8351
|
legal_name?: string | null | undefined;
|
|
8352
|
-
contact_name?: string | null | undefined;
|
|
8353
8352
|
contact_email?: string | null | undefined;
|
|
8353
|
+
address_city?: string | null | undefined;
|
|
8354
|
+
address_zip?: string | null | undefined;
|
|
8355
|
+
contact_name?: string | null | undefined;
|
|
8354
8356
|
contact_business_phone?: string | null | undefined;
|
|
8355
8357
|
contact_mobile_phone?: string | null | undefined;
|
|
8356
8358
|
contact_time_zone?: string | null | undefined;
|
|
8357
8359
|
address_full?: string | null | undefined;
|
|
8358
|
-
address_city?: string | null | undefined;
|
|
8359
|
-
address_zip?: string | null | undefined;
|
|
8360
8360
|
twitter_username?: string | null | undefined;
|
|
8361
8361
|
logo?: string | null | undefined;
|
|
8362
8362
|
email_sent_from?: string | null | undefined;
|
|
@@ -8386,14 +8386,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8386
8386
|
url?: string | null | undefined;
|
|
8387
8387
|
unique_name?: string | null | undefined;
|
|
8388
8388
|
legal_name?: string | null | undefined;
|
|
8389
|
-
contact_name?: string | null | undefined;
|
|
8390
8389
|
contact_email?: string | null | undefined;
|
|
8390
|
+
address_city?: string | null | undefined;
|
|
8391
|
+
address_zip?: string | null | undefined;
|
|
8392
|
+
contact_name?: string | null | undefined;
|
|
8391
8393
|
contact_business_phone?: string | null | undefined;
|
|
8392
8394
|
contact_mobile_phone?: string | null | undefined;
|
|
8393
8395
|
contact_time_zone?: string | null | undefined;
|
|
8394
8396
|
address_full?: string | null | undefined;
|
|
8395
|
-
address_city?: string | null | undefined;
|
|
8396
|
-
address_zip?: string | null | undefined;
|
|
8397
8397
|
twitter_username?: string | null | undefined;
|
|
8398
8398
|
logo?: string | null | undefined;
|
|
8399
8399
|
email_sent_from?: string | null | undefined;
|
|
@@ -8404,14 +8404,14 @@ declare const TeamCreateSchema: z.ZodObject<{
|
|
|
8404
8404
|
url?: string | null | undefined;
|
|
8405
8405
|
unique_name?: string | null | undefined;
|
|
8406
8406
|
legal_name?: string | null | undefined;
|
|
8407
|
-
contact_name?: string | null | undefined;
|
|
8408
8407
|
contact_email?: string | null | undefined;
|
|
8408
|
+
address_city?: string | null | undefined;
|
|
8409
|
+
address_zip?: string | null | undefined;
|
|
8410
|
+
contact_name?: string | null | undefined;
|
|
8409
8411
|
contact_business_phone?: string | null | undefined;
|
|
8410
8412
|
contact_mobile_phone?: string | null | undefined;
|
|
8411
8413
|
contact_time_zone?: string | null | undefined;
|
|
8412
8414
|
address_full?: string | null | undefined;
|
|
8413
|
-
address_city?: string | null | undefined;
|
|
8414
|
-
address_zip?: string | null | undefined;
|
|
8415
8415
|
twitter_username?: string | null | undefined;
|
|
8416
8416
|
logo?: string | null | undefined;
|
|
8417
8417
|
email_sent_from?: string | null | undefined;
|
|
@@ -8445,14 +8445,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8445
8445
|
url?: string | null | undefined;
|
|
8446
8446
|
unique_name?: string | null | undefined;
|
|
8447
8447
|
legal_name?: string | null | undefined;
|
|
8448
|
-
contact_name?: string | null | undefined;
|
|
8449
8448
|
contact_email?: string | null | undefined;
|
|
8449
|
+
address_city?: string | null | undefined;
|
|
8450
|
+
address_zip?: string | null | undefined;
|
|
8451
|
+
contact_name?: string | null | undefined;
|
|
8450
8452
|
contact_business_phone?: string | null | undefined;
|
|
8451
8453
|
contact_mobile_phone?: string | null | undefined;
|
|
8452
8454
|
contact_time_zone?: string | null | undefined;
|
|
8453
8455
|
address_full?: string | null | undefined;
|
|
8454
|
-
address_city?: string | null | undefined;
|
|
8455
|
-
address_zip?: string | null | undefined;
|
|
8456
8456
|
twitter_username?: string | null | undefined;
|
|
8457
8457
|
logo?: string | null | undefined;
|
|
8458
8458
|
email_sent_from?: string | null | undefined;
|
|
@@ -8464,14 +8464,14 @@ declare const TeamUpdateSchema: z.ZodObject<{
|
|
|
8464
8464
|
url?: string | null | undefined;
|
|
8465
8465
|
unique_name?: string | null | undefined;
|
|
8466
8466
|
legal_name?: string | null | undefined;
|
|
8467
|
-
contact_name?: string | null | undefined;
|
|
8468
8467
|
contact_email?: string | null | undefined;
|
|
8468
|
+
address_city?: string | null | undefined;
|
|
8469
|
+
address_zip?: string | null | undefined;
|
|
8470
|
+
contact_name?: string | null | undefined;
|
|
8469
8471
|
contact_business_phone?: string | null | undefined;
|
|
8470
8472
|
contact_mobile_phone?: string | null | undefined;
|
|
8471
8473
|
contact_time_zone?: string | null | undefined;
|
|
8472
8474
|
address_full?: string | null | undefined;
|
|
8473
|
-
address_city?: string | null | undefined;
|
|
8474
|
-
address_zip?: string | null | undefined;
|
|
8475
8475
|
twitter_username?: string | null | undefined;
|
|
8476
8476
|
logo?: string | null | undefined;
|
|
8477
8477
|
email_sent_from?: string | null | undefined;
|
|
@@ -8529,14 +8529,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8529
8529
|
updated_by_display_name?: string | null | undefined;
|
|
8530
8530
|
unique_name?: string | null | undefined;
|
|
8531
8531
|
legal_name?: string | null | undefined;
|
|
8532
|
-
contact_name?: string | null | undefined;
|
|
8533
8532
|
contact_email?: string | null | undefined;
|
|
8533
|
+
address_city?: string | null | undefined;
|
|
8534
|
+
address_zip?: string | null | undefined;
|
|
8535
|
+
contact_name?: string | null | undefined;
|
|
8534
8536
|
contact_business_phone?: string | null | undefined;
|
|
8535
8537
|
contact_mobile_phone?: string | null | undefined;
|
|
8536
8538
|
contact_time_zone?: string | null | undefined;
|
|
8537
8539
|
address_full?: string | null | undefined;
|
|
8538
|
-
address_city?: string | null | undefined;
|
|
8539
|
-
address_zip?: string | null | undefined;
|
|
8540
8540
|
twitter_username?: string | null | undefined;
|
|
8541
8541
|
logo?: string | null | undefined;
|
|
8542
8542
|
email_sent_from?: string | null | undefined;
|
|
@@ -8559,14 +8559,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8559
8559
|
updated_by_display_name?: string | null | undefined;
|
|
8560
8560
|
unique_name?: string | null | undefined;
|
|
8561
8561
|
legal_name?: string | null | undefined;
|
|
8562
|
-
contact_name?: string | null | undefined;
|
|
8563
8562
|
contact_email?: string | null | undefined;
|
|
8563
|
+
address_city?: string | null | undefined;
|
|
8564
|
+
address_zip?: string | null | undefined;
|
|
8565
|
+
contact_name?: string | null | undefined;
|
|
8564
8566
|
contact_business_phone?: string | null | undefined;
|
|
8565
8567
|
contact_mobile_phone?: string | null | undefined;
|
|
8566
8568
|
contact_time_zone?: string | null | undefined;
|
|
8567
8569
|
address_full?: string | null | undefined;
|
|
8568
|
-
address_city?: string | null | undefined;
|
|
8569
|
-
address_zip?: string | null | undefined;
|
|
8570
8570
|
twitter_username?: string | null | undefined;
|
|
8571
8571
|
logo?: string | null | undefined;
|
|
8572
8572
|
email_sent_from?: string | null | undefined;
|
|
@@ -8613,14 +8613,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8613
8613
|
updated_by_display_name?: string | null | undefined;
|
|
8614
8614
|
unique_name?: string | null | undefined;
|
|
8615
8615
|
legal_name?: string | null | undefined;
|
|
8616
|
-
contact_name?: string | null | undefined;
|
|
8617
8616
|
contact_email?: string | null | undefined;
|
|
8617
|
+
address_city?: string | null | undefined;
|
|
8618
|
+
address_zip?: string | null | undefined;
|
|
8619
|
+
contact_name?: string | null | undefined;
|
|
8618
8620
|
contact_business_phone?: string | null | undefined;
|
|
8619
8621
|
contact_mobile_phone?: string | null | undefined;
|
|
8620
8622
|
contact_time_zone?: string | null | undefined;
|
|
8621
8623
|
address_full?: string | null | undefined;
|
|
8622
|
-
address_city?: string | null | undefined;
|
|
8623
|
-
address_zip?: string | null | undefined;
|
|
8624
8624
|
twitter_username?: string | null | undefined;
|
|
8625
8625
|
logo?: string | null | undefined;
|
|
8626
8626
|
email_sent_from?: string | null | undefined;
|
|
@@ -8653,14 +8653,14 @@ declare const TeamPageSchema: z.ZodObject<{
|
|
|
8653
8653
|
updated_by_display_name?: string | null | undefined;
|
|
8654
8654
|
unique_name?: string | null | undefined;
|
|
8655
8655
|
legal_name?: string | null | undefined;
|
|
8656
|
-
contact_name?: string | null | undefined;
|
|
8657
8656
|
contact_email?: string | null | undefined;
|
|
8657
|
+
address_city?: string | null | undefined;
|
|
8658
|
+
address_zip?: string | null | undefined;
|
|
8659
|
+
contact_name?: string | null | undefined;
|
|
8658
8660
|
contact_business_phone?: string | null | undefined;
|
|
8659
8661
|
contact_mobile_phone?: string | null | undefined;
|
|
8660
8662
|
contact_time_zone?: string | null | undefined;
|
|
8661
8663
|
address_full?: string | null | undefined;
|
|
8662
|
-
address_city?: string | null | undefined;
|
|
8663
|
-
address_zip?: string | null | undefined;
|
|
8664
8664
|
twitter_username?: string | null | undefined;
|
|
8665
8665
|
logo?: string | null | undefined;
|
|
8666
8666
|
email_sent_from?: string | null | undefined;
|
|
@@ -8727,14 +8727,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8727
8727
|
updated_by_display_name?: string | null | undefined;
|
|
8728
8728
|
unique_name?: string | null | undefined;
|
|
8729
8729
|
legal_name?: string | null | undefined;
|
|
8730
|
-
contact_name?: string | null | undefined;
|
|
8731
8730
|
contact_email?: string | null | undefined;
|
|
8731
|
+
address_city?: string | null | undefined;
|
|
8732
|
+
address_zip?: string | null | undefined;
|
|
8733
|
+
contact_name?: string | null | undefined;
|
|
8732
8734
|
contact_business_phone?: string | null | undefined;
|
|
8733
8735
|
contact_mobile_phone?: string | null | undefined;
|
|
8734
8736
|
contact_time_zone?: string | null | undefined;
|
|
8735
8737
|
address_full?: string | null | undefined;
|
|
8736
|
-
address_city?: string | null | undefined;
|
|
8737
|
-
address_zip?: string | null | undefined;
|
|
8738
8738
|
twitter_username?: string | null | undefined;
|
|
8739
8739
|
logo?: string | null | undefined;
|
|
8740
8740
|
email_sent_from?: string | null | undefined;
|
|
@@ -8757,14 +8757,14 @@ declare const TeamReadSchema: z.ZodObject<{
|
|
|
8757
8757
|
updated_by_display_name?: string | null | undefined;
|
|
8758
8758
|
unique_name?: string | null | undefined;
|
|
8759
8759
|
legal_name?: string | null | undefined;
|
|
8760
|
-
contact_name?: string | null | undefined;
|
|
8761
8760
|
contact_email?: string | null | undefined;
|
|
8761
|
+
address_city?: string | null | undefined;
|
|
8762
|
+
address_zip?: string | null | undefined;
|
|
8763
|
+
contact_name?: string | null | undefined;
|
|
8762
8764
|
contact_business_phone?: string | null | undefined;
|
|
8763
8765
|
contact_mobile_phone?: string | null | undefined;
|
|
8764
8766
|
contact_time_zone?: string | null | undefined;
|
|
8765
8767
|
address_full?: string | null | undefined;
|
|
8766
|
-
address_city?: string | null | undefined;
|
|
8767
|
-
address_zip?: string | null | undefined;
|
|
8768
8768
|
twitter_username?: string | null | undefined;
|
|
8769
8769
|
logo?: string | null | undefined;
|
|
8770
8770
|
email_sent_from?: string | null | undefined;
|
|
@@ -8844,14 +8844,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8844
8844
|
updated_by_display_name?: string | null | undefined;
|
|
8845
8845
|
unique_name?: string | null | undefined;
|
|
8846
8846
|
legal_name?: string | null | undefined;
|
|
8847
|
-
contact_name?: string | null | undefined;
|
|
8848
8847
|
contact_email?: string | null | undefined;
|
|
8848
|
+
address_city?: string | null | undefined;
|
|
8849
|
+
address_zip?: string | null | undefined;
|
|
8850
|
+
contact_name?: string | null | undefined;
|
|
8849
8851
|
contact_business_phone?: string | null | undefined;
|
|
8850
8852
|
contact_mobile_phone?: string | null | undefined;
|
|
8851
8853
|
contact_time_zone?: string | null | undefined;
|
|
8852
8854
|
address_full?: string | null | undefined;
|
|
8853
|
-
address_city?: string | null | undefined;
|
|
8854
|
-
address_zip?: string | null | undefined;
|
|
8855
8855
|
twitter_username?: string | null | undefined;
|
|
8856
8856
|
logo?: string | null | undefined;
|
|
8857
8857
|
email_sent_from?: string | null | undefined;
|
|
@@ -8874,14 +8874,14 @@ declare const TeamOptionSchema: z.ZodObject<{
|
|
|
8874
8874
|
updated_by_display_name?: string | null | undefined;
|
|
8875
8875
|
unique_name?: string | null | undefined;
|
|
8876
8876
|
legal_name?: string | null | undefined;
|
|
8877
|
-
contact_name?: string | null | undefined;
|
|
8878
8877
|
contact_email?: string | null | undefined;
|
|
8878
|
+
address_city?: string | null | undefined;
|
|
8879
|
+
address_zip?: string | null | undefined;
|
|
8880
|
+
contact_name?: string | null | undefined;
|
|
8879
8881
|
contact_business_phone?: string | null | undefined;
|
|
8880
8882
|
contact_mobile_phone?: string | null | undefined;
|
|
8881
8883
|
contact_time_zone?: string | null | undefined;
|
|
8882
8884
|
address_full?: string | null | undefined;
|
|
8883
|
-
address_city?: string | null | undefined;
|
|
8884
|
-
address_zip?: string | null | undefined;
|
|
8885
8885
|
twitter_username?: string | null | undefined;
|
|
8886
8886
|
logo?: string | null | undefined;
|
|
8887
8887
|
email_sent_from?: string | null | undefined;
|
|
@@ -8941,14 +8941,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8941
8941
|
updated_by_display_name?: string | null | undefined;
|
|
8942
8942
|
unique_name?: string | null | undefined;
|
|
8943
8943
|
legal_name?: string | null | undefined;
|
|
8944
|
-
contact_name?: string | null | undefined;
|
|
8945
8944
|
contact_email?: string | null | undefined;
|
|
8945
|
+
address_city?: string | null | undefined;
|
|
8946
|
+
address_zip?: string | null | undefined;
|
|
8947
|
+
contact_name?: string | null | undefined;
|
|
8946
8948
|
contact_business_phone?: string | null | undefined;
|
|
8947
8949
|
contact_mobile_phone?: string | null | undefined;
|
|
8948
8950
|
contact_time_zone?: string | null | undefined;
|
|
8949
8951
|
address_full?: string | null | undefined;
|
|
8950
|
-
address_city?: string | null | undefined;
|
|
8951
|
-
address_zip?: string | null | undefined;
|
|
8952
8952
|
twitter_username?: string | null | undefined;
|
|
8953
8953
|
logo?: string | null | undefined;
|
|
8954
8954
|
email_sent_from?: string | null | undefined;
|
|
@@ -8971,14 +8971,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
8971
8971
|
updated_by_display_name?: string | null | undefined;
|
|
8972
8972
|
unique_name?: string | null | undefined;
|
|
8973
8973
|
legal_name?: string | null | undefined;
|
|
8974
|
-
contact_name?: string | null | undefined;
|
|
8975
8974
|
contact_email?: string | null | undefined;
|
|
8975
|
+
address_city?: string | null | undefined;
|
|
8976
|
+
address_zip?: string | null | undefined;
|
|
8977
|
+
contact_name?: string | null | undefined;
|
|
8976
8978
|
contact_business_phone?: string | null | undefined;
|
|
8977
8979
|
contact_mobile_phone?: string | null | undefined;
|
|
8978
8980
|
contact_time_zone?: string | null | undefined;
|
|
8979
8981
|
address_full?: string | null | undefined;
|
|
8980
|
-
address_city?: string | null | undefined;
|
|
8981
|
-
address_zip?: string | null | undefined;
|
|
8982
8982
|
twitter_username?: string | null | undefined;
|
|
8983
8983
|
logo?: string | null | undefined;
|
|
8984
8984
|
email_sent_from?: string | null | undefined;
|
|
@@ -9003,14 +9003,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
9003
9003
|
updated_by_display_name?: string | null | undefined;
|
|
9004
9004
|
unique_name?: string | null | undefined;
|
|
9005
9005
|
legal_name?: string | null | undefined;
|
|
9006
|
-
contact_name?: string | null | undefined;
|
|
9007
9006
|
contact_email?: string | null | undefined;
|
|
9007
|
+
address_city?: string | null | undefined;
|
|
9008
|
+
address_zip?: string | null | undefined;
|
|
9009
|
+
contact_name?: string | null | undefined;
|
|
9008
9010
|
contact_business_phone?: string | null | undefined;
|
|
9009
9011
|
contact_mobile_phone?: string | null | undefined;
|
|
9010
9012
|
contact_time_zone?: string | null | undefined;
|
|
9011
9013
|
address_full?: string | null | undefined;
|
|
9012
|
-
address_city?: string | null | undefined;
|
|
9013
|
-
address_zip?: string | null | undefined;
|
|
9014
9014
|
twitter_username?: string | null | undefined;
|
|
9015
9015
|
logo?: string | null | undefined;
|
|
9016
9016
|
email_sent_from?: string | null | undefined;
|
|
@@ -9035,14 +9035,14 @@ declare const UserTeamsSchema: z.ZodObject<{
|
|
|
9035
9035
|
updated_by_display_name?: string | null | undefined;
|
|
9036
9036
|
unique_name?: string | null | undefined;
|
|
9037
9037
|
legal_name?: string | null | undefined;
|
|
9038
|
-
contact_name?: string | null | undefined;
|
|
9039
9038
|
contact_email?: string | null | undefined;
|
|
9039
|
+
address_city?: string | null | undefined;
|
|
9040
|
+
address_zip?: string | null | undefined;
|
|
9041
|
+
contact_name?: string | null | undefined;
|
|
9040
9042
|
contact_business_phone?: string | null | undefined;
|
|
9041
9043
|
contact_mobile_phone?: string | null | undefined;
|
|
9042
9044
|
contact_time_zone?: string | null | undefined;
|
|
9043
9045
|
address_full?: string | null | undefined;
|
|
9044
|
-
address_city?: string | null | undefined;
|
|
9045
|
-
address_zip?: string | null | undefined;
|
|
9046
9046
|
twitter_username?: string | null | undefined;
|
|
9047
9047
|
logo?: string | null | undefined;
|
|
9048
9048
|
email_sent_from?: string | null | undefined;
|
|
@@ -9695,11 +9695,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9695
9695
|
searchableFields: string[];
|
|
9696
9696
|
}>>;
|
|
9697
9697
|
}, "strip", z.ZodTypeAny, {
|
|
9698
|
-
first?: number | undefined;
|
|
9699
|
-
after?: string | undefined;
|
|
9700
|
-
sortBy?: string | undefined;
|
|
9701
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9702
|
-
paginationToken?: string | undefined;
|
|
9703
9698
|
created_at?: {
|
|
9704
9699
|
operator: "isEmpty" | "isNotEmpty";
|
|
9705
9700
|
value?: any;
|
|
@@ -9716,6 +9711,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9716
9711
|
values?: any[] | undefined;
|
|
9717
9712
|
caseSensitive?: boolean | undefined;
|
|
9718
9713
|
} | undefined;
|
|
9714
|
+
first?: number | undefined;
|
|
9715
|
+
after?: string | undefined;
|
|
9716
|
+
sortBy?: string | undefined;
|
|
9717
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9718
|
+
paginationToken?: string | undefined;
|
|
9719
9719
|
search?: {
|
|
9720
9720
|
query: string;
|
|
9721
9721
|
searchableFields: string[];
|
|
@@ -9825,11 +9825,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9825
9825
|
caseSensitive?: boolean | undefined;
|
|
9826
9826
|
} | undefined;
|
|
9827
9827
|
}, {
|
|
9828
|
-
first?: number | undefined;
|
|
9829
|
-
after?: string | undefined;
|
|
9830
|
-
sortBy?: string | undefined;
|
|
9831
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
9832
|
-
paginationToken?: string | undefined;
|
|
9833
9828
|
created_at?: {
|
|
9834
9829
|
operator: "isEmpty" | "isNotEmpty";
|
|
9835
9830
|
value?: any;
|
|
@@ -9846,6 +9841,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9846
9841
|
values?: any[] | undefined;
|
|
9847
9842
|
caseSensitive?: boolean | undefined;
|
|
9848
9843
|
} | undefined;
|
|
9844
|
+
first?: number | undefined;
|
|
9845
|
+
after?: string | undefined;
|
|
9846
|
+
sortBy?: string | undefined;
|
|
9847
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9848
|
+
paginationToken?: string | undefined;
|
|
9849
9849
|
search?: {
|
|
9850
9850
|
query: string;
|
|
9851
9851
|
searchableFields: string[];
|
|
@@ -10309,19 +10309,19 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
10309
10309
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
10310
10310
|
}, "strip", z.ZodTypeAny, {
|
|
10311
10311
|
created_at: string;
|
|
10312
|
-
id: string;
|
|
10313
10312
|
email: string;
|
|
10314
10313
|
username: string;
|
|
10315
10314
|
email_verified: boolean;
|
|
10316
10315
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10316
|
+
id: string;
|
|
10317
10317
|
updated_at: string | null;
|
|
10318
10318
|
}, {
|
|
10319
10319
|
created_at: string;
|
|
10320
|
-
id: string;
|
|
10321
10320
|
email: string;
|
|
10322
10321
|
username: string;
|
|
10323
10322
|
email_verified: boolean;
|
|
10324
10323
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10324
|
+
id: string;
|
|
10325
10325
|
updated_at: string | null;
|
|
10326
10326
|
}>;
|
|
10327
10327
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
@@ -10331,11 +10331,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
10331
10331
|
id: z.ZodString;
|
|
10332
10332
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
10333
10333
|
}, "strip", z.ZodTypeAny, {
|
|
10334
|
-
id: string;
|
|
10335
10334
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10336
|
-
}, {
|
|
10337
10335
|
id: string;
|
|
10336
|
+
}, {
|
|
10338
10337
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
10338
|
+
id: string;
|
|
10339
10339
|
}>;
|
|
10340
10340
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
10341
10341
|
//#endregion
|