@dragonmastery/dragoncore-shared 0.0.13 → 0.0.19
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 +242 -186
- 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;
|
|
@@ -1805,9 +1805,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1805
1805
|
price_currency?: string | null | undefined;
|
|
1806
1806
|
}[] | null | undefined;
|
|
1807
1807
|
};
|
|
1808
|
-
status: string;
|
|
1809
1808
|
created_at: string;
|
|
1810
1809
|
expires_at: string;
|
|
1810
|
+
status: string;
|
|
1811
1811
|
user_agent?: string | null | undefined;
|
|
1812
1812
|
ip_address?: string | null | undefined;
|
|
1813
1813
|
}, {
|
|
@@ -1833,9 +1833,9 @@ declare const userSessionSchema: z.ZodObject<{
|
|
|
1833
1833
|
price_currency?: string | null | undefined;
|
|
1834
1834
|
}[] | null | undefined;
|
|
1835
1835
|
};
|
|
1836
|
-
status: string;
|
|
1837
1836
|
created_at: string;
|
|
1838
1837
|
expires_at: string;
|
|
1838
|
+
status: string;
|
|
1839
1839
|
user_agent?: string | null | undefined;
|
|
1840
1840
|
ip_address?: string | null | undefined;
|
|
1841
1841
|
}>;
|
|
@@ -1955,9 +1955,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1955
1955
|
price_currency?: string | null | undefined;
|
|
1956
1956
|
}[] | null | undefined;
|
|
1957
1957
|
};
|
|
1958
|
-
status: string;
|
|
1959
1958
|
created_at: string;
|
|
1960
1959
|
expires_at: string;
|
|
1960
|
+
status: string;
|
|
1961
1961
|
user_agent?: string | null | undefined;
|
|
1962
1962
|
ip_address?: string | null | undefined;
|
|
1963
1963
|
}, {
|
|
@@ -1983,9 +1983,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
1983
1983
|
price_currency?: string | null | undefined;
|
|
1984
1984
|
}[] | null | undefined;
|
|
1985
1985
|
};
|
|
1986
|
-
status: string;
|
|
1987
1986
|
created_at: string;
|
|
1988
1987
|
expires_at: string;
|
|
1988
|
+
status: string;
|
|
1989
1989
|
user_agent?: string | null | undefined;
|
|
1990
1990
|
ip_address?: string | null | undefined;
|
|
1991
1991
|
}>;
|
|
@@ -2017,9 +2017,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2017
2017
|
price_currency?: string | null | undefined;
|
|
2018
2018
|
}[] | null | undefined;
|
|
2019
2019
|
};
|
|
2020
|
-
status: string;
|
|
2021
2020
|
created_at: string;
|
|
2022
2021
|
expires_at: string;
|
|
2022
|
+
status: string;
|
|
2023
2023
|
user_agent?: string | null | undefined;
|
|
2024
2024
|
ip_address?: string | null | undefined;
|
|
2025
2025
|
};
|
|
@@ -2050,9 +2050,9 @@ declare const loginResponseSchema: z.ZodObject<{
|
|
|
2050
2050
|
price_currency?: string | null | undefined;
|
|
2051
2051
|
}[] | null | undefined;
|
|
2052
2052
|
};
|
|
2053
|
-
status: string;
|
|
2054
2053
|
created_at: string;
|
|
2055
2054
|
expires_at: string;
|
|
2055
|
+
status: string;
|
|
2056
2056
|
user_agent?: string | null | undefined;
|
|
2057
2057
|
ip_address?: string | null | undefined;
|
|
2058
2058
|
};
|
|
@@ -2555,11 +2555,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2555
2555
|
searchableFields: string[];
|
|
2556
2556
|
}>>;
|
|
2557
2557
|
}, "strip", z.ZodTypeAny, {
|
|
2558
|
-
first?: number | undefined;
|
|
2559
|
-
after?: string | undefined;
|
|
2560
|
-
sortBy?: string | undefined;
|
|
2561
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2562
|
-
paginationToken?: string | undefined;
|
|
2563
2558
|
created_at?: {
|
|
2564
2559
|
operator: "isEmpty" | "isNotEmpty";
|
|
2565
2560
|
value?: any;
|
|
@@ -2576,6 +2571,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2576
2571
|
values?: any[] | undefined;
|
|
2577
2572
|
caseSensitive?: boolean | undefined;
|
|
2578
2573
|
} | undefined;
|
|
2574
|
+
first?: number | undefined;
|
|
2575
|
+
after?: string | undefined;
|
|
2576
|
+
sortBy?: string | undefined;
|
|
2577
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2578
|
+
paginationToken?: string | undefined;
|
|
2579
2579
|
search?: {
|
|
2580
2580
|
query: string;
|
|
2581
2581
|
searchableFields: string[];
|
|
@@ -2633,11 +2633,6 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2633
2633
|
caseSensitive?: boolean | undefined;
|
|
2634
2634
|
} | undefined;
|
|
2635
2635
|
}, {
|
|
2636
|
-
first?: number | undefined;
|
|
2637
|
-
after?: string | undefined;
|
|
2638
|
-
sortBy?: string | undefined;
|
|
2639
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
2640
|
-
paginationToken?: string | undefined;
|
|
2641
2636
|
created_at?: {
|
|
2642
2637
|
operator: "isEmpty" | "isNotEmpty";
|
|
2643
2638
|
value?: any;
|
|
@@ -2654,6 +2649,11 @@ declare const NoteFiltersSchema: z.ZodObject<{
|
|
|
2654
2649
|
values?: any[] | undefined;
|
|
2655
2650
|
caseSensitive?: boolean | undefined;
|
|
2656
2651
|
} | undefined;
|
|
2652
|
+
first?: number | undefined;
|
|
2653
|
+
after?: string | undefined;
|
|
2654
|
+
sortBy?: string | undefined;
|
|
2655
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
2656
|
+
paginationToken?: string | undefined;
|
|
2657
2657
|
search?: {
|
|
2658
2658
|
query: string;
|
|
2659
2659
|
searchableFields: string[];
|
|
@@ -3382,17 +3382,17 @@ declare const signupSchema: z.ZodObject<{
|
|
|
3382
3382
|
password_confirm: string;
|
|
3383
3383
|
}>;
|
|
3384
3384
|
}, "strip", z.ZodTypeAny, {
|
|
3385
|
+
email: string;
|
|
3385
3386
|
passwords: {
|
|
3386
3387
|
password: string;
|
|
3387
3388
|
password_confirm: string;
|
|
3388
3389
|
};
|
|
3389
|
-
email: string;
|
|
3390
3390
|
}, {
|
|
3391
|
+
email: string;
|
|
3391
3392
|
passwords: {
|
|
3392
3393
|
password: string;
|
|
3393
3394
|
password_confirm: string;
|
|
3394
3395
|
};
|
|
3395
|
-
email: string;
|
|
3396
3396
|
}>;
|
|
3397
3397
|
type SignupInputDto = z.infer<typeof signupSchema>;
|
|
3398
3398
|
//#endregion
|
|
@@ -3691,8 +3691,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3691
3691
|
user_id_display_name?: string | null | undefined;
|
|
3692
3692
|
}>>>;
|
|
3693
3693
|
}, "strip", z.ZodTypeAny, {
|
|
3694
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3695
3694
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3695
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3696
3696
|
id: string;
|
|
3697
3697
|
description: string;
|
|
3698
3698
|
title: string;
|
|
@@ -3723,8 +3723,8 @@ declare const CustomerSupportTicketReadSchema: z.ZodObject<{
|
|
|
3723
3723
|
user_id_display_name?: string | null | undefined;
|
|
3724
3724
|
} | null | undefined;
|
|
3725
3725
|
}, {
|
|
3726
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3727
3726
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3727
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3728
3728
|
id: string;
|
|
3729
3729
|
description: string;
|
|
3730
3730
|
title: string;
|
|
@@ -3813,8 +3813,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3813
3813
|
user_id_display_name?: string | null | undefined;
|
|
3814
3814
|
}>>>;
|
|
3815
3815
|
}, "strip", z.ZodTypeAny, {
|
|
3816
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3817
3816
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3817
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3818
3818
|
id: string;
|
|
3819
3819
|
description: string;
|
|
3820
3820
|
title: string;
|
|
@@ -3845,8 +3845,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3845
3845
|
user_id_display_name?: string | null | undefined;
|
|
3846
3846
|
} | null | undefined;
|
|
3847
3847
|
}, {
|
|
3848
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3849
3848
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3849
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3850
3850
|
id: string;
|
|
3851
3851
|
description: string;
|
|
3852
3852
|
title: string;
|
|
@@ -3901,8 +3901,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3901
3901
|
}>;
|
|
3902
3902
|
}, "strip", z.ZodTypeAny, {
|
|
3903
3903
|
items: {
|
|
3904
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3905
3904
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3905
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3906
3906
|
id: string;
|
|
3907
3907
|
description: string;
|
|
3908
3908
|
title: string;
|
|
@@ -3943,8 +3943,8 @@ declare const CustomerSupportTicketPageSchema: z.ZodObject<{
|
|
|
3943
3943
|
};
|
|
3944
3944
|
}, {
|
|
3945
3945
|
items: {
|
|
3946
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3947
3946
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
3947
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
3948
3948
|
id: string;
|
|
3949
3949
|
description: string;
|
|
3950
3950
|
title: string;
|
|
@@ -4680,23 +4680,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4680
4680
|
searchableFields: string[];
|
|
4681
4681
|
}>>;
|
|
4682
4682
|
}, "strip", z.ZodTypeAny, {
|
|
4683
|
-
type?: {
|
|
4684
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4685
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4686
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4687
|
-
caseSensitive?: boolean | undefined;
|
|
4688
|
-
} | undefined;
|
|
4689
|
-
status?: {
|
|
4690
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4691
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4692
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4693
|
-
caseSensitive?: boolean | undefined;
|
|
4694
|
-
} | undefined;
|
|
4695
|
-
first?: number | undefined;
|
|
4696
|
-
after?: string | undefined;
|
|
4697
|
-
sortBy?: string | undefined;
|
|
4698
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
4699
|
-
paginationToken?: string | undefined;
|
|
4700
4683
|
created_at?: {
|
|
4701
4684
|
operator: "isEmpty" | "isNotEmpty";
|
|
4702
4685
|
value?: any;
|
|
@@ -4713,6 +4696,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4713
4696
|
values?: any[] | undefined;
|
|
4714
4697
|
caseSensitive?: boolean | undefined;
|
|
4715
4698
|
} | undefined;
|
|
4699
|
+
status?: {
|
|
4700
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4701
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4702
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4703
|
+
caseSensitive?: boolean | undefined;
|
|
4704
|
+
} | undefined;
|
|
4705
|
+
type?: {
|
|
4706
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4707
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4708
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4709
|
+
caseSensitive?: boolean | undefined;
|
|
4710
|
+
} | undefined;
|
|
4711
|
+
first?: number | undefined;
|
|
4712
|
+
after?: string | undefined;
|
|
4713
|
+
sortBy?: string | undefined;
|
|
4714
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
4715
|
+
paginationToken?: string | undefined;
|
|
4716
4716
|
created_by?: {
|
|
4717
4717
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4718
4718
|
value?: string | undefined;
|
|
@@ -4818,23 +4818,6 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4818
4818
|
caseSensitive?: boolean | undefined;
|
|
4819
4819
|
} | undefined;
|
|
4820
4820
|
}, {
|
|
4821
|
-
type?: {
|
|
4822
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4823
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4824
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4825
|
-
caseSensitive?: boolean | undefined;
|
|
4826
|
-
} | undefined;
|
|
4827
|
-
status?: {
|
|
4828
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
4829
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4830
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4831
|
-
caseSensitive?: boolean | undefined;
|
|
4832
|
-
} | undefined;
|
|
4833
|
-
first?: number | undefined;
|
|
4834
|
-
after?: string | undefined;
|
|
4835
|
-
sortBy?: string | undefined;
|
|
4836
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
4837
|
-
paginationToken?: string | undefined;
|
|
4838
4821
|
created_at?: {
|
|
4839
4822
|
operator: "isEmpty" | "isNotEmpty";
|
|
4840
4823
|
value?: any;
|
|
@@ -4851,6 +4834,23 @@ declare const CustomerSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
4851
4834
|
values?: any[] | undefined;
|
|
4852
4835
|
caseSensitive?: boolean | undefined;
|
|
4853
4836
|
} | undefined;
|
|
4837
|
+
status?: {
|
|
4838
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4839
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
4840
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
4841
|
+
caseSensitive?: boolean | undefined;
|
|
4842
|
+
} | undefined;
|
|
4843
|
+
type?: {
|
|
4844
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
4845
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
4846
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
4847
|
+
caseSensitive?: boolean | undefined;
|
|
4848
|
+
} | undefined;
|
|
4849
|
+
first?: number | undefined;
|
|
4850
|
+
after?: string | undefined;
|
|
4851
|
+
sortBy?: string | undefined;
|
|
4852
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
4853
|
+
paginationToken?: string | undefined;
|
|
4854
4854
|
created_by?: {
|
|
4855
4855
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
4856
4856
|
value?: string | undefined;
|
|
@@ -4993,8 +4993,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
4993
4993
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4994
4994
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4995
4995
|
}, "strip", z.ZodTypeAny, {
|
|
4996
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4997
4996
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
4997
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
4998
4998
|
id: string;
|
|
4999
4999
|
description: string;
|
|
5000
5000
|
title: string;
|
|
@@ -5022,8 +5022,8 @@ declare const StaffSupportTicketReadSchema: z.ZodObject<{
|
|
|
5022
5022
|
assigned_to_display_name?: string | null | undefined;
|
|
5023
5023
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5024
5024
|
}, {
|
|
5025
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5026
5025
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5026
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5027
5027
|
id: string;
|
|
5028
5028
|
description: string;
|
|
5029
5029
|
title: string;
|
|
@@ -5086,8 +5086,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5086
5086
|
archived_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5087
5087
|
archived_by: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5088
5088
|
}, "strip", z.ZodTypeAny, {
|
|
5089
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5090
5089
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5090
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5091
5091
|
id: string;
|
|
5092
5092
|
description: string;
|
|
5093
5093
|
title: string;
|
|
@@ -5115,8 +5115,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5115
5115
|
assigned_to_display_name?: string | null | undefined;
|
|
5116
5116
|
dev_lifecycle?: "PENDING" | "VERIFICATION" | "CANCELLED" | "BACKLOG" | "PLANNING" | "DEVELOPMENT" | "CODE_REVIEW" | "TESTING" | "STAGING" | "PO_APPROVAL" | "DEPLOYED" | null | undefined;
|
|
5117
5117
|
}, {
|
|
5118
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5119
5118
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5119
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5120
5120
|
id: string;
|
|
5121
5121
|
description: string;
|
|
5122
5122
|
title: string;
|
|
@@ -5168,8 +5168,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5168
5168
|
}>;
|
|
5169
5169
|
}, "strip", z.ZodTypeAny, {
|
|
5170
5170
|
items: {
|
|
5171
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5172
5171
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5172
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5173
5173
|
id: string;
|
|
5174
5174
|
description: string;
|
|
5175
5175
|
title: string;
|
|
@@ -5207,8 +5207,8 @@ declare const StaffSupportTicketPageSchema: z.ZodObject<{
|
|
|
5207
5207
|
};
|
|
5208
5208
|
}, {
|
|
5209
5209
|
items: {
|
|
5210
|
-
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5211
5210
|
status: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED";
|
|
5211
|
+
type: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL";
|
|
5212
5212
|
id: string;
|
|
5213
5213
|
description: string;
|
|
5214
5214
|
title: string;
|
|
@@ -6043,23 +6043,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6043
6043
|
searchableFields: string[];
|
|
6044
6044
|
}>>;
|
|
6045
6045
|
}, "strip", z.ZodTypeAny, {
|
|
6046
|
-
type?: {
|
|
6047
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6048
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6049
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6050
|
-
caseSensitive?: boolean | undefined;
|
|
6051
|
-
} | undefined;
|
|
6052
|
-
status?: {
|
|
6053
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6054
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6055
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6056
|
-
caseSensitive?: boolean | undefined;
|
|
6057
|
-
} | undefined;
|
|
6058
|
-
first?: number | undefined;
|
|
6059
|
-
after?: string | undefined;
|
|
6060
|
-
sortBy?: string | undefined;
|
|
6061
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6062
|
-
paginationToken?: string | undefined;
|
|
6063
6046
|
created_at?: {
|
|
6064
6047
|
operator: "isEmpty" | "isNotEmpty";
|
|
6065
6048
|
value?: any;
|
|
@@ -6076,6 +6059,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6076
6059
|
values?: any[] | undefined;
|
|
6077
6060
|
caseSensitive?: boolean | undefined;
|
|
6078
6061
|
} | undefined;
|
|
6062
|
+
status?: {
|
|
6063
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6064
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6065
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6066
|
+
caseSensitive?: boolean | undefined;
|
|
6067
|
+
} | undefined;
|
|
6068
|
+
type?: {
|
|
6069
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6070
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6071
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6072
|
+
caseSensitive?: boolean | undefined;
|
|
6073
|
+
} | undefined;
|
|
6074
|
+
first?: number | undefined;
|
|
6075
|
+
after?: string | undefined;
|
|
6076
|
+
sortBy?: string | undefined;
|
|
6077
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6078
|
+
paginationToken?: string | undefined;
|
|
6079
6079
|
created_by?: {
|
|
6080
6080
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6081
6081
|
value?: string | undefined;
|
|
@@ -6199,23 +6199,6 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6199
6199
|
caseSensitive?: boolean | undefined;
|
|
6200
6200
|
} | undefined;
|
|
6201
6201
|
}, {
|
|
6202
|
-
type?: {
|
|
6203
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6204
|
-
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6205
|
-
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6206
|
-
caseSensitive?: boolean | undefined;
|
|
6207
|
-
} | undefined;
|
|
6208
|
-
status?: {
|
|
6209
|
-
operator: "eq" | "ne" | "in" | "notIn";
|
|
6210
|
-
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6211
|
-
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6212
|
-
caseSensitive?: boolean | undefined;
|
|
6213
|
-
} | undefined;
|
|
6214
|
-
first?: number | undefined;
|
|
6215
|
-
after?: string | undefined;
|
|
6216
|
-
sortBy?: string | undefined;
|
|
6217
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
6218
|
-
paginationToken?: string | undefined;
|
|
6219
6202
|
created_at?: {
|
|
6220
6203
|
operator: "isEmpty" | "isNotEmpty";
|
|
6221
6204
|
value?: any;
|
|
@@ -6232,6 +6215,23 @@ declare const StaffSupportTicketFiltersSchema: z.ZodObject<{
|
|
|
6232
6215
|
values?: any[] | undefined;
|
|
6233
6216
|
caseSensitive?: boolean | undefined;
|
|
6234
6217
|
} | undefined;
|
|
6218
|
+
status?: {
|
|
6219
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6220
|
+
value?: "PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED" | undefined;
|
|
6221
|
+
values?: ("PENDING" | "FOLLOWUP" | "IN_PROGRESS" | "VERIFICATION" | "COMPLETED" | "CANCELLED")[] | undefined;
|
|
6222
|
+
caseSensitive?: boolean | undefined;
|
|
6223
|
+
} | undefined;
|
|
6224
|
+
type?: {
|
|
6225
|
+
operator: "eq" | "ne" | "in" | "notIn";
|
|
6226
|
+
value?: "IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL" | undefined;
|
|
6227
|
+
values?: ("IMPROVEMENT" | "BUG" | "FEATURE_REQUEST" | "OPERATIONAL")[] | undefined;
|
|
6228
|
+
caseSensitive?: boolean | undefined;
|
|
6229
|
+
} | undefined;
|
|
6230
|
+
first?: number | undefined;
|
|
6231
|
+
after?: string | undefined;
|
|
6232
|
+
sortBy?: string | undefined;
|
|
6233
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
6234
|
+
paginationToken?: string | undefined;
|
|
6235
6235
|
created_by?: {
|
|
6236
6236
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
6237
6237
|
value?: string | undefined;
|
|
@@ -7121,11 +7121,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7121
7121
|
searchableFields: string[];
|
|
7122
7122
|
}>>;
|
|
7123
7123
|
}, "strip", z.ZodTypeAny, {
|
|
7124
|
-
first?: number | undefined;
|
|
7125
|
-
after?: string | undefined;
|
|
7126
|
-
sortBy?: string | undefined;
|
|
7127
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7128
|
-
paginationToken?: string | undefined;
|
|
7129
7124
|
created_at?: {
|
|
7130
7125
|
operator: "isEmpty" | "isNotEmpty";
|
|
7131
7126
|
value?: any;
|
|
@@ -7142,6 +7137,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7142
7137
|
values?: any[] | undefined;
|
|
7143
7138
|
caseSensitive?: boolean | undefined;
|
|
7144
7139
|
} | undefined;
|
|
7140
|
+
first?: number | undefined;
|
|
7141
|
+
after?: string | undefined;
|
|
7142
|
+
sortBy?: string | undefined;
|
|
7143
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7144
|
+
paginationToken?: string | undefined;
|
|
7145
7145
|
search?: {
|
|
7146
7146
|
query: string;
|
|
7147
7147
|
searchableFields: string[];
|
|
@@ -7178,13 +7178,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7178
7178
|
values?: any[] | undefined;
|
|
7179
7179
|
caseSensitive?: boolean | undefined;
|
|
7180
7180
|
} | undefined;
|
|
7181
|
-
|
|
7181
|
+
display_name?: {
|
|
7182
7182
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7183
7183
|
value?: string | undefined;
|
|
7184
7184
|
values?: string[] | undefined;
|
|
7185
7185
|
caseSensitive?: boolean | undefined;
|
|
7186
7186
|
} | undefined;
|
|
7187
|
-
|
|
7187
|
+
unique_name?: {
|
|
7188
7188
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7189
7189
|
value?: string | undefined;
|
|
7190
7190
|
values?: string[] | undefined;
|
|
@@ -7221,11 +7221,6 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7221
7221
|
caseSensitive?: boolean | undefined;
|
|
7222
7222
|
} | undefined;
|
|
7223
7223
|
}, {
|
|
7224
|
-
first?: number | undefined;
|
|
7225
|
-
after?: string | undefined;
|
|
7226
|
-
sortBy?: string | undefined;
|
|
7227
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
7228
|
-
paginationToken?: string | undefined;
|
|
7229
7224
|
created_at?: {
|
|
7230
7225
|
operator: "isEmpty" | "isNotEmpty";
|
|
7231
7226
|
value?: any;
|
|
@@ -7242,6 +7237,11 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7242
7237
|
values?: any[] | undefined;
|
|
7243
7238
|
caseSensitive?: boolean | undefined;
|
|
7244
7239
|
} | undefined;
|
|
7240
|
+
first?: number | undefined;
|
|
7241
|
+
after?: string | undefined;
|
|
7242
|
+
sortBy?: string | undefined;
|
|
7243
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
7244
|
+
paginationToken?: string | undefined;
|
|
7245
7245
|
search?: {
|
|
7246
7246
|
query: string;
|
|
7247
7247
|
searchableFields: string[];
|
|
@@ -7278,13 +7278,13 @@ declare const TeamFiltersSchema: z.ZodObject<{
|
|
|
7278
7278
|
values?: any[] | undefined;
|
|
7279
7279
|
caseSensitive?: boolean | undefined;
|
|
7280
7280
|
} | undefined;
|
|
7281
|
-
|
|
7281
|
+
display_name?: {
|
|
7282
7282
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7283
7283
|
value?: string | undefined;
|
|
7284
7284
|
values?: string[] | undefined;
|
|
7285
7285
|
caseSensitive?: boolean | undefined;
|
|
7286
7286
|
} | undefined;
|
|
7287
|
-
|
|
7287
|
+
unique_name?: {
|
|
7288
7288
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
7289
7289
|
value?: string | undefined;
|
|
7290
7290
|
values?: string[] | undefined;
|
|
@@ -8678,11 +8678,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8678
8678
|
searchableFields: string[];
|
|
8679
8679
|
}>>;
|
|
8680
8680
|
}, "strip", z.ZodTypeAny, {
|
|
8681
|
-
first?: number | undefined;
|
|
8682
|
-
after?: string | undefined;
|
|
8683
|
-
sortBy?: string | undefined;
|
|
8684
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8685
|
-
paginationToken?: string | undefined;
|
|
8686
8681
|
created_at?: {
|
|
8687
8682
|
operator: "isEmpty" | "isNotEmpty";
|
|
8688
8683
|
value?: any;
|
|
@@ -8699,6 +8694,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8699
8694
|
values?: any[] | undefined;
|
|
8700
8695
|
caseSensitive?: boolean | undefined;
|
|
8701
8696
|
} | undefined;
|
|
8697
|
+
first?: number | undefined;
|
|
8698
|
+
after?: string | undefined;
|
|
8699
|
+
sortBy?: string | undefined;
|
|
8700
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8701
|
+
paginationToken?: string | undefined;
|
|
8702
8702
|
search?: {
|
|
8703
8703
|
query: string;
|
|
8704
8704
|
searchableFields: string[];
|
|
@@ -8747,12 +8747,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8747
8747
|
values?: number[] | undefined;
|
|
8748
8748
|
caseSensitive?: boolean | undefined;
|
|
8749
8749
|
} | undefined;
|
|
8750
|
-
display_name?: {
|
|
8751
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8752
|
-
value?: string | undefined;
|
|
8753
|
-
values?: string[] | undefined;
|
|
8754
|
-
caseSensitive?: boolean | undefined;
|
|
8755
|
-
} | undefined;
|
|
8756
8750
|
team_id?: {
|
|
8757
8751
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8758
8752
|
value?: string | undefined;
|
|
@@ -8777,6 +8771,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8777
8771
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
8778
8772
|
caseSensitive?: boolean | undefined;
|
|
8779
8773
|
} | undefined;
|
|
8774
|
+
display_name?: {
|
|
8775
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8776
|
+
value?: string | undefined;
|
|
8777
|
+
values?: string[] | undefined;
|
|
8778
|
+
caseSensitive?: boolean | undefined;
|
|
8779
|
+
} | undefined;
|
|
8780
8780
|
business_phone?: {
|
|
8781
8781
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8782
8782
|
value?: string | undefined;
|
|
@@ -8808,11 +8808,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8808
8808
|
caseSensitive?: boolean | undefined;
|
|
8809
8809
|
} | undefined;
|
|
8810
8810
|
}, {
|
|
8811
|
-
first?: number | undefined;
|
|
8812
|
-
after?: string | undefined;
|
|
8813
|
-
sortBy?: string | undefined;
|
|
8814
|
-
sortDirection?: "asc" | "desc" | undefined;
|
|
8815
|
-
paginationToken?: string | undefined;
|
|
8816
8811
|
created_at?: {
|
|
8817
8812
|
operator: "isEmpty" | "isNotEmpty";
|
|
8818
8813
|
value?: any;
|
|
@@ -8829,6 +8824,11 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8829
8824
|
values?: any[] | undefined;
|
|
8830
8825
|
caseSensitive?: boolean | undefined;
|
|
8831
8826
|
} | undefined;
|
|
8827
|
+
first?: number | undefined;
|
|
8828
|
+
after?: string | undefined;
|
|
8829
|
+
sortBy?: string | undefined;
|
|
8830
|
+
sortDirection?: "asc" | "desc" | undefined;
|
|
8831
|
+
paginationToken?: string | undefined;
|
|
8832
8832
|
search?: {
|
|
8833
8833
|
query: string;
|
|
8834
8834
|
searchableFields: string[];
|
|
@@ -8877,12 +8877,6 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8877
8877
|
values?: number[] | undefined;
|
|
8878
8878
|
caseSensitive?: boolean | undefined;
|
|
8879
8879
|
} | undefined;
|
|
8880
|
-
display_name?: {
|
|
8881
|
-
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8882
|
-
value?: string | undefined;
|
|
8883
|
-
values?: string[] | undefined;
|
|
8884
|
-
caseSensitive?: boolean | undefined;
|
|
8885
|
-
} | undefined;
|
|
8886
8880
|
team_id?: {
|
|
8887
8881
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8888
8882
|
value?: string | undefined;
|
|
@@ -8907,6 +8901,12 @@ declare const TeamMemberFiltersSchema: z.ZodObject<{
|
|
|
8907
8901
|
values?: ("owner" | "manager" | "member" | "client")[] | undefined;
|
|
8908
8902
|
caseSensitive?: boolean | undefined;
|
|
8909
8903
|
} | undefined;
|
|
8904
|
+
display_name?: {
|
|
8905
|
+
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8906
|
+
value?: string | undefined;
|
|
8907
|
+
values?: string[] | undefined;
|
|
8908
|
+
caseSensitive?: boolean | undefined;
|
|
8909
|
+
} | undefined;
|
|
8910
8910
|
business_phone?: {
|
|
8911
8911
|
operator: "eq" | "ne" | "contains" | "sw" | "ew" | "in" | "notIn";
|
|
8912
8912
|
value?: string | undefined;
|
|
@@ -8953,9 +8953,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
|
|
|
8953
8953
|
time_zone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
8954
8954
|
}, "strip", z.ZodTypeAny, {
|
|
8955
8955
|
user_id: string;
|
|
8956
|
-
display_name: string;
|
|
8957
8956
|
team_id: string;
|
|
8958
8957
|
role: "owner" | "manager" | "member" | "client";
|
|
8958
|
+
display_name: string;
|
|
8959
8959
|
email_address: string;
|
|
8960
8960
|
business_phone?: string | null | undefined;
|
|
8961
8961
|
mobile_phone?: string | null | undefined;
|
|
@@ -8963,9 +8963,9 @@ declare const TeamMemberCreateSchema: z.ZodObject<{
|
|
|
8963
8963
|
time_zone?: string | null | undefined;
|
|
8964
8964
|
}, {
|
|
8965
8965
|
user_id: string;
|
|
8966
|
-
display_name: string;
|
|
8967
8966
|
team_id: string;
|
|
8968
8967
|
role: "owner" | "manager" | "member" | "client";
|
|
8968
|
+
display_name: string;
|
|
8969
8969
|
email_address: string;
|
|
8970
8970
|
business_phone?: string | null | undefined;
|
|
8971
8971
|
mobile_phone?: string | null | undefined;
|
|
@@ -8988,9 +8988,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
|
|
|
8988
8988
|
}, "strip", z.ZodTypeAny, {
|
|
8989
8989
|
id: string;
|
|
8990
8990
|
user_id: string;
|
|
8991
|
-
display_name: string;
|
|
8992
8991
|
team_id: string;
|
|
8993
8992
|
role: "owner" | "manager" | "member" | "client";
|
|
8993
|
+
display_name: string;
|
|
8994
8994
|
email_address: string;
|
|
8995
8995
|
business_phone?: string | null | undefined;
|
|
8996
8996
|
mobile_phone?: string | null | undefined;
|
|
@@ -8999,9 +8999,9 @@ declare const TeamMemberUpdateSchema: z.ZodObject<{
|
|
|
8999
8999
|
}, {
|
|
9000
9000
|
id: string;
|
|
9001
9001
|
user_id: string;
|
|
9002
|
-
display_name: string;
|
|
9003
9002
|
team_id: string;
|
|
9004
9003
|
role: "owner" | "manager" | "member" | "client";
|
|
9004
|
+
display_name: string;
|
|
9005
9005
|
email_address: string;
|
|
9006
9006
|
business_phone?: string | null | undefined;
|
|
9007
9007
|
mobile_phone?: string | null | undefined;
|
|
@@ -9048,9 +9048,9 @@ declare const TeamMemberReadSchema: z.ZodObject<{
|
|
|
9048
9048
|
original_id?: number | null | undefined;
|
|
9049
9049
|
created_by_display_name?: string | null | undefined;
|
|
9050
9050
|
updated_by_display_name?: string | null | undefined;
|
|
9051
|
-
display_name?: string | null | undefined;
|
|
9052
9051
|
original_team_id?: string | null | undefined;
|
|
9053
9052
|
original_user_id?: string | null | undefined;
|
|
9053
|
+
display_name?: string | null | undefined;
|
|
9054
9054
|
business_phone?: string | null | undefined;
|
|
9055
9055
|
mobile_phone?: string | null | undefined;
|
|
9056
9056
|
website_address?: string | null | undefined;
|
|
@@ -9070,9 +9070,9 @@ declare const TeamMemberReadSchema: z.ZodObject<{
|
|
|
9070
9070
|
original_id?: number | null | undefined;
|
|
9071
9071
|
created_by_display_name?: string | null | undefined;
|
|
9072
9072
|
updated_by_display_name?: string | null | undefined;
|
|
9073
|
-
display_name?: string | null | undefined;
|
|
9074
9073
|
original_team_id?: string | null | undefined;
|
|
9075
9074
|
original_user_id?: string | null | undefined;
|
|
9075
|
+
display_name?: string | null | undefined;
|
|
9076
9076
|
business_phone?: string | null | undefined;
|
|
9077
9077
|
mobile_phone?: string | null | undefined;
|
|
9078
9078
|
website_address?: string | null | undefined;
|
|
@@ -9122,9 +9122,9 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
|
|
|
9122
9122
|
original_id?: number | null | undefined;
|
|
9123
9123
|
created_by_display_name?: string | null | undefined;
|
|
9124
9124
|
updated_by_display_name?: string | null | undefined;
|
|
9125
|
-
display_name?: string | null | undefined;
|
|
9126
9125
|
original_team_id?: string | null | undefined;
|
|
9127
9126
|
original_user_id?: string | null | undefined;
|
|
9127
|
+
display_name?: string | null | undefined;
|
|
9128
9128
|
business_phone?: string | null | undefined;
|
|
9129
9129
|
mobile_phone?: string | null | undefined;
|
|
9130
9130
|
website_address?: string | null | undefined;
|
|
@@ -9144,9 +9144,9 @@ declare const TeamMemberOptionSchema: z.ZodObject<{
|
|
|
9144
9144
|
original_id?: number | null | undefined;
|
|
9145
9145
|
created_by_display_name?: string | null | undefined;
|
|
9146
9146
|
updated_by_display_name?: string | null | undefined;
|
|
9147
|
-
display_name?: string | null | undefined;
|
|
9148
9147
|
original_team_id?: string | null | undefined;
|
|
9149
9148
|
original_user_id?: string | null | undefined;
|
|
9149
|
+
display_name?: string | null | undefined;
|
|
9150
9150
|
business_phone?: string | null | undefined;
|
|
9151
9151
|
mobile_phone?: string | null | undefined;
|
|
9152
9152
|
website_address?: string | null | undefined;
|
|
@@ -9194,9 +9194,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9194
9194
|
original_id?: number | null | undefined;
|
|
9195
9195
|
created_by_display_name?: string | null | undefined;
|
|
9196
9196
|
updated_by_display_name?: string | null | undefined;
|
|
9197
|
-
display_name?: string | null | undefined;
|
|
9198
9197
|
original_team_id?: string | null | undefined;
|
|
9199
9198
|
original_user_id?: string | null | undefined;
|
|
9199
|
+
display_name?: string | null | undefined;
|
|
9200
9200
|
business_phone?: string | null | undefined;
|
|
9201
9201
|
mobile_phone?: string | null | undefined;
|
|
9202
9202
|
website_address?: string | null | undefined;
|
|
@@ -9216,9 +9216,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9216
9216
|
original_id?: number | null | undefined;
|
|
9217
9217
|
created_by_display_name?: string | null | undefined;
|
|
9218
9218
|
updated_by_display_name?: string | null | undefined;
|
|
9219
|
-
display_name?: string | null | undefined;
|
|
9220
9219
|
original_team_id?: string | null | undefined;
|
|
9221
9220
|
original_user_id?: string | null | undefined;
|
|
9221
|
+
display_name?: string | null | undefined;
|
|
9222
9222
|
business_phone?: string | null | undefined;
|
|
9223
9223
|
mobile_phone?: string | null | undefined;
|
|
9224
9224
|
website_address?: string | null | undefined;
|
|
@@ -9240,9 +9240,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9240
9240
|
original_id?: number | null | undefined;
|
|
9241
9241
|
created_by_display_name?: string | null | undefined;
|
|
9242
9242
|
updated_by_display_name?: string | null | undefined;
|
|
9243
|
-
display_name?: string | null | undefined;
|
|
9244
9243
|
original_team_id?: string | null | undefined;
|
|
9245
9244
|
original_user_id?: string | null | undefined;
|
|
9245
|
+
display_name?: string | null | undefined;
|
|
9246
9246
|
business_phone?: string | null | undefined;
|
|
9247
9247
|
mobile_phone?: string | null | undefined;
|
|
9248
9248
|
website_address?: string | null | undefined;
|
|
@@ -9264,9 +9264,9 @@ declare const UserTeamMembersSchema: z.ZodObject<{
|
|
|
9264
9264
|
original_id?: number | null | undefined;
|
|
9265
9265
|
created_by_display_name?: string | null | undefined;
|
|
9266
9266
|
updated_by_display_name?: string | null | undefined;
|
|
9267
|
-
display_name?: string | null | undefined;
|
|
9268
9267
|
original_team_id?: string | null | undefined;
|
|
9269
9268
|
original_user_id?: string | null | undefined;
|
|
9269
|
+
display_name?: string | null | undefined;
|
|
9270
9270
|
business_phone?: string | null | undefined;
|
|
9271
9271
|
mobile_phone?: string | null | undefined;
|
|
9272
9272
|
website_address?: string | null | undefined;
|
|
@@ -9292,19 +9292,19 @@ declare const UserReadSchema: z.ZodObject<{
|
|
|
9292
9292
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
9293
9293
|
}, "strip", z.ZodTypeAny, {
|
|
9294
9294
|
created_at: string;
|
|
9295
|
-
id: string;
|
|
9296
9295
|
email: string;
|
|
9297
9296
|
username: string;
|
|
9298
9297
|
email_verified: boolean;
|
|
9299
9298
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9299
|
+
id: string;
|
|
9300
9300
|
updated_at: string | null;
|
|
9301
9301
|
}, {
|
|
9302
9302
|
created_at: string;
|
|
9303
|
-
id: string;
|
|
9304
9303
|
email: string;
|
|
9305
9304
|
username: string;
|
|
9306
9305
|
email_verified: boolean;
|
|
9307
9306
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9307
|
+
id: string;
|
|
9308
9308
|
updated_at: string | null;
|
|
9309
9309
|
}>;
|
|
9310
9310
|
type UserReadDto = z.infer<typeof UserReadSchema>;
|
|
@@ -9314,11 +9314,11 @@ declare const UserUpdateSchema: z.ZodObject<{
|
|
|
9314
9314
|
id: z.ZodString;
|
|
9315
9315
|
user_type: z.ZodEnum<["consumer", "lead", "staff", "super_admin"]>;
|
|
9316
9316
|
}, "strip", z.ZodTypeAny, {
|
|
9317
|
-
id: string;
|
|
9318
9317
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9319
|
-
}, {
|
|
9320
9318
|
id: string;
|
|
9319
|
+
}, {
|
|
9321
9320
|
user_type: "consumer" | "lead" | "staff" | "super_admin";
|
|
9321
|
+
id: string;
|
|
9322
9322
|
}>;
|
|
9323
9323
|
type UserUpdateDto = z.infer<typeof UserUpdateSchema>;
|
|
9324
9324
|
//#endregion
|
|
@@ -9505,6 +9505,58 @@ interface CustomerApi {
|
|
|
9505
9505
|
resetMonthlyBalance(): Promise<CreditBalanceDto>;
|
|
9506
9506
|
}
|
|
9507
9507
|
//#endregion
|
|
9508
|
+
//#region src/api/email-verification-api.d.ts
|
|
9509
|
+
/**
|
|
9510
|
+
* Result of verifyEmail. When ok is true, session may be included for auto sign-in.
|
|
9511
|
+
*/
|
|
9512
|
+
interface VerifyEmailResult {
|
|
9513
|
+
ok: boolean;
|
|
9514
|
+
session?: LoginResponse;
|
|
9515
|
+
}
|
|
9516
|
+
/**
|
|
9517
|
+
* Email verification API
|
|
9518
|
+
* Implement when your backend supports email verification.
|
|
9519
|
+
*/
|
|
9520
|
+
interface EmailVerificationApi {
|
|
9521
|
+
/**
|
|
9522
|
+
* Verify email using token from verification link.
|
|
9523
|
+
* When successful, may return session for auto sign-in (e.g. strict mode signup flow).
|
|
9524
|
+
*/
|
|
9525
|
+
verifyEmail(token: string): Promise<VerifyEmailResult>;
|
|
9526
|
+
/**
|
|
9527
|
+
* Resend verification email for the current user
|
|
9528
|
+
*/
|
|
9529
|
+
resendVerificationEmail(): Promise<{
|
|
9530
|
+
ok: boolean;
|
|
9531
|
+
}>;
|
|
9532
|
+
}
|
|
9533
|
+
//#endregion
|
|
9534
|
+
//#region src/api/mfa-api.d.ts
|
|
9535
|
+
/**
|
|
9536
|
+
* MFA API - Multi-factor authentication
|
|
9537
|
+
* Implement when your backend supports MFA.
|
|
9538
|
+
*/
|
|
9539
|
+
interface MfaApi {
|
|
9540
|
+
/**
|
|
9541
|
+
* Start MFA setup - returns secret and QR code URL for authenticator app
|
|
9542
|
+
*/
|
|
9543
|
+
startSetup(): Promise<{
|
|
9544
|
+
secret: string;
|
|
9545
|
+
qrCodeUrl: string;
|
|
9546
|
+
}>;
|
|
9547
|
+
/**
|
|
9548
|
+
* Confirm MFA setup with a code from the authenticator app
|
|
9549
|
+
*/
|
|
9550
|
+
confirmSetup(code: string): Promise<{
|
|
9551
|
+
ok: boolean;
|
|
9552
|
+
recoveryCodes?: string[];
|
|
9553
|
+
}>;
|
|
9554
|
+
/**
|
|
9555
|
+
* Verify MFA code during login (when login returns mfa_required)
|
|
9556
|
+
*/
|
|
9557
|
+
verify(mfaSessionId: string, code: string): Promise<LoginResponse>;
|
|
9558
|
+
}
|
|
9559
|
+
//#endregion
|
|
9508
9560
|
//#region src/api/note-api.d.ts
|
|
9509
9561
|
/**
|
|
9510
9562
|
* Note API - Cap'n Web RPC interface
|
|
@@ -9943,6 +9995,10 @@ interface DragoncoreApi {
|
|
|
9943
9995
|
savedFilters: SavedFilterApi;
|
|
9944
9996
|
supportStaff: SupportStaffApi;
|
|
9945
9997
|
supportTickets: SupportTicketApi;
|
|
9998
|
+
/** MFA - implement when backend supports multi-factor authentication */
|
|
9999
|
+
mfa?: MfaApi;
|
|
10000
|
+
/** Email verification - implement when backend supports email verification */
|
|
10001
|
+
verifyEmail?: EmailVerificationApi;
|
|
9946
10002
|
}
|
|
9947
10003
|
//#endregion
|
|
9948
10004
|
//#region src/utils/enum_labels.d.ts
|
|
@@ -10086,5 +10142,5 @@ declare const formatCurrency: (value: number) => string;
|
|
|
10086
10142
|
*/
|
|
10087
10143
|
declare const formatDollar: (amount: string | null | undefined) => string;
|
|
10088
10144
|
//#endregion
|
|
10089
|
-
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, EqualityArrayOperator, EqualityArrayOperatorSchema, EqualityOperator, EqualityOperatorSchema, FieldDefinitionMetadata, FieldRegistryMetadata, FilterConfig, FilterConfigSchema, ForgotPasswordDto, LoginInputDto, type LoginResponse, MAX_PRESETS_PER_CONTEXT, NoteApi, NoteCreateDto, NoteCreateSchema, NoteFiltersDto, NoteFiltersSchema, NoteFiltersSortDirectionEnum, NoteReadDto, NoteReadSchema, NoteUpdateDto, NoteUpdateSchema, NumberFilter, NumberFilterSchema, NumberOperator, NumberOperatorSchema, OPERATORS, PageInfoDto, PageInfoSchema, PagedResult, PaginationFiltersDto, PaginationFiltersSchema, PasswordResetApi, ReactivateInternalTaskDto, ReactivateInternalTaskSchema, 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, SignupInputDto, 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, addMoney, applyPercentage, changePasswordSchema, createEnumFilter, createEnumLabelMap, createPaginatedSchema, createSelectOptionsFromLabelMap, createUserSchema, createUserSchemaOutput, divideMoney, enumToDisplayLabel, forgot_password_zod, formatCurrency, formatDollar, isCommonPassword, loginResponseSchema, loginSchema, multiplyMoney, pageInfoSchema, passwordSchema, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10145
|
+
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, 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, SignupInputDto, 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, recordVersionFiltersBreadcrumbSchema, recordVersionFiltersInputBreadcrumbSchema, recordVersionFiltersInputSchema, recordVersionFiltersSchema, recordVersionPageBreadcrumbSchema, recordVersionPageSchema, recordVersionSchema, recordVersionTrackerActivityInputSchema, resetPasswordInputSchema, resetPasswordSchema, roundMoney, sanitizeFileName, signupSchema, subtractMoney, supportTicketNumberToPriority, supportTicketPriorityToNumber, userSessionSchema };
|
|
10090
10146
|
//# sourceMappingURL=index.d.mts.map
|