@dragonmastery/dragoncore-shared 0.0.20 → 0.0.21
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 +218 -208
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1114,11 +1114,11 @@ declare const createUserSchemaOutput: z.ZodObject<{
|
|
|
1114
1114
|
id: z.ZodString;
|
|
1115
1115
|
email: z.ZodString;
|
|
1116
1116
|
}, "strip", z.ZodTypeAny, {
|
|
1117
|
-
id: string;
|
|
1118
1117
|
email: string;
|
|
1119
|
-
}, {
|
|
1120
1118
|
id: string;
|
|
1119
|
+
}, {
|
|
1121
1120
|
email: string;
|
|
1121
|
+
id: string;
|
|
1122
1122
|
}>;
|
|
1123
1123
|
type CreateUserDtoOutput = z.infer<typeof createUserSchemaOutput>;
|
|
1124
1124
|
//#endregion
|
|
@@ -1432,6 +1432,22 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1432
1432
|
searchableFields: string[];
|
|
1433
1433
|
}>>;
|
|
1434
1434
|
}, "strip", z.ZodTypeAny, {
|
|
1435
|
+
created_at?: {
|
|
1436
|
+
operator: "isEmpty" | "isNotEmpty";
|
|
1437
|
+
value?: any;
|
|
1438
|
+
values?: any[] | undefined;
|
|
1439
|
+
caseSensitive?: boolean | undefined;
|
|
1440
|
+
} | {
|
|
1441
|
+
values: string[];
|
|
1442
|
+
operator: "between";
|
|
1443
|
+
value?: any;
|
|
1444
|
+
caseSensitive?: boolean | undefined;
|
|
1445
|
+
} | {
|
|
1446
|
+
value: string;
|
|
1447
|
+
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1448
|
+
values?: any[] | undefined;
|
|
1449
|
+
caseSensitive?: boolean | undefined;
|
|
1450
|
+
} | undefined;
|
|
1435
1451
|
type?: {
|
|
1436
1452
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1437
1453
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1461,6 +1477,17 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1461
1477
|
values?: number[] | undefined;
|
|
1462
1478
|
caseSensitive?: boolean | undefined;
|
|
1463
1479
|
} | undefined;
|
|
1480
|
+
created_by?: {
|
|
1481
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1482
|
+
value?: string | undefined;
|
|
1483
|
+
values?: string[] | undefined;
|
|
1484
|
+
caseSensitive?: boolean | undefined;
|
|
1485
|
+
} | undefined;
|
|
1486
|
+
search?: {
|
|
1487
|
+
query: string;
|
|
1488
|
+
searchableFields: string[];
|
|
1489
|
+
} | undefined;
|
|
1490
|
+
}, {
|
|
1464
1491
|
created_at?: {
|
|
1465
1492
|
operator: "isEmpty" | "isNotEmpty";
|
|
1466
1493
|
value?: any;
|
|
@@ -1477,17 +1504,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1477
1504
|
values?: any[] | undefined;
|
|
1478
1505
|
caseSensitive?: boolean | undefined;
|
|
1479
1506
|
} | undefined;
|
|
1480
|
-
created_by?: {
|
|
1481
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1482
|
-
value?: string | undefined;
|
|
1483
|
-
values?: string[] | undefined;
|
|
1484
|
-
caseSensitive?: boolean | undefined;
|
|
1485
|
-
} | undefined;
|
|
1486
|
-
search?: {
|
|
1487
|
-
query: string;
|
|
1488
|
-
searchableFields: string[];
|
|
1489
|
-
} | undefined;
|
|
1490
|
-
}, {
|
|
1491
1507
|
type?: {
|
|
1492
1508
|
operator: "eq" | "ne" | "in" | "notIn";
|
|
1493
1509
|
value?: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT" | undefined;
|
|
@@ -1517,22 +1533,6 @@ declare const CreditTransactionFiltersSchema: z.ZodObject<{
|
|
|
1517
1533
|
values?: number[] | undefined;
|
|
1518
1534
|
caseSensitive?: boolean | undefined;
|
|
1519
1535
|
} | undefined;
|
|
1520
|
-
created_at?: {
|
|
1521
|
-
operator: "isEmpty" | "isNotEmpty";
|
|
1522
|
-
value?: any;
|
|
1523
|
-
values?: any[] | undefined;
|
|
1524
|
-
caseSensitive?: boolean | undefined;
|
|
1525
|
-
} | {
|
|
1526
|
-
values: string[];
|
|
1527
|
-
operator: "between";
|
|
1528
|
-
value?: any;
|
|
1529
|
-
caseSensitive?: boolean | undefined;
|
|
1530
|
-
} | {
|
|
1531
|
-
value: string;
|
|
1532
|
-
operator: "eq" | "ne" | "gt" | "gte" | "lt" | "lte";
|
|
1533
|
-
values?: any[] | undefined;
|
|
1534
|
-
caseSensitive?: boolean | undefined;
|
|
1535
|
-
} | undefined;
|
|
1536
1536
|
created_by?: {
|
|
1537
1537
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
1538
1538
|
value?: string | undefined;
|
|
@@ -1565,19 +1565,19 @@ declare const CreditTransactionReadSchema: z.ZodObject<{
|
|
|
1565
1565
|
created_at: z.ZodString;
|
|
1566
1566
|
created_by: z.ZodString;
|
|
1567
1567
|
}, "strip", z.ZodTypeAny, {
|
|
1568
|
+
created_at: string;
|
|
1568
1569
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1569
1570
|
amount: string;
|
|
1570
1571
|
balance_after: string;
|
|
1571
|
-
created_at: string;
|
|
1572
1572
|
created_by: string;
|
|
1573
1573
|
id: string;
|
|
1574
1574
|
support_ticket_id?: string | null | undefined;
|
|
1575
1575
|
description?: string | null | undefined;
|
|
1576
1576
|
}, {
|
|
1577
|
+
created_at: string;
|
|
1577
1578
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1578
1579
|
amount: string;
|
|
1579
1580
|
balance_after: string;
|
|
1580
|
-
created_at: string;
|
|
1581
1581
|
created_by: string;
|
|
1582
1582
|
id: string;
|
|
1583
1583
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1598,19 +1598,19 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1598
1598
|
created_at: z.ZodString;
|
|
1599
1599
|
created_by: z.ZodString;
|
|
1600
1600
|
}, "strip", z.ZodTypeAny, {
|
|
1601
|
+
created_at: string;
|
|
1601
1602
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1602
1603
|
amount: string;
|
|
1603
1604
|
balance_after: string;
|
|
1604
|
-
created_at: string;
|
|
1605
1605
|
created_by: string;
|
|
1606
1606
|
id: string;
|
|
1607
1607
|
support_ticket_id?: string | null | undefined;
|
|
1608
1608
|
description?: string | null | undefined;
|
|
1609
1609
|
}, {
|
|
1610
|
+
created_at: string;
|
|
1610
1611
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1611
1612
|
amount: string;
|
|
1612
1613
|
balance_after: string;
|
|
1613
|
-
created_at: string;
|
|
1614
1614
|
created_by: string;
|
|
1615
1615
|
id: string;
|
|
1616
1616
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1640,10 +1640,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1640
1640
|
}>;
|
|
1641
1641
|
}, "strip", z.ZodTypeAny, {
|
|
1642
1642
|
items: {
|
|
1643
|
+
created_at: string;
|
|
1643
1644
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1644
1645
|
amount: string;
|
|
1645
1646
|
balance_after: string;
|
|
1646
|
-
created_at: string;
|
|
1647
1647
|
created_by: string;
|
|
1648
1648
|
id: string;
|
|
1649
1649
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1659,10 +1659,10 @@ declare const CreditTransactionPageSchema: z.ZodObject<{
|
|
|
1659
1659
|
};
|
|
1660
1660
|
}, {
|
|
1661
1661
|
items: {
|
|
1662
|
+
created_at: string;
|
|
1662
1663
|
type: "DEDUCTION" | "REFUND" | "PURCHASE_ONETIME" | "PURCHASE_RECURRING" | "ADJUSTMENT";
|
|
1663
1664
|
amount: string;
|
|
1664
1665
|
balance_after: string;
|
|
1665
|
-
created_at: string;
|
|
1666
1666
|
created_by: string;
|
|
1667
1667
|
id: string;
|
|
1668
1668
|
support_ticket_id?: string | null | undefined;
|
|
@@ -1741,8 +1741,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1741
1741
|
price_currency?: string | null | undefined;
|
|
1742
1742
|
}>, "many">>>;
|
|
1743
1743
|
}, "strip", z.ZodTypeAny, {
|
|
1744
|
-
email: string;
|
|
1745
1744
|
userId: string;
|
|
1745
|
+
email: string;
|
|
1746
1746
|
username: string;
|
|
1747
1747
|
email_verified: boolean;
|
|
1748
1748
|
user_type: string;
|
|
@@ -1763,8 +1763,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1763
1763
|
price_currency?: string | null | undefined;
|
|
1764
1764
|
}[] | null | undefined;
|
|
1765
1765
|
}, {
|
|
1766
|
-
email: string;
|
|
1767
1766
|
userId: string;
|
|
1767
|
+
email: string;
|
|
1768
1768
|
username: string;
|
|
1769
1769
|
email_verified: boolean;
|
|
1770
1770
|
user_type: string;
|
|
@@ -1787,8 +1787,8 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1787
1787
|
}>;
|
|
1788
1788
|
}, "strip", z.ZodTypeAny, {
|
|
1789
1789
|
user: {
|
|
1790
|
-
email: string;
|
|
1791
1790
|
userId: string;
|
|
1791
|
+
email: string;
|
|
1792
1792
|
username: string;
|
|
1793
1793
|
email_verified: boolean;
|
|
1794
1794
|
user_type: string;
|
|
@@ -1809,15 +1809,15 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1809
1809
|
price_currency?: string | null | undefined;
|
|
1810
1810
|
}[] | null | undefined;
|
|
1811
1811
|
};
|
|
1812
|
-
status: string;
|
|
1813
1812
|
created_at: string;
|
|
1814
1813
|
expires_at: string;
|
|
1814
|
+
status: string;
|
|
1815
1815
|
user_agent?: string | null | undefined;
|
|
1816
1816
|
ip_address?: string | null | undefined;
|
|
1817
1817
|
}, {
|
|
1818
1818
|
user: {
|
|
1819
|
-
email: string;
|
|
1820
1819
|
userId: string;
|
|
1820
|
+
email: string;
|
|
1821
1821
|
username: string;
|
|
1822
1822
|
email_verified: boolean;
|
|
1823
1823
|
user_type: string;
|
|
@@ -1838,9 +1838,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1838
1838
|
price_currency?: string | null | undefined;
|
|
1839
1839
|
}[] | null | undefined;
|
|
1840
1840
|
};
|
|
1841
|
-
status: string;
|
|
1842
1841
|
created_at: string;
|
|
1843
1842
|
expires_at: string;
|
|
1843
|
+
status: string;
|
|
1844
1844
|
user_agent?: string | null | undefined;
|
|
1845
1845
|
ip_address?: string | null | undefined;
|
|
1846
1846
|
}>;
|
|
@@ -1896,8 +1896,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1896
1896
|
price_currency?: string | null | undefined;
|
|
1897
1897
|
}>, "many">>>;
|
|
1898
1898
|
}, "strip", z.ZodTypeAny, {
|
|
1899
|
-
email: string;
|
|
1900
1899
|
userId: string;
|
|
1900
|
+
email: string;
|
|
1901
1901
|
username: string;
|
|
1902
1902
|
email_verified: boolean;
|
|
1903
1903
|
user_type: string;
|
|
@@ -1918,8 +1918,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1918
1918
|
price_currency?: string | null | undefined;
|
|
1919
1919
|
}[] | null | undefined;
|
|
1920
1920
|
}, {
|
|
1921
|
-
email: string;
|
|
1922
1921
|
userId: string;
|
|
1922
|
+
email: string;
|
|
1923
1923
|
username: string;
|
|
1924
1924
|
email_verified: boolean;
|
|
1925
1925
|
user_type: string;
|
|
@@ -1942,8 +1942,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1942
1942
|
}>;
|
|
1943
1943
|
}, "strip", z.ZodTypeAny, {
|
|
1944
1944
|
user: {
|
|
1945
|
-
email: string;
|
|
1946
1945
|
userId: string;
|
|
1946
|
+
email: string;
|
|
1947
1947
|
username: string;
|
|
1948
1948
|
email_verified: boolean;
|
|
1949
1949
|
user_type: string;
|
|
@@ -1964,15 +1964,15 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1964
1964
|
price_currency?: string | null | undefined;
|
|
1965
1965
|
}[] | null | undefined;
|
|
1966
1966
|
};
|
|
1967
|
-
status: string;
|
|
1968
1967
|
created_at: string;
|
|
1969
1968
|
expires_at: string;
|
|
1969
|
+
status: string;
|
|
1970
1970
|
user_agent?: string | null | undefined;
|
|
1971
1971
|
ip_address?: string | null | undefined;
|
|
1972
1972
|
}, {
|
|
1973
1973
|
user: {
|
|
1974
|
-
email: string;
|
|
1975
1974
|
userId: string;
|
|
1975
|
+
email: string;
|
|
1976
1976
|
username: string;
|
|
1977
1977
|
email_verified: boolean;
|
|
1978
1978
|
user_type: string;
|
|
@@ -1993,9 +1993,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1993
1993
|
price_currency?: string | null | undefined;
|
|
1994
1994
|
}[] | null | undefined;
|
|
1995
1995
|
};
|
|
1996
|
-
status: string;
|
|
1997
1996
|
created_at: string;
|
|
1998
1997
|
expires_at: string;
|
|
1998
|
+
status: string;
|
|
1999
1999
|
user_agent?: string | null | undefined;
|
|
2000
2000
|
ip_address?: string | null | undefined;
|
|
2001
2001
|
}>;
|
|
@@ -2006,8 +2006,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2006
2006
|
refresh_token: string;
|
|
2007
2007
|
frontend_session: {
|
|
2008
2008
|
user: {
|
|
2009
|
-
email: string;
|
|
2010
2009
|
userId: string;
|
|
2010
|
+
email: string;
|
|
2011
2011
|
username: string;
|
|
2012
2012
|
email_verified: boolean;
|
|
2013
2013
|
user_type: string;
|
|
@@ -2028,9 +2028,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2028
2028
|
price_currency?: string | null | undefined;
|
|
2029
2029
|
}[] | null | undefined;
|
|
2030
2030
|
};
|
|
2031
|
-
status: string;
|
|
2032
2031
|
created_at: string;
|
|
2033
2032
|
expires_at: string;
|
|
2033
|
+
status: string;
|
|
2034
2034
|
user_agent?: string | null | undefined;
|
|
2035
2035
|
ip_address?: string | null | undefined;
|
|
2036
2036
|
};
|
|
@@ -2040,8 +2040,8 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2040
2040
|
refresh_token: string;
|
|
2041
2041
|
frontend_session: {
|
|
2042
2042
|
user: {
|
|
2043
|
-
email: string;
|
|
2044
2043
|
userId: string;
|
|
2044
|
+
email: string;
|
|
2045
2045
|
username: string;
|
|
2046
2046
|
email_verified: boolean;
|
|
2047
2047
|
user_type: string;
|
|
@@ -2062,9 +2062,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2062
2062
|
price_currency?: string | null | undefined;
|
|
2063
2063
|
}[] | null | undefined;
|
|
2064
2064
|
};
|
|
2065
|
-
status: string;
|
|
2066
2065
|
created_at: string;
|
|
2067
2066
|
expires_at: string;
|
|
2067
|
+
status: string;
|
|
2068
2068
|
user_agent?: string | null | undefined;
|
|
2069
2069
|
ip_address?: string | null | undefined;
|
|
2070
2070
|
};
|
|
@@ -2567,11 +2567,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2567
2567
|
searchableFields: string[];
|
|
2568
2568
|
}>>;
|
|
2569
2569
|
}, "strip", z.ZodTypeAny, {
|
|
2570
|
-
first?: number | undefined;
|
|
2571
|
-
after?: string | undefined;
|
|
2572
|
-
sortBy?: string | undefined;
|
|
2573
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2574
|
-
paginationToken?: string | undefined;
|
|
2575
2570
|
created_at?: {
|
|
2576
2571
|
operator: "isEmpty" | "isNotEmpty";
|
|
2577
2572
|
value?: any;
|
|
@@ -2588,6 +2583,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2588
2583
|
values?: any[] | undefined;
|
|
2589
2584
|
caseSensitive?: boolean | undefined;
|
|
2590
2585
|
} | undefined;
|
|
2586
|
+
first?: number | undefined;
|
|
2587
|
+
after?: string | undefined;
|
|
2588
|
+
sortBy?: string | undefined;
|
|
2589
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2590
|
+
paginationToken?: string | undefined;
|
|
2591
2591
|
search?: {
|
|
2592
2592
|
query: string;
|
|
2593
2593
|
searchableFields: string[];
|
|
@@ -2645,11 +2645,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2645
2645
|
caseSensitive?: boolean | undefined;
|
|
2646
2646
|
} | undefined;
|
|
2647
2647
|
}, {
|
|
2648
|
-
first?: number | undefined;
|
|
2649
|
-
after?: string | undefined;
|
|
2650
|
-
sortBy?: string | undefined;
|
|
2651
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2652
|
-
paginationToken?: string | undefined;
|
|
2653
2648
|
created_at?: {
|
|
2654
2649
|
operator: "isEmpty" | "isNotEmpty";
|
|
2655
2650
|
value?: any;
|
|
@@ -2666,6 +2661,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2666
2661
|
values?: any[] | undefined;
|
|
2667
2662
|
caseSensitive?: boolean | undefined;
|
|
2668
2663
|
} | undefined;
|
|
2664
|
+
first?: number | undefined;
|
|
2665
|
+
after?: string | undefined;
|
|
2666
|
+
sortBy?: string | undefined;
|
|
2667
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2668
|
+
paginationToken?: string | undefined;
|
|
2669
2669
|
search?: {
|
|
2670
2670
|
query: string;
|
|
2671
2671
|
searchableFields: string[];
|
|
@@ -3560,18 +3560,18 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3560
3560
|
}>;
|
|
3561
3561
|
acceptances: z.ZodEffects<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>, Record<string, boolean>, Record<string, boolean> | undefined>;
|
|
3562
3562
|
}, "strip", z.ZodTypeAny, {
|
|
3563
|
+
email: string;
|
|
3563
3564
|
passwords: {
|
|
3564
3565
|
password: string;
|
|
3565
3566
|
password_confirm: string;
|
|
3566
3567
|
};
|
|
3567
|
-
email: string;
|
|
3568
3568
|
acceptances: Record<string, boolean>;
|
|
3569
3569
|
}, {
|
|
3570
|
+
email: string;
|
|
3570
3571
|
passwords: {
|
|
3571
3572
|
password: string;
|
|
3572
3573
|
password_confirm: string;
|
|
3573
3574
|
};
|
|
3574
|
-
email: string;
|
|
3575
3575
|
acceptances?: Record<string, boolean> | undefined;
|
|
3576
3576
|
}>;
|
|
3577
3577
|
/** Parsed/validated signup input - acceptances is always present after parse (defaults to {}). */
|
|
@@ -3872,8 +3872,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3872
3872
|
user_id_display_name?: string | null | undefined;
|
|
3873
3873
|
}>>>;
|
|
3874
3874
|
}, "strip", z.ZodTypeAny, {
|
|
3875
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3876
3875
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3876
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3877
3877
|
id: string;
|
|
3878
3878
|
description: string;
|
|
3879
3879
|
title: string;
|
|
@@ -3904,8 +3904,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3904
3904
|
user_id_display_name?: string | null | undefined;
|
|
3905
3905
|
} | null | undefined;
|
|
3906
3906
|
}, {
|
|
3907
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3908
3907
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3908
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3909
3909
|
id: string;
|
|
3910
3910
|
description: string;
|
|
3911
3911
|
title: string;
|
|
@@ -3994,8 +3994,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3994
3994
|
user_id_display_name?: string | null | undefined;
|
|
3995
3995
|
}>>>;
|
|
3996
3996
|
}, "strip", z.ZodTypeAny, {
|
|
3997
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3998
3997
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3998
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3999
3999
|
id: string;
|
|
4000
4000
|
description: string;
|
|
4001
4001
|
title: string;
|
|
@@ -4026,8 +4026,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4026
4026
|
user_id_display_name?: string | null | undefined;
|
|
4027
4027
|
} | null | undefined;
|
|
4028
4028
|
}, {
|
|
4029
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4030
4029
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4030
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4031
4031
|
id: string;
|
|
4032
4032
|
description: string;
|
|
4033
4033
|
title: string;
|
|
@@ -4082,8 +4082,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4082
4082
|
}>;
|
|
4083
4083
|
}, "strip", z.ZodTypeAny, {
|
|
4084
4084
|
items: {
|
|
4085
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4086
4085
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4086
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4087
4087
|
id: string;
|
|
4088
4088
|
description: string;
|
|
4089
4089
|
title: string;
|
|
@@ -4124,8 +4124,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
4124
4124
|
};
|
|
4125
4125
|
}, {
|
|
4126
4126
|
items: {
|
|
4127
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4128
4127
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4128
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4129
4129
|
id: string;
|
|
4130
4130
|
description: string;
|
|
4131
4131
|
title: string;
|
|
@@ -4861,23 +4861,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4861
4861
|
searchableFields: string[];
|
|
4862
4862
|
}>>;
|
|
4863
4863
|
}, "strip", z.ZodTypeAny, {
|
|
4864
|
-
type?: {
|
|
4865
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4866
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4867
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4868
|
-
caseSensitive?: boolean | undefined;
|
|
4869
|
-
} | undefined;
|
|
4870
|
-
status?: {
|
|
4871
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4872
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4873
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4874
|
-
caseSensitive?: boolean | undefined;
|
|
4875
|
-
} | undefined;
|
|
4876
|
-
first?: number | undefined;
|
|
4877
|
-
after?: string | undefined;
|
|
4878
|
-
sortBy?: string | undefined;
|
|
4879
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
4880
|
-
paginationToken?: string | undefined;
|
|
4881
4864
|
created_at?: {
|
|
4882
4865
|
operator: "isEmpty" | "isNotEmpty";
|
|
4883
4866
|
value?: any;
|
|
@@ -4894,6 +4877,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4894
4877
|
values?: any[] | undefined;
|
|
4895
4878
|
caseSensitive?: boolean | undefined;
|
|
4896
4879
|
} | undefined;
|
|
4880
|
+
status?: {
|
|
4881
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4882
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4883
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4884
|
+
caseSensitive?: boolean | undefined;
|
|
4885
|
+
} | undefined;
|
|
4886
|
+
type?: {
|
|
4887
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4888
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4889
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4890
|
+
caseSensitive?: boolean | undefined;
|
|
4891
|
+
} | undefined;
|
|
4892
|
+
first?: number | undefined;
|
|
4893
|
+
after?: string | undefined;
|
|
4894
|
+
sortBy?: string | undefined;
|
|
4895
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
4896
|
+
paginationToken?: string | undefined;
|
|
4897
4897
|
created_by?: {
|
|
4898
4898
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4899
4899
|
value?: string | undefined;
|
|
@@ -4999,23 +4999,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4999
4999
|
caseSensitive?: boolean | undefined;
|
|
5000
5000
|
} | undefined;
|
|
5001
5001
|
}, {
|
|
5002
|
-
type?: {
|
|
5003
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5004
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5005
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5006
|
-
caseSensitive?: boolean | undefined;
|
|
5007
|
-
} | undefined;
|
|
5008
|
-
status?: {
|
|
5009
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
5010
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5011
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5012
|
-
caseSensitive?: boolean | undefined;
|
|
5013
|
-
} | undefined;
|
|
5014
|
-
first?: number | undefined;
|
|
5015
|
-
after?: string | undefined;
|
|
5016
|
-
sortBy?: string | undefined;
|
|
5017
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
5018
|
-
paginationToken?: string | undefined;
|
|
5019
5002
|
created_at?: {
|
|
5020
5003
|
operator: "isEmpty" | "isNotEmpty";
|
|
5021
5004
|
value?: any;
|
|
@@ -5032,6 +5015,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
5032
5015
|
values?: any[] | undefined;
|
|
5033
5016
|
caseSensitive?: boolean | undefined;
|
|
5034
5017
|
} | undefined;
|
|
5018
|
+
status?: {
|
|
5019
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5020
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
5021
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
5022
|
+
caseSensitive?: boolean | undefined;
|
|
5023
|
+
} | undefined;
|
|
5024
|
+
type?: {
|
|
5025
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
5026
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
5027
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
5028
|
+
caseSensitive?: boolean | undefined;
|
|
5029
|
+
} | undefined;
|
|
5030
|
+
first?: number | undefined;
|
|
5031
|
+
after?: string | undefined;
|
|
5032
|
+
sortBy?: string | undefined;
|
|
5033
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
5034
|
+
paginationToken?: string | undefined;
|
|
5035
5035
|
created_by?: {
|
|
5036
5036
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
5037
5037
|
value?: string | undefined;
|
|
@@ -5174,8 +5174,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5174
5174
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5175
5175
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5176
5176
|
}, "strip", z.ZodTypeAny, {
|
|
5177
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5178
5177
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5178
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5179
5179
|
id: string;
|
|
5180
5180
|
description: string;
|
|
5181
5181
|
title: string;
|
|
@@ -5198,13 +5198,13 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5198
5198
|
target_at?: string | null | undefined;
|
|
5199
5199
|
completed_at?: string | null | undefined;
|
|
5200
5200
|
display_id_prefix?: string | null | undefined;
|
|
5201
|
+
locked_approval_at?: string | null | undefined;
|
|
5201
5202
|
assigned_to?: string | null | undefined;
|
|
5202
5203
|
assigned_to_display_name?: string | null | undefined;
|
|
5203
5204
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5204
|
-
locked_approval_at?: string | null | undefined;
|
|
5205
5205
|
}, {
|
|
5206
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5207
5206
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5207
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5208
5208
|
id: string;
|
|
5209
5209
|
description: string;
|
|
5210
5210
|
title: string;
|
|
@@ -5227,10 +5227,10 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5227
5227
|
target_at?: string | null | undefined;
|
|
5228
5228
|
completed_at?: string | null | undefined;
|
|
5229
5229
|
display_id_prefix?: string | null | undefined;
|
|
5230
|
+
locked_approval_at?: string | null | undefined;
|
|
5230
5231
|
assigned_to?: string | null | undefined;
|
|
5231
5232
|
assigned_to_display_name?: string | null | undefined;
|
|
5232
5233
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5233
|
-
locked_approval_at?: string | null | undefined;
|
|
5234
5234
|
}>;
|
|
5235
5235
|
type StaffSupportTicketReadDto = z.infer<typeof StaffSupportTicketReadSchema>;
|
|
5236
5236
|
/**
|
|
@@ -5267,8 +5267,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5267
5267
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5268
5268
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5269
5269
|
}, "strip", z.ZodTypeAny, {
|
|
5270
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5271
5270
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5271
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5272
5272
|
id: string;
|
|
5273
5273
|
description: string;
|
|
5274
5274
|
title: string;
|
|
@@ -5291,13 +5291,13 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5291
5291
|
target_at?: string | null | undefined;
|
|
5292
5292
|
completed_at?: string | null | undefined;
|
|
5293
5293
|
display_id_prefix?: string | null | undefined;
|
|
5294
|
+
locked_approval_at?: string | null | undefined;
|
|
5294
5295
|
assigned_to?: string | null | undefined;
|
|
5295
5296
|
assigned_to_display_name?: string | null | undefined;
|
|
5296
5297
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5297
|
-
locked_approval_at?: string | null | undefined;
|
|
5298
5298
|
}, {
|
|
5299
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5300
5299
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5300
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5301
5301
|
id: string;
|
|
5302
5302
|
description: string;
|
|
5303
5303
|
title: string;
|
|
@@ -5320,10 +5320,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5320
5320
|
target_at?: string | null | undefined;
|
|
5321
5321
|
completed_at?: string | null | undefined;
|
|
5322
5322
|
display_id_prefix?: string | null | undefined;
|
|
5323
|
+
locked_approval_at?: string | null | undefined;
|
|
5323
5324
|
assigned_to?: string | null | undefined;
|
|
5324
5325
|
assigned_to_display_name?: string | null | undefined;
|
|
5325
5326
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5326
|
-
locked_approval_at?: string | null | undefined;
|
|
5327
5327
|
}>, "many">;
|
|
5328
5328
|
pageInfo: z.ZodObject<{
|
|
5329
5329
|
hasNextPage: z.ZodBoolean;
|
|
@@ -5349,8 +5349,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5349
5349
|
}>;
|
|
5350
5350
|
}, "strip", z.ZodTypeAny, {
|
|
5351
5351
|
items: {
|
|
5352
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5353
5352
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5353
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5354
5354
|
id: string;
|
|
5355
5355
|
description: string;
|
|
5356
5356
|
title: string;
|
|
@@ -5373,10 +5373,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5373
5373
|
target_at?: string | null | undefined;
|
|
5374
5374
|
completed_at?: string | null | undefined;
|
|
5375
5375
|
display_id_prefix?: string | null | undefined;
|
|
5376
|
+
locked_approval_at?: string | null | undefined;
|
|
5376
5377
|
assigned_to?: string | null | undefined;
|
|
5377
5378
|
assigned_to_display_name?: string | null | undefined;
|
|
5378
5379
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5379
|
-
locked_approval_at?: string | null | undefined;
|
|
5380
5380
|
}[];
|
|
5381
5381
|
pageInfo: {
|
|
5382
5382
|
hasNextPage: boolean;
|
|
@@ -5388,8 +5388,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5388
5388
|
};
|
|
5389
5389
|
}, {
|
|
5390
5390
|
items: {
|
|
5391
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5392
5391
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5392
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5393
5393
|
id: string;
|
|
5394
5394
|
description: string;
|
|
5395
5395
|
title: string;
|
|
@@ -5412,10 +5412,10 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5412
5412
|
target_at?: string | null | undefined;
|
|
5413
5413
|
completed_at?: string | null | undefined;
|
|
5414
5414
|
display_id_prefix?: string | null | undefined;
|
|
5415
|
+
locked_approval_at?: string | null | undefined;
|
|
5415
5416
|
assigned_to?: string | null | undefined;
|
|
5416
5417
|
assigned_to_display_name?: string | null | undefined;
|
|
5417
5418
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5418
|
-
locked_approval_at?: string | null | undefined;
|
|
5419
5419
|
}[];
|
|
5420
5420
|
pageInfo: {
|
|
5421
5421
|
hasNextPage: boolean;
|
|
@@ -6224,23 +6224,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6224
6224
|
searchableFields: string[];
|
|
6225
6225
|
}>>;
|
|
6226
6226
|
}, "strip", z.ZodTypeAny, {
|
|
6227
|
-
type?: {
|
|
6228
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6229
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6230
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6231
|
-
caseSensitive?: boolean | undefined;
|
|
6232
|
-
} | undefined;
|
|
6233
|
-
status?: {
|
|
6234
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6235
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6236
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6237
|
-
caseSensitive?: boolean | undefined;
|
|
6238
|
-
} | undefined;
|
|
6239
|
-
first?: number | undefined;
|
|
6240
|
-
after?: string | undefined;
|
|
6241
|
-
sortBy?: string | undefined;
|
|
6242
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6243
|
-
paginationToken?: string | undefined;
|
|
6244
6227
|
created_at?: {
|
|
6245
6228
|
operator: "isEmpty" | "isNotEmpty";
|
|
6246
6229
|
value?: any;
|
|
@@ -6257,6 +6240,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6257
6240
|
values?: any[] | undefined;
|
|
6258
6241
|
caseSensitive?: boolean | undefined;
|
|
6259
6242
|
} | undefined;
|
|
6243
|
+
status?: {
|
|
6244
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6245
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6246
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6247
|
+
caseSensitive?: boolean | undefined;
|
|
6248
|
+
} | undefined;
|
|
6249
|
+
type?: {
|
|
6250
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6251
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6252
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6253
|
+
caseSensitive?: boolean | undefined;
|
|
6254
|
+
} | undefined;
|
|
6255
|
+
first?: number | undefined;
|
|
6256
|
+
after?: string | undefined;
|
|
6257
|
+
sortBy?: string | undefined;
|
|
6258
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6259
|
+
paginationToken?: string | undefined;
|
|
6260
6260
|
created_by?: {
|
|
6261
6261
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6262
6262
|
value?: string | undefined;
|
|
@@ -6380,23 +6380,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6380
6380
|
caseSensitive?: boolean | undefined;
|
|
6381
6381
|
} | undefined;
|
|
6382
6382
|
}, {
|
|
6383
|
-
type?: {
|
|
6384
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6385
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6386
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6387
|
-
caseSensitive?: boolean | undefined;
|
|
6388
|
-
} | undefined;
|
|
6389
|
-
status?: {
|
|
6390
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6391
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6392
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6393
|
-
caseSensitive?: boolean | undefined;
|
|
6394
|
-
} | undefined;
|
|
6395
|
-
first?: number | undefined;
|
|
6396
|
-
after?: string | undefined;
|
|
6397
|
-
sortBy?: string | undefined;
|
|
6398
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6399
|
-
paginationToken?: string | undefined;
|
|
6400
6383
|
created_at?: {
|
|
6401
6384
|
operator: "isEmpty" | "isNotEmpty";
|
|
6402
6385
|
value?: any;
|
|
@@ -6413,6 +6396,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6413
6396
|
values?: any[] | undefined;
|
|
6414
6397
|
caseSensitive?: boolean | undefined;
|
|
6415
6398
|
} | undefined;
|
|
6399
|
+
status?: {
|
|
6400
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6401
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6402
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6403
|
+
caseSensitive?: boolean | undefined;
|
|
6404
|
+
} | undefined;
|
|
6405
|
+
type?: {
|
|
6406
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6407
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6408
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6409
|
+
caseSensitive?: boolean | undefined;
|
|
6410
|
+
} | undefined;
|
|
6411
|
+
first?: number | undefined;
|
|
6412
|
+
after?: string | undefined;
|
|
6413
|
+
sortBy?: string | undefined;
|
|
6414
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6415
|
+
paginationToken?: string | undefined;
|
|
6416
6416
|
created_by?: {
|
|
6417
6417
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6418
6418
|
value?: string | undefined;
|
|
@@ -7302,11 +7302,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7302
7302
|
searchableFields: string[];
|
|
7303
7303
|
}>>;
|
|
7304
7304
|
}, "strip", z.ZodTypeAny, {
|
|
7305
|
-
first?: number | undefined;
|
|
7306
|
-
after?: string | undefined;
|
|
7307
|
-
sortBy?: string | undefined;
|
|
7308
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7309
|
-
paginationToken?: string | undefined;
|
|
7310
7305
|
created_at?: {
|
|
7311
7306
|
operator: "isEmpty" | "isNotEmpty";
|
|
7312
7307
|
value?: any;
|
|
@@ -7323,6 +7318,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7323
7318
|
values?: any[] | undefined;
|
|
7324
7319
|
caseSensitive?: boolean | undefined;
|
|
7325
7320
|
} | undefined;
|
|
7321
|
+
first?: number | undefined;
|
|
7322
|
+
after?: string | undefined;
|
|
7323
|
+
sortBy?: string | undefined;
|
|
7324
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7325
|
+
paginationToken?: string | undefined;
|
|
7326
7326
|
search?: {
|
|
7327
7327
|
query: string;
|
|
7328
7328
|
searchableFields: string[];
|
|
@@ -7359,13 +7359,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7359
7359
|
values?: any[] | undefined;
|
|
7360
7360
|
caseSensitive?: boolean | undefined;
|
|
7361
7361
|
} | undefined;
|
|
7362
|
-
|
|
7362
|
+
display_name?: {
|
|
7363
7363
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7364
7364
|
value?: string | undefined;
|
|
7365
7365
|
values?: string[] | undefined;
|
|
7366
7366
|
caseSensitive?: boolean | undefined;
|
|
7367
7367
|
} | undefined;
|
|
7368
|
-
|
|
7368
|
+
unique_name?: {
|
|
7369
7369
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7370
7370
|
value?: string | undefined;
|
|
7371
7371
|
values?: string[] | undefined;
|
|
@@ -7402,11 +7402,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7402
7402
|
caseSensitive?: boolean | undefined;
|
|
7403
7403
|
} | undefined;
|
|
7404
7404
|
}, {
|
|
7405
|
-
first?: number | undefined;
|
|
7406
|
-
after?: string | undefined;
|
|
7407
|
-
sortBy?: string | undefined;
|
|
7408
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7409
|
-
paginationToken?: string | undefined;
|
|
7410
7405
|
created_at?: {
|
|
7411
7406
|
operator: "isEmpty" | "isNotEmpty";
|
|
7412
7407
|
value?: any;
|
|
@@ -7423,6 +7418,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7423
7418
|
values?: any[] | undefined;
|
|
7424
7419
|
caseSensitive?: boolean | undefined;
|
|
7425
7420
|
} | undefined;
|
|
7421
|
+
first?: number | undefined;
|
|
7422
|
+
after?: string | undefined;
|
|
7423
|
+
sortBy?: string | undefined;
|
|
7424
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7425
|
+
paginationToken?: string | undefined;
|
|
7426
7426
|
search?: {
|
|
7427
7427
|
query: string;
|
|
7428
7428
|
searchableFields: string[];
|
|
@@ -7459,13 +7459,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7459
7459
|
values?: any[] | undefined;
|
|
7460
7460
|
caseSensitive?: boolean | undefined;
|
|
7461
7461
|
} | undefined;
|
|
7462
|
-
|
|
7462
|
+
display_name?: {
|
|
7463
7463
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7464
7464
|
value?: string | undefined;
|
|
7465
7465
|
values?: string[] | undefined;
|
|
7466
7466
|
caseSensitive?: boolean | undefined;
|
|
7467
7467
|
} | undefined;
|
|
7468
|
-
|
|
7468
|
+
unique_name?: {
|
|
7469
7469
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7470
7470
|
value?: string | undefined;
|
|
7471
7471
|
values?: string[] | undefined;
|
|
@@ -8859,11 +8859,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8859
8859
|
searchableFields: string[];
|
|
8860
8860
|
}>>;
|
|
8861
8861
|
}, "strip", z.ZodTypeAny, {
|
|
8862
|
-
first?: number | undefined;
|
|
8863
|
-
after?: string | undefined;
|
|
8864
|
-
sortBy?: string | undefined;
|
|
8865
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8866
|
-
paginationToken?: string | undefined;
|
|
8867
8862
|
created_at?: {
|
|
8868
8863
|
operator: "isEmpty" | "isNotEmpty";
|
|
8869
8864
|
value?: any;
|
|
@@ -8880,6 +8875,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8880
8875
|
values?: any[] | undefined;
|
|
8881
8876
|
caseSensitive?: boolean | undefined;
|
|
8882
8877
|
} | undefined;
|
|
8878
|
+
first?: number | undefined;
|
|
8879
|
+
after?: string | undefined;
|
|
8880
|
+
sortBy?: string | undefined;
|
|
8881
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8882
|
+
paginationToken?: string | undefined;
|
|
8883
8883
|
search?: {
|
|
8884
8884
|
query: string;
|
|
8885
8885
|
searchableFields: string[];
|
|
@@ -8928,12 +8928,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8928
8928
|
values?: number[] | undefined;
|
|
8929
8929
|
caseSensitive?: boolean | undefined;
|
|
8930
8930
|
} | undefined;
|
|
8931
|
-
display_name?: {
|
|
8932
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8933
|
-
value?: string | undefined;
|
|
8934
|
-
values?: string[] | undefined;
|
|
8935
|
-
caseSensitive?: boolean | undefined;
|
|
8936
|
-
} | undefined;
|
|
8937
8931
|
team_id?: {
|
|
8938
8932
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8939
8933
|
value?: string | undefined;
|
|
@@ -8958,6 +8952,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8958
8952
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
8959
8953
|
caseSensitive?: boolean | undefined;
|
|
8960
8954
|
} | undefined;
|
|
8955
|
+
display_name?: {
|
|
8956
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8957
|
+
value?: string | undefined;
|
|
8958
|
+
values?: string[] | undefined;
|
|
8959
|
+
caseSensitive?: boolean | undefined;
|
|
8960
|
+
} | undefined;
|
|
8961
8961
|
business_phone?: {
|
|
8962
8962
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8963
8963
|
value?: string | undefined;
|
|
@@ -8989,11 +8989,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8989
8989
|
caseSensitive?: boolean | undefined;
|
|
8990
8990
|
} | undefined;
|
|
8991
8991
|
}, {
|
|
8992
|
-
first?: number | undefined;
|
|
8993
|
-
after?: string | undefined;
|
|
8994
|
-
sortBy?: string | undefined;
|
|
8995
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8996
|
-
paginationToken?: string | undefined;
|
|
8997
8992
|
created_at?: {
|
|
8998
8993
|
operator: "isEmpty" | "isNotEmpty";
|
|
8999
8994
|
value?: any;
|
|
@@ -9010,6 +9005,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9010
9005
|
values?: any[] | undefined;
|
|
9011
9006
|
caseSensitive?: boolean | undefined;
|
|
9012
9007
|
} | undefined;
|
|
9008
|
+
first?: number | undefined;
|
|
9009
|
+
after?: string | undefined;
|
|
9010
|
+
sortBy?: string | undefined;
|
|
9011
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
9012
|
+
paginationToken?: string | undefined;
|
|
9013
9013
|
search?: {
|
|
9014
9014
|
query: string;
|
|
9015
9015
|
searchableFields: string[];
|
|
@@ -9058,12 +9058,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9058
9058
|
values?: number[] | undefined;
|
|
9059
9059
|
caseSensitive?: boolean | undefined;
|
|
9060
9060
|
} | undefined;
|
|
9061
|
-
display_name?: {
|
|
9062
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
9063
|
-
value?: string | undefined;
|
|
9064
|
-
values?: string[] | undefined;
|
|
9065
|
-
caseSensitive?: boolean | undefined;
|
|
9066
|
-
} | undefined;
|
|
9067
9061
|
team_id?: {
|
|
9068
9062
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
9069
9063
|
value?: string | undefined;
|
|
@@ -9088,6 +9082,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
9088
9082
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
9089
9083
|
caseSensitive?: boolean | undefined;
|
|
9090
9084
|
} | undefined;
|
|
9085
|
+
display_name?: {
|
|
9086
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
9087
|
+
value?: string | undefined;
|
|
9088
|
+
values?: string[] | undefined;
|
|
9089
|
+
caseSensitive?: boolean | undefined;
|
|
9090
|
+
} | undefined;
|
|
9091
9091
|
business_phone?: {
|
|
9092
9092
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
9093
9093
|
value?: string | undefined;
|
|
@@ -9134,9 +9134,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
|
|
|
9134
9134
|
time_zone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
9135
9135
|
}, "strip", z.ZodTypeAny, {
|
|
9136
9136
|
user_id: string;
|
|
9137
|
-
display_name: string;
|
|
9138
9137
|
team_id: string;
|
|
9139
9138
|
role: "owner" | "manager" | "member" | "client";
|
|
9139
|
+
display_name: string;
|
|
9140
9140
|
email_address: string;
|
|
9141
9141
|
business_phone?: string | null | undefined;
|
|
9142
9142
|
mobile_phone?: string | null | undefined;
|
|
@@ -9144,9 +9144,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
|
|
|
9144
9144
|
time_zone?: string | null | undefined;
|
|
9145
9145
|
}, {
|
|
9146
9146
|
user_id: string;
|
|
9147
|
-
display_name: string;
|
|
9148
9147
|
team_id: string;
|
|
9149
9148
|
role: "owner" | "manager" | "member" | "client";
|
|
9149
|
+
display_name: string;
|
|
9150
9150
|
email_address: string;
|
|
9151
9151
|
business_phone?: string | null | undefined;
|
|
9152
9152
|
mobile_phone?: string | null | undefined;
|
|
@@ -9169,9 +9169,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
|
|
|
9169
9169
|
}, "strip", z.ZodTypeAny, {
|
|
9170
9170
|
id: string;
|
|
9171
9171
|
user_id: string;
|
|
9172
|
-
display_name: string;
|
|
9173
9172
|
team_id: string;
|
|
9174
9173
|
role: "owner" | "manager" | "member" | "client";
|
|
9174
|
+
display_name: string;
|
|
9175
9175
|
email_address: string;
|
|
9176
9176
|
business_phone?: string | null | undefined;
|
|
9177
9177
|
mobile_phone?: string | null | undefined;
|
|
@@ -9180,9 +9180,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
|
|
|
9180
9180
|
}, {
|
|
9181
9181
|
id: string;
|
|
9182
9182
|
user_id: string;
|
|
9183
|
-
display_name: string;
|
|
9184
9183
|
team_id: string;
|
|
9185
9184
|
role: "owner" | "manager" | "member" | "client";
|
|
9185
|
+
display_name: string;
|
|
9186
9186
|
email_address: string;
|
|
9187
9187
|
business_phone?: string | null | undefined;
|
|
9188
9188
|
mobile_phone?: string | null | undefined;
|
|
@@ -9229,9 +9229,9 @@ declare const TeamMemberReadSchema: z.ZodObject<{
|
|
|
9229
9229
|
original_id?: number | null | undefined;
|
|
9230
9230
|
created_by_display_name?: string | null | undefined;
|
|
9231
9231
|
updated_by_display_name?: string | null | undefined;
|
|
9232
|
-
display_name?: string | null | undefined;
|
|
9233
9232
|
original_team_id?: string | null | undefined;
|
|
9234
9233
|
original_user_id?: string | null | undefined;
|
|
9234
|
+
display_name?: string | null | undefined;
|
|
9235
9235
|
business_phone?: string | null | undefined;
|
|
9236
9236
|
mobile_phone?: string | null | undefined;
|
|
9237
9237
|
website_address?: string | null | undefined;
|
|
@@ -9251,9 +9251,9 @@ declare const TeamMemberReadSchema: z.ZodObject<{
|
|
|
9251
9251
|
original_id?: number | null | undefined;
|
|
9252
9252
|
created_by_display_name?: string | null | undefined;
|
|
9253
9253
|
updated_by_display_name?: string | null | undefined;
|
|
9254
|
-
display_name?: string | null | undefined;
|
|
9255
9254
|
original_team_id?: string | null | undefined;
|
|
9256
9255
|
original_user_id?: string | null | undefined;
|
|
9256
|
+
display_name?: string | null | undefined;
|
|
9257
9257
|
business_phone?: string | null | undefined;
|
|
9258
9258
|
mobile_phone?: string | null | undefined;
|
|
9259
9259
|
website_address?: string | null | undefined;
|
|
@@ -9303,9 +9303,9 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
|
|
|
9303
9303
|
original_id?: number | null | undefined;
|
|
9304
9304
|
created_by_display_name?: string | null | undefined;
|
|
9305
9305
|
updated_by_display_name?: string | null | undefined;
|
|
9306
|
-
display_name?: string | null | undefined;
|
|
9307
9306
|
original_team_id?: string | null | undefined;
|
|
9308
9307
|
original_user_id?: string | null | undefined;
|
|
9308
|
+
display_name?: string | null | undefined;
|
|
9309
9309
|
business_phone?: string | null | undefined;
|
|
9310
9310
|
mobile_phone?: string | null | undefined;
|
|
9311
9311
|
website_address?: string | null | undefined;
|
|
@@ -9325,9 +9325,9 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
|
|
|
9325
9325
|
original_id?: number | null | undefined;
|
|
9326
9326
|
created_by_display_name?: string | null | undefined;
|
|
9327
9327
|
updated_by_display_name?: string | null | undefined;
|
|
9328
|
-
display_name?: string | null | undefined;
|
|
9329
9328
|
original_team_id?: string | null | undefined;
|
|
9330
9329
|
original_user_id?: string | null | undefined;
|
|
9330
|
+
display_name?: string | null | undefined;
|
|
9331
9331
|
business_phone?: string | null | undefined;
|
|
9332
9332
|
mobile_phone?: string | null | undefined;
|
|
9333
9333
|
website_address?: string | null | undefined;
|
|
@@ -9375,9 +9375,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9375
9375
|
original_id?: number | null | undefined;
|
|
9376
9376
|
created_by_display_name?: string | null | undefined;
|
|
9377
9377
|
updated_by_display_name?: string | null | undefined;
|
|
9378
|
-
display_name?: string | null | undefined;
|
|
9379
9378
|
original_team_id?: string | null | undefined;
|
|
9380
9379
|
original_user_id?: string | null | undefined;
|
|
9380
|
+
display_name?: string | null | undefined;
|
|
9381
9381
|
business_phone?: string | null | undefined;
|
|
9382
9382
|
mobile_phone?: string | null | undefined;
|
|
9383
9383
|
website_address?: string | null | undefined;
|
|
@@ -9397,9 +9397,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9397
9397
|
original_id?: number | null | undefined;
|
|
9398
9398
|
created_by_display_name?: string | null | undefined;
|
|
9399
9399
|
updated_by_display_name?: string | null | undefined;
|
|
9400
|
-
display_name?: string | null | undefined;
|
|
9401
9400
|
original_team_id?: string | null | undefined;
|
|
9402
9401
|
original_user_id?: string | null | undefined;
|
|
9402
|
+
display_name?: string | null | undefined;
|
|
9403
9403
|
business_phone?: string | null | undefined;
|
|
9404
9404
|
mobile_phone?: string | null | undefined;
|
|
9405
9405
|
website_address?: string | null | undefined;
|
|
@@ -9421,9 +9421,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9421
9421
|
original_id?: number | null | undefined;
|
|
9422
9422
|
created_by_display_name?: string | null | undefined;
|
|
9423
9423
|
updated_by_display_name?: string | null | undefined;
|
|
9424
|
-
display_name?: string | null | undefined;
|
|
9425
9424
|
original_team_id?: string | null | undefined;
|
|
9426
9425
|
original_user_id?: string | null | undefined;
|
|
9426
|
+
display_name?: string | null | undefined;
|
|
9427
9427
|
business_phone?: string | null | undefined;
|
|
9428
9428
|
mobile_phone?: string | null | undefined;
|
|
9429
9429
|
website_address?: string | null | undefined;
|
|
@@ -9445,9 +9445,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9445
9445
|
original_id?: number | null | undefined;
|
|
9446
9446
|
created_by_display_name?: string | null | undefined;
|
|
9447
9447
|
updated_by_display_name?: string | null | undefined;
|
|
9448
|
-
display_name?: string | null | undefined;
|
|
9449
9448
|
original_team_id?: string | null | undefined;
|
|
9450
9449
|
original_user_id?: string | null | undefined;
|
|
9450
|
+
display_name?: string | null | undefined;
|
|
9451
9451
|
business_phone?: string | null | undefined;
|
|
9452
9452
|
mobile_phone?: string | null | undefined;
|
|
9453
9453
|
website_address?: string | null | undefined;
|
|
@@ -9473,20 +9473,20 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
9473
9473
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
9474
9474
|
}, "strip", z.ZodTypeAny, {
|
|
9475
9475
|
created_at: string;
|
|
9476
|
-
id: string;
|
|
9477
9476
|
email: string;
|
|
9478
|
-
updated_at: string | null;
|
|
9479
9477
|
username: string;
|
|
9480
9478
|
email_verified: boolean;
|
|
9481
9479
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9480
|
+
id: string;
|
|
9481
|
+
updated_at: string | null;
|
|
9482
9482
|
}, {
|
|
9483
9483
|
created_at: string;
|
|
9484
|
-
id: string;
|
|
9485
9484
|
email: string;
|
|
9486
|
-
updated_at: string | null;
|
|
9487
9485
|
username: string;
|
|
9488
9486
|
email_verified: boolean;
|
|
9489
9487
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9488
|
+
id: string;
|
|
9489
|
+
updated_at: string | null;
|
|
9490
9490
|
}>;
|
|
9491
9491
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
9492
9492
|
//#endregion
|
|
@@ -9495,11 +9495,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
9495
9495
|
id: z.ZodString;
|
|
9496
9496
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
9497
9497
|
}, "strip", z.ZodTypeAny, {
|
|
9498
|
-
id: string;
|
|
9499
9498
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9500
|
-
}, {
|
|
9501
9499
|
id: string;
|
|
9500
|
+
}, {
|
|
9502
9501
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9502
|
+
id: string;
|
|
9503
9503
|
}>;
|
|
9504
9504
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
9505
9505
|
//#endregion
|
|
@@ -9701,6 +9701,17 @@ interface VerifyEmailResult {
|
|
|
9701
9701
|
ok: boolean;
|
|
9702
9702
|
session?: LoginResponse;
|
|
9703
9703
|
}
|
|
9704
|
+
/**
|
|
9705
|
+
* Result of resendVerificationEmail.
|
|
9706
|
+
* When cooldown applies, sent is false and seconds_until_next_send indicates wait time.
|
|
9707
|
+
*/
|
|
9708
|
+
interface ResendVerificationEmailResult {
|
|
9709
|
+
ok: boolean;
|
|
9710
|
+
/** Whether an email was actually sent (false when cooldown applied) */
|
|
9711
|
+
sent?: boolean;
|
|
9712
|
+
/** When sent is false due to cooldown, seconds until next send is allowed */
|
|
9713
|
+
seconds_until_next_send?: number;
|
|
9714
|
+
}
|
|
9704
9715
|
/**
|
|
9705
9716
|
* Email verification API
|
|
9706
9717
|
* Implement when your backend supports email verification.
|
|
@@ -9712,11 +9723,10 @@ interface EmailVerificationApi {
|
|
|
9712
9723
|
*/
|
|
9713
9724
|
verifyEmail(token: string): Promise<VerifyEmailResult>;
|
|
9714
9725
|
/**
|
|
9715
|
-
* Resend verification email for the current user
|
|
9726
|
+
* Resend verification email for the current user.
|
|
9727
|
+
* When cooldown applies, sent is false and seconds_until_next_send indicates wait time.
|
|
9716
9728
|
*/
|
|
9717
|
-
resendVerificationEmail(): Promise<
|
|
9718
|
-
ok: boolean;
|
|
9719
|
-
}>;
|
|
9729
|
+
resendVerificationEmail(): Promise<ResendVerificationEmailResult>;
|
|
9720
9730
|
}
|
|
9721
9731
|
//#endregion
|
|
9722
9732
|
//#region src/api/mfa-api.d.ts
|
|
@@ -10338,5 +10348,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
10338
10348
|
*/
|
|
10339
10349
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
10340
10350
|
//#endregion
|
|
10341
|
-
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10351
|
+
export { AddCreditsDto, AddCreditsSchema, AnyFilterOperator, AppSettingsApi, ApproveSupportTicketDto, ApproveSupportTicketSchema, ArchiveSupportTicketDto, ArchiveSupportTicketSchema, AttachmentApi, AttachmentCreateDto, AttachmentCreateSchema, type AttachmentFiltersDto as AttachmentFilters, AttachmentFiltersDto, AttachmentFiltersSchema, AttachmentFiltersSchema as attachmentFilters_zod, AttachmentFolderCreateDto, AttachmentFolderCreateSchema, AttachmentFolderReadDto, AttachmentFolderReadSchema, AttachmentFolderUpdateDto, AttachmentFolderUpdateSchema, type AttachmentPageDto, AttachmentPageSchema, AttachmentPageSchema as attachmentPage_zod, AttachmentReadDto, type AttachmentReadDto as ReadAttachmentDto, AttachmentReadSchema, AttachmentReadSchema as attachment_zod, AttachmentUpdateDto, AttachmentUpdateSchema, BaseFilter, BaseFilterSchema, BooleanFilter, BooleanFilterSchema, CancelInternalTaskDto, CancelInternalTaskSchema, ChangePasswordInputDto, CompleteSupportTicketDto, CompleteSupportTicketSchema, CreateUserDto, CreateUserDtoOutput, CreditBalanceDto, CreditBalanceSchema, CreditTransactionFiltersDto, CreditTransactionFiltersSchema, CreditTransactionPageDto, CreditTransactionPageSchema, CreditTransactionReadDto, CreditTransactionReadSchema, CreditTransactionType, CreditTransactionTypeEnum, CustomerApi, CustomerSupportTicketCreateDto, CustomerSupportTicketCreateSchema, CustomerSupportTicketFiltersDto, CustomerSupportTicketFiltersSchema, CustomerSupportTicketPageDto, CustomerSupportTicketPageSchema, CustomerSupportTicketReadDto, CustomerSupportTicketReadSchema, CustomerSupportTicketUpdateDto, CustomerSupportTicketUpdateSchema, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_ERROR_MESSAGE, DECIMAL_AMOUNT_2_DECIMALS_OR_EMPTY_REGEX, DECIMAL_AMOUNT_ERROR_MESSAGE, DECIMAL_AMOUNT_REGEX, DEFAULT_USER_TYPE, DataType, DataTypeSchema, DateFilter, DateFilterSchema, DateOperator, DateOperatorSchema, DeleteSupportTicketDto, DeleteSupportTicketSchema, DragoncoreApi, EmailVerificationApi, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, MfaApi, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, RecordConsentsInputDto, RecordConst, RecordSubscriberCreateDto, RecordSubscriberCreateSchema, RecordSubscriberReadDto, RecordSubscriberReadSchema, RecordSubscriberUpdateDto, RecordSubscriberUpdateSchema, RecordType, RecordTypeValues, RecordVersionApi, RecordVersionFiltersBreadcrumbDto, RecordVersionFiltersDto, RecordVersionPageBreadcrumbDto, RecordVersionPageDto, RecordVersionPageInfoDto, RecordVersionReadDto, RejectSupportTicketDto, RejectSupportTicketSchema, ResendVerificationEmailResult, ResetMonthlyBalanceDto, ResetMonthlyBalanceSchema, ResetPasswordDto, ResetPasswordInputDto, RevertSupportTicketDto, RevertSupportTicketSchema, SUPPORT_TICKET_APPROVAL_FILTER_OPTIONS, SUPPORT_TICKET_DEV_LIFECYCLE_FILTER_OPTIONS, SUPPORT_TICKET_NUMBER_TO_PRIORITY, SUPPORT_TICKET_PRIORITY_FILTER_OPTIONS, SUPPORT_TICKET_PRIORITY_NUMBER_TO_LABEL, SUPPORT_TICKET_PRIORITY_TO_NUMBER, SUPPORT_TICKET_STATUS_FILTER_OPTIONS, SUPPORT_TICKET_TYPE_FILTER_OPTIONS, SavedFilterApi, SavedFilterCreateDto, SavedFilterCreateSchema, SavedFilterReadDto, SavedFilterReadSchema, SavedFilterUpdateDto, SavedFilterUpdateSchema, SelectOption, SetMonthlyAllocationDto, SetMonthlyAllocationSchema, SignupConsentConfigDto, SignupConsentConfigSchema, SignupConsentItemFormDto, SignupConsentItemFormSchema, SignupInputDto, SignupRequirementsDto, SignupRequirementsFormDto, SignupRequirementsFormSchema, SignupRequirementsSchema, SortDirectionSchema, StaffSupportTicketCreateDto, StaffSupportTicketCreateSchema, StaffSupportTicketFiltersDto, StaffSupportTicketFiltersSchema, StaffSupportTicketInputDto, StaffSupportTicketInputSchema, StaffSupportTicketPageDto, StaffSupportTicketPageSchema, StaffSupportTicketReadDto, StaffSupportTicketReadSchema, StaffSupportTicketUpdateDto, StaffSupportTicketUpdateSchema, StringFilter, StringFilterSchema, StringOperator, StringOperatorSchema, SupportStaffApi, SupportStaffMember, SupportTicketApi, SupportTicketApproval, SupportTicketApprovalEnum, SupportTicketApprovalFilterSchema, SupportTicketApprovalSchema, SupportTicketDevLifecycle, SupportTicketDevLifecycleEnum, SupportTicketDevLifecycleFilterSchema, SupportTicketDevLifecycleSchema, SupportTicketDevLifecycleUpdate, SupportTicketDevLifecycleUpdateEnum, SupportTicketDevLifecycleUpdateSchema, SupportTicketEnrichmentData, SupportTicketEventType, SupportTicketEventTypeEnum, SupportTicketEventTypeValues, SupportTicketPriority, SupportTicketPriorityEnum, SupportTicketPriorityFilterSchema, SupportTicketPriorityNumber, SupportTicketPriorityNumberEnum, SupportTicketPriorityNumberSchema, SupportTicketPriorityNumberType, SupportTicketPrioritySchema, SupportTicketRecordDataSchema, SupportTicketStatus, SupportTicketStatusEnum, SupportTicketStatusFilterSchema, SupportTicketStatusSchema, SupportTicketSubscriberCreateDto, SupportTicketSubscriberCreateSchema, SupportTicketType, SupportTicketTypeEnum, SupportTicketTypeFilterSchema, SupportTicketTypeSchema, TeamApi, TeamCreateDto, TeamCreateSchema, TeamFiltersDto, TeamFiltersSchema, TeamInputBaseSchema, TeamMemberApi, TeamMemberCreateDto, TeamMemberCreateSchema, TeamMemberFiltersDto, TeamMemberFiltersSchema, TeamMemberOptionDto, TeamMemberOptionSchema, TeamMemberReadDto, TeamMemberReadSchema, TeamMemberRole, TeamMemberRoleEnum, TeamMemberRoleFilterSchema, TeamMemberRoleSchema, TeamMemberUpdateDto, TeamMemberUpdateSchema, TeamOptionDto, TeamOptionSchema, TeamPageDto, TeamPageSchema, TeamReadDto, TeamReadSchema, TeamStatus, TeamStatusSchema, TeamUpdateDto, TeamUpdateSchema, USER_TYPES, UserApi, UserProfileApi, UserProfileBaseSchema, UserProfileReadDto, UserProfileReadSchema, UserProfileUpdateDto, UserProfileUpdateSchema, UserReadDto, UserReadSchema, UserSessionApi, UserSessionReadDto, UserTeamMembersDto, UserTeamMembersSchema, UserTeamsDto, UserTeamsSchema, UserTypeEnum, UserTypeValues, UserUpdateDto, UserUpdateSchema, VerifyEmailResult, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordConsentsSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10342
10352
|
//# sourceMappingURL=index.d.mts.map
|