@kl1/contracts 1.1.25-uat → 1.1.26-uat
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.js +13 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -3
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +3341 -22
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +528 -4
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +666 -4
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +6478 -44
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +241 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +390 -4
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +333 -2
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +333 -2
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +861 -6
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +861 -6
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +287 -2
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +241 -2
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +333 -2
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +333 -2
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +333 -2
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +703 -6
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +149 -2
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +26 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/chat/index.d.ts
CHANGED
@@ -1510,8 +1510,7 @@ export declare const receiveMessageContract: {
|
|
1510
1510
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1511
1511
|
note: z.ZodNullable<z.ZodString>;
|
1512
1512
|
disposition: z.ZodNullable<z.ZodString>;
|
1513
|
-
|
1514
|
-
callTo: z.ZodNullable<z.ZodString>;
|
1513
|
+
type: z.ZodString;
|
1515
1514
|
tags: z.ZodArray<z.ZodObject<{
|
1516
1515
|
id: z.ZodString;
|
1517
1516
|
createdAt: z.ZodDate;
|
@@ -1531,12 +1530,137 @@ export declare const receiveMessageContract: {
|
|
1531
1530
|
updatedAt: Date;
|
1532
1531
|
deletedAt: Date | null;
|
1533
1532
|
}>, "many">;
|
1533
|
+
categories: z.ZodArray<z.ZodObject<{
|
1534
|
+
id: z.ZodString;
|
1535
|
+
createdAt: z.ZodDate;
|
1536
|
+
updatedAt: z.ZodDate;
|
1537
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
1538
|
+
value: z.ZodString;
|
1539
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1540
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1541
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
1542
|
+
id: z.ZodString;
|
1543
|
+
value: z.ZodString;
|
1544
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1545
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1546
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
1547
|
+
id: z.ZodString;
|
1548
|
+
value: z.ZodString;
|
1549
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1550
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1551
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
1552
|
+
}, "strip", z.ZodTypeAny, {
|
1553
|
+
id: string;
|
1554
|
+
value: string;
|
1555
|
+
level: 2 | 1 | 3;
|
1556
|
+
parentId: string | null;
|
1557
|
+
childCategoryList: any[];
|
1558
|
+
}, {
|
1559
|
+
id: string;
|
1560
|
+
value: string;
|
1561
|
+
level: 2 | 1 | 3;
|
1562
|
+
parentId: string | null;
|
1563
|
+
childCategoryList: any[];
|
1564
|
+
}>, "many">;
|
1565
|
+
}, "strip", z.ZodTypeAny, {
|
1566
|
+
id: string;
|
1567
|
+
value: string;
|
1568
|
+
level: 2 | 1 | 3;
|
1569
|
+
parentId: string | null;
|
1570
|
+
childCategoryList: {
|
1571
|
+
id: string;
|
1572
|
+
value: string;
|
1573
|
+
level: 2 | 1 | 3;
|
1574
|
+
parentId: string | null;
|
1575
|
+
childCategoryList: any[];
|
1576
|
+
}[];
|
1577
|
+
}, {
|
1578
|
+
id: string;
|
1579
|
+
value: string;
|
1580
|
+
level: 2 | 1 | 3;
|
1581
|
+
parentId: string | null;
|
1582
|
+
childCategoryList: {
|
1583
|
+
id: string;
|
1584
|
+
value: string;
|
1585
|
+
level: 2 | 1 | 3;
|
1586
|
+
parentId: string | null;
|
1587
|
+
childCategoryList: any[];
|
1588
|
+
}[];
|
1589
|
+
}>, "many">;
|
1590
|
+
}, "strip", z.ZodTypeAny, {
|
1591
|
+
id: string;
|
1592
|
+
value: string;
|
1593
|
+
createdAt: Date;
|
1594
|
+
updatedAt: Date;
|
1595
|
+
deletedAt: Date | null;
|
1596
|
+
level: 2 | 1 | 3;
|
1597
|
+
parentId: string | null;
|
1598
|
+
childCategoryList: {
|
1599
|
+
id: string;
|
1600
|
+
value: string;
|
1601
|
+
level: 2 | 1 | 3;
|
1602
|
+
parentId: string | null;
|
1603
|
+
childCategoryList: {
|
1604
|
+
id: string;
|
1605
|
+
value: string;
|
1606
|
+
level: 2 | 1 | 3;
|
1607
|
+
parentId: string | null;
|
1608
|
+
childCategoryList: any[];
|
1609
|
+
}[];
|
1610
|
+
}[];
|
1611
|
+
}, {
|
1612
|
+
id: string;
|
1613
|
+
value: string;
|
1614
|
+
createdAt: Date;
|
1615
|
+
updatedAt: Date;
|
1616
|
+
deletedAt: Date | null;
|
1617
|
+
level: 2 | 1 | 3;
|
1618
|
+
parentId: string | null;
|
1619
|
+
childCategoryList: {
|
1620
|
+
id: string;
|
1621
|
+
value: string;
|
1622
|
+
level: 2 | 1 | 3;
|
1623
|
+
parentId: string | null;
|
1624
|
+
childCategoryList: {
|
1625
|
+
id: string;
|
1626
|
+
value: string;
|
1627
|
+
level: 2 | 1 | 3;
|
1628
|
+
parentId: string | null;
|
1629
|
+
childCategoryList: any[];
|
1630
|
+
}[];
|
1631
|
+
}[];
|
1632
|
+
}>, "many">;
|
1633
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
1634
|
+
callTo: z.ZodNullable<z.ZodString>;
|
1534
1635
|
}, "strip", z.ZodTypeAny, {
|
1636
|
+
type: string;
|
1535
1637
|
id: string;
|
1536
1638
|
disposition: string | null;
|
1537
1639
|
createdAt: Date;
|
1538
1640
|
updatedAt: Date;
|
1539
1641
|
deletedAt: Date | null;
|
1642
|
+
categories: {
|
1643
|
+
id: string;
|
1644
|
+
value: string;
|
1645
|
+
createdAt: Date;
|
1646
|
+
updatedAt: Date;
|
1647
|
+
deletedAt: Date | null;
|
1648
|
+
level: 2 | 1 | 3;
|
1649
|
+
parentId: string | null;
|
1650
|
+
childCategoryList: {
|
1651
|
+
id: string;
|
1652
|
+
value: string;
|
1653
|
+
level: 2 | 1 | 3;
|
1654
|
+
parentId: string | null;
|
1655
|
+
childCategoryList: {
|
1656
|
+
id: string;
|
1657
|
+
value: string;
|
1658
|
+
level: 2 | 1 | 3;
|
1659
|
+
parentId: string | null;
|
1660
|
+
childCategoryList: any[];
|
1661
|
+
}[];
|
1662
|
+
}[];
|
1663
|
+
}[];
|
1540
1664
|
tags: {
|
1541
1665
|
id: string;
|
1542
1666
|
name: string;
|
@@ -1548,11 +1672,34 @@ export declare const receiveMessageContract: {
|
|
1548
1672
|
callTo: string | null;
|
1549
1673
|
note: string | null;
|
1550
1674
|
}, {
|
1675
|
+
type: string;
|
1551
1676
|
id: string;
|
1552
1677
|
disposition: string | null;
|
1553
1678
|
createdAt: Date;
|
1554
1679
|
updatedAt: Date;
|
1555
1680
|
deletedAt: Date | null;
|
1681
|
+
categories: {
|
1682
|
+
id: string;
|
1683
|
+
value: string;
|
1684
|
+
createdAt: Date;
|
1685
|
+
updatedAt: Date;
|
1686
|
+
deletedAt: Date | null;
|
1687
|
+
level: 2 | 1 | 3;
|
1688
|
+
parentId: string | null;
|
1689
|
+
childCategoryList: {
|
1690
|
+
id: string;
|
1691
|
+
value: string;
|
1692
|
+
level: 2 | 1 | 3;
|
1693
|
+
parentId: string | null;
|
1694
|
+
childCategoryList: {
|
1695
|
+
id: string;
|
1696
|
+
value: string;
|
1697
|
+
level: 2 | 1 | 3;
|
1698
|
+
parentId: string | null;
|
1699
|
+
childCategoryList: any[];
|
1700
|
+
}[];
|
1701
|
+
}[];
|
1702
|
+
}[];
|
1556
1703
|
tags: {
|
1557
1704
|
id: string;
|
1558
1705
|
name: string;
|
@@ -1581,11 +1728,34 @@ export declare const receiveMessageContract: {
|
|
1581
1728
|
handledTime: number | null;
|
1582
1729
|
firstResponseTime: number | null;
|
1583
1730
|
wrapUpForm: {
|
1731
|
+
type: string;
|
1584
1732
|
id: string;
|
1585
1733
|
disposition: string | null;
|
1586
1734
|
createdAt: Date;
|
1587
1735
|
updatedAt: Date;
|
1588
1736
|
deletedAt: Date | null;
|
1737
|
+
categories: {
|
1738
|
+
id: string;
|
1739
|
+
value: string;
|
1740
|
+
createdAt: Date;
|
1741
|
+
updatedAt: Date;
|
1742
|
+
deletedAt: Date | null;
|
1743
|
+
level: 2 | 1 | 3;
|
1744
|
+
parentId: string | null;
|
1745
|
+
childCategoryList: {
|
1746
|
+
id: string;
|
1747
|
+
value: string;
|
1748
|
+
level: 2 | 1 | 3;
|
1749
|
+
parentId: string | null;
|
1750
|
+
childCategoryList: {
|
1751
|
+
id: string;
|
1752
|
+
value: string;
|
1753
|
+
level: 2 | 1 | 3;
|
1754
|
+
parentId: string | null;
|
1755
|
+
childCategoryList: any[];
|
1756
|
+
}[];
|
1757
|
+
}[];
|
1758
|
+
}[];
|
1589
1759
|
tags: {
|
1590
1760
|
id: string;
|
1591
1761
|
name: string;
|
@@ -1614,11 +1784,34 @@ export declare const receiveMessageContract: {
|
|
1614
1784
|
handledTime: number | null;
|
1615
1785
|
firstResponseTime: number | null;
|
1616
1786
|
wrapUpForm: {
|
1787
|
+
type: string;
|
1617
1788
|
id: string;
|
1618
1789
|
disposition: string | null;
|
1619
1790
|
createdAt: Date;
|
1620
1791
|
updatedAt: Date;
|
1621
1792
|
deletedAt: Date | null;
|
1793
|
+
categories: {
|
1794
|
+
id: string;
|
1795
|
+
value: string;
|
1796
|
+
createdAt: Date;
|
1797
|
+
updatedAt: Date;
|
1798
|
+
deletedAt: Date | null;
|
1799
|
+
level: 2 | 1 | 3;
|
1800
|
+
parentId: string | null;
|
1801
|
+
childCategoryList: {
|
1802
|
+
id: string;
|
1803
|
+
value: string;
|
1804
|
+
level: 2 | 1 | 3;
|
1805
|
+
parentId: string | null;
|
1806
|
+
childCategoryList: {
|
1807
|
+
id: string;
|
1808
|
+
value: string;
|
1809
|
+
level: 2 | 1 | 3;
|
1810
|
+
parentId: string | null;
|
1811
|
+
childCategoryList: any[];
|
1812
|
+
}[];
|
1813
|
+
}[];
|
1814
|
+
}[];
|
1622
1815
|
tags: {
|
1623
1816
|
id: string;
|
1624
1817
|
name: string;
|
@@ -1885,11 +2078,34 @@ export declare const receiveMessageContract: {
|
|
1885
2078
|
handledTime: number | null;
|
1886
2079
|
firstResponseTime: number | null;
|
1887
2080
|
wrapUpForm: {
|
2081
|
+
type: string;
|
1888
2082
|
id: string;
|
1889
2083
|
disposition: string | null;
|
1890
2084
|
createdAt: Date;
|
1891
2085
|
updatedAt: Date;
|
1892
2086
|
deletedAt: Date | null;
|
2087
|
+
categories: {
|
2088
|
+
id: string;
|
2089
|
+
value: string;
|
2090
|
+
createdAt: Date;
|
2091
|
+
updatedAt: Date;
|
2092
|
+
deletedAt: Date | null;
|
2093
|
+
level: 2 | 1 | 3;
|
2094
|
+
parentId: string | null;
|
2095
|
+
childCategoryList: {
|
2096
|
+
id: string;
|
2097
|
+
value: string;
|
2098
|
+
level: 2 | 1 | 3;
|
2099
|
+
parentId: string | null;
|
2100
|
+
childCategoryList: {
|
2101
|
+
id: string;
|
2102
|
+
value: string;
|
2103
|
+
level: 2 | 1 | 3;
|
2104
|
+
parentId: string | null;
|
2105
|
+
childCategoryList: any[];
|
2106
|
+
}[];
|
2107
|
+
}[];
|
2108
|
+
}[];
|
1893
2109
|
tags: {
|
1894
2110
|
id: string;
|
1895
2111
|
name: string;
|
@@ -2156,11 +2372,34 @@ export declare const receiveMessageContract: {
|
|
2156
2372
|
handledTime: number | null;
|
2157
2373
|
firstResponseTime: number | null;
|
2158
2374
|
wrapUpForm: {
|
2375
|
+
type: string;
|
2159
2376
|
id: string;
|
2160
2377
|
disposition: string | null;
|
2161
2378
|
createdAt: Date;
|
2162
2379
|
updatedAt: Date;
|
2163
2380
|
deletedAt: Date | null;
|
2381
|
+
categories: {
|
2382
|
+
id: string;
|
2383
|
+
value: string;
|
2384
|
+
createdAt: Date;
|
2385
|
+
updatedAt: Date;
|
2386
|
+
deletedAt: Date | null;
|
2387
|
+
level: 2 | 1 | 3;
|
2388
|
+
parentId: string | null;
|
2389
|
+
childCategoryList: {
|
2390
|
+
id: string;
|
2391
|
+
value: string;
|
2392
|
+
level: 2 | 1 | 3;
|
2393
|
+
parentId: string | null;
|
2394
|
+
childCategoryList: {
|
2395
|
+
id: string;
|
2396
|
+
value: string;
|
2397
|
+
level: 2 | 1 | 3;
|
2398
|
+
parentId: string | null;
|
2399
|
+
childCategoryList: any[];
|
2400
|
+
}[];
|
2401
|
+
}[];
|
2402
|
+
}[];
|
2164
2403
|
tags: {
|
2165
2404
|
id: string;
|
2166
2405
|
name: string;
|
@@ -3082,11 +3321,34 @@ export declare const receiveMessageContract: {
|
|
3082
3321
|
handledTime: number | null;
|
3083
3322
|
firstResponseTime: number | null;
|
3084
3323
|
wrapUpForm: {
|
3324
|
+
type: string;
|
3085
3325
|
id: string;
|
3086
3326
|
disposition: string | null;
|
3087
3327
|
createdAt: Date;
|
3088
3328
|
updatedAt: Date;
|
3089
3329
|
deletedAt: Date | null;
|
3330
|
+
categories: {
|
3331
|
+
id: string;
|
3332
|
+
value: string;
|
3333
|
+
createdAt: Date;
|
3334
|
+
updatedAt: Date;
|
3335
|
+
deletedAt: Date | null;
|
3336
|
+
level: 2 | 1 | 3;
|
3337
|
+
parentId: string | null;
|
3338
|
+
childCategoryList: {
|
3339
|
+
id: string;
|
3340
|
+
value: string;
|
3341
|
+
level: 2 | 1 | 3;
|
3342
|
+
parentId: string | null;
|
3343
|
+
childCategoryList: {
|
3344
|
+
id: string;
|
3345
|
+
value: string;
|
3346
|
+
level: 2 | 1 | 3;
|
3347
|
+
parentId: string | null;
|
3348
|
+
childCategoryList: any[];
|
3349
|
+
}[];
|
3350
|
+
}[];
|
3351
|
+
}[];
|
3090
3352
|
tags: {
|
3091
3353
|
id: string;
|
3092
3354
|
name: string;
|
@@ -3515,11 +3777,34 @@ export declare const receiveMessageContract: {
|
|
3515
3777
|
handledTime: number | null;
|
3516
3778
|
firstResponseTime: number | null;
|
3517
3779
|
wrapUpForm: {
|
3780
|
+
type: string;
|
3518
3781
|
id: string;
|
3519
3782
|
disposition: string | null;
|
3520
3783
|
createdAt: Date;
|
3521
3784
|
updatedAt: Date;
|
3522
3785
|
deletedAt: Date | null;
|
3786
|
+
categories: {
|
3787
|
+
id: string;
|
3788
|
+
value: string;
|
3789
|
+
createdAt: Date;
|
3790
|
+
updatedAt: Date;
|
3791
|
+
deletedAt: Date | null;
|
3792
|
+
level: 2 | 1 | 3;
|
3793
|
+
parentId: string | null;
|
3794
|
+
childCategoryList: {
|
3795
|
+
id: string;
|
3796
|
+
value: string;
|
3797
|
+
level: 2 | 1 | 3;
|
3798
|
+
parentId: string | null;
|
3799
|
+
childCategoryList: {
|
3800
|
+
id: string;
|
3801
|
+
value: string;
|
3802
|
+
level: 2 | 1 | 3;
|
3803
|
+
parentId: string | null;
|
3804
|
+
childCategoryList: any[];
|
3805
|
+
}[];
|
3806
|
+
}[];
|
3807
|
+
}[];
|
3523
3808
|
tags: {
|
3524
3809
|
id: string;
|
3525
3810
|
name: string;
|
@@ -3950,11 +4235,34 @@ export declare const receiveMessageContract: {
|
|
3950
4235
|
handledTime: number | null;
|
3951
4236
|
firstResponseTime: number | null;
|
3952
4237
|
wrapUpForm: {
|
4238
|
+
type: string;
|
3953
4239
|
id: string;
|
3954
4240
|
disposition: string | null;
|
3955
4241
|
createdAt: Date;
|
3956
4242
|
updatedAt: Date;
|
3957
4243
|
deletedAt: Date | null;
|
4244
|
+
categories: {
|
4245
|
+
id: string;
|
4246
|
+
value: string;
|
4247
|
+
createdAt: Date;
|
4248
|
+
updatedAt: Date;
|
4249
|
+
deletedAt: Date | null;
|
4250
|
+
level: 2 | 1 | 3;
|
4251
|
+
parentId: string | null;
|
4252
|
+
childCategoryList: {
|
4253
|
+
id: string;
|
4254
|
+
value: string;
|
4255
|
+
level: 2 | 1 | 3;
|
4256
|
+
parentId: string | null;
|
4257
|
+
childCategoryList: {
|
4258
|
+
id: string;
|
4259
|
+
value: string;
|
4260
|
+
level: 2 | 1 | 3;
|
4261
|
+
parentId: string | null;
|
4262
|
+
childCategoryList: any[];
|
4263
|
+
}[];
|
4264
|
+
}[];
|
4265
|
+
}[];
|
3958
4266
|
tags: {
|
3959
4267
|
id: string;
|
3960
4268
|
name: string;
|
@@ -4385,11 +4693,34 @@ export declare const receiveMessageContract: {
|
|
4385
4693
|
handledTime: number | null;
|
4386
4694
|
firstResponseTime: number | null;
|
4387
4695
|
wrapUpForm: {
|
4696
|
+
type: string;
|
4388
4697
|
id: string;
|
4389
4698
|
disposition: string | null;
|
4390
4699
|
createdAt: Date;
|
4391
4700
|
updatedAt: Date;
|
4392
4701
|
deletedAt: Date | null;
|
4702
|
+
categories: {
|
4703
|
+
id: string;
|
4704
|
+
value: string;
|
4705
|
+
createdAt: Date;
|
4706
|
+
updatedAt: Date;
|
4707
|
+
deletedAt: Date | null;
|
4708
|
+
level: 2 | 1 | 3;
|
4709
|
+
parentId: string | null;
|
4710
|
+
childCategoryList: {
|
4711
|
+
id: string;
|
4712
|
+
value: string;
|
4713
|
+
level: 2 | 1 | 3;
|
4714
|
+
parentId: string | null;
|
4715
|
+
childCategoryList: {
|
4716
|
+
id: string;
|
4717
|
+
value: string;
|
4718
|
+
level: 2 | 1 | 3;
|
4719
|
+
parentId: string | null;
|
4720
|
+
childCategoryList: any[];
|
4721
|
+
}[];
|
4722
|
+
}[];
|
4723
|
+
}[];
|
4393
4724
|
tags: {
|
4394
4725
|
id: string;
|
4395
4726
|
name: string;
|
@@ -6469,8 +6800,7 @@ export declare const mainChatContract: {
|
|
6469
6800
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
6470
6801
|
note: z.ZodNullable<z.ZodString>;
|
6471
6802
|
disposition: z.ZodNullable<z.ZodString>;
|
6472
|
-
|
6473
|
-
callTo: z.ZodNullable<z.ZodString>;
|
6803
|
+
type: z.ZodString;
|
6474
6804
|
tags: z.ZodArray<z.ZodObject<{
|
6475
6805
|
id: z.ZodString;
|
6476
6806
|
createdAt: z.ZodDate;
|
@@ -6490,12 +6820,137 @@ export declare const mainChatContract: {
|
|
6490
6820
|
updatedAt: Date;
|
6491
6821
|
deletedAt: Date | null;
|
6492
6822
|
}>, "many">;
|
6823
|
+
categories: z.ZodArray<z.ZodObject<{
|
6824
|
+
id: z.ZodString;
|
6825
|
+
createdAt: z.ZodDate;
|
6826
|
+
updatedAt: z.ZodDate;
|
6827
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
6828
|
+
value: z.ZodString;
|
6829
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
6830
|
+
parentId: z.ZodNullable<z.ZodString>;
|
6831
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
6832
|
+
id: z.ZodString;
|
6833
|
+
value: z.ZodString;
|
6834
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
6835
|
+
parentId: z.ZodNullable<z.ZodString>;
|
6836
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
6837
|
+
id: z.ZodString;
|
6838
|
+
value: z.ZodString;
|
6839
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
6840
|
+
parentId: z.ZodNullable<z.ZodString>;
|
6841
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
6842
|
+
}, "strip", z.ZodTypeAny, {
|
6843
|
+
id: string;
|
6844
|
+
value: string;
|
6845
|
+
level: 2 | 1 | 3;
|
6846
|
+
parentId: string | null;
|
6847
|
+
childCategoryList: any[];
|
6848
|
+
}, {
|
6849
|
+
id: string;
|
6850
|
+
value: string;
|
6851
|
+
level: 2 | 1 | 3;
|
6852
|
+
parentId: string | null;
|
6853
|
+
childCategoryList: any[];
|
6854
|
+
}>, "many">;
|
6855
|
+
}, "strip", z.ZodTypeAny, {
|
6856
|
+
id: string;
|
6857
|
+
value: string;
|
6858
|
+
level: 2 | 1 | 3;
|
6859
|
+
parentId: string | null;
|
6860
|
+
childCategoryList: {
|
6861
|
+
id: string;
|
6862
|
+
value: string;
|
6863
|
+
level: 2 | 1 | 3;
|
6864
|
+
parentId: string | null;
|
6865
|
+
childCategoryList: any[];
|
6866
|
+
}[];
|
6867
|
+
}, {
|
6868
|
+
id: string;
|
6869
|
+
value: string;
|
6870
|
+
level: 2 | 1 | 3;
|
6871
|
+
parentId: string | null;
|
6872
|
+
childCategoryList: {
|
6873
|
+
id: string;
|
6874
|
+
value: string;
|
6875
|
+
level: 2 | 1 | 3;
|
6876
|
+
parentId: string | null;
|
6877
|
+
childCategoryList: any[];
|
6878
|
+
}[];
|
6879
|
+
}>, "many">;
|
6880
|
+
}, "strip", z.ZodTypeAny, {
|
6881
|
+
id: string;
|
6882
|
+
value: string;
|
6883
|
+
createdAt: Date;
|
6884
|
+
updatedAt: Date;
|
6885
|
+
deletedAt: Date | null;
|
6886
|
+
level: 2 | 1 | 3;
|
6887
|
+
parentId: string | null;
|
6888
|
+
childCategoryList: {
|
6889
|
+
id: string;
|
6890
|
+
value: string;
|
6891
|
+
level: 2 | 1 | 3;
|
6892
|
+
parentId: string | null;
|
6893
|
+
childCategoryList: {
|
6894
|
+
id: string;
|
6895
|
+
value: string;
|
6896
|
+
level: 2 | 1 | 3;
|
6897
|
+
parentId: string | null;
|
6898
|
+
childCategoryList: any[];
|
6899
|
+
}[];
|
6900
|
+
}[];
|
6901
|
+
}, {
|
6902
|
+
id: string;
|
6903
|
+
value: string;
|
6904
|
+
createdAt: Date;
|
6905
|
+
updatedAt: Date;
|
6906
|
+
deletedAt: Date | null;
|
6907
|
+
level: 2 | 1 | 3;
|
6908
|
+
parentId: string | null;
|
6909
|
+
childCategoryList: {
|
6910
|
+
id: string;
|
6911
|
+
value: string;
|
6912
|
+
level: 2 | 1 | 3;
|
6913
|
+
parentId: string | null;
|
6914
|
+
childCategoryList: {
|
6915
|
+
id: string;
|
6916
|
+
value: string;
|
6917
|
+
level: 2 | 1 | 3;
|
6918
|
+
parentId: string | null;
|
6919
|
+
childCategoryList: any[];
|
6920
|
+
}[];
|
6921
|
+
}[];
|
6922
|
+
}>, "many">;
|
6923
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
6924
|
+
callTo: z.ZodNullable<z.ZodString>;
|
6493
6925
|
}, "strip", z.ZodTypeAny, {
|
6926
|
+
type: string;
|
6494
6927
|
id: string;
|
6495
6928
|
disposition: string | null;
|
6496
6929
|
createdAt: Date;
|
6497
6930
|
updatedAt: Date;
|
6498
6931
|
deletedAt: Date | null;
|
6932
|
+
categories: {
|
6933
|
+
id: string;
|
6934
|
+
value: string;
|
6935
|
+
createdAt: Date;
|
6936
|
+
updatedAt: Date;
|
6937
|
+
deletedAt: Date | null;
|
6938
|
+
level: 2 | 1 | 3;
|
6939
|
+
parentId: string | null;
|
6940
|
+
childCategoryList: {
|
6941
|
+
id: string;
|
6942
|
+
value: string;
|
6943
|
+
level: 2 | 1 | 3;
|
6944
|
+
parentId: string | null;
|
6945
|
+
childCategoryList: {
|
6946
|
+
id: string;
|
6947
|
+
value: string;
|
6948
|
+
level: 2 | 1 | 3;
|
6949
|
+
parentId: string | null;
|
6950
|
+
childCategoryList: any[];
|
6951
|
+
}[];
|
6952
|
+
}[];
|
6953
|
+
}[];
|
6499
6954
|
tags: {
|
6500
6955
|
id: string;
|
6501
6956
|
name: string;
|
@@ -6507,11 +6962,34 @@ export declare const mainChatContract: {
|
|
6507
6962
|
callTo: string | null;
|
6508
6963
|
note: string | null;
|
6509
6964
|
}, {
|
6965
|
+
type: string;
|
6510
6966
|
id: string;
|
6511
6967
|
disposition: string | null;
|
6512
6968
|
createdAt: Date;
|
6513
6969
|
updatedAt: Date;
|
6514
6970
|
deletedAt: Date | null;
|
6971
|
+
categories: {
|
6972
|
+
id: string;
|
6973
|
+
value: string;
|
6974
|
+
createdAt: Date;
|
6975
|
+
updatedAt: Date;
|
6976
|
+
deletedAt: Date | null;
|
6977
|
+
level: 2 | 1 | 3;
|
6978
|
+
parentId: string | null;
|
6979
|
+
childCategoryList: {
|
6980
|
+
id: string;
|
6981
|
+
value: string;
|
6982
|
+
level: 2 | 1 | 3;
|
6983
|
+
parentId: string | null;
|
6984
|
+
childCategoryList: {
|
6985
|
+
id: string;
|
6986
|
+
value: string;
|
6987
|
+
level: 2 | 1 | 3;
|
6988
|
+
parentId: string | null;
|
6989
|
+
childCategoryList: any[];
|
6990
|
+
}[];
|
6991
|
+
}[];
|
6992
|
+
}[];
|
6515
6993
|
tags: {
|
6516
6994
|
id: string;
|
6517
6995
|
name: string;
|
@@ -6540,11 +7018,34 @@ export declare const mainChatContract: {
|
|
6540
7018
|
handledTime: number | null;
|
6541
7019
|
firstResponseTime: number | null;
|
6542
7020
|
wrapUpForm: {
|
7021
|
+
type: string;
|
6543
7022
|
id: string;
|
6544
7023
|
disposition: string | null;
|
6545
7024
|
createdAt: Date;
|
6546
7025
|
updatedAt: Date;
|
6547
7026
|
deletedAt: Date | null;
|
7027
|
+
categories: {
|
7028
|
+
id: string;
|
7029
|
+
value: string;
|
7030
|
+
createdAt: Date;
|
7031
|
+
updatedAt: Date;
|
7032
|
+
deletedAt: Date | null;
|
7033
|
+
level: 2 | 1 | 3;
|
7034
|
+
parentId: string | null;
|
7035
|
+
childCategoryList: {
|
7036
|
+
id: string;
|
7037
|
+
value: string;
|
7038
|
+
level: 2 | 1 | 3;
|
7039
|
+
parentId: string | null;
|
7040
|
+
childCategoryList: {
|
7041
|
+
id: string;
|
7042
|
+
value: string;
|
7043
|
+
level: 2 | 1 | 3;
|
7044
|
+
parentId: string | null;
|
7045
|
+
childCategoryList: any[];
|
7046
|
+
}[];
|
7047
|
+
}[];
|
7048
|
+
}[];
|
6548
7049
|
tags: {
|
6549
7050
|
id: string;
|
6550
7051
|
name: string;
|
@@ -6573,11 +7074,34 @@ export declare const mainChatContract: {
|
|
6573
7074
|
handledTime: number | null;
|
6574
7075
|
firstResponseTime: number | null;
|
6575
7076
|
wrapUpForm: {
|
7077
|
+
type: string;
|
6576
7078
|
id: string;
|
6577
7079
|
disposition: string | null;
|
6578
7080
|
createdAt: Date;
|
6579
7081
|
updatedAt: Date;
|
6580
7082
|
deletedAt: Date | null;
|
7083
|
+
categories: {
|
7084
|
+
id: string;
|
7085
|
+
value: string;
|
7086
|
+
createdAt: Date;
|
7087
|
+
updatedAt: Date;
|
7088
|
+
deletedAt: Date | null;
|
7089
|
+
level: 2 | 1 | 3;
|
7090
|
+
parentId: string | null;
|
7091
|
+
childCategoryList: {
|
7092
|
+
id: string;
|
7093
|
+
value: string;
|
7094
|
+
level: 2 | 1 | 3;
|
7095
|
+
parentId: string | null;
|
7096
|
+
childCategoryList: {
|
7097
|
+
id: string;
|
7098
|
+
value: string;
|
7099
|
+
level: 2 | 1 | 3;
|
7100
|
+
parentId: string | null;
|
7101
|
+
childCategoryList: any[];
|
7102
|
+
}[];
|
7103
|
+
}[];
|
7104
|
+
}[];
|
6581
7105
|
tags: {
|
6582
7106
|
id: string;
|
6583
7107
|
name: string;
|
@@ -6887,11 +7411,34 @@ export declare const mainChatContract: {
|
|
6887
7411
|
handledTime: number | null;
|
6888
7412
|
firstResponseTime: number | null;
|
6889
7413
|
wrapUpForm: {
|
7414
|
+
type: string;
|
6890
7415
|
id: string;
|
6891
7416
|
disposition: string | null;
|
6892
7417
|
createdAt: Date;
|
6893
7418
|
updatedAt: Date;
|
6894
7419
|
deletedAt: Date | null;
|
7420
|
+
categories: {
|
7421
|
+
id: string;
|
7422
|
+
value: string;
|
7423
|
+
createdAt: Date;
|
7424
|
+
updatedAt: Date;
|
7425
|
+
deletedAt: Date | null;
|
7426
|
+
level: 2 | 1 | 3;
|
7427
|
+
parentId: string | null;
|
7428
|
+
childCategoryList: {
|
7429
|
+
id: string;
|
7430
|
+
value: string;
|
7431
|
+
level: 2 | 1 | 3;
|
7432
|
+
parentId: string | null;
|
7433
|
+
childCategoryList: {
|
7434
|
+
id: string;
|
7435
|
+
value: string;
|
7436
|
+
level: 2 | 1 | 3;
|
7437
|
+
parentId: string | null;
|
7438
|
+
childCategoryList: any[];
|
7439
|
+
}[];
|
7440
|
+
}[];
|
7441
|
+
}[];
|
6895
7442
|
tags: {
|
6896
7443
|
id: string;
|
6897
7444
|
name: string;
|
@@ -7201,11 +7748,34 @@ export declare const mainChatContract: {
|
|
7201
7748
|
handledTime: number | null;
|
7202
7749
|
firstResponseTime: number | null;
|
7203
7750
|
wrapUpForm: {
|
7751
|
+
type: string;
|
7204
7752
|
id: string;
|
7205
7753
|
disposition: string | null;
|
7206
7754
|
createdAt: Date;
|
7207
7755
|
updatedAt: Date;
|
7208
7756
|
deletedAt: Date | null;
|
7757
|
+
categories: {
|
7758
|
+
id: string;
|
7759
|
+
value: string;
|
7760
|
+
createdAt: Date;
|
7761
|
+
updatedAt: Date;
|
7762
|
+
deletedAt: Date | null;
|
7763
|
+
level: 2 | 1 | 3;
|
7764
|
+
parentId: string | null;
|
7765
|
+
childCategoryList: {
|
7766
|
+
id: string;
|
7767
|
+
value: string;
|
7768
|
+
level: 2 | 1 | 3;
|
7769
|
+
parentId: string | null;
|
7770
|
+
childCategoryList: {
|
7771
|
+
id: string;
|
7772
|
+
value: string;
|
7773
|
+
level: 2 | 1 | 3;
|
7774
|
+
parentId: string | null;
|
7775
|
+
childCategoryList: any[];
|
7776
|
+
}[];
|
7777
|
+
}[];
|
7778
|
+
}[];
|
7209
7779
|
tags: {
|
7210
7780
|
id: string;
|
7211
7781
|
name: string;
|
@@ -7527,11 +8097,34 @@ export declare const mainChatContract: {
|
|
7527
8097
|
handledTime: number | null;
|
7528
8098
|
firstResponseTime: number | null;
|
7529
8099
|
wrapUpForm: {
|
8100
|
+
type: string;
|
7530
8101
|
id: string;
|
7531
8102
|
disposition: string | null;
|
7532
8103
|
createdAt: Date;
|
7533
8104
|
updatedAt: Date;
|
7534
8105
|
deletedAt: Date | null;
|
8106
|
+
categories: {
|
8107
|
+
id: string;
|
8108
|
+
value: string;
|
8109
|
+
createdAt: Date;
|
8110
|
+
updatedAt: Date;
|
8111
|
+
deletedAt: Date | null;
|
8112
|
+
level: 2 | 1 | 3;
|
8113
|
+
parentId: string | null;
|
8114
|
+
childCategoryList: {
|
8115
|
+
id: string;
|
8116
|
+
value: string;
|
8117
|
+
level: 2 | 1 | 3;
|
8118
|
+
parentId: string | null;
|
8119
|
+
childCategoryList: {
|
8120
|
+
id: string;
|
8121
|
+
value: string;
|
8122
|
+
level: 2 | 1 | 3;
|
8123
|
+
parentId: string | null;
|
8124
|
+
childCategoryList: any[];
|
8125
|
+
}[];
|
8126
|
+
}[];
|
8127
|
+
}[];
|
7535
8128
|
tags: {
|
7536
8129
|
id: string;
|
7537
8130
|
name: string;
|
@@ -7851,11 +8444,34 @@ export declare const mainChatContract: {
|
|
7851
8444
|
handledTime: number | null;
|
7852
8445
|
firstResponseTime: number | null;
|
7853
8446
|
wrapUpForm: {
|
8447
|
+
type: string;
|
7854
8448
|
id: string;
|
7855
8449
|
disposition: string | null;
|
7856
8450
|
createdAt: Date;
|
7857
8451
|
updatedAt: Date;
|
7858
8452
|
deletedAt: Date | null;
|
8453
|
+
categories: {
|
8454
|
+
id: string;
|
8455
|
+
value: string;
|
8456
|
+
createdAt: Date;
|
8457
|
+
updatedAt: Date;
|
8458
|
+
deletedAt: Date | null;
|
8459
|
+
level: 2 | 1 | 3;
|
8460
|
+
parentId: string | null;
|
8461
|
+
childCategoryList: {
|
8462
|
+
id: string;
|
8463
|
+
value: string;
|
8464
|
+
level: 2 | 1 | 3;
|
8465
|
+
parentId: string | null;
|
8466
|
+
childCategoryList: {
|
8467
|
+
id: string;
|
8468
|
+
value: string;
|
8469
|
+
level: 2 | 1 | 3;
|
8470
|
+
parentId: string | null;
|
8471
|
+
childCategoryList: any[];
|
8472
|
+
}[];
|
8473
|
+
}[];
|
8474
|
+
}[];
|
7859
8475
|
tags: {
|
7860
8476
|
id: string;
|
7861
8477
|
name: string;
|
@@ -10619,8 +11235,7 @@ export declare const mainChatContract: {
|
|
10619
11235
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
10620
11236
|
note: z.ZodNullable<z.ZodString>;
|
10621
11237
|
disposition: z.ZodNullable<z.ZodString>;
|
10622
|
-
|
10623
|
-
callTo: z.ZodNullable<z.ZodString>;
|
11238
|
+
type: z.ZodString;
|
10624
11239
|
tags: z.ZodArray<z.ZodObject<{
|
10625
11240
|
id: z.ZodString;
|
10626
11241
|
createdAt: z.ZodDate;
|
@@ -10640,12 +11255,137 @@ export declare const mainChatContract: {
|
|
10640
11255
|
updatedAt: Date;
|
10641
11256
|
deletedAt: Date | null;
|
10642
11257
|
}>, "many">;
|
11258
|
+
categories: z.ZodArray<z.ZodObject<{
|
11259
|
+
id: z.ZodString;
|
11260
|
+
createdAt: z.ZodDate;
|
11261
|
+
updatedAt: z.ZodDate;
|
11262
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
11263
|
+
value: z.ZodString;
|
11264
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
11265
|
+
parentId: z.ZodNullable<z.ZodString>;
|
11266
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
11267
|
+
id: z.ZodString;
|
11268
|
+
value: z.ZodString;
|
11269
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
11270
|
+
parentId: z.ZodNullable<z.ZodString>;
|
11271
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
11272
|
+
id: z.ZodString;
|
11273
|
+
value: z.ZodString;
|
11274
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
11275
|
+
parentId: z.ZodNullable<z.ZodString>;
|
11276
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
11277
|
+
}, "strip", z.ZodTypeAny, {
|
11278
|
+
id: string;
|
11279
|
+
value: string;
|
11280
|
+
level: 2 | 1 | 3;
|
11281
|
+
parentId: string | null;
|
11282
|
+
childCategoryList: any[];
|
11283
|
+
}, {
|
11284
|
+
id: string;
|
11285
|
+
value: string;
|
11286
|
+
level: 2 | 1 | 3;
|
11287
|
+
parentId: string | null;
|
11288
|
+
childCategoryList: any[];
|
11289
|
+
}>, "many">;
|
11290
|
+
}, "strip", z.ZodTypeAny, {
|
11291
|
+
id: string;
|
11292
|
+
value: string;
|
11293
|
+
level: 2 | 1 | 3;
|
11294
|
+
parentId: string | null;
|
11295
|
+
childCategoryList: {
|
11296
|
+
id: string;
|
11297
|
+
value: string;
|
11298
|
+
level: 2 | 1 | 3;
|
11299
|
+
parentId: string | null;
|
11300
|
+
childCategoryList: any[];
|
11301
|
+
}[];
|
11302
|
+
}, {
|
11303
|
+
id: string;
|
11304
|
+
value: string;
|
11305
|
+
level: 2 | 1 | 3;
|
11306
|
+
parentId: string | null;
|
11307
|
+
childCategoryList: {
|
11308
|
+
id: string;
|
11309
|
+
value: string;
|
11310
|
+
level: 2 | 1 | 3;
|
11311
|
+
parentId: string | null;
|
11312
|
+
childCategoryList: any[];
|
11313
|
+
}[];
|
11314
|
+
}>, "many">;
|
11315
|
+
}, "strip", z.ZodTypeAny, {
|
11316
|
+
id: string;
|
11317
|
+
value: string;
|
11318
|
+
createdAt: Date;
|
11319
|
+
updatedAt: Date;
|
11320
|
+
deletedAt: Date | null;
|
11321
|
+
level: 2 | 1 | 3;
|
11322
|
+
parentId: string | null;
|
11323
|
+
childCategoryList: {
|
11324
|
+
id: string;
|
11325
|
+
value: string;
|
11326
|
+
level: 2 | 1 | 3;
|
11327
|
+
parentId: string | null;
|
11328
|
+
childCategoryList: {
|
11329
|
+
id: string;
|
11330
|
+
value: string;
|
11331
|
+
level: 2 | 1 | 3;
|
11332
|
+
parentId: string | null;
|
11333
|
+
childCategoryList: any[];
|
11334
|
+
}[];
|
11335
|
+
}[];
|
11336
|
+
}, {
|
11337
|
+
id: string;
|
11338
|
+
value: string;
|
11339
|
+
createdAt: Date;
|
11340
|
+
updatedAt: Date;
|
11341
|
+
deletedAt: Date | null;
|
11342
|
+
level: 2 | 1 | 3;
|
11343
|
+
parentId: string | null;
|
11344
|
+
childCategoryList: {
|
11345
|
+
id: string;
|
11346
|
+
value: string;
|
11347
|
+
level: 2 | 1 | 3;
|
11348
|
+
parentId: string | null;
|
11349
|
+
childCategoryList: {
|
11350
|
+
id: string;
|
11351
|
+
value: string;
|
11352
|
+
level: 2 | 1 | 3;
|
11353
|
+
parentId: string | null;
|
11354
|
+
childCategoryList: any[];
|
11355
|
+
}[];
|
11356
|
+
}[];
|
11357
|
+
}>, "many">;
|
11358
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
11359
|
+
callTo: z.ZodNullable<z.ZodString>;
|
10643
11360
|
}, "strip", z.ZodTypeAny, {
|
11361
|
+
type: string;
|
10644
11362
|
id: string;
|
10645
11363
|
disposition: string | null;
|
10646
11364
|
createdAt: Date;
|
10647
11365
|
updatedAt: Date;
|
10648
11366
|
deletedAt: Date | null;
|
11367
|
+
categories: {
|
11368
|
+
id: string;
|
11369
|
+
value: string;
|
11370
|
+
createdAt: Date;
|
11371
|
+
updatedAt: Date;
|
11372
|
+
deletedAt: Date | null;
|
11373
|
+
level: 2 | 1 | 3;
|
11374
|
+
parentId: string | null;
|
11375
|
+
childCategoryList: {
|
11376
|
+
id: string;
|
11377
|
+
value: string;
|
11378
|
+
level: 2 | 1 | 3;
|
11379
|
+
parentId: string | null;
|
11380
|
+
childCategoryList: {
|
11381
|
+
id: string;
|
11382
|
+
value: string;
|
11383
|
+
level: 2 | 1 | 3;
|
11384
|
+
parentId: string | null;
|
11385
|
+
childCategoryList: any[];
|
11386
|
+
}[];
|
11387
|
+
}[];
|
11388
|
+
}[];
|
10649
11389
|
tags: {
|
10650
11390
|
id: string;
|
10651
11391
|
name: string;
|
@@ -10657,11 +11397,34 @@ export declare const mainChatContract: {
|
|
10657
11397
|
callTo: string | null;
|
10658
11398
|
note: string | null;
|
10659
11399
|
}, {
|
11400
|
+
type: string;
|
10660
11401
|
id: string;
|
10661
11402
|
disposition: string | null;
|
10662
11403
|
createdAt: Date;
|
10663
11404
|
updatedAt: Date;
|
10664
11405
|
deletedAt: Date | null;
|
11406
|
+
categories: {
|
11407
|
+
id: string;
|
11408
|
+
value: string;
|
11409
|
+
createdAt: Date;
|
11410
|
+
updatedAt: Date;
|
11411
|
+
deletedAt: Date | null;
|
11412
|
+
level: 2 | 1 | 3;
|
11413
|
+
parentId: string | null;
|
11414
|
+
childCategoryList: {
|
11415
|
+
id: string;
|
11416
|
+
value: string;
|
11417
|
+
level: 2 | 1 | 3;
|
11418
|
+
parentId: string | null;
|
11419
|
+
childCategoryList: {
|
11420
|
+
id: string;
|
11421
|
+
value: string;
|
11422
|
+
level: 2 | 1 | 3;
|
11423
|
+
parentId: string | null;
|
11424
|
+
childCategoryList: any[];
|
11425
|
+
}[];
|
11426
|
+
}[];
|
11427
|
+
}[];
|
10665
11428
|
tags: {
|
10666
11429
|
id: string;
|
10667
11430
|
name: string;
|
@@ -10690,11 +11453,34 @@ export declare const mainChatContract: {
|
|
10690
11453
|
handledTime: number | null;
|
10691
11454
|
firstResponseTime: number | null;
|
10692
11455
|
wrapUpForm: {
|
11456
|
+
type: string;
|
10693
11457
|
id: string;
|
10694
11458
|
disposition: string | null;
|
10695
11459
|
createdAt: Date;
|
10696
11460
|
updatedAt: Date;
|
10697
11461
|
deletedAt: Date | null;
|
11462
|
+
categories: {
|
11463
|
+
id: string;
|
11464
|
+
value: string;
|
11465
|
+
createdAt: Date;
|
11466
|
+
updatedAt: Date;
|
11467
|
+
deletedAt: Date | null;
|
11468
|
+
level: 2 | 1 | 3;
|
11469
|
+
parentId: string | null;
|
11470
|
+
childCategoryList: {
|
11471
|
+
id: string;
|
11472
|
+
value: string;
|
11473
|
+
level: 2 | 1 | 3;
|
11474
|
+
parentId: string | null;
|
11475
|
+
childCategoryList: {
|
11476
|
+
id: string;
|
11477
|
+
value: string;
|
11478
|
+
level: 2 | 1 | 3;
|
11479
|
+
parentId: string | null;
|
11480
|
+
childCategoryList: any[];
|
11481
|
+
}[];
|
11482
|
+
}[];
|
11483
|
+
}[];
|
10698
11484
|
tags: {
|
10699
11485
|
id: string;
|
10700
11486
|
name: string;
|
@@ -10723,11 +11509,34 @@ export declare const mainChatContract: {
|
|
10723
11509
|
handledTime: number | null;
|
10724
11510
|
firstResponseTime: number | null;
|
10725
11511
|
wrapUpForm: {
|
11512
|
+
type: string;
|
10726
11513
|
id: string;
|
10727
11514
|
disposition: string | null;
|
10728
11515
|
createdAt: Date;
|
10729
11516
|
updatedAt: Date;
|
10730
11517
|
deletedAt: Date | null;
|
11518
|
+
categories: {
|
11519
|
+
id: string;
|
11520
|
+
value: string;
|
11521
|
+
createdAt: Date;
|
11522
|
+
updatedAt: Date;
|
11523
|
+
deletedAt: Date | null;
|
11524
|
+
level: 2 | 1 | 3;
|
11525
|
+
parentId: string | null;
|
11526
|
+
childCategoryList: {
|
11527
|
+
id: string;
|
11528
|
+
value: string;
|
11529
|
+
level: 2 | 1 | 3;
|
11530
|
+
parentId: string | null;
|
11531
|
+
childCategoryList: {
|
11532
|
+
id: string;
|
11533
|
+
value: string;
|
11534
|
+
level: 2 | 1 | 3;
|
11535
|
+
parentId: string | null;
|
11536
|
+
childCategoryList: any[];
|
11537
|
+
}[];
|
11538
|
+
}[];
|
11539
|
+
}[];
|
10731
11540
|
tags: {
|
10732
11541
|
id: string;
|
10733
11542
|
name: string;
|
@@ -11037,11 +11846,34 @@ export declare const mainChatContract: {
|
|
11037
11846
|
handledTime: number | null;
|
11038
11847
|
firstResponseTime: number | null;
|
11039
11848
|
wrapUpForm: {
|
11849
|
+
type: string;
|
11040
11850
|
id: string;
|
11041
11851
|
disposition: string | null;
|
11042
11852
|
createdAt: Date;
|
11043
11853
|
updatedAt: Date;
|
11044
11854
|
deletedAt: Date | null;
|
11855
|
+
categories: {
|
11856
|
+
id: string;
|
11857
|
+
value: string;
|
11858
|
+
createdAt: Date;
|
11859
|
+
updatedAt: Date;
|
11860
|
+
deletedAt: Date | null;
|
11861
|
+
level: 2 | 1 | 3;
|
11862
|
+
parentId: string | null;
|
11863
|
+
childCategoryList: {
|
11864
|
+
id: string;
|
11865
|
+
value: string;
|
11866
|
+
level: 2 | 1 | 3;
|
11867
|
+
parentId: string | null;
|
11868
|
+
childCategoryList: {
|
11869
|
+
id: string;
|
11870
|
+
value: string;
|
11871
|
+
level: 2 | 1 | 3;
|
11872
|
+
parentId: string | null;
|
11873
|
+
childCategoryList: any[];
|
11874
|
+
}[];
|
11875
|
+
}[];
|
11876
|
+
}[];
|
11045
11877
|
tags: {
|
11046
11878
|
id: string;
|
11047
11879
|
name: string;
|
@@ -11351,11 +12183,34 @@ export declare const mainChatContract: {
|
|
11351
12183
|
handledTime: number | null;
|
11352
12184
|
firstResponseTime: number | null;
|
11353
12185
|
wrapUpForm: {
|
12186
|
+
type: string;
|
11354
12187
|
id: string;
|
11355
12188
|
disposition: string | null;
|
11356
12189
|
createdAt: Date;
|
11357
12190
|
updatedAt: Date;
|
11358
12191
|
deletedAt: Date | null;
|
12192
|
+
categories: {
|
12193
|
+
id: string;
|
12194
|
+
value: string;
|
12195
|
+
createdAt: Date;
|
12196
|
+
updatedAt: Date;
|
12197
|
+
deletedAt: Date | null;
|
12198
|
+
level: 2 | 1 | 3;
|
12199
|
+
parentId: string | null;
|
12200
|
+
childCategoryList: {
|
12201
|
+
id: string;
|
12202
|
+
value: string;
|
12203
|
+
level: 2 | 1 | 3;
|
12204
|
+
parentId: string | null;
|
12205
|
+
childCategoryList: {
|
12206
|
+
id: string;
|
12207
|
+
value: string;
|
12208
|
+
level: 2 | 1 | 3;
|
12209
|
+
parentId: string | null;
|
12210
|
+
childCategoryList: any[];
|
12211
|
+
}[];
|
12212
|
+
}[];
|
12213
|
+
}[];
|
11359
12214
|
tags: {
|
11360
12215
|
id: string;
|
11361
12216
|
name: string;
|
@@ -11667,11 +12522,34 @@ export declare const mainChatContract: {
|
|
11667
12522
|
handledTime: number | null;
|
11668
12523
|
firstResponseTime: number | null;
|
11669
12524
|
wrapUpForm: {
|
12525
|
+
type: string;
|
11670
12526
|
id: string;
|
11671
12527
|
disposition: string | null;
|
11672
12528
|
createdAt: Date;
|
11673
12529
|
updatedAt: Date;
|
11674
12530
|
deletedAt: Date | null;
|
12531
|
+
categories: {
|
12532
|
+
id: string;
|
12533
|
+
value: string;
|
12534
|
+
createdAt: Date;
|
12535
|
+
updatedAt: Date;
|
12536
|
+
deletedAt: Date | null;
|
12537
|
+
level: 2 | 1 | 3;
|
12538
|
+
parentId: string | null;
|
12539
|
+
childCategoryList: {
|
12540
|
+
id: string;
|
12541
|
+
value: string;
|
12542
|
+
level: 2 | 1 | 3;
|
12543
|
+
parentId: string | null;
|
12544
|
+
childCategoryList: {
|
12545
|
+
id: string;
|
12546
|
+
value: string;
|
12547
|
+
level: 2 | 1 | 3;
|
12548
|
+
parentId: string | null;
|
12549
|
+
childCategoryList: any[];
|
12550
|
+
}[];
|
12551
|
+
}[];
|
12552
|
+
}[];
|
11675
12553
|
tags: {
|
11676
12554
|
id: string;
|
11677
12555
|
name: string;
|
@@ -11984,11 +12862,34 @@ export declare const mainChatContract: {
|
|
11984
12862
|
handledTime: number | null;
|
11985
12863
|
firstResponseTime: number | null;
|
11986
12864
|
wrapUpForm: {
|
12865
|
+
type: string;
|
11987
12866
|
id: string;
|
11988
12867
|
disposition: string | null;
|
11989
12868
|
createdAt: Date;
|
11990
12869
|
updatedAt: Date;
|
11991
12870
|
deletedAt: Date | null;
|
12871
|
+
categories: {
|
12872
|
+
id: string;
|
12873
|
+
value: string;
|
12874
|
+
createdAt: Date;
|
12875
|
+
updatedAt: Date;
|
12876
|
+
deletedAt: Date | null;
|
12877
|
+
level: 2 | 1 | 3;
|
12878
|
+
parentId: string | null;
|
12879
|
+
childCategoryList: {
|
12880
|
+
id: string;
|
12881
|
+
value: string;
|
12882
|
+
level: 2 | 1 | 3;
|
12883
|
+
parentId: string | null;
|
12884
|
+
childCategoryList: {
|
12885
|
+
id: string;
|
12886
|
+
value: string;
|
12887
|
+
level: 2 | 1 | 3;
|
12888
|
+
parentId: string | null;
|
12889
|
+
childCategoryList: any[];
|
12890
|
+
}[];
|
12891
|
+
}[];
|
12892
|
+
}[];
|
11992
12893
|
tags: {
|
11993
12894
|
id: string;
|
11994
12895
|
name: string;
|
@@ -14164,8 +15065,7 @@ export declare const mainChatContract: {
|
|
14164
15065
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
14165
15066
|
note: z.ZodNullable<z.ZodString>;
|
14166
15067
|
disposition: z.ZodNullable<z.ZodString>;
|
14167
|
-
|
14168
|
-
callTo: z.ZodNullable<z.ZodString>;
|
15068
|
+
type: z.ZodString;
|
14169
15069
|
tags: z.ZodArray<z.ZodObject<{
|
14170
15070
|
id: z.ZodString;
|
14171
15071
|
createdAt: z.ZodDate;
|
@@ -14185,12 +15085,137 @@ export declare const mainChatContract: {
|
|
14185
15085
|
updatedAt: Date;
|
14186
15086
|
deletedAt: Date | null;
|
14187
15087
|
}>, "many">;
|
15088
|
+
categories: z.ZodArray<z.ZodObject<{
|
15089
|
+
id: z.ZodString;
|
15090
|
+
createdAt: z.ZodDate;
|
15091
|
+
updatedAt: z.ZodDate;
|
15092
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
15093
|
+
value: z.ZodString;
|
15094
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
15095
|
+
parentId: z.ZodNullable<z.ZodString>;
|
15096
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
15097
|
+
id: z.ZodString;
|
15098
|
+
value: z.ZodString;
|
15099
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
15100
|
+
parentId: z.ZodNullable<z.ZodString>;
|
15101
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
15102
|
+
id: z.ZodString;
|
15103
|
+
value: z.ZodString;
|
15104
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
15105
|
+
parentId: z.ZodNullable<z.ZodString>;
|
15106
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
15107
|
+
}, "strip", z.ZodTypeAny, {
|
15108
|
+
id: string;
|
15109
|
+
value: string;
|
15110
|
+
level: 2 | 1 | 3;
|
15111
|
+
parentId: string | null;
|
15112
|
+
childCategoryList: any[];
|
15113
|
+
}, {
|
15114
|
+
id: string;
|
15115
|
+
value: string;
|
15116
|
+
level: 2 | 1 | 3;
|
15117
|
+
parentId: string | null;
|
15118
|
+
childCategoryList: any[];
|
15119
|
+
}>, "many">;
|
15120
|
+
}, "strip", z.ZodTypeAny, {
|
15121
|
+
id: string;
|
15122
|
+
value: string;
|
15123
|
+
level: 2 | 1 | 3;
|
15124
|
+
parentId: string | null;
|
15125
|
+
childCategoryList: {
|
15126
|
+
id: string;
|
15127
|
+
value: string;
|
15128
|
+
level: 2 | 1 | 3;
|
15129
|
+
parentId: string | null;
|
15130
|
+
childCategoryList: any[];
|
15131
|
+
}[];
|
15132
|
+
}, {
|
15133
|
+
id: string;
|
15134
|
+
value: string;
|
15135
|
+
level: 2 | 1 | 3;
|
15136
|
+
parentId: string | null;
|
15137
|
+
childCategoryList: {
|
15138
|
+
id: string;
|
15139
|
+
value: string;
|
15140
|
+
level: 2 | 1 | 3;
|
15141
|
+
parentId: string | null;
|
15142
|
+
childCategoryList: any[];
|
15143
|
+
}[];
|
15144
|
+
}>, "many">;
|
15145
|
+
}, "strip", z.ZodTypeAny, {
|
15146
|
+
id: string;
|
15147
|
+
value: string;
|
15148
|
+
createdAt: Date;
|
15149
|
+
updatedAt: Date;
|
15150
|
+
deletedAt: Date | null;
|
15151
|
+
level: 2 | 1 | 3;
|
15152
|
+
parentId: string | null;
|
15153
|
+
childCategoryList: {
|
15154
|
+
id: string;
|
15155
|
+
value: string;
|
15156
|
+
level: 2 | 1 | 3;
|
15157
|
+
parentId: string | null;
|
15158
|
+
childCategoryList: {
|
15159
|
+
id: string;
|
15160
|
+
value: string;
|
15161
|
+
level: 2 | 1 | 3;
|
15162
|
+
parentId: string | null;
|
15163
|
+
childCategoryList: any[];
|
15164
|
+
}[];
|
15165
|
+
}[];
|
15166
|
+
}, {
|
15167
|
+
id: string;
|
15168
|
+
value: string;
|
15169
|
+
createdAt: Date;
|
15170
|
+
updatedAt: Date;
|
15171
|
+
deletedAt: Date | null;
|
15172
|
+
level: 2 | 1 | 3;
|
15173
|
+
parentId: string | null;
|
15174
|
+
childCategoryList: {
|
15175
|
+
id: string;
|
15176
|
+
value: string;
|
15177
|
+
level: 2 | 1 | 3;
|
15178
|
+
parentId: string | null;
|
15179
|
+
childCategoryList: {
|
15180
|
+
id: string;
|
15181
|
+
value: string;
|
15182
|
+
level: 2 | 1 | 3;
|
15183
|
+
parentId: string | null;
|
15184
|
+
childCategoryList: any[];
|
15185
|
+
}[];
|
15186
|
+
}[];
|
15187
|
+
}>, "many">;
|
15188
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
15189
|
+
callTo: z.ZodNullable<z.ZodString>;
|
14188
15190
|
}, "strip", z.ZodTypeAny, {
|
15191
|
+
type: string;
|
14189
15192
|
id: string;
|
14190
15193
|
disposition: string | null;
|
14191
15194
|
createdAt: Date;
|
14192
15195
|
updatedAt: Date;
|
14193
15196
|
deletedAt: Date | null;
|
15197
|
+
categories: {
|
15198
|
+
id: string;
|
15199
|
+
value: string;
|
15200
|
+
createdAt: Date;
|
15201
|
+
updatedAt: Date;
|
15202
|
+
deletedAt: Date | null;
|
15203
|
+
level: 2 | 1 | 3;
|
15204
|
+
parentId: string | null;
|
15205
|
+
childCategoryList: {
|
15206
|
+
id: string;
|
15207
|
+
value: string;
|
15208
|
+
level: 2 | 1 | 3;
|
15209
|
+
parentId: string | null;
|
15210
|
+
childCategoryList: {
|
15211
|
+
id: string;
|
15212
|
+
value: string;
|
15213
|
+
level: 2 | 1 | 3;
|
15214
|
+
parentId: string | null;
|
15215
|
+
childCategoryList: any[];
|
15216
|
+
}[];
|
15217
|
+
}[];
|
15218
|
+
}[];
|
14194
15219
|
tags: {
|
14195
15220
|
id: string;
|
14196
15221
|
name: string;
|
@@ -14202,11 +15227,34 @@ export declare const mainChatContract: {
|
|
14202
15227
|
callTo: string | null;
|
14203
15228
|
note: string | null;
|
14204
15229
|
}, {
|
15230
|
+
type: string;
|
14205
15231
|
id: string;
|
14206
15232
|
disposition: string | null;
|
14207
15233
|
createdAt: Date;
|
14208
15234
|
updatedAt: Date;
|
14209
15235
|
deletedAt: Date | null;
|
15236
|
+
categories: {
|
15237
|
+
id: string;
|
15238
|
+
value: string;
|
15239
|
+
createdAt: Date;
|
15240
|
+
updatedAt: Date;
|
15241
|
+
deletedAt: Date | null;
|
15242
|
+
level: 2 | 1 | 3;
|
15243
|
+
parentId: string | null;
|
15244
|
+
childCategoryList: {
|
15245
|
+
id: string;
|
15246
|
+
value: string;
|
15247
|
+
level: 2 | 1 | 3;
|
15248
|
+
parentId: string | null;
|
15249
|
+
childCategoryList: {
|
15250
|
+
id: string;
|
15251
|
+
value: string;
|
15252
|
+
level: 2 | 1 | 3;
|
15253
|
+
parentId: string | null;
|
15254
|
+
childCategoryList: any[];
|
15255
|
+
}[];
|
15256
|
+
}[];
|
15257
|
+
}[];
|
14210
15258
|
tags: {
|
14211
15259
|
id: string;
|
14212
15260
|
name: string;
|
@@ -14235,11 +15283,34 @@ export declare const mainChatContract: {
|
|
14235
15283
|
handledTime: number | null;
|
14236
15284
|
firstResponseTime: number | null;
|
14237
15285
|
wrapUpForm: {
|
15286
|
+
type: string;
|
14238
15287
|
id: string;
|
14239
15288
|
disposition: string | null;
|
14240
15289
|
createdAt: Date;
|
14241
15290
|
updatedAt: Date;
|
14242
15291
|
deletedAt: Date | null;
|
15292
|
+
categories: {
|
15293
|
+
id: string;
|
15294
|
+
value: string;
|
15295
|
+
createdAt: Date;
|
15296
|
+
updatedAt: Date;
|
15297
|
+
deletedAt: Date | null;
|
15298
|
+
level: 2 | 1 | 3;
|
15299
|
+
parentId: string | null;
|
15300
|
+
childCategoryList: {
|
15301
|
+
id: string;
|
15302
|
+
value: string;
|
15303
|
+
level: 2 | 1 | 3;
|
15304
|
+
parentId: string | null;
|
15305
|
+
childCategoryList: {
|
15306
|
+
id: string;
|
15307
|
+
value: string;
|
15308
|
+
level: 2 | 1 | 3;
|
15309
|
+
parentId: string | null;
|
15310
|
+
childCategoryList: any[];
|
15311
|
+
}[];
|
15312
|
+
}[];
|
15313
|
+
}[];
|
14243
15314
|
tags: {
|
14244
15315
|
id: string;
|
14245
15316
|
name: string;
|
@@ -14268,11 +15339,34 @@ export declare const mainChatContract: {
|
|
14268
15339
|
handledTime: number | null;
|
14269
15340
|
firstResponseTime: number | null;
|
14270
15341
|
wrapUpForm: {
|
15342
|
+
type: string;
|
14271
15343
|
id: string;
|
14272
15344
|
disposition: string | null;
|
14273
15345
|
createdAt: Date;
|
14274
15346
|
updatedAt: Date;
|
14275
15347
|
deletedAt: Date | null;
|
15348
|
+
categories: {
|
15349
|
+
id: string;
|
15350
|
+
value: string;
|
15351
|
+
createdAt: Date;
|
15352
|
+
updatedAt: Date;
|
15353
|
+
deletedAt: Date | null;
|
15354
|
+
level: 2 | 1 | 3;
|
15355
|
+
parentId: string | null;
|
15356
|
+
childCategoryList: {
|
15357
|
+
id: string;
|
15358
|
+
value: string;
|
15359
|
+
level: 2 | 1 | 3;
|
15360
|
+
parentId: string | null;
|
15361
|
+
childCategoryList: {
|
15362
|
+
id: string;
|
15363
|
+
value: string;
|
15364
|
+
level: 2 | 1 | 3;
|
15365
|
+
parentId: string | null;
|
15366
|
+
childCategoryList: any[];
|
15367
|
+
}[];
|
15368
|
+
}[];
|
15369
|
+
}[];
|
14276
15370
|
tags: {
|
14277
15371
|
id: string;
|
14278
15372
|
name: string;
|
@@ -14582,11 +15676,34 @@ export declare const mainChatContract: {
|
|
14582
15676
|
handledTime: number | null;
|
14583
15677
|
firstResponseTime: number | null;
|
14584
15678
|
wrapUpForm: {
|
15679
|
+
type: string;
|
14585
15680
|
id: string;
|
14586
15681
|
disposition: string | null;
|
14587
15682
|
createdAt: Date;
|
14588
15683
|
updatedAt: Date;
|
14589
15684
|
deletedAt: Date | null;
|
15685
|
+
categories: {
|
15686
|
+
id: string;
|
15687
|
+
value: string;
|
15688
|
+
createdAt: Date;
|
15689
|
+
updatedAt: Date;
|
15690
|
+
deletedAt: Date | null;
|
15691
|
+
level: 2 | 1 | 3;
|
15692
|
+
parentId: string | null;
|
15693
|
+
childCategoryList: {
|
15694
|
+
id: string;
|
15695
|
+
value: string;
|
15696
|
+
level: 2 | 1 | 3;
|
15697
|
+
parentId: string | null;
|
15698
|
+
childCategoryList: {
|
15699
|
+
id: string;
|
15700
|
+
value: string;
|
15701
|
+
level: 2 | 1 | 3;
|
15702
|
+
parentId: string | null;
|
15703
|
+
childCategoryList: any[];
|
15704
|
+
}[];
|
15705
|
+
}[];
|
15706
|
+
}[];
|
14590
15707
|
tags: {
|
14591
15708
|
id: string;
|
14592
15709
|
name: string;
|
@@ -14896,11 +16013,34 @@ export declare const mainChatContract: {
|
|
14896
16013
|
handledTime: number | null;
|
14897
16014
|
firstResponseTime: number | null;
|
14898
16015
|
wrapUpForm: {
|
16016
|
+
type: string;
|
14899
16017
|
id: string;
|
14900
16018
|
disposition: string | null;
|
14901
16019
|
createdAt: Date;
|
14902
16020
|
updatedAt: Date;
|
14903
16021
|
deletedAt: Date | null;
|
16022
|
+
categories: {
|
16023
|
+
id: string;
|
16024
|
+
value: string;
|
16025
|
+
createdAt: Date;
|
16026
|
+
updatedAt: Date;
|
16027
|
+
deletedAt: Date | null;
|
16028
|
+
level: 2 | 1 | 3;
|
16029
|
+
parentId: string | null;
|
16030
|
+
childCategoryList: {
|
16031
|
+
id: string;
|
16032
|
+
value: string;
|
16033
|
+
level: 2 | 1 | 3;
|
16034
|
+
parentId: string | null;
|
16035
|
+
childCategoryList: {
|
16036
|
+
id: string;
|
16037
|
+
value: string;
|
16038
|
+
level: 2 | 1 | 3;
|
16039
|
+
parentId: string | null;
|
16040
|
+
childCategoryList: any[];
|
16041
|
+
}[];
|
16042
|
+
}[];
|
16043
|
+
}[];
|
14904
16044
|
tags: {
|
14905
16045
|
id: string;
|
14906
16046
|
name: string;
|
@@ -16956,11 +18096,34 @@ export declare const mainChatContract: {
|
|
16956
18096
|
handledTime: number | null;
|
16957
18097
|
firstResponseTime: number | null;
|
16958
18098
|
wrapUpForm: {
|
18099
|
+
type: string;
|
16959
18100
|
id: string;
|
16960
18101
|
disposition: string | null;
|
16961
18102
|
createdAt: Date;
|
16962
18103
|
updatedAt: Date;
|
16963
18104
|
deletedAt: Date | null;
|
18105
|
+
categories: {
|
18106
|
+
id: string;
|
18107
|
+
value: string;
|
18108
|
+
createdAt: Date;
|
18109
|
+
updatedAt: Date;
|
18110
|
+
deletedAt: Date | null;
|
18111
|
+
level: 2 | 1 | 3;
|
18112
|
+
parentId: string | null;
|
18113
|
+
childCategoryList: {
|
18114
|
+
id: string;
|
18115
|
+
value: string;
|
18116
|
+
level: 2 | 1 | 3;
|
18117
|
+
parentId: string | null;
|
18118
|
+
childCategoryList: {
|
18119
|
+
id: string;
|
18120
|
+
value: string;
|
18121
|
+
level: 2 | 1 | 3;
|
18122
|
+
parentId: string | null;
|
18123
|
+
childCategoryList: any[];
|
18124
|
+
}[];
|
18125
|
+
}[];
|
18126
|
+
}[];
|
16964
18127
|
tags: {
|
16965
18128
|
id: string;
|
16966
18129
|
name: string;
|
@@ -17596,11 +18759,34 @@ export declare const mainChatContract: {
|
|
17596
18759
|
handledTime: number | null;
|
17597
18760
|
firstResponseTime: number | null;
|
17598
18761
|
wrapUpForm: {
|
18762
|
+
type: string;
|
17599
18763
|
id: string;
|
17600
18764
|
disposition: string | null;
|
17601
18765
|
createdAt: Date;
|
17602
18766
|
updatedAt: Date;
|
17603
18767
|
deletedAt: Date | null;
|
18768
|
+
categories: {
|
18769
|
+
id: string;
|
18770
|
+
value: string;
|
18771
|
+
createdAt: Date;
|
18772
|
+
updatedAt: Date;
|
18773
|
+
deletedAt: Date | null;
|
18774
|
+
level: 2 | 1 | 3;
|
18775
|
+
parentId: string | null;
|
18776
|
+
childCategoryList: {
|
18777
|
+
id: string;
|
18778
|
+
value: string;
|
18779
|
+
level: 2 | 1 | 3;
|
18780
|
+
parentId: string | null;
|
18781
|
+
childCategoryList: {
|
18782
|
+
id: string;
|
18783
|
+
value: string;
|
18784
|
+
level: 2 | 1 | 3;
|
18785
|
+
parentId: string | null;
|
18786
|
+
childCategoryList: any[];
|
18787
|
+
}[];
|
18788
|
+
}[];
|
18789
|
+
}[];
|
17604
18790
|
tags: {
|
17605
18791
|
id: string;
|
17606
18792
|
name: string;
|
@@ -18238,11 +19424,34 @@ export declare const mainChatContract: {
|
|
18238
19424
|
handledTime: number | null;
|
18239
19425
|
firstResponseTime: number | null;
|
18240
19426
|
wrapUpForm: {
|
19427
|
+
type: string;
|
18241
19428
|
id: string;
|
18242
19429
|
disposition: string | null;
|
18243
19430
|
createdAt: Date;
|
18244
19431
|
updatedAt: Date;
|
18245
19432
|
deletedAt: Date | null;
|
19433
|
+
categories: {
|
19434
|
+
id: string;
|
19435
|
+
value: string;
|
19436
|
+
createdAt: Date;
|
19437
|
+
updatedAt: Date;
|
19438
|
+
deletedAt: Date | null;
|
19439
|
+
level: 2 | 1 | 3;
|
19440
|
+
parentId: string | null;
|
19441
|
+
childCategoryList: {
|
19442
|
+
id: string;
|
19443
|
+
value: string;
|
19444
|
+
level: 2 | 1 | 3;
|
19445
|
+
parentId: string | null;
|
19446
|
+
childCategoryList: {
|
19447
|
+
id: string;
|
19448
|
+
value: string;
|
19449
|
+
level: 2 | 1 | 3;
|
19450
|
+
parentId: string | null;
|
19451
|
+
childCategoryList: any[];
|
19452
|
+
}[];
|
19453
|
+
}[];
|
19454
|
+
}[];
|
18246
19455
|
tags: {
|
18247
19456
|
id: string;
|
18248
19457
|
name: string;
|
@@ -18881,11 +20090,34 @@ export declare const mainChatContract: {
|
|
18881
20090
|
handledTime: number | null;
|
18882
20091
|
firstResponseTime: number | null;
|
18883
20092
|
wrapUpForm: {
|
20093
|
+
type: string;
|
18884
20094
|
id: string;
|
18885
20095
|
disposition: string | null;
|
18886
20096
|
createdAt: Date;
|
18887
20097
|
updatedAt: Date;
|
18888
20098
|
deletedAt: Date | null;
|
20099
|
+
categories: {
|
20100
|
+
id: string;
|
20101
|
+
value: string;
|
20102
|
+
createdAt: Date;
|
20103
|
+
updatedAt: Date;
|
20104
|
+
deletedAt: Date | null;
|
20105
|
+
level: 2 | 1 | 3;
|
20106
|
+
parentId: string | null;
|
20107
|
+
childCategoryList: {
|
20108
|
+
id: string;
|
20109
|
+
value: string;
|
20110
|
+
level: 2 | 1 | 3;
|
20111
|
+
parentId: string | null;
|
20112
|
+
childCategoryList: {
|
20113
|
+
id: string;
|
20114
|
+
value: string;
|
20115
|
+
level: 2 | 1 | 3;
|
20116
|
+
parentId: string | null;
|
20117
|
+
childCategoryList: any[];
|
20118
|
+
}[];
|
20119
|
+
}[];
|
20120
|
+
}[];
|
18889
20121
|
tags: {
|
18890
20122
|
id: string;
|
18891
20123
|
name: string;
|
@@ -21007,8 +22239,7 @@ export declare const mainChatContract: {
|
|
21007
22239
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
21008
22240
|
note: z.ZodNullable<z.ZodString>;
|
21009
22241
|
disposition: z.ZodNullable<z.ZodString>;
|
21010
|
-
|
21011
|
-
callTo: z.ZodNullable<z.ZodString>;
|
22242
|
+
type: z.ZodString;
|
21012
22243
|
tags: z.ZodArray<z.ZodObject<{
|
21013
22244
|
id: z.ZodString;
|
21014
22245
|
createdAt: z.ZodDate;
|
@@ -21028,12 +22259,137 @@ export declare const mainChatContract: {
|
|
21028
22259
|
updatedAt: Date;
|
21029
22260
|
deletedAt: Date | null;
|
21030
22261
|
}>, "many">;
|
22262
|
+
categories: z.ZodArray<z.ZodObject<{
|
22263
|
+
id: z.ZodString;
|
22264
|
+
createdAt: z.ZodDate;
|
22265
|
+
updatedAt: z.ZodDate;
|
22266
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
22267
|
+
value: z.ZodString;
|
22268
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
22269
|
+
parentId: z.ZodNullable<z.ZodString>;
|
22270
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
22271
|
+
id: z.ZodString;
|
22272
|
+
value: z.ZodString;
|
22273
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
22274
|
+
parentId: z.ZodNullable<z.ZodString>;
|
22275
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
22276
|
+
id: z.ZodString;
|
22277
|
+
value: z.ZodString;
|
22278
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
22279
|
+
parentId: z.ZodNullable<z.ZodString>;
|
22280
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
22281
|
+
}, "strip", z.ZodTypeAny, {
|
22282
|
+
id: string;
|
22283
|
+
value: string;
|
22284
|
+
level: 2 | 1 | 3;
|
22285
|
+
parentId: string | null;
|
22286
|
+
childCategoryList: any[];
|
22287
|
+
}, {
|
22288
|
+
id: string;
|
22289
|
+
value: string;
|
22290
|
+
level: 2 | 1 | 3;
|
22291
|
+
parentId: string | null;
|
22292
|
+
childCategoryList: any[];
|
22293
|
+
}>, "many">;
|
22294
|
+
}, "strip", z.ZodTypeAny, {
|
22295
|
+
id: string;
|
22296
|
+
value: string;
|
22297
|
+
level: 2 | 1 | 3;
|
22298
|
+
parentId: string | null;
|
22299
|
+
childCategoryList: {
|
22300
|
+
id: string;
|
22301
|
+
value: string;
|
22302
|
+
level: 2 | 1 | 3;
|
22303
|
+
parentId: string | null;
|
22304
|
+
childCategoryList: any[];
|
22305
|
+
}[];
|
22306
|
+
}, {
|
22307
|
+
id: string;
|
22308
|
+
value: string;
|
22309
|
+
level: 2 | 1 | 3;
|
22310
|
+
parentId: string | null;
|
22311
|
+
childCategoryList: {
|
22312
|
+
id: string;
|
22313
|
+
value: string;
|
22314
|
+
level: 2 | 1 | 3;
|
22315
|
+
parentId: string | null;
|
22316
|
+
childCategoryList: any[];
|
22317
|
+
}[];
|
22318
|
+
}>, "many">;
|
22319
|
+
}, "strip", z.ZodTypeAny, {
|
22320
|
+
id: string;
|
22321
|
+
value: string;
|
22322
|
+
createdAt: Date;
|
22323
|
+
updatedAt: Date;
|
22324
|
+
deletedAt: Date | null;
|
22325
|
+
level: 2 | 1 | 3;
|
22326
|
+
parentId: string | null;
|
22327
|
+
childCategoryList: {
|
22328
|
+
id: string;
|
22329
|
+
value: string;
|
22330
|
+
level: 2 | 1 | 3;
|
22331
|
+
parentId: string | null;
|
22332
|
+
childCategoryList: {
|
22333
|
+
id: string;
|
22334
|
+
value: string;
|
22335
|
+
level: 2 | 1 | 3;
|
22336
|
+
parentId: string | null;
|
22337
|
+
childCategoryList: any[];
|
22338
|
+
}[];
|
22339
|
+
}[];
|
22340
|
+
}, {
|
22341
|
+
id: string;
|
22342
|
+
value: string;
|
22343
|
+
createdAt: Date;
|
22344
|
+
updatedAt: Date;
|
22345
|
+
deletedAt: Date | null;
|
22346
|
+
level: 2 | 1 | 3;
|
22347
|
+
parentId: string | null;
|
22348
|
+
childCategoryList: {
|
22349
|
+
id: string;
|
22350
|
+
value: string;
|
22351
|
+
level: 2 | 1 | 3;
|
22352
|
+
parentId: string | null;
|
22353
|
+
childCategoryList: {
|
22354
|
+
id: string;
|
22355
|
+
value: string;
|
22356
|
+
level: 2 | 1 | 3;
|
22357
|
+
parentId: string | null;
|
22358
|
+
childCategoryList: any[];
|
22359
|
+
}[];
|
22360
|
+
}[];
|
22361
|
+
}>, "many">;
|
22362
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
22363
|
+
callTo: z.ZodNullable<z.ZodString>;
|
21031
22364
|
}, "strip", z.ZodTypeAny, {
|
22365
|
+
type: string;
|
21032
22366
|
id: string;
|
21033
22367
|
disposition: string | null;
|
21034
22368
|
createdAt: Date;
|
21035
22369
|
updatedAt: Date;
|
21036
22370
|
deletedAt: Date | null;
|
22371
|
+
categories: {
|
22372
|
+
id: string;
|
22373
|
+
value: string;
|
22374
|
+
createdAt: Date;
|
22375
|
+
updatedAt: Date;
|
22376
|
+
deletedAt: Date | null;
|
22377
|
+
level: 2 | 1 | 3;
|
22378
|
+
parentId: string | null;
|
22379
|
+
childCategoryList: {
|
22380
|
+
id: string;
|
22381
|
+
value: string;
|
22382
|
+
level: 2 | 1 | 3;
|
22383
|
+
parentId: string | null;
|
22384
|
+
childCategoryList: {
|
22385
|
+
id: string;
|
22386
|
+
value: string;
|
22387
|
+
level: 2 | 1 | 3;
|
22388
|
+
parentId: string | null;
|
22389
|
+
childCategoryList: any[];
|
22390
|
+
}[];
|
22391
|
+
}[];
|
22392
|
+
}[];
|
21037
22393
|
tags: {
|
21038
22394
|
id: string;
|
21039
22395
|
name: string;
|
@@ -21045,11 +22401,34 @@ export declare const mainChatContract: {
|
|
21045
22401
|
callTo: string | null;
|
21046
22402
|
note: string | null;
|
21047
22403
|
}, {
|
22404
|
+
type: string;
|
21048
22405
|
id: string;
|
21049
22406
|
disposition: string | null;
|
21050
22407
|
createdAt: Date;
|
21051
22408
|
updatedAt: Date;
|
21052
22409
|
deletedAt: Date | null;
|
22410
|
+
categories: {
|
22411
|
+
id: string;
|
22412
|
+
value: string;
|
22413
|
+
createdAt: Date;
|
22414
|
+
updatedAt: Date;
|
22415
|
+
deletedAt: Date | null;
|
22416
|
+
level: 2 | 1 | 3;
|
22417
|
+
parentId: string | null;
|
22418
|
+
childCategoryList: {
|
22419
|
+
id: string;
|
22420
|
+
value: string;
|
22421
|
+
level: 2 | 1 | 3;
|
22422
|
+
parentId: string | null;
|
22423
|
+
childCategoryList: {
|
22424
|
+
id: string;
|
22425
|
+
value: string;
|
22426
|
+
level: 2 | 1 | 3;
|
22427
|
+
parentId: string | null;
|
22428
|
+
childCategoryList: any[];
|
22429
|
+
}[];
|
22430
|
+
}[];
|
22431
|
+
}[];
|
21053
22432
|
tags: {
|
21054
22433
|
id: string;
|
21055
22434
|
name: string;
|
@@ -21078,11 +22457,34 @@ export declare const mainChatContract: {
|
|
21078
22457
|
handledTime: number | null;
|
21079
22458
|
firstResponseTime: number | null;
|
21080
22459
|
wrapUpForm: {
|
22460
|
+
type: string;
|
21081
22461
|
id: string;
|
21082
22462
|
disposition: string | null;
|
21083
22463
|
createdAt: Date;
|
21084
22464
|
updatedAt: Date;
|
21085
22465
|
deletedAt: Date | null;
|
22466
|
+
categories: {
|
22467
|
+
id: string;
|
22468
|
+
value: string;
|
22469
|
+
createdAt: Date;
|
22470
|
+
updatedAt: Date;
|
22471
|
+
deletedAt: Date | null;
|
22472
|
+
level: 2 | 1 | 3;
|
22473
|
+
parentId: string | null;
|
22474
|
+
childCategoryList: {
|
22475
|
+
id: string;
|
22476
|
+
value: string;
|
22477
|
+
level: 2 | 1 | 3;
|
22478
|
+
parentId: string | null;
|
22479
|
+
childCategoryList: {
|
22480
|
+
id: string;
|
22481
|
+
value: string;
|
22482
|
+
level: 2 | 1 | 3;
|
22483
|
+
parentId: string | null;
|
22484
|
+
childCategoryList: any[];
|
22485
|
+
}[];
|
22486
|
+
}[];
|
22487
|
+
}[];
|
21086
22488
|
tags: {
|
21087
22489
|
id: string;
|
21088
22490
|
name: string;
|
@@ -21111,11 +22513,34 @@ export declare const mainChatContract: {
|
|
21111
22513
|
handledTime: number | null;
|
21112
22514
|
firstResponseTime: number | null;
|
21113
22515
|
wrapUpForm: {
|
22516
|
+
type: string;
|
21114
22517
|
id: string;
|
21115
22518
|
disposition: string | null;
|
21116
22519
|
createdAt: Date;
|
21117
22520
|
updatedAt: Date;
|
21118
22521
|
deletedAt: Date | null;
|
22522
|
+
categories: {
|
22523
|
+
id: string;
|
22524
|
+
value: string;
|
22525
|
+
createdAt: Date;
|
22526
|
+
updatedAt: Date;
|
22527
|
+
deletedAt: Date | null;
|
22528
|
+
level: 2 | 1 | 3;
|
22529
|
+
parentId: string | null;
|
22530
|
+
childCategoryList: {
|
22531
|
+
id: string;
|
22532
|
+
value: string;
|
22533
|
+
level: 2 | 1 | 3;
|
22534
|
+
parentId: string | null;
|
22535
|
+
childCategoryList: {
|
22536
|
+
id: string;
|
22537
|
+
value: string;
|
22538
|
+
level: 2 | 1 | 3;
|
22539
|
+
parentId: string | null;
|
22540
|
+
childCategoryList: any[];
|
22541
|
+
}[];
|
22542
|
+
}[];
|
22543
|
+
}[];
|
21119
22544
|
tags: {
|
21120
22545
|
id: string;
|
21121
22546
|
name: string;
|
@@ -21425,11 +22850,34 @@ export declare const mainChatContract: {
|
|
21425
22850
|
handledTime: number | null;
|
21426
22851
|
firstResponseTime: number | null;
|
21427
22852
|
wrapUpForm: {
|
22853
|
+
type: string;
|
21428
22854
|
id: string;
|
21429
22855
|
disposition: string | null;
|
21430
22856
|
createdAt: Date;
|
21431
22857
|
updatedAt: Date;
|
21432
22858
|
deletedAt: Date | null;
|
22859
|
+
categories: {
|
22860
|
+
id: string;
|
22861
|
+
value: string;
|
22862
|
+
createdAt: Date;
|
22863
|
+
updatedAt: Date;
|
22864
|
+
deletedAt: Date | null;
|
22865
|
+
level: 2 | 1 | 3;
|
22866
|
+
parentId: string | null;
|
22867
|
+
childCategoryList: {
|
22868
|
+
id: string;
|
22869
|
+
value: string;
|
22870
|
+
level: 2 | 1 | 3;
|
22871
|
+
parentId: string | null;
|
22872
|
+
childCategoryList: {
|
22873
|
+
id: string;
|
22874
|
+
value: string;
|
22875
|
+
level: 2 | 1 | 3;
|
22876
|
+
parentId: string | null;
|
22877
|
+
childCategoryList: any[];
|
22878
|
+
}[];
|
22879
|
+
}[];
|
22880
|
+
}[];
|
21433
22881
|
tags: {
|
21434
22882
|
id: string;
|
21435
22883
|
name: string;
|
@@ -21739,11 +23187,34 @@ export declare const mainChatContract: {
|
|
21739
23187
|
handledTime: number | null;
|
21740
23188
|
firstResponseTime: number | null;
|
21741
23189
|
wrapUpForm: {
|
23190
|
+
type: string;
|
21742
23191
|
id: string;
|
21743
23192
|
disposition: string | null;
|
21744
23193
|
createdAt: Date;
|
21745
23194
|
updatedAt: Date;
|
21746
23195
|
deletedAt: Date | null;
|
23196
|
+
categories: {
|
23197
|
+
id: string;
|
23198
|
+
value: string;
|
23199
|
+
createdAt: Date;
|
23200
|
+
updatedAt: Date;
|
23201
|
+
deletedAt: Date | null;
|
23202
|
+
level: 2 | 1 | 3;
|
23203
|
+
parentId: string | null;
|
23204
|
+
childCategoryList: {
|
23205
|
+
id: string;
|
23206
|
+
value: string;
|
23207
|
+
level: 2 | 1 | 3;
|
23208
|
+
parentId: string | null;
|
23209
|
+
childCategoryList: {
|
23210
|
+
id: string;
|
23211
|
+
value: string;
|
23212
|
+
level: 2 | 1 | 3;
|
23213
|
+
parentId: string | null;
|
23214
|
+
childCategoryList: any[];
|
23215
|
+
}[];
|
23216
|
+
}[];
|
23217
|
+
}[];
|
21747
23218
|
tags: {
|
21748
23219
|
id: string;
|
21749
23220
|
name: string;
|
@@ -23799,11 +25270,34 @@ export declare const mainChatContract: {
|
|
23799
25270
|
handledTime: number | null;
|
23800
25271
|
firstResponseTime: number | null;
|
23801
25272
|
wrapUpForm: {
|
25273
|
+
type: string;
|
23802
25274
|
id: string;
|
23803
25275
|
disposition: string | null;
|
23804
25276
|
createdAt: Date;
|
23805
25277
|
updatedAt: Date;
|
23806
25278
|
deletedAt: Date | null;
|
25279
|
+
categories: {
|
25280
|
+
id: string;
|
25281
|
+
value: string;
|
25282
|
+
createdAt: Date;
|
25283
|
+
updatedAt: Date;
|
25284
|
+
deletedAt: Date | null;
|
25285
|
+
level: 2 | 1 | 3;
|
25286
|
+
parentId: string | null;
|
25287
|
+
childCategoryList: {
|
25288
|
+
id: string;
|
25289
|
+
value: string;
|
25290
|
+
level: 2 | 1 | 3;
|
25291
|
+
parentId: string | null;
|
25292
|
+
childCategoryList: {
|
25293
|
+
id: string;
|
25294
|
+
value: string;
|
25295
|
+
level: 2 | 1 | 3;
|
25296
|
+
parentId: string | null;
|
25297
|
+
childCategoryList: any[];
|
25298
|
+
}[];
|
25299
|
+
}[];
|
25300
|
+
}[];
|
23807
25301
|
tags: {
|
23808
25302
|
id: string;
|
23809
25303
|
name: string;
|
@@ -24439,11 +25933,34 @@ export declare const mainChatContract: {
|
|
24439
25933
|
handledTime: number | null;
|
24440
25934
|
firstResponseTime: number | null;
|
24441
25935
|
wrapUpForm: {
|
25936
|
+
type: string;
|
24442
25937
|
id: string;
|
24443
25938
|
disposition: string | null;
|
24444
25939
|
createdAt: Date;
|
24445
25940
|
updatedAt: Date;
|
24446
25941
|
deletedAt: Date | null;
|
25942
|
+
categories: {
|
25943
|
+
id: string;
|
25944
|
+
value: string;
|
25945
|
+
createdAt: Date;
|
25946
|
+
updatedAt: Date;
|
25947
|
+
deletedAt: Date | null;
|
25948
|
+
level: 2 | 1 | 3;
|
25949
|
+
parentId: string | null;
|
25950
|
+
childCategoryList: {
|
25951
|
+
id: string;
|
25952
|
+
value: string;
|
25953
|
+
level: 2 | 1 | 3;
|
25954
|
+
parentId: string | null;
|
25955
|
+
childCategoryList: {
|
25956
|
+
id: string;
|
25957
|
+
value: string;
|
25958
|
+
level: 2 | 1 | 3;
|
25959
|
+
parentId: string | null;
|
25960
|
+
childCategoryList: any[];
|
25961
|
+
}[];
|
25962
|
+
}[];
|
25963
|
+
}[];
|
24447
25964
|
tags: {
|
24448
25965
|
id: string;
|
24449
25966
|
name: string;
|
@@ -25081,11 +26598,34 @@ export declare const mainChatContract: {
|
|
25081
26598
|
handledTime: number | null;
|
25082
26599
|
firstResponseTime: number | null;
|
25083
26600
|
wrapUpForm: {
|
26601
|
+
type: string;
|
25084
26602
|
id: string;
|
25085
26603
|
disposition: string | null;
|
25086
26604
|
createdAt: Date;
|
25087
26605
|
updatedAt: Date;
|
25088
26606
|
deletedAt: Date | null;
|
26607
|
+
categories: {
|
26608
|
+
id: string;
|
26609
|
+
value: string;
|
26610
|
+
createdAt: Date;
|
26611
|
+
updatedAt: Date;
|
26612
|
+
deletedAt: Date | null;
|
26613
|
+
level: 2 | 1 | 3;
|
26614
|
+
parentId: string | null;
|
26615
|
+
childCategoryList: {
|
26616
|
+
id: string;
|
26617
|
+
value: string;
|
26618
|
+
level: 2 | 1 | 3;
|
26619
|
+
parentId: string | null;
|
26620
|
+
childCategoryList: {
|
26621
|
+
id: string;
|
26622
|
+
value: string;
|
26623
|
+
level: 2 | 1 | 3;
|
26624
|
+
parentId: string | null;
|
26625
|
+
childCategoryList: any[];
|
26626
|
+
}[];
|
26627
|
+
}[];
|
26628
|
+
}[];
|
25089
26629
|
tags: {
|
25090
26630
|
id: string;
|
25091
26631
|
name: string;
|
@@ -25727,11 +27267,34 @@ export declare const mainChatContract: {
|
|
25727
27267
|
handledTime: number | null;
|
25728
27268
|
firstResponseTime: number | null;
|
25729
27269
|
wrapUpForm: {
|
27270
|
+
type: string;
|
25730
27271
|
id: string;
|
25731
27272
|
disposition: string | null;
|
25732
27273
|
createdAt: Date;
|
25733
27274
|
updatedAt: Date;
|
25734
27275
|
deletedAt: Date | null;
|
27276
|
+
categories: {
|
27277
|
+
id: string;
|
27278
|
+
value: string;
|
27279
|
+
createdAt: Date;
|
27280
|
+
updatedAt: Date;
|
27281
|
+
deletedAt: Date | null;
|
27282
|
+
level: 2 | 1 | 3;
|
27283
|
+
parentId: string | null;
|
27284
|
+
childCategoryList: {
|
27285
|
+
id: string;
|
27286
|
+
value: string;
|
27287
|
+
level: 2 | 1 | 3;
|
27288
|
+
parentId: string | null;
|
27289
|
+
childCategoryList: {
|
27290
|
+
id: string;
|
27291
|
+
value: string;
|
27292
|
+
level: 2 | 1 | 3;
|
27293
|
+
parentId: string | null;
|
27294
|
+
childCategoryList: any[];
|
27295
|
+
}[];
|
27296
|
+
}[];
|
27297
|
+
}[];
|
25735
27298
|
tags: {
|
25736
27299
|
id: string;
|
25737
27300
|
name: string;
|
@@ -27746,8 +29309,7 @@ export declare const mainChatContract: {
|
|
27746
29309
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
27747
29310
|
note: z.ZodNullable<z.ZodString>;
|
27748
29311
|
disposition: z.ZodNullable<z.ZodString>;
|
27749
|
-
|
27750
|
-
callTo: z.ZodNullable<z.ZodString>;
|
29312
|
+
type: z.ZodString;
|
27751
29313
|
tags: z.ZodArray<z.ZodObject<{
|
27752
29314
|
id: z.ZodString;
|
27753
29315
|
createdAt: z.ZodDate;
|
@@ -27767,12 +29329,137 @@ export declare const mainChatContract: {
|
|
27767
29329
|
updatedAt: Date;
|
27768
29330
|
deletedAt: Date | null;
|
27769
29331
|
}>, "many">;
|
29332
|
+
categories: z.ZodArray<z.ZodObject<{
|
29333
|
+
id: z.ZodString;
|
29334
|
+
createdAt: z.ZodDate;
|
29335
|
+
updatedAt: z.ZodDate;
|
29336
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
29337
|
+
value: z.ZodString;
|
29338
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
29339
|
+
parentId: z.ZodNullable<z.ZodString>;
|
29340
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
29341
|
+
id: z.ZodString;
|
29342
|
+
value: z.ZodString;
|
29343
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
29344
|
+
parentId: z.ZodNullable<z.ZodString>;
|
29345
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
29346
|
+
id: z.ZodString;
|
29347
|
+
value: z.ZodString;
|
29348
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
29349
|
+
parentId: z.ZodNullable<z.ZodString>;
|
29350
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
29351
|
+
}, "strip", z.ZodTypeAny, {
|
29352
|
+
id: string;
|
29353
|
+
value: string;
|
29354
|
+
level: 2 | 1 | 3;
|
29355
|
+
parentId: string | null;
|
29356
|
+
childCategoryList: any[];
|
29357
|
+
}, {
|
29358
|
+
id: string;
|
29359
|
+
value: string;
|
29360
|
+
level: 2 | 1 | 3;
|
29361
|
+
parentId: string | null;
|
29362
|
+
childCategoryList: any[];
|
29363
|
+
}>, "many">;
|
29364
|
+
}, "strip", z.ZodTypeAny, {
|
29365
|
+
id: string;
|
29366
|
+
value: string;
|
29367
|
+
level: 2 | 1 | 3;
|
29368
|
+
parentId: string | null;
|
29369
|
+
childCategoryList: {
|
29370
|
+
id: string;
|
29371
|
+
value: string;
|
29372
|
+
level: 2 | 1 | 3;
|
29373
|
+
parentId: string | null;
|
29374
|
+
childCategoryList: any[];
|
29375
|
+
}[];
|
29376
|
+
}, {
|
29377
|
+
id: string;
|
29378
|
+
value: string;
|
29379
|
+
level: 2 | 1 | 3;
|
29380
|
+
parentId: string | null;
|
29381
|
+
childCategoryList: {
|
29382
|
+
id: string;
|
29383
|
+
value: string;
|
29384
|
+
level: 2 | 1 | 3;
|
29385
|
+
parentId: string | null;
|
29386
|
+
childCategoryList: any[];
|
29387
|
+
}[];
|
29388
|
+
}>, "many">;
|
29389
|
+
}, "strip", z.ZodTypeAny, {
|
29390
|
+
id: string;
|
29391
|
+
value: string;
|
29392
|
+
createdAt: Date;
|
29393
|
+
updatedAt: Date;
|
29394
|
+
deletedAt: Date | null;
|
29395
|
+
level: 2 | 1 | 3;
|
29396
|
+
parentId: string | null;
|
29397
|
+
childCategoryList: {
|
29398
|
+
id: string;
|
29399
|
+
value: string;
|
29400
|
+
level: 2 | 1 | 3;
|
29401
|
+
parentId: string | null;
|
29402
|
+
childCategoryList: {
|
29403
|
+
id: string;
|
29404
|
+
value: string;
|
29405
|
+
level: 2 | 1 | 3;
|
29406
|
+
parentId: string | null;
|
29407
|
+
childCategoryList: any[];
|
29408
|
+
}[];
|
29409
|
+
}[];
|
29410
|
+
}, {
|
29411
|
+
id: string;
|
29412
|
+
value: string;
|
29413
|
+
createdAt: Date;
|
29414
|
+
updatedAt: Date;
|
29415
|
+
deletedAt: Date | null;
|
29416
|
+
level: 2 | 1 | 3;
|
29417
|
+
parentId: string | null;
|
29418
|
+
childCategoryList: {
|
29419
|
+
id: string;
|
29420
|
+
value: string;
|
29421
|
+
level: 2 | 1 | 3;
|
29422
|
+
parentId: string | null;
|
29423
|
+
childCategoryList: {
|
29424
|
+
id: string;
|
29425
|
+
value: string;
|
29426
|
+
level: 2 | 1 | 3;
|
29427
|
+
parentId: string | null;
|
29428
|
+
childCategoryList: any[];
|
29429
|
+
}[];
|
29430
|
+
}[];
|
29431
|
+
}>, "many">;
|
29432
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
29433
|
+
callTo: z.ZodNullable<z.ZodString>;
|
27770
29434
|
}, "strip", z.ZodTypeAny, {
|
29435
|
+
type: string;
|
27771
29436
|
id: string;
|
27772
29437
|
disposition: string | null;
|
27773
29438
|
createdAt: Date;
|
27774
29439
|
updatedAt: Date;
|
27775
29440
|
deletedAt: Date | null;
|
29441
|
+
categories: {
|
29442
|
+
id: string;
|
29443
|
+
value: string;
|
29444
|
+
createdAt: Date;
|
29445
|
+
updatedAt: Date;
|
29446
|
+
deletedAt: Date | null;
|
29447
|
+
level: 2 | 1 | 3;
|
29448
|
+
parentId: string | null;
|
29449
|
+
childCategoryList: {
|
29450
|
+
id: string;
|
29451
|
+
value: string;
|
29452
|
+
level: 2 | 1 | 3;
|
29453
|
+
parentId: string | null;
|
29454
|
+
childCategoryList: {
|
29455
|
+
id: string;
|
29456
|
+
value: string;
|
29457
|
+
level: 2 | 1 | 3;
|
29458
|
+
parentId: string | null;
|
29459
|
+
childCategoryList: any[];
|
29460
|
+
}[];
|
29461
|
+
}[];
|
29462
|
+
}[];
|
27776
29463
|
tags: {
|
27777
29464
|
id: string;
|
27778
29465
|
name: string;
|
@@ -27784,11 +29471,34 @@ export declare const mainChatContract: {
|
|
27784
29471
|
callTo: string | null;
|
27785
29472
|
note: string | null;
|
27786
29473
|
}, {
|
29474
|
+
type: string;
|
27787
29475
|
id: string;
|
27788
29476
|
disposition: string | null;
|
27789
29477
|
createdAt: Date;
|
27790
29478
|
updatedAt: Date;
|
27791
29479
|
deletedAt: Date | null;
|
29480
|
+
categories: {
|
29481
|
+
id: string;
|
29482
|
+
value: string;
|
29483
|
+
createdAt: Date;
|
29484
|
+
updatedAt: Date;
|
29485
|
+
deletedAt: Date | null;
|
29486
|
+
level: 2 | 1 | 3;
|
29487
|
+
parentId: string | null;
|
29488
|
+
childCategoryList: {
|
29489
|
+
id: string;
|
29490
|
+
value: string;
|
29491
|
+
level: 2 | 1 | 3;
|
29492
|
+
parentId: string | null;
|
29493
|
+
childCategoryList: {
|
29494
|
+
id: string;
|
29495
|
+
value: string;
|
29496
|
+
level: 2 | 1 | 3;
|
29497
|
+
parentId: string | null;
|
29498
|
+
childCategoryList: any[];
|
29499
|
+
}[];
|
29500
|
+
}[];
|
29501
|
+
}[];
|
27792
29502
|
tags: {
|
27793
29503
|
id: string;
|
27794
29504
|
name: string;
|
@@ -27817,11 +29527,34 @@ export declare const mainChatContract: {
|
|
27817
29527
|
handledTime: number | null;
|
27818
29528
|
firstResponseTime: number | null;
|
27819
29529
|
wrapUpForm: {
|
29530
|
+
type: string;
|
27820
29531
|
id: string;
|
27821
29532
|
disposition: string | null;
|
27822
29533
|
createdAt: Date;
|
27823
29534
|
updatedAt: Date;
|
27824
29535
|
deletedAt: Date | null;
|
29536
|
+
categories: {
|
29537
|
+
id: string;
|
29538
|
+
value: string;
|
29539
|
+
createdAt: Date;
|
29540
|
+
updatedAt: Date;
|
29541
|
+
deletedAt: Date | null;
|
29542
|
+
level: 2 | 1 | 3;
|
29543
|
+
parentId: string | null;
|
29544
|
+
childCategoryList: {
|
29545
|
+
id: string;
|
29546
|
+
value: string;
|
29547
|
+
level: 2 | 1 | 3;
|
29548
|
+
parentId: string | null;
|
29549
|
+
childCategoryList: {
|
29550
|
+
id: string;
|
29551
|
+
value: string;
|
29552
|
+
level: 2 | 1 | 3;
|
29553
|
+
parentId: string | null;
|
29554
|
+
childCategoryList: any[];
|
29555
|
+
}[];
|
29556
|
+
}[];
|
29557
|
+
}[];
|
27825
29558
|
tags: {
|
27826
29559
|
id: string;
|
27827
29560
|
name: string;
|
@@ -27850,11 +29583,34 @@ export declare const mainChatContract: {
|
|
27850
29583
|
handledTime: number | null;
|
27851
29584
|
firstResponseTime: number | null;
|
27852
29585
|
wrapUpForm: {
|
29586
|
+
type: string;
|
27853
29587
|
id: string;
|
27854
29588
|
disposition: string | null;
|
27855
29589
|
createdAt: Date;
|
27856
29590
|
updatedAt: Date;
|
27857
29591
|
deletedAt: Date | null;
|
29592
|
+
categories: {
|
29593
|
+
id: string;
|
29594
|
+
value: string;
|
29595
|
+
createdAt: Date;
|
29596
|
+
updatedAt: Date;
|
29597
|
+
deletedAt: Date | null;
|
29598
|
+
level: 2 | 1 | 3;
|
29599
|
+
parentId: string | null;
|
29600
|
+
childCategoryList: {
|
29601
|
+
id: string;
|
29602
|
+
value: string;
|
29603
|
+
level: 2 | 1 | 3;
|
29604
|
+
parentId: string | null;
|
29605
|
+
childCategoryList: {
|
29606
|
+
id: string;
|
29607
|
+
value: string;
|
29608
|
+
level: 2 | 1 | 3;
|
29609
|
+
parentId: string | null;
|
29610
|
+
childCategoryList: any[];
|
29611
|
+
}[];
|
29612
|
+
}[];
|
29613
|
+
}[];
|
27858
29614
|
tags: {
|
27859
29615
|
id: string;
|
27860
29616
|
name: string;
|
@@ -28165,11 +29921,34 @@ export declare const mainChatContract: {
|
|
28165
29921
|
handledTime: number | null;
|
28166
29922
|
firstResponseTime: number | null;
|
28167
29923
|
wrapUpForm: {
|
29924
|
+
type: string;
|
28168
29925
|
id: string;
|
28169
29926
|
disposition: string | null;
|
28170
29927
|
createdAt: Date;
|
28171
29928
|
updatedAt: Date;
|
28172
29929
|
deletedAt: Date | null;
|
29930
|
+
categories: {
|
29931
|
+
id: string;
|
29932
|
+
value: string;
|
29933
|
+
createdAt: Date;
|
29934
|
+
updatedAt: Date;
|
29935
|
+
deletedAt: Date | null;
|
29936
|
+
level: 2 | 1 | 3;
|
29937
|
+
parentId: string | null;
|
29938
|
+
childCategoryList: {
|
29939
|
+
id: string;
|
29940
|
+
value: string;
|
29941
|
+
level: 2 | 1 | 3;
|
29942
|
+
parentId: string | null;
|
29943
|
+
childCategoryList: {
|
29944
|
+
id: string;
|
29945
|
+
value: string;
|
29946
|
+
level: 2 | 1 | 3;
|
29947
|
+
parentId: string | null;
|
29948
|
+
childCategoryList: any[];
|
29949
|
+
}[];
|
29950
|
+
}[];
|
29951
|
+
}[];
|
28173
29952
|
tags: {
|
28174
29953
|
id: string;
|
28175
29954
|
name: string;
|
@@ -28480,11 +30259,34 @@ export declare const mainChatContract: {
|
|
28480
30259
|
handledTime: number | null;
|
28481
30260
|
firstResponseTime: number | null;
|
28482
30261
|
wrapUpForm: {
|
30262
|
+
type: string;
|
28483
30263
|
id: string;
|
28484
30264
|
disposition: string | null;
|
28485
30265
|
createdAt: Date;
|
28486
30266
|
updatedAt: Date;
|
28487
30267
|
deletedAt: Date | null;
|
30268
|
+
categories: {
|
30269
|
+
id: string;
|
30270
|
+
value: string;
|
30271
|
+
createdAt: Date;
|
30272
|
+
updatedAt: Date;
|
30273
|
+
deletedAt: Date | null;
|
30274
|
+
level: 2 | 1 | 3;
|
30275
|
+
parentId: string | null;
|
30276
|
+
childCategoryList: {
|
30277
|
+
id: string;
|
30278
|
+
value: string;
|
30279
|
+
level: 2 | 1 | 3;
|
30280
|
+
parentId: string | null;
|
30281
|
+
childCategoryList: {
|
30282
|
+
id: string;
|
30283
|
+
value: string;
|
30284
|
+
level: 2 | 1 | 3;
|
30285
|
+
parentId: string | null;
|
30286
|
+
childCategoryList: any[];
|
30287
|
+
}[];
|
30288
|
+
}[];
|
30289
|
+
}[];
|
28488
30290
|
tags: {
|
28489
30291
|
id: string;
|
28490
30292
|
name: string;
|
@@ -28797,11 +30599,34 @@ export declare const mainChatContract: {
|
|
28797
30599
|
handledTime: number | null;
|
28798
30600
|
firstResponseTime: number | null;
|
28799
30601
|
wrapUpForm: {
|
30602
|
+
type: string;
|
28800
30603
|
id: string;
|
28801
30604
|
disposition: string | null;
|
28802
30605
|
createdAt: Date;
|
28803
30606
|
updatedAt: Date;
|
28804
30607
|
deletedAt: Date | null;
|
30608
|
+
categories: {
|
30609
|
+
id: string;
|
30610
|
+
value: string;
|
30611
|
+
createdAt: Date;
|
30612
|
+
updatedAt: Date;
|
30613
|
+
deletedAt: Date | null;
|
30614
|
+
level: 2 | 1 | 3;
|
30615
|
+
parentId: string | null;
|
30616
|
+
childCategoryList: {
|
30617
|
+
id: string;
|
30618
|
+
value: string;
|
30619
|
+
level: 2 | 1 | 3;
|
30620
|
+
parentId: string | null;
|
30621
|
+
childCategoryList: {
|
30622
|
+
id: string;
|
30623
|
+
value: string;
|
30624
|
+
level: 2 | 1 | 3;
|
30625
|
+
parentId: string | null;
|
30626
|
+
childCategoryList: any[];
|
30627
|
+
}[];
|
30628
|
+
}[];
|
30629
|
+
}[];
|
28805
30630
|
tags: {
|
28806
30631
|
id: string;
|
28807
30632
|
name: string;
|
@@ -29115,11 +30940,34 @@ export declare const mainChatContract: {
|
|
29115
30940
|
handledTime: number | null;
|
29116
30941
|
firstResponseTime: number | null;
|
29117
30942
|
wrapUpForm: {
|
30943
|
+
type: string;
|
29118
30944
|
id: string;
|
29119
30945
|
disposition: string | null;
|
29120
30946
|
createdAt: Date;
|
29121
30947
|
updatedAt: Date;
|
29122
30948
|
deletedAt: Date | null;
|
30949
|
+
categories: {
|
30950
|
+
id: string;
|
30951
|
+
value: string;
|
30952
|
+
createdAt: Date;
|
30953
|
+
updatedAt: Date;
|
30954
|
+
deletedAt: Date | null;
|
30955
|
+
level: 2 | 1 | 3;
|
30956
|
+
parentId: string | null;
|
30957
|
+
childCategoryList: {
|
30958
|
+
id: string;
|
30959
|
+
value: string;
|
30960
|
+
level: 2 | 1 | 3;
|
30961
|
+
parentId: string | null;
|
30962
|
+
childCategoryList: {
|
30963
|
+
id: string;
|
30964
|
+
value: string;
|
30965
|
+
level: 2 | 1 | 3;
|
30966
|
+
parentId: string | null;
|
30967
|
+
childCategoryList: any[];
|
30968
|
+
}[];
|
30969
|
+
}[];
|
30970
|
+
}[];
|
29123
30971
|
tags: {
|
29124
30972
|
id: string;
|
29125
30973
|
name: string;
|
@@ -30926,8 +32774,7 @@ export declare const mainChatContract: {
|
|
30926
32774
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
30927
32775
|
note: z.ZodNullable<z.ZodString>;
|
30928
32776
|
disposition: z.ZodNullable<z.ZodString>;
|
30929
|
-
|
30930
|
-
callTo: z.ZodNullable<z.ZodString>;
|
32777
|
+
type: z.ZodString;
|
30931
32778
|
tags: z.ZodArray<z.ZodObject<{
|
30932
32779
|
id: z.ZodString;
|
30933
32780
|
createdAt: z.ZodDate;
|
@@ -30947,12 +32794,137 @@ export declare const mainChatContract: {
|
|
30947
32794
|
updatedAt: Date;
|
30948
32795
|
deletedAt: Date | null;
|
30949
32796
|
}>, "many">;
|
32797
|
+
categories: z.ZodArray<z.ZodObject<{
|
32798
|
+
id: z.ZodString;
|
32799
|
+
createdAt: z.ZodDate;
|
32800
|
+
updatedAt: z.ZodDate;
|
32801
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
32802
|
+
value: z.ZodString;
|
32803
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
32804
|
+
parentId: z.ZodNullable<z.ZodString>;
|
32805
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
32806
|
+
id: z.ZodString;
|
32807
|
+
value: z.ZodString;
|
32808
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
32809
|
+
parentId: z.ZodNullable<z.ZodString>;
|
32810
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
32811
|
+
id: z.ZodString;
|
32812
|
+
value: z.ZodString;
|
32813
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
32814
|
+
parentId: z.ZodNullable<z.ZodString>;
|
32815
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
32816
|
+
}, "strip", z.ZodTypeAny, {
|
32817
|
+
id: string;
|
32818
|
+
value: string;
|
32819
|
+
level: 2 | 1 | 3;
|
32820
|
+
parentId: string | null;
|
32821
|
+
childCategoryList: any[];
|
32822
|
+
}, {
|
32823
|
+
id: string;
|
32824
|
+
value: string;
|
32825
|
+
level: 2 | 1 | 3;
|
32826
|
+
parentId: string | null;
|
32827
|
+
childCategoryList: any[];
|
32828
|
+
}>, "many">;
|
32829
|
+
}, "strip", z.ZodTypeAny, {
|
32830
|
+
id: string;
|
32831
|
+
value: string;
|
32832
|
+
level: 2 | 1 | 3;
|
32833
|
+
parentId: string | null;
|
32834
|
+
childCategoryList: {
|
32835
|
+
id: string;
|
32836
|
+
value: string;
|
32837
|
+
level: 2 | 1 | 3;
|
32838
|
+
parentId: string | null;
|
32839
|
+
childCategoryList: any[];
|
32840
|
+
}[];
|
32841
|
+
}, {
|
32842
|
+
id: string;
|
32843
|
+
value: string;
|
32844
|
+
level: 2 | 1 | 3;
|
32845
|
+
parentId: string | null;
|
32846
|
+
childCategoryList: {
|
32847
|
+
id: string;
|
32848
|
+
value: string;
|
32849
|
+
level: 2 | 1 | 3;
|
32850
|
+
parentId: string | null;
|
32851
|
+
childCategoryList: any[];
|
32852
|
+
}[];
|
32853
|
+
}>, "many">;
|
32854
|
+
}, "strip", z.ZodTypeAny, {
|
32855
|
+
id: string;
|
32856
|
+
value: string;
|
32857
|
+
createdAt: Date;
|
32858
|
+
updatedAt: Date;
|
32859
|
+
deletedAt: Date | null;
|
32860
|
+
level: 2 | 1 | 3;
|
32861
|
+
parentId: string | null;
|
32862
|
+
childCategoryList: {
|
32863
|
+
id: string;
|
32864
|
+
value: string;
|
32865
|
+
level: 2 | 1 | 3;
|
32866
|
+
parentId: string | null;
|
32867
|
+
childCategoryList: {
|
32868
|
+
id: string;
|
32869
|
+
value: string;
|
32870
|
+
level: 2 | 1 | 3;
|
32871
|
+
parentId: string | null;
|
32872
|
+
childCategoryList: any[];
|
32873
|
+
}[];
|
32874
|
+
}[];
|
32875
|
+
}, {
|
32876
|
+
id: string;
|
32877
|
+
value: string;
|
32878
|
+
createdAt: Date;
|
32879
|
+
updatedAt: Date;
|
32880
|
+
deletedAt: Date | null;
|
32881
|
+
level: 2 | 1 | 3;
|
32882
|
+
parentId: string | null;
|
32883
|
+
childCategoryList: {
|
32884
|
+
id: string;
|
32885
|
+
value: string;
|
32886
|
+
level: 2 | 1 | 3;
|
32887
|
+
parentId: string | null;
|
32888
|
+
childCategoryList: {
|
32889
|
+
id: string;
|
32890
|
+
value: string;
|
32891
|
+
level: 2 | 1 | 3;
|
32892
|
+
parentId: string | null;
|
32893
|
+
childCategoryList: any[];
|
32894
|
+
}[];
|
32895
|
+
}[];
|
32896
|
+
}>, "many">;
|
32897
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
32898
|
+
callTo: z.ZodNullable<z.ZodString>;
|
30950
32899
|
}, "strip", z.ZodTypeAny, {
|
32900
|
+
type: string;
|
30951
32901
|
id: string;
|
30952
32902
|
disposition: string | null;
|
30953
32903
|
createdAt: Date;
|
30954
32904
|
updatedAt: Date;
|
30955
32905
|
deletedAt: Date | null;
|
32906
|
+
categories: {
|
32907
|
+
id: string;
|
32908
|
+
value: string;
|
32909
|
+
createdAt: Date;
|
32910
|
+
updatedAt: Date;
|
32911
|
+
deletedAt: Date | null;
|
32912
|
+
level: 2 | 1 | 3;
|
32913
|
+
parentId: string | null;
|
32914
|
+
childCategoryList: {
|
32915
|
+
id: string;
|
32916
|
+
value: string;
|
32917
|
+
level: 2 | 1 | 3;
|
32918
|
+
parentId: string | null;
|
32919
|
+
childCategoryList: {
|
32920
|
+
id: string;
|
32921
|
+
value: string;
|
32922
|
+
level: 2 | 1 | 3;
|
32923
|
+
parentId: string | null;
|
32924
|
+
childCategoryList: any[];
|
32925
|
+
}[];
|
32926
|
+
}[];
|
32927
|
+
}[];
|
30956
32928
|
tags: {
|
30957
32929
|
id: string;
|
30958
32930
|
name: string;
|
@@ -30964,11 +32936,34 @@ export declare const mainChatContract: {
|
|
30964
32936
|
callTo: string | null;
|
30965
32937
|
note: string | null;
|
30966
32938
|
}, {
|
32939
|
+
type: string;
|
30967
32940
|
id: string;
|
30968
32941
|
disposition: string | null;
|
30969
32942
|
createdAt: Date;
|
30970
32943
|
updatedAt: Date;
|
30971
32944
|
deletedAt: Date | null;
|
32945
|
+
categories: {
|
32946
|
+
id: string;
|
32947
|
+
value: string;
|
32948
|
+
createdAt: Date;
|
32949
|
+
updatedAt: Date;
|
32950
|
+
deletedAt: Date | null;
|
32951
|
+
level: 2 | 1 | 3;
|
32952
|
+
parentId: string | null;
|
32953
|
+
childCategoryList: {
|
32954
|
+
id: string;
|
32955
|
+
value: string;
|
32956
|
+
level: 2 | 1 | 3;
|
32957
|
+
parentId: string | null;
|
32958
|
+
childCategoryList: {
|
32959
|
+
id: string;
|
32960
|
+
value: string;
|
32961
|
+
level: 2 | 1 | 3;
|
32962
|
+
parentId: string | null;
|
32963
|
+
childCategoryList: any[];
|
32964
|
+
}[];
|
32965
|
+
}[];
|
32966
|
+
}[];
|
30972
32967
|
tags: {
|
30973
32968
|
id: string;
|
30974
32969
|
name: string;
|
@@ -30997,11 +32992,34 @@ export declare const mainChatContract: {
|
|
30997
32992
|
handledTime: number | null;
|
30998
32993
|
firstResponseTime: number | null;
|
30999
32994
|
wrapUpForm: {
|
32995
|
+
type: string;
|
31000
32996
|
id: string;
|
31001
32997
|
disposition: string | null;
|
31002
32998
|
createdAt: Date;
|
31003
32999
|
updatedAt: Date;
|
31004
33000
|
deletedAt: Date | null;
|
33001
|
+
categories: {
|
33002
|
+
id: string;
|
33003
|
+
value: string;
|
33004
|
+
createdAt: Date;
|
33005
|
+
updatedAt: Date;
|
33006
|
+
deletedAt: Date | null;
|
33007
|
+
level: 2 | 1 | 3;
|
33008
|
+
parentId: string | null;
|
33009
|
+
childCategoryList: {
|
33010
|
+
id: string;
|
33011
|
+
value: string;
|
33012
|
+
level: 2 | 1 | 3;
|
33013
|
+
parentId: string | null;
|
33014
|
+
childCategoryList: {
|
33015
|
+
id: string;
|
33016
|
+
value: string;
|
33017
|
+
level: 2 | 1 | 3;
|
33018
|
+
parentId: string | null;
|
33019
|
+
childCategoryList: any[];
|
33020
|
+
}[];
|
33021
|
+
}[];
|
33022
|
+
}[];
|
31005
33023
|
tags: {
|
31006
33024
|
id: string;
|
31007
33025
|
name: string;
|
@@ -31030,11 +33048,34 @@ export declare const mainChatContract: {
|
|
31030
33048
|
handledTime: number | null;
|
31031
33049
|
firstResponseTime: number | null;
|
31032
33050
|
wrapUpForm: {
|
33051
|
+
type: string;
|
31033
33052
|
id: string;
|
31034
33053
|
disposition: string | null;
|
31035
33054
|
createdAt: Date;
|
31036
33055
|
updatedAt: Date;
|
31037
33056
|
deletedAt: Date | null;
|
33057
|
+
categories: {
|
33058
|
+
id: string;
|
33059
|
+
value: string;
|
33060
|
+
createdAt: Date;
|
33061
|
+
updatedAt: Date;
|
33062
|
+
deletedAt: Date | null;
|
33063
|
+
level: 2 | 1 | 3;
|
33064
|
+
parentId: string | null;
|
33065
|
+
childCategoryList: {
|
33066
|
+
id: string;
|
33067
|
+
value: string;
|
33068
|
+
level: 2 | 1 | 3;
|
33069
|
+
parentId: string | null;
|
33070
|
+
childCategoryList: {
|
33071
|
+
id: string;
|
33072
|
+
value: string;
|
33073
|
+
level: 2 | 1 | 3;
|
33074
|
+
parentId: string | null;
|
33075
|
+
childCategoryList: any[];
|
33076
|
+
}[];
|
33077
|
+
}[];
|
33078
|
+
}[];
|
31038
33079
|
tags: {
|
31039
33080
|
id: string;
|
31040
33081
|
name: string;
|
@@ -31344,11 +33385,34 @@ export declare const mainChatContract: {
|
|
31344
33385
|
handledTime: number | null;
|
31345
33386
|
firstResponseTime: number | null;
|
31346
33387
|
wrapUpForm: {
|
33388
|
+
type: string;
|
31347
33389
|
id: string;
|
31348
33390
|
disposition: string | null;
|
31349
33391
|
createdAt: Date;
|
31350
33392
|
updatedAt: Date;
|
31351
33393
|
deletedAt: Date | null;
|
33394
|
+
categories: {
|
33395
|
+
id: string;
|
33396
|
+
value: string;
|
33397
|
+
createdAt: Date;
|
33398
|
+
updatedAt: Date;
|
33399
|
+
deletedAt: Date | null;
|
33400
|
+
level: 2 | 1 | 3;
|
33401
|
+
parentId: string | null;
|
33402
|
+
childCategoryList: {
|
33403
|
+
id: string;
|
33404
|
+
value: string;
|
33405
|
+
level: 2 | 1 | 3;
|
33406
|
+
parentId: string | null;
|
33407
|
+
childCategoryList: {
|
33408
|
+
id: string;
|
33409
|
+
value: string;
|
33410
|
+
level: 2 | 1 | 3;
|
33411
|
+
parentId: string | null;
|
33412
|
+
childCategoryList: any[];
|
33413
|
+
}[];
|
33414
|
+
}[];
|
33415
|
+
}[];
|
31352
33416
|
tags: {
|
31353
33417
|
id: string;
|
31354
33418
|
name: string;
|
@@ -31658,11 +33722,34 @@ export declare const mainChatContract: {
|
|
31658
33722
|
handledTime: number | null;
|
31659
33723
|
firstResponseTime: number | null;
|
31660
33724
|
wrapUpForm: {
|
33725
|
+
type: string;
|
31661
33726
|
id: string;
|
31662
33727
|
disposition: string | null;
|
31663
33728
|
createdAt: Date;
|
31664
33729
|
updatedAt: Date;
|
31665
33730
|
deletedAt: Date | null;
|
33731
|
+
categories: {
|
33732
|
+
id: string;
|
33733
|
+
value: string;
|
33734
|
+
createdAt: Date;
|
33735
|
+
updatedAt: Date;
|
33736
|
+
deletedAt: Date | null;
|
33737
|
+
level: 2 | 1 | 3;
|
33738
|
+
parentId: string | null;
|
33739
|
+
childCategoryList: {
|
33740
|
+
id: string;
|
33741
|
+
value: string;
|
33742
|
+
level: 2 | 1 | 3;
|
33743
|
+
parentId: string | null;
|
33744
|
+
childCategoryList: {
|
33745
|
+
id: string;
|
33746
|
+
value: string;
|
33747
|
+
level: 2 | 1 | 3;
|
33748
|
+
parentId: string | null;
|
33749
|
+
childCategoryList: any[];
|
33750
|
+
}[];
|
33751
|
+
}[];
|
33752
|
+
}[];
|
31666
33753
|
tags: {
|
31667
33754
|
id: string;
|
31668
33755
|
name: string;
|
@@ -31974,11 +34061,34 @@ export declare const mainChatContract: {
|
|
31974
34061
|
handledTime: number | null;
|
31975
34062
|
firstResponseTime: number | null;
|
31976
34063
|
wrapUpForm: {
|
34064
|
+
type: string;
|
31977
34065
|
id: string;
|
31978
34066
|
disposition: string | null;
|
31979
34067
|
createdAt: Date;
|
31980
34068
|
updatedAt: Date;
|
31981
34069
|
deletedAt: Date | null;
|
34070
|
+
categories: {
|
34071
|
+
id: string;
|
34072
|
+
value: string;
|
34073
|
+
createdAt: Date;
|
34074
|
+
updatedAt: Date;
|
34075
|
+
deletedAt: Date | null;
|
34076
|
+
level: 2 | 1 | 3;
|
34077
|
+
parentId: string | null;
|
34078
|
+
childCategoryList: {
|
34079
|
+
id: string;
|
34080
|
+
value: string;
|
34081
|
+
level: 2 | 1 | 3;
|
34082
|
+
parentId: string | null;
|
34083
|
+
childCategoryList: {
|
34084
|
+
id: string;
|
34085
|
+
value: string;
|
34086
|
+
level: 2 | 1 | 3;
|
34087
|
+
parentId: string | null;
|
34088
|
+
childCategoryList: any[];
|
34089
|
+
}[];
|
34090
|
+
}[];
|
34091
|
+
}[];
|
31982
34092
|
tags: {
|
31983
34093
|
id: string;
|
31984
34094
|
name: string;
|
@@ -32291,11 +34401,34 @@ export declare const mainChatContract: {
|
|
32291
34401
|
handledTime: number | null;
|
32292
34402
|
firstResponseTime: number | null;
|
32293
34403
|
wrapUpForm: {
|
34404
|
+
type: string;
|
32294
34405
|
id: string;
|
32295
34406
|
disposition: string | null;
|
32296
34407
|
createdAt: Date;
|
32297
34408
|
updatedAt: Date;
|
32298
34409
|
deletedAt: Date | null;
|
34410
|
+
categories: {
|
34411
|
+
id: string;
|
34412
|
+
value: string;
|
34413
|
+
createdAt: Date;
|
34414
|
+
updatedAt: Date;
|
34415
|
+
deletedAt: Date | null;
|
34416
|
+
level: 2 | 1 | 3;
|
34417
|
+
parentId: string | null;
|
34418
|
+
childCategoryList: {
|
34419
|
+
id: string;
|
34420
|
+
value: string;
|
34421
|
+
level: 2 | 1 | 3;
|
34422
|
+
parentId: string | null;
|
34423
|
+
childCategoryList: {
|
34424
|
+
id: string;
|
34425
|
+
value: string;
|
34426
|
+
level: 2 | 1 | 3;
|
34427
|
+
parentId: string | null;
|
34428
|
+
childCategoryList: any[];
|
34429
|
+
}[];
|
34430
|
+
}[];
|
34431
|
+
}[];
|
32299
34432
|
tags: {
|
32300
34433
|
id: string;
|
32301
34434
|
name: string;
|
@@ -34089,8 +36222,7 @@ export declare const mainChatContract: {
|
|
34089
36222
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
34090
36223
|
note: z.ZodNullable<z.ZodString>;
|
34091
36224
|
disposition: z.ZodNullable<z.ZodString>;
|
34092
|
-
|
34093
|
-
callTo: z.ZodNullable<z.ZodString>;
|
36225
|
+
type: z.ZodString;
|
34094
36226
|
tags: z.ZodArray<z.ZodObject<{
|
34095
36227
|
id: z.ZodString;
|
34096
36228
|
createdAt: z.ZodDate;
|
@@ -34110,12 +36242,137 @@ export declare const mainChatContract: {
|
|
34110
36242
|
updatedAt: Date;
|
34111
36243
|
deletedAt: Date | null;
|
34112
36244
|
}>, "many">;
|
36245
|
+
categories: z.ZodArray<z.ZodObject<{
|
36246
|
+
id: z.ZodString;
|
36247
|
+
createdAt: z.ZodDate;
|
36248
|
+
updatedAt: z.ZodDate;
|
36249
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
36250
|
+
value: z.ZodString;
|
36251
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
36252
|
+
parentId: z.ZodNullable<z.ZodString>;
|
36253
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
36254
|
+
id: z.ZodString;
|
36255
|
+
value: z.ZodString;
|
36256
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
36257
|
+
parentId: z.ZodNullable<z.ZodString>;
|
36258
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
36259
|
+
id: z.ZodString;
|
36260
|
+
value: z.ZodString;
|
36261
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
36262
|
+
parentId: z.ZodNullable<z.ZodString>;
|
36263
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
36264
|
+
}, "strip", z.ZodTypeAny, {
|
36265
|
+
id: string;
|
36266
|
+
value: string;
|
36267
|
+
level: 2 | 1 | 3;
|
36268
|
+
parentId: string | null;
|
36269
|
+
childCategoryList: any[];
|
36270
|
+
}, {
|
36271
|
+
id: string;
|
36272
|
+
value: string;
|
36273
|
+
level: 2 | 1 | 3;
|
36274
|
+
parentId: string | null;
|
36275
|
+
childCategoryList: any[];
|
36276
|
+
}>, "many">;
|
36277
|
+
}, "strip", z.ZodTypeAny, {
|
36278
|
+
id: string;
|
36279
|
+
value: string;
|
36280
|
+
level: 2 | 1 | 3;
|
36281
|
+
parentId: string | null;
|
36282
|
+
childCategoryList: {
|
36283
|
+
id: string;
|
36284
|
+
value: string;
|
36285
|
+
level: 2 | 1 | 3;
|
36286
|
+
parentId: string | null;
|
36287
|
+
childCategoryList: any[];
|
36288
|
+
}[];
|
36289
|
+
}, {
|
36290
|
+
id: string;
|
36291
|
+
value: string;
|
36292
|
+
level: 2 | 1 | 3;
|
36293
|
+
parentId: string | null;
|
36294
|
+
childCategoryList: {
|
36295
|
+
id: string;
|
36296
|
+
value: string;
|
36297
|
+
level: 2 | 1 | 3;
|
36298
|
+
parentId: string | null;
|
36299
|
+
childCategoryList: any[];
|
36300
|
+
}[];
|
36301
|
+
}>, "many">;
|
36302
|
+
}, "strip", z.ZodTypeAny, {
|
36303
|
+
id: string;
|
36304
|
+
value: string;
|
36305
|
+
createdAt: Date;
|
36306
|
+
updatedAt: Date;
|
36307
|
+
deletedAt: Date | null;
|
36308
|
+
level: 2 | 1 | 3;
|
36309
|
+
parentId: string | null;
|
36310
|
+
childCategoryList: {
|
36311
|
+
id: string;
|
36312
|
+
value: string;
|
36313
|
+
level: 2 | 1 | 3;
|
36314
|
+
parentId: string | null;
|
36315
|
+
childCategoryList: {
|
36316
|
+
id: string;
|
36317
|
+
value: string;
|
36318
|
+
level: 2 | 1 | 3;
|
36319
|
+
parentId: string | null;
|
36320
|
+
childCategoryList: any[];
|
36321
|
+
}[];
|
36322
|
+
}[];
|
36323
|
+
}, {
|
36324
|
+
id: string;
|
36325
|
+
value: string;
|
36326
|
+
createdAt: Date;
|
36327
|
+
updatedAt: Date;
|
36328
|
+
deletedAt: Date | null;
|
36329
|
+
level: 2 | 1 | 3;
|
36330
|
+
parentId: string | null;
|
36331
|
+
childCategoryList: {
|
36332
|
+
id: string;
|
36333
|
+
value: string;
|
36334
|
+
level: 2 | 1 | 3;
|
36335
|
+
parentId: string | null;
|
36336
|
+
childCategoryList: {
|
36337
|
+
id: string;
|
36338
|
+
value: string;
|
36339
|
+
level: 2 | 1 | 3;
|
36340
|
+
parentId: string | null;
|
36341
|
+
childCategoryList: any[];
|
36342
|
+
}[];
|
36343
|
+
}[];
|
36344
|
+
}>, "many">;
|
36345
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
36346
|
+
callTo: z.ZodNullable<z.ZodString>;
|
34113
36347
|
}, "strip", z.ZodTypeAny, {
|
36348
|
+
type: string;
|
34114
36349
|
id: string;
|
34115
36350
|
disposition: string | null;
|
34116
36351
|
createdAt: Date;
|
34117
36352
|
updatedAt: Date;
|
34118
36353
|
deletedAt: Date | null;
|
36354
|
+
categories: {
|
36355
|
+
id: string;
|
36356
|
+
value: string;
|
36357
|
+
createdAt: Date;
|
36358
|
+
updatedAt: Date;
|
36359
|
+
deletedAt: Date | null;
|
36360
|
+
level: 2 | 1 | 3;
|
36361
|
+
parentId: string | null;
|
36362
|
+
childCategoryList: {
|
36363
|
+
id: string;
|
36364
|
+
value: string;
|
36365
|
+
level: 2 | 1 | 3;
|
36366
|
+
parentId: string | null;
|
36367
|
+
childCategoryList: {
|
36368
|
+
id: string;
|
36369
|
+
value: string;
|
36370
|
+
level: 2 | 1 | 3;
|
36371
|
+
parentId: string | null;
|
36372
|
+
childCategoryList: any[];
|
36373
|
+
}[];
|
36374
|
+
}[];
|
36375
|
+
}[];
|
34119
36376
|
tags: {
|
34120
36377
|
id: string;
|
34121
36378
|
name: string;
|
@@ -34127,11 +36384,34 @@ export declare const mainChatContract: {
|
|
34127
36384
|
callTo: string | null;
|
34128
36385
|
note: string | null;
|
34129
36386
|
}, {
|
36387
|
+
type: string;
|
34130
36388
|
id: string;
|
34131
36389
|
disposition: string | null;
|
34132
36390
|
createdAt: Date;
|
34133
36391
|
updatedAt: Date;
|
34134
36392
|
deletedAt: Date | null;
|
36393
|
+
categories: {
|
36394
|
+
id: string;
|
36395
|
+
value: string;
|
36396
|
+
createdAt: Date;
|
36397
|
+
updatedAt: Date;
|
36398
|
+
deletedAt: Date | null;
|
36399
|
+
level: 2 | 1 | 3;
|
36400
|
+
parentId: string | null;
|
36401
|
+
childCategoryList: {
|
36402
|
+
id: string;
|
36403
|
+
value: string;
|
36404
|
+
level: 2 | 1 | 3;
|
36405
|
+
parentId: string | null;
|
36406
|
+
childCategoryList: {
|
36407
|
+
id: string;
|
36408
|
+
value: string;
|
36409
|
+
level: 2 | 1 | 3;
|
36410
|
+
parentId: string | null;
|
36411
|
+
childCategoryList: any[];
|
36412
|
+
}[];
|
36413
|
+
}[];
|
36414
|
+
}[];
|
34135
36415
|
tags: {
|
34136
36416
|
id: string;
|
34137
36417
|
name: string;
|
@@ -34160,11 +36440,34 @@ export declare const mainChatContract: {
|
|
34160
36440
|
handledTime: number | null;
|
34161
36441
|
firstResponseTime: number | null;
|
34162
36442
|
wrapUpForm: {
|
36443
|
+
type: string;
|
34163
36444
|
id: string;
|
34164
36445
|
disposition: string | null;
|
34165
36446
|
createdAt: Date;
|
34166
36447
|
updatedAt: Date;
|
34167
36448
|
deletedAt: Date | null;
|
36449
|
+
categories: {
|
36450
|
+
id: string;
|
36451
|
+
value: string;
|
36452
|
+
createdAt: Date;
|
36453
|
+
updatedAt: Date;
|
36454
|
+
deletedAt: Date | null;
|
36455
|
+
level: 2 | 1 | 3;
|
36456
|
+
parentId: string | null;
|
36457
|
+
childCategoryList: {
|
36458
|
+
id: string;
|
36459
|
+
value: string;
|
36460
|
+
level: 2 | 1 | 3;
|
36461
|
+
parentId: string | null;
|
36462
|
+
childCategoryList: {
|
36463
|
+
id: string;
|
36464
|
+
value: string;
|
36465
|
+
level: 2 | 1 | 3;
|
36466
|
+
parentId: string | null;
|
36467
|
+
childCategoryList: any[];
|
36468
|
+
}[];
|
36469
|
+
}[];
|
36470
|
+
}[];
|
34168
36471
|
tags: {
|
34169
36472
|
id: string;
|
34170
36473
|
name: string;
|
@@ -34193,11 +36496,34 @@ export declare const mainChatContract: {
|
|
34193
36496
|
handledTime: number | null;
|
34194
36497
|
firstResponseTime: number | null;
|
34195
36498
|
wrapUpForm: {
|
36499
|
+
type: string;
|
34196
36500
|
id: string;
|
34197
36501
|
disposition: string | null;
|
34198
36502
|
createdAt: Date;
|
34199
36503
|
updatedAt: Date;
|
34200
36504
|
deletedAt: Date | null;
|
36505
|
+
categories: {
|
36506
|
+
id: string;
|
36507
|
+
value: string;
|
36508
|
+
createdAt: Date;
|
36509
|
+
updatedAt: Date;
|
36510
|
+
deletedAt: Date | null;
|
36511
|
+
level: 2 | 1 | 3;
|
36512
|
+
parentId: string | null;
|
36513
|
+
childCategoryList: {
|
36514
|
+
id: string;
|
36515
|
+
value: string;
|
36516
|
+
level: 2 | 1 | 3;
|
36517
|
+
parentId: string | null;
|
36518
|
+
childCategoryList: {
|
36519
|
+
id: string;
|
36520
|
+
value: string;
|
36521
|
+
level: 2 | 1 | 3;
|
36522
|
+
parentId: string | null;
|
36523
|
+
childCategoryList: any[];
|
36524
|
+
}[];
|
36525
|
+
}[];
|
36526
|
+
}[];
|
34201
36527
|
tags: {
|
34202
36528
|
id: string;
|
34203
36529
|
name: string;
|
@@ -34507,11 +36833,34 @@ export declare const mainChatContract: {
|
|
34507
36833
|
handledTime: number | null;
|
34508
36834
|
firstResponseTime: number | null;
|
34509
36835
|
wrapUpForm: {
|
36836
|
+
type: string;
|
34510
36837
|
id: string;
|
34511
36838
|
disposition: string | null;
|
34512
36839
|
createdAt: Date;
|
34513
36840
|
updatedAt: Date;
|
34514
36841
|
deletedAt: Date | null;
|
36842
|
+
categories: {
|
36843
|
+
id: string;
|
36844
|
+
value: string;
|
36845
|
+
createdAt: Date;
|
36846
|
+
updatedAt: Date;
|
36847
|
+
deletedAt: Date | null;
|
36848
|
+
level: 2 | 1 | 3;
|
36849
|
+
parentId: string | null;
|
36850
|
+
childCategoryList: {
|
36851
|
+
id: string;
|
36852
|
+
value: string;
|
36853
|
+
level: 2 | 1 | 3;
|
36854
|
+
parentId: string | null;
|
36855
|
+
childCategoryList: {
|
36856
|
+
id: string;
|
36857
|
+
value: string;
|
36858
|
+
level: 2 | 1 | 3;
|
36859
|
+
parentId: string | null;
|
36860
|
+
childCategoryList: any[];
|
36861
|
+
}[];
|
36862
|
+
}[];
|
36863
|
+
}[];
|
34515
36864
|
tags: {
|
34516
36865
|
id: string;
|
34517
36866
|
name: string;
|
@@ -34821,11 +37170,34 @@ export declare const mainChatContract: {
|
|
34821
37170
|
handledTime: number | null;
|
34822
37171
|
firstResponseTime: number | null;
|
34823
37172
|
wrapUpForm: {
|
37173
|
+
type: string;
|
34824
37174
|
id: string;
|
34825
37175
|
disposition: string | null;
|
34826
37176
|
createdAt: Date;
|
34827
37177
|
updatedAt: Date;
|
34828
37178
|
deletedAt: Date | null;
|
37179
|
+
categories: {
|
37180
|
+
id: string;
|
37181
|
+
value: string;
|
37182
|
+
createdAt: Date;
|
37183
|
+
updatedAt: Date;
|
37184
|
+
deletedAt: Date | null;
|
37185
|
+
level: 2 | 1 | 3;
|
37186
|
+
parentId: string | null;
|
37187
|
+
childCategoryList: {
|
37188
|
+
id: string;
|
37189
|
+
value: string;
|
37190
|
+
level: 2 | 1 | 3;
|
37191
|
+
parentId: string | null;
|
37192
|
+
childCategoryList: {
|
37193
|
+
id: string;
|
37194
|
+
value: string;
|
37195
|
+
level: 2 | 1 | 3;
|
37196
|
+
parentId: string | null;
|
37197
|
+
childCategoryList: any[];
|
37198
|
+
}[];
|
37199
|
+
}[];
|
37200
|
+
}[];
|
34829
37201
|
tags: {
|
34830
37202
|
id: string;
|
34831
37203
|
name: string;
|
@@ -35180,11 +37552,34 @@ export declare const mainChatContract: {
|
|
35180
37552
|
handledTime: number | null;
|
35181
37553
|
firstResponseTime: number | null;
|
35182
37554
|
wrapUpForm: {
|
37555
|
+
type: string;
|
35183
37556
|
id: string;
|
35184
37557
|
disposition: string | null;
|
35185
37558
|
createdAt: Date;
|
35186
37559
|
updatedAt: Date;
|
35187
37560
|
deletedAt: Date | null;
|
37561
|
+
categories: {
|
37562
|
+
id: string;
|
37563
|
+
value: string;
|
37564
|
+
createdAt: Date;
|
37565
|
+
updatedAt: Date;
|
37566
|
+
deletedAt: Date | null;
|
37567
|
+
level: 2 | 1 | 3;
|
37568
|
+
parentId: string | null;
|
37569
|
+
childCategoryList: {
|
37570
|
+
id: string;
|
37571
|
+
value: string;
|
37572
|
+
level: 2 | 1 | 3;
|
37573
|
+
parentId: string | null;
|
37574
|
+
childCategoryList: {
|
37575
|
+
id: string;
|
37576
|
+
value: string;
|
37577
|
+
level: 2 | 1 | 3;
|
37578
|
+
parentId: string | null;
|
37579
|
+
childCategoryList: any[];
|
37580
|
+
}[];
|
37581
|
+
}[];
|
37582
|
+
}[];
|
35188
37583
|
tags: {
|
35189
37584
|
id: string;
|
35190
37585
|
name: string;
|
@@ -35511,11 +37906,34 @@ export declare const mainChatContract: {
|
|
35511
37906
|
handledTime: number | null;
|
35512
37907
|
firstResponseTime: number | null;
|
35513
37908
|
wrapUpForm: {
|
37909
|
+
type: string;
|
35514
37910
|
id: string;
|
35515
37911
|
disposition: string | null;
|
35516
37912
|
createdAt: Date;
|
35517
37913
|
updatedAt: Date;
|
35518
37914
|
deletedAt: Date | null;
|
37915
|
+
categories: {
|
37916
|
+
id: string;
|
37917
|
+
value: string;
|
37918
|
+
createdAt: Date;
|
37919
|
+
updatedAt: Date;
|
37920
|
+
deletedAt: Date | null;
|
37921
|
+
level: 2 | 1 | 3;
|
37922
|
+
parentId: string | null;
|
37923
|
+
childCategoryList: {
|
37924
|
+
id: string;
|
37925
|
+
value: string;
|
37926
|
+
level: 2 | 1 | 3;
|
37927
|
+
parentId: string | null;
|
37928
|
+
childCategoryList: {
|
37929
|
+
id: string;
|
37930
|
+
value: string;
|
37931
|
+
level: 2 | 1 | 3;
|
37932
|
+
parentId: string | null;
|
37933
|
+
childCategoryList: any[];
|
37934
|
+
}[];
|
37935
|
+
}[];
|
37936
|
+
}[];
|
35519
37937
|
tags: {
|
35520
37938
|
id: string;
|
35521
37939
|
name: string;
|
@@ -35844,11 +38262,34 @@ export declare const mainChatContract: {
|
|
35844
38262
|
handledTime: number | null;
|
35845
38263
|
firstResponseTime: number | null;
|
35846
38264
|
wrapUpForm: {
|
38265
|
+
type: string;
|
35847
38266
|
id: string;
|
35848
38267
|
disposition: string | null;
|
35849
38268
|
createdAt: Date;
|
35850
38269
|
updatedAt: Date;
|
35851
38270
|
deletedAt: Date | null;
|
38271
|
+
categories: {
|
38272
|
+
id: string;
|
38273
|
+
value: string;
|
38274
|
+
createdAt: Date;
|
38275
|
+
updatedAt: Date;
|
38276
|
+
deletedAt: Date | null;
|
38277
|
+
level: 2 | 1 | 3;
|
38278
|
+
parentId: string | null;
|
38279
|
+
childCategoryList: {
|
38280
|
+
id: string;
|
38281
|
+
value: string;
|
38282
|
+
level: 2 | 1 | 3;
|
38283
|
+
parentId: string | null;
|
38284
|
+
childCategoryList: {
|
38285
|
+
id: string;
|
38286
|
+
value: string;
|
38287
|
+
level: 2 | 1 | 3;
|
38288
|
+
parentId: string | null;
|
38289
|
+
childCategoryList: any[];
|
38290
|
+
}[];
|
38291
|
+
}[];
|
38292
|
+
}[];
|
35852
38293
|
tags: {
|
35853
38294
|
id: string;
|
35854
38295
|
name: string;
|
@@ -36178,11 +38619,34 @@ export declare const mainChatContract: {
|
|
36178
38619
|
handledTime: number | null;
|
36179
38620
|
firstResponseTime: number | null;
|
36180
38621
|
wrapUpForm: {
|
38622
|
+
type: string;
|
36181
38623
|
id: string;
|
36182
38624
|
disposition: string | null;
|
36183
38625
|
createdAt: Date;
|
36184
38626
|
updatedAt: Date;
|
36185
38627
|
deletedAt: Date | null;
|
38628
|
+
categories: {
|
38629
|
+
id: string;
|
38630
|
+
value: string;
|
38631
|
+
createdAt: Date;
|
38632
|
+
updatedAt: Date;
|
38633
|
+
deletedAt: Date | null;
|
38634
|
+
level: 2 | 1 | 3;
|
38635
|
+
parentId: string | null;
|
38636
|
+
childCategoryList: {
|
38637
|
+
id: string;
|
38638
|
+
value: string;
|
38639
|
+
level: 2 | 1 | 3;
|
38640
|
+
parentId: string | null;
|
38641
|
+
childCategoryList: {
|
38642
|
+
id: string;
|
38643
|
+
value: string;
|
38644
|
+
level: 2 | 1 | 3;
|
38645
|
+
parentId: string | null;
|
38646
|
+
childCategoryList: any[];
|
38647
|
+
}[];
|
38648
|
+
}[];
|
38649
|
+
}[];
|
36186
38650
|
tags: {
|
36187
38651
|
id: string;
|
36188
38652
|
name: string;
|
@@ -38002,8 +40466,7 @@ export declare const mainChatContract: {
|
|
38002
40466
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
38003
40467
|
note: z.ZodNullable<z.ZodString>;
|
38004
40468
|
disposition: z.ZodNullable<z.ZodString>;
|
38005
|
-
|
38006
|
-
callTo: z.ZodNullable<z.ZodString>;
|
40469
|
+
type: z.ZodString;
|
38007
40470
|
tags: z.ZodArray<z.ZodObject<{
|
38008
40471
|
id: z.ZodString;
|
38009
40472
|
createdAt: z.ZodDate;
|
@@ -38023,12 +40486,137 @@ export declare const mainChatContract: {
|
|
38023
40486
|
updatedAt: Date;
|
38024
40487
|
deletedAt: Date | null;
|
38025
40488
|
}>, "many">;
|
40489
|
+
categories: z.ZodArray<z.ZodObject<{
|
40490
|
+
id: z.ZodString;
|
40491
|
+
createdAt: z.ZodDate;
|
40492
|
+
updatedAt: z.ZodDate;
|
40493
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
40494
|
+
value: z.ZodString;
|
40495
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
40496
|
+
parentId: z.ZodNullable<z.ZodString>;
|
40497
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
40498
|
+
id: z.ZodString;
|
40499
|
+
value: z.ZodString;
|
40500
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
40501
|
+
parentId: z.ZodNullable<z.ZodString>;
|
40502
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
40503
|
+
id: z.ZodString;
|
40504
|
+
value: z.ZodString;
|
40505
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
40506
|
+
parentId: z.ZodNullable<z.ZodString>;
|
40507
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
40508
|
+
}, "strip", z.ZodTypeAny, {
|
40509
|
+
id: string;
|
40510
|
+
value: string;
|
40511
|
+
level: 2 | 1 | 3;
|
40512
|
+
parentId: string | null;
|
40513
|
+
childCategoryList: any[];
|
40514
|
+
}, {
|
40515
|
+
id: string;
|
40516
|
+
value: string;
|
40517
|
+
level: 2 | 1 | 3;
|
40518
|
+
parentId: string | null;
|
40519
|
+
childCategoryList: any[];
|
40520
|
+
}>, "many">;
|
40521
|
+
}, "strip", z.ZodTypeAny, {
|
40522
|
+
id: string;
|
40523
|
+
value: string;
|
40524
|
+
level: 2 | 1 | 3;
|
40525
|
+
parentId: string | null;
|
40526
|
+
childCategoryList: {
|
40527
|
+
id: string;
|
40528
|
+
value: string;
|
40529
|
+
level: 2 | 1 | 3;
|
40530
|
+
parentId: string | null;
|
40531
|
+
childCategoryList: any[];
|
40532
|
+
}[];
|
40533
|
+
}, {
|
40534
|
+
id: string;
|
40535
|
+
value: string;
|
40536
|
+
level: 2 | 1 | 3;
|
40537
|
+
parentId: string | null;
|
40538
|
+
childCategoryList: {
|
40539
|
+
id: string;
|
40540
|
+
value: string;
|
40541
|
+
level: 2 | 1 | 3;
|
40542
|
+
parentId: string | null;
|
40543
|
+
childCategoryList: any[];
|
40544
|
+
}[];
|
40545
|
+
}>, "many">;
|
40546
|
+
}, "strip", z.ZodTypeAny, {
|
40547
|
+
id: string;
|
40548
|
+
value: string;
|
40549
|
+
createdAt: Date;
|
40550
|
+
updatedAt: Date;
|
40551
|
+
deletedAt: Date | null;
|
40552
|
+
level: 2 | 1 | 3;
|
40553
|
+
parentId: string | null;
|
40554
|
+
childCategoryList: {
|
40555
|
+
id: string;
|
40556
|
+
value: string;
|
40557
|
+
level: 2 | 1 | 3;
|
40558
|
+
parentId: string | null;
|
40559
|
+
childCategoryList: {
|
40560
|
+
id: string;
|
40561
|
+
value: string;
|
40562
|
+
level: 2 | 1 | 3;
|
40563
|
+
parentId: string | null;
|
40564
|
+
childCategoryList: any[];
|
40565
|
+
}[];
|
40566
|
+
}[];
|
40567
|
+
}, {
|
40568
|
+
id: string;
|
40569
|
+
value: string;
|
40570
|
+
createdAt: Date;
|
40571
|
+
updatedAt: Date;
|
40572
|
+
deletedAt: Date | null;
|
40573
|
+
level: 2 | 1 | 3;
|
40574
|
+
parentId: string | null;
|
40575
|
+
childCategoryList: {
|
40576
|
+
id: string;
|
40577
|
+
value: string;
|
40578
|
+
level: 2 | 1 | 3;
|
40579
|
+
parentId: string | null;
|
40580
|
+
childCategoryList: {
|
40581
|
+
id: string;
|
40582
|
+
value: string;
|
40583
|
+
level: 2 | 1 | 3;
|
40584
|
+
parentId: string | null;
|
40585
|
+
childCategoryList: any[];
|
40586
|
+
}[];
|
40587
|
+
}[];
|
40588
|
+
}>, "many">;
|
40589
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
40590
|
+
callTo: z.ZodNullable<z.ZodString>;
|
38026
40591
|
}, "strip", z.ZodTypeAny, {
|
40592
|
+
type: string;
|
38027
40593
|
id: string;
|
38028
40594
|
disposition: string | null;
|
38029
40595
|
createdAt: Date;
|
38030
40596
|
updatedAt: Date;
|
38031
40597
|
deletedAt: Date | null;
|
40598
|
+
categories: {
|
40599
|
+
id: string;
|
40600
|
+
value: string;
|
40601
|
+
createdAt: Date;
|
40602
|
+
updatedAt: Date;
|
40603
|
+
deletedAt: Date | null;
|
40604
|
+
level: 2 | 1 | 3;
|
40605
|
+
parentId: string | null;
|
40606
|
+
childCategoryList: {
|
40607
|
+
id: string;
|
40608
|
+
value: string;
|
40609
|
+
level: 2 | 1 | 3;
|
40610
|
+
parentId: string | null;
|
40611
|
+
childCategoryList: {
|
40612
|
+
id: string;
|
40613
|
+
value: string;
|
40614
|
+
level: 2 | 1 | 3;
|
40615
|
+
parentId: string | null;
|
40616
|
+
childCategoryList: any[];
|
40617
|
+
}[];
|
40618
|
+
}[];
|
40619
|
+
}[];
|
38032
40620
|
tags: {
|
38033
40621
|
id: string;
|
38034
40622
|
name: string;
|
@@ -38040,11 +40628,34 @@ export declare const mainChatContract: {
|
|
38040
40628
|
callTo: string | null;
|
38041
40629
|
note: string | null;
|
38042
40630
|
}, {
|
40631
|
+
type: string;
|
38043
40632
|
id: string;
|
38044
40633
|
disposition: string | null;
|
38045
40634
|
createdAt: Date;
|
38046
40635
|
updatedAt: Date;
|
38047
40636
|
deletedAt: Date | null;
|
40637
|
+
categories: {
|
40638
|
+
id: string;
|
40639
|
+
value: string;
|
40640
|
+
createdAt: Date;
|
40641
|
+
updatedAt: Date;
|
40642
|
+
deletedAt: Date | null;
|
40643
|
+
level: 2 | 1 | 3;
|
40644
|
+
parentId: string | null;
|
40645
|
+
childCategoryList: {
|
40646
|
+
id: string;
|
40647
|
+
value: string;
|
40648
|
+
level: 2 | 1 | 3;
|
40649
|
+
parentId: string | null;
|
40650
|
+
childCategoryList: {
|
40651
|
+
id: string;
|
40652
|
+
value: string;
|
40653
|
+
level: 2 | 1 | 3;
|
40654
|
+
parentId: string | null;
|
40655
|
+
childCategoryList: any[];
|
40656
|
+
}[];
|
40657
|
+
}[];
|
40658
|
+
}[];
|
38048
40659
|
tags: {
|
38049
40660
|
id: string;
|
38050
40661
|
name: string;
|
@@ -38073,11 +40684,34 @@ export declare const mainChatContract: {
|
|
38073
40684
|
handledTime: number | null;
|
38074
40685
|
firstResponseTime: number | null;
|
38075
40686
|
wrapUpForm: {
|
40687
|
+
type: string;
|
38076
40688
|
id: string;
|
38077
40689
|
disposition: string | null;
|
38078
40690
|
createdAt: Date;
|
38079
40691
|
updatedAt: Date;
|
38080
40692
|
deletedAt: Date | null;
|
40693
|
+
categories: {
|
40694
|
+
id: string;
|
40695
|
+
value: string;
|
40696
|
+
createdAt: Date;
|
40697
|
+
updatedAt: Date;
|
40698
|
+
deletedAt: Date | null;
|
40699
|
+
level: 2 | 1 | 3;
|
40700
|
+
parentId: string | null;
|
40701
|
+
childCategoryList: {
|
40702
|
+
id: string;
|
40703
|
+
value: string;
|
40704
|
+
level: 2 | 1 | 3;
|
40705
|
+
parentId: string | null;
|
40706
|
+
childCategoryList: {
|
40707
|
+
id: string;
|
40708
|
+
value: string;
|
40709
|
+
level: 2 | 1 | 3;
|
40710
|
+
parentId: string | null;
|
40711
|
+
childCategoryList: any[];
|
40712
|
+
}[];
|
40713
|
+
}[];
|
40714
|
+
}[];
|
38081
40715
|
tags: {
|
38082
40716
|
id: string;
|
38083
40717
|
name: string;
|
@@ -38106,11 +40740,34 @@ export declare const mainChatContract: {
|
|
38106
40740
|
handledTime: number | null;
|
38107
40741
|
firstResponseTime: number | null;
|
38108
40742
|
wrapUpForm: {
|
40743
|
+
type: string;
|
38109
40744
|
id: string;
|
38110
40745
|
disposition: string | null;
|
38111
40746
|
createdAt: Date;
|
38112
40747
|
updatedAt: Date;
|
38113
40748
|
deletedAt: Date | null;
|
40749
|
+
categories: {
|
40750
|
+
id: string;
|
40751
|
+
value: string;
|
40752
|
+
createdAt: Date;
|
40753
|
+
updatedAt: Date;
|
40754
|
+
deletedAt: Date | null;
|
40755
|
+
level: 2 | 1 | 3;
|
40756
|
+
parentId: string | null;
|
40757
|
+
childCategoryList: {
|
40758
|
+
id: string;
|
40759
|
+
value: string;
|
40760
|
+
level: 2 | 1 | 3;
|
40761
|
+
parentId: string | null;
|
40762
|
+
childCategoryList: {
|
40763
|
+
id: string;
|
40764
|
+
value: string;
|
40765
|
+
level: 2 | 1 | 3;
|
40766
|
+
parentId: string | null;
|
40767
|
+
childCategoryList: any[];
|
40768
|
+
}[];
|
40769
|
+
}[];
|
40770
|
+
}[];
|
38114
40771
|
tags: {
|
38115
40772
|
id: string;
|
38116
40773
|
name: string;
|
@@ -39205,11 +41862,34 @@ export declare const mainChatContract: {
|
|
39205
41862
|
handledTime: number | null;
|
39206
41863
|
firstResponseTime: number | null;
|
39207
41864
|
wrapUpForm: {
|
41865
|
+
type: string;
|
39208
41866
|
id: string;
|
39209
41867
|
disposition: string | null;
|
39210
41868
|
createdAt: Date;
|
39211
41869
|
updatedAt: Date;
|
39212
41870
|
deletedAt: Date | null;
|
41871
|
+
categories: {
|
41872
|
+
id: string;
|
41873
|
+
value: string;
|
41874
|
+
createdAt: Date;
|
41875
|
+
updatedAt: Date;
|
41876
|
+
deletedAt: Date | null;
|
41877
|
+
level: 2 | 1 | 3;
|
41878
|
+
parentId: string | null;
|
41879
|
+
childCategoryList: {
|
41880
|
+
id: string;
|
41881
|
+
value: string;
|
41882
|
+
level: 2 | 1 | 3;
|
41883
|
+
parentId: string | null;
|
41884
|
+
childCategoryList: {
|
41885
|
+
id: string;
|
41886
|
+
value: string;
|
41887
|
+
level: 2 | 1 | 3;
|
41888
|
+
parentId: string | null;
|
41889
|
+
childCategoryList: any[];
|
41890
|
+
}[];
|
41891
|
+
}[];
|
41892
|
+
}[];
|
39213
41893
|
tags: {
|
39214
41894
|
id: string;
|
39215
41895
|
name: string;
|
@@ -39617,11 +42297,34 @@ export declare const mainChatContract: {
|
|
39617
42297
|
handledTime: number | null;
|
39618
42298
|
firstResponseTime: number | null;
|
39619
42299
|
wrapUpForm: {
|
42300
|
+
type: string;
|
39620
42301
|
id: string;
|
39621
42302
|
disposition: string | null;
|
39622
42303
|
createdAt: Date;
|
39623
42304
|
updatedAt: Date;
|
39624
42305
|
deletedAt: Date | null;
|
42306
|
+
categories: {
|
42307
|
+
id: string;
|
42308
|
+
value: string;
|
42309
|
+
createdAt: Date;
|
42310
|
+
updatedAt: Date;
|
42311
|
+
deletedAt: Date | null;
|
42312
|
+
level: 2 | 1 | 3;
|
42313
|
+
parentId: string | null;
|
42314
|
+
childCategoryList: {
|
42315
|
+
id: string;
|
42316
|
+
value: string;
|
42317
|
+
level: 2 | 1 | 3;
|
42318
|
+
parentId: string | null;
|
42319
|
+
childCategoryList: {
|
42320
|
+
id: string;
|
42321
|
+
value: string;
|
42322
|
+
level: 2 | 1 | 3;
|
42323
|
+
parentId: string | null;
|
42324
|
+
childCategoryList: any[];
|
42325
|
+
}[];
|
42326
|
+
}[];
|
42327
|
+
}[];
|
39625
42328
|
tags: {
|
39626
42329
|
id: string;
|
39627
42330
|
name: string;
|
@@ -40031,11 +42734,34 @@ export declare const mainChatContract: {
|
|
40031
42734
|
handledTime: number | null;
|
40032
42735
|
firstResponseTime: number | null;
|
40033
42736
|
wrapUpForm: {
|
42737
|
+
type: string;
|
40034
42738
|
id: string;
|
40035
42739
|
disposition: string | null;
|
40036
42740
|
createdAt: Date;
|
40037
42741
|
updatedAt: Date;
|
40038
42742
|
deletedAt: Date | null;
|
42743
|
+
categories: {
|
42744
|
+
id: string;
|
42745
|
+
value: string;
|
42746
|
+
createdAt: Date;
|
42747
|
+
updatedAt: Date;
|
42748
|
+
deletedAt: Date | null;
|
42749
|
+
level: 2 | 1 | 3;
|
42750
|
+
parentId: string | null;
|
42751
|
+
childCategoryList: {
|
42752
|
+
id: string;
|
42753
|
+
value: string;
|
42754
|
+
level: 2 | 1 | 3;
|
42755
|
+
parentId: string | null;
|
42756
|
+
childCategoryList: {
|
42757
|
+
id: string;
|
42758
|
+
value: string;
|
42759
|
+
level: 2 | 1 | 3;
|
42760
|
+
parentId: string | null;
|
42761
|
+
childCategoryList: any[];
|
42762
|
+
}[];
|
42763
|
+
}[];
|
42764
|
+
}[];
|
40039
42765
|
tags: {
|
40040
42766
|
id: string;
|
40041
42767
|
name: string;
|
@@ -40446,11 +43172,34 @@ export declare const mainChatContract: {
|
|
40446
43172
|
handledTime: number | null;
|
40447
43173
|
firstResponseTime: number | null;
|
40448
43174
|
wrapUpForm: {
|
43175
|
+
type: string;
|
40449
43176
|
id: string;
|
40450
43177
|
disposition: string | null;
|
40451
43178
|
createdAt: Date;
|
40452
43179
|
updatedAt: Date;
|
40453
43180
|
deletedAt: Date | null;
|
43181
|
+
categories: {
|
43182
|
+
id: string;
|
43183
|
+
value: string;
|
43184
|
+
createdAt: Date;
|
43185
|
+
updatedAt: Date;
|
43186
|
+
deletedAt: Date | null;
|
43187
|
+
level: 2 | 1 | 3;
|
43188
|
+
parentId: string | null;
|
43189
|
+
childCategoryList: {
|
43190
|
+
id: string;
|
43191
|
+
value: string;
|
43192
|
+
level: 2 | 1 | 3;
|
43193
|
+
parentId: string | null;
|
43194
|
+
childCategoryList: {
|
43195
|
+
id: string;
|
43196
|
+
value: string;
|
43197
|
+
level: 2 | 1 | 3;
|
43198
|
+
parentId: string | null;
|
43199
|
+
childCategoryList: any[];
|
43200
|
+
}[];
|
43201
|
+
}[];
|
43202
|
+
}[];
|
40454
43203
|
tags: {
|
40455
43204
|
id: string;
|
40456
43205
|
name: string;
|
@@ -42245,8 +44994,7 @@ export declare const mainChatContract: {
|
|
42245
44994
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
42246
44995
|
note: z.ZodNullable<z.ZodString>;
|
42247
44996
|
disposition: z.ZodNullable<z.ZodString>;
|
42248
|
-
|
42249
|
-
callTo: z.ZodNullable<z.ZodString>;
|
44997
|
+
type: z.ZodString;
|
42250
44998
|
tags: z.ZodArray<z.ZodObject<{
|
42251
44999
|
id: z.ZodString;
|
42252
45000
|
createdAt: z.ZodDate;
|
@@ -42266,12 +45014,137 @@ export declare const mainChatContract: {
|
|
42266
45014
|
updatedAt: Date;
|
42267
45015
|
deletedAt: Date | null;
|
42268
45016
|
}>, "many">;
|
45017
|
+
categories: z.ZodArray<z.ZodObject<{
|
45018
|
+
id: z.ZodString;
|
45019
|
+
createdAt: z.ZodDate;
|
45020
|
+
updatedAt: z.ZodDate;
|
45021
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
45022
|
+
value: z.ZodString;
|
45023
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
45024
|
+
parentId: z.ZodNullable<z.ZodString>;
|
45025
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
45026
|
+
id: z.ZodString;
|
45027
|
+
value: z.ZodString;
|
45028
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
45029
|
+
parentId: z.ZodNullable<z.ZodString>;
|
45030
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
45031
|
+
id: z.ZodString;
|
45032
|
+
value: z.ZodString;
|
45033
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
45034
|
+
parentId: z.ZodNullable<z.ZodString>;
|
45035
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
45036
|
+
}, "strip", z.ZodTypeAny, {
|
45037
|
+
id: string;
|
45038
|
+
value: string;
|
45039
|
+
level: 2 | 1 | 3;
|
45040
|
+
parentId: string | null;
|
45041
|
+
childCategoryList: any[];
|
45042
|
+
}, {
|
45043
|
+
id: string;
|
45044
|
+
value: string;
|
45045
|
+
level: 2 | 1 | 3;
|
45046
|
+
parentId: string | null;
|
45047
|
+
childCategoryList: any[];
|
45048
|
+
}>, "many">;
|
45049
|
+
}, "strip", z.ZodTypeAny, {
|
45050
|
+
id: string;
|
45051
|
+
value: string;
|
45052
|
+
level: 2 | 1 | 3;
|
45053
|
+
parentId: string | null;
|
45054
|
+
childCategoryList: {
|
45055
|
+
id: string;
|
45056
|
+
value: string;
|
45057
|
+
level: 2 | 1 | 3;
|
45058
|
+
parentId: string | null;
|
45059
|
+
childCategoryList: any[];
|
45060
|
+
}[];
|
45061
|
+
}, {
|
45062
|
+
id: string;
|
45063
|
+
value: string;
|
45064
|
+
level: 2 | 1 | 3;
|
45065
|
+
parentId: string | null;
|
45066
|
+
childCategoryList: {
|
45067
|
+
id: string;
|
45068
|
+
value: string;
|
45069
|
+
level: 2 | 1 | 3;
|
45070
|
+
parentId: string | null;
|
45071
|
+
childCategoryList: any[];
|
45072
|
+
}[];
|
45073
|
+
}>, "many">;
|
45074
|
+
}, "strip", z.ZodTypeAny, {
|
45075
|
+
id: string;
|
45076
|
+
value: string;
|
45077
|
+
createdAt: Date;
|
45078
|
+
updatedAt: Date;
|
45079
|
+
deletedAt: Date | null;
|
45080
|
+
level: 2 | 1 | 3;
|
45081
|
+
parentId: string | null;
|
45082
|
+
childCategoryList: {
|
45083
|
+
id: string;
|
45084
|
+
value: string;
|
45085
|
+
level: 2 | 1 | 3;
|
45086
|
+
parentId: string | null;
|
45087
|
+
childCategoryList: {
|
45088
|
+
id: string;
|
45089
|
+
value: string;
|
45090
|
+
level: 2 | 1 | 3;
|
45091
|
+
parentId: string | null;
|
45092
|
+
childCategoryList: any[];
|
45093
|
+
}[];
|
45094
|
+
}[];
|
45095
|
+
}, {
|
45096
|
+
id: string;
|
45097
|
+
value: string;
|
45098
|
+
createdAt: Date;
|
45099
|
+
updatedAt: Date;
|
45100
|
+
deletedAt: Date | null;
|
45101
|
+
level: 2 | 1 | 3;
|
45102
|
+
parentId: string | null;
|
45103
|
+
childCategoryList: {
|
45104
|
+
id: string;
|
45105
|
+
value: string;
|
45106
|
+
level: 2 | 1 | 3;
|
45107
|
+
parentId: string | null;
|
45108
|
+
childCategoryList: {
|
45109
|
+
id: string;
|
45110
|
+
value: string;
|
45111
|
+
level: 2 | 1 | 3;
|
45112
|
+
parentId: string | null;
|
45113
|
+
childCategoryList: any[];
|
45114
|
+
}[];
|
45115
|
+
}[];
|
45116
|
+
}>, "many">;
|
45117
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
45118
|
+
callTo: z.ZodNullable<z.ZodString>;
|
42269
45119
|
}, "strip", z.ZodTypeAny, {
|
45120
|
+
type: string;
|
42270
45121
|
id: string;
|
42271
45122
|
disposition: string | null;
|
42272
45123
|
createdAt: Date;
|
42273
45124
|
updatedAt: Date;
|
42274
45125
|
deletedAt: Date | null;
|
45126
|
+
categories: {
|
45127
|
+
id: string;
|
45128
|
+
value: string;
|
45129
|
+
createdAt: Date;
|
45130
|
+
updatedAt: Date;
|
45131
|
+
deletedAt: Date | null;
|
45132
|
+
level: 2 | 1 | 3;
|
45133
|
+
parentId: string | null;
|
45134
|
+
childCategoryList: {
|
45135
|
+
id: string;
|
45136
|
+
value: string;
|
45137
|
+
level: 2 | 1 | 3;
|
45138
|
+
parentId: string | null;
|
45139
|
+
childCategoryList: {
|
45140
|
+
id: string;
|
45141
|
+
value: string;
|
45142
|
+
level: 2 | 1 | 3;
|
45143
|
+
parentId: string | null;
|
45144
|
+
childCategoryList: any[];
|
45145
|
+
}[];
|
45146
|
+
}[];
|
45147
|
+
}[];
|
42275
45148
|
tags: {
|
42276
45149
|
id: string;
|
42277
45150
|
name: string;
|
@@ -42283,11 +45156,34 @@ export declare const mainChatContract: {
|
|
42283
45156
|
callTo: string | null;
|
42284
45157
|
note: string | null;
|
42285
45158
|
}, {
|
45159
|
+
type: string;
|
42286
45160
|
id: string;
|
42287
45161
|
disposition: string | null;
|
42288
45162
|
createdAt: Date;
|
42289
45163
|
updatedAt: Date;
|
42290
45164
|
deletedAt: Date | null;
|
45165
|
+
categories: {
|
45166
|
+
id: string;
|
45167
|
+
value: string;
|
45168
|
+
createdAt: Date;
|
45169
|
+
updatedAt: Date;
|
45170
|
+
deletedAt: Date | null;
|
45171
|
+
level: 2 | 1 | 3;
|
45172
|
+
parentId: string | null;
|
45173
|
+
childCategoryList: {
|
45174
|
+
id: string;
|
45175
|
+
value: string;
|
45176
|
+
level: 2 | 1 | 3;
|
45177
|
+
parentId: string | null;
|
45178
|
+
childCategoryList: {
|
45179
|
+
id: string;
|
45180
|
+
value: string;
|
45181
|
+
level: 2 | 1 | 3;
|
45182
|
+
parentId: string | null;
|
45183
|
+
childCategoryList: any[];
|
45184
|
+
}[];
|
45185
|
+
}[];
|
45186
|
+
}[];
|
42291
45187
|
tags: {
|
42292
45188
|
id: string;
|
42293
45189
|
name: string;
|
@@ -42316,11 +45212,34 @@ export declare const mainChatContract: {
|
|
42316
45212
|
handledTime: number | null;
|
42317
45213
|
firstResponseTime: number | null;
|
42318
45214
|
wrapUpForm: {
|
45215
|
+
type: string;
|
42319
45216
|
id: string;
|
42320
45217
|
disposition: string | null;
|
42321
45218
|
createdAt: Date;
|
42322
45219
|
updatedAt: Date;
|
42323
45220
|
deletedAt: Date | null;
|
45221
|
+
categories: {
|
45222
|
+
id: string;
|
45223
|
+
value: string;
|
45224
|
+
createdAt: Date;
|
45225
|
+
updatedAt: Date;
|
45226
|
+
deletedAt: Date | null;
|
45227
|
+
level: 2 | 1 | 3;
|
45228
|
+
parentId: string | null;
|
45229
|
+
childCategoryList: {
|
45230
|
+
id: string;
|
45231
|
+
value: string;
|
45232
|
+
level: 2 | 1 | 3;
|
45233
|
+
parentId: string | null;
|
45234
|
+
childCategoryList: {
|
45235
|
+
id: string;
|
45236
|
+
value: string;
|
45237
|
+
level: 2 | 1 | 3;
|
45238
|
+
parentId: string | null;
|
45239
|
+
childCategoryList: any[];
|
45240
|
+
}[];
|
45241
|
+
}[];
|
45242
|
+
}[];
|
42324
45243
|
tags: {
|
42325
45244
|
id: string;
|
42326
45245
|
name: string;
|
@@ -42349,11 +45268,34 @@ export declare const mainChatContract: {
|
|
42349
45268
|
handledTime: number | null;
|
42350
45269
|
firstResponseTime: number | null;
|
42351
45270
|
wrapUpForm: {
|
45271
|
+
type: string;
|
42352
45272
|
id: string;
|
42353
45273
|
disposition: string | null;
|
42354
45274
|
createdAt: Date;
|
42355
45275
|
updatedAt: Date;
|
42356
45276
|
deletedAt: Date | null;
|
45277
|
+
categories: {
|
45278
|
+
id: string;
|
45279
|
+
value: string;
|
45280
|
+
createdAt: Date;
|
45281
|
+
updatedAt: Date;
|
45282
|
+
deletedAt: Date | null;
|
45283
|
+
level: 2 | 1 | 3;
|
45284
|
+
parentId: string | null;
|
45285
|
+
childCategoryList: {
|
45286
|
+
id: string;
|
45287
|
+
value: string;
|
45288
|
+
level: 2 | 1 | 3;
|
45289
|
+
parentId: string | null;
|
45290
|
+
childCategoryList: {
|
45291
|
+
id: string;
|
45292
|
+
value: string;
|
45293
|
+
level: 2 | 1 | 3;
|
45294
|
+
parentId: string | null;
|
45295
|
+
childCategoryList: any[];
|
45296
|
+
}[];
|
45297
|
+
}[];
|
45298
|
+
}[];
|
42357
45299
|
tags: {
|
42358
45300
|
id: string;
|
42359
45301
|
name: string;
|
@@ -42665,11 +45607,34 @@ export declare const mainChatContract: {
|
|
42665
45607
|
handledTime: number | null;
|
42666
45608
|
firstResponseTime: number | null;
|
42667
45609
|
wrapUpForm: {
|
45610
|
+
type: string;
|
42668
45611
|
id: string;
|
42669
45612
|
disposition: string | null;
|
42670
45613
|
createdAt: Date;
|
42671
45614
|
updatedAt: Date;
|
42672
45615
|
deletedAt: Date | null;
|
45616
|
+
categories: {
|
45617
|
+
id: string;
|
45618
|
+
value: string;
|
45619
|
+
createdAt: Date;
|
45620
|
+
updatedAt: Date;
|
45621
|
+
deletedAt: Date | null;
|
45622
|
+
level: 2 | 1 | 3;
|
45623
|
+
parentId: string | null;
|
45624
|
+
childCategoryList: {
|
45625
|
+
id: string;
|
45626
|
+
value: string;
|
45627
|
+
level: 2 | 1 | 3;
|
45628
|
+
parentId: string | null;
|
45629
|
+
childCategoryList: {
|
45630
|
+
id: string;
|
45631
|
+
value: string;
|
45632
|
+
level: 2 | 1 | 3;
|
45633
|
+
parentId: string | null;
|
45634
|
+
childCategoryList: any[];
|
45635
|
+
}[];
|
45636
|
+
}[];
|
45637
|
+
}[];
|
42673
45638
|
tags: {
|
42674
45639
|
id: string;
|
42675
45640
|
name: string;
|
@@ -42980,11 +45945,34 @@ export declare const mainChatContract: {
|
|
42980
45945
|
handledTime: number | null;
|
42981
45946
|
firstResponseTime: number | null;
|
42982
45947
|
wrapUpForm: {
|
45948
|
+
type: string;
|
42983
45949
|
id: string;
|
42984
45950
|
disposition: string | null;
|
42985
45951
|
createdAt: Date;
|
42986
45952
|
updatedAt: Date;
|
42987
45953
|
deletedAt: Date | null;
|
45954
|
+
categories: {
|
45955
|
+
id: string;
|
45956
|
+
value: string;
|
45957
|
+
createdAt: Date;
|
45958
|
+
updatedAt: Date;
|
45959
|
+
deletedAt: Date | null;
|
45960
|
+
level: 2 | 1 | 3;
|
45961
|
+
parentId: string | null;
|
45962
|
+
childCategoryList: {
|
45963
|
+
id: string;
|
45964
|
+
value: string;
|
45965
|
+
level: 2 | 1 | 3;
|
45966
|
+
parentId: string | null;
|
45967
|
+
childCategoryList: {
|
45968
|
+
id: string;
|
45969
|
+
value: string;
|
45970
|
+
level: 2 | 1 | 3;
|
45971
|
+
parentId: string | null;
|
45972
|
+
childCategoryList: any[];
|
45973
|
+
}[];
|
45974
|
+
}[];
|
45975
|
+
}[];
|
42988
45976
|
tags: {
|
42989
45977
|
id: string;
|
42990
45978
|
name: string;
|
@@ -43297,11 +46285,34 @@ export declare const mainChatContract: {
|
|
43297
46285
|
handledTime: number | null;
|
43298
46286
|
firstResponseTime: number | null;
|
43299
46287
|
wrapUpForm: {
|
46288
|
+
type: string;
|
43300
46289
|
id: string;
|
43301
46290
|
disposition: string | null;
|
43302
46291
|
createdAt: Date;
|
43303
46292
|
updatedAt: Date;
|
43304
46293
|
deletedAt: Date | null;
|
46294
|
+
categories: {
|
46295
|
+
id: string;
|
46296
|
+
value: string;
|
46297
|
+
createdAt: Date;
|
46298
|
+
updatedAt: Date;
|
46299
|
+
deletedAt: Date | null;
|
46300
|
+
level: 2 | 1 | 3;
|
46301
|
+
parentId: string | null;
|
46302
|
+
childCategoryList: {
|
46303
|
+
id: string;
|
46304
|
+
value: string;
|
46305
|
+
level: 2 | 1 | 3;
|
46306
|
+
parentId: string | null;
|
46307
|
+
childCategoryList: {
|
46308
|
+
id: string;
|
46309
|
+
value: string;
|
46310
|
+
level: 2 | 1 | 3;
|
46311
|
+
parentId: string | null;
|
46312
|
+
childCategoryList: any[];
|
46313
|
+
}[];
|
46314
|
+
}[];
|
46315
|
+
}[];
|
43305
46316
|
tags: {
|
43306
46317
|
id: string;
|
43307
46318
|
name: string;
|
@@ -43615,11 +46626,34 @@ export declare const mainChatContract: {
|
|
43615
46626
|
handledTime: number | null;
|
43616
46627
|
firstResponseTime: number | null;
|
43617
46628
|
wrapUpForm: {
|
46629
|
+
type: string;
|
43618
46630
|
id: string;
|
43619
46631
|
disposition: string | null;
|
43620
46632
|
createdAt: Date;
|
43621
46633
|
updatedAt: Date;
|
43622
46634
|
deletedAt: Date | null;
|
46635
|
+
categories: {
|
46636
|
+
id: string;
|
46637
|
+
value: string;
|
46638
|
+
createdAt: Date;
|
46639
|
+
updatedAt: Date;
|
46640
|
+
deletedAt: Date | null;
|
46641
|
+
level: 2 | 1 | 3;
|
46642
|
+
parentId: string | null;
|
46643
|
+
childCategoryList: {
|
46644
|
+
id: string;
|
46645
|
+
value: string;
|
46646
|
+
level: 2 | 1 | 3;
|
46647
|
+
parentId: string | null;
|
46648
|
+
childCategoryList: {
|
46649
|
+
id: string;
|
46650
|
+
value: string;
|
46651
|
+
level: 2 | 1 | 3;
|
46652
|
+
parentId: string | null;
|
46653
|
+
childCategoryList: any[];
|
46654
|
+
}[];
|
46655
|
+
}[];
|
46656
|
+
}[];
|
43623
46657
|
tags: {
|
43624
46658
|
id: string;
|
43625
46659
|
name: string;
|
@@ -45424,8 +48458,7 @@ export declare const mainChatContract: {
|
|
45424
48458
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
45425
48459
|
note: z.ZodNullable<z.ZodString>;
|
45426
48460
|
disposition: z.ZodNullable<z.ZodString>;
|
45427
|
-
|
45428
|
-
callTo: z.ZodNullable<z.ZodString>;
|
48461
|
+
type: z.ZodString;
|
45429
48462
|
tags: z.ZodArray<z.ZodObject<{
|
45430
48463
|
id: z.ZodString;
|
45431
48464
|
createdAt: z.ZodDate;
|
@@ -45445,12 +48478,137 @@ export declare const mainChatContract: {
|
|
45445
48478
|
updatedAt: Date;
|
45446
48479
|
deletedAt: Date | null;
|
45447
48480
|
}>, "many">;
|
48481
|
+
categories: z.ZodArray<z.ZodObject<{
|
48482
|
+
id: z.ZodString;
|
48483
|
+
createdAt: z.ZodDate;
|
48484
|
+
updatedAt: z.ZodDate;
|
48485
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
48486
|
+
value: z.ZodString;
|
48487
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
48488
|
+
parentId: z.ZodNullable<z.ZodString>;
|
48489
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
48490
|
+
id: z.ZodString;
|
48491
|
+
value: z.ZodString;
|
48492
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
48493
|
+
parentId: z.ZodNullable<z.ZodString>;
|
48494
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
48495
|
+
id: z.ZodString;
|
48496
|
+
value: z.ZodString;
|
48497
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
48498
|
+
parentId: z.ZodNullable<z.ZodString>;
|
48499
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
48500
|
+
}, "strip", z.ZodTypeAny, {
|
48501
|
+
id: string;
|
48502
|
+
value: string;
|
48503
|
+
level: 2 | 1 | 3;
|
48504
|
+
parentId: string | null;
|
48505
|
+
childCategoryList: any[];
|
48506
|
+
}, {
|
48507
|
+
id: string;
|
48508
|
+
value: string;
|
48509
|
+
level: 2 | 1 | 3;
|
48510
|
+
parentId: string | null;
|
48511
|
+
childCategoryList: any[];
|
48512
|
+
}>, "many">;
|
48513
|
+
}, "strip", z.ZodTypeAny, {
|
48514
|
+
id: string;
|
48515
|
+
value: string;
|
48516
|
+
level: 2 | 1 | 3;
|
48517
|
+
parentId: string | null;
|
48518
|
+
childCategoryList: {
|
48519
|
+
id: string;
|
48520
|
+
value: string;
|
48521
|
+
level: 2 | 1 | 3;
|
48522
|
+
parentId: string | null;
|
48523
|
+
childCategoryList: any[];
|
48524
|
+
}[];
|
48525
|
+
}, {
|
48526
|
+
id: string;
|
48527
|
+
value: string;
|
48528
|
+
level: 2 | 1 | 3;
|
48529
|
+
parentId: string | null;
|
48530
|
+
childCategoryList: {
|
48531
|
+
id: string;
|
48532
|
+
value: string;
|
48533
|
+
level: 2 | 1 | 3;
|
48534
|
+
parentId: string | null;
|
48535
|
+
childCategoryList: any[];
|
48536
|
+
}[];
|
48537
|
+
}>, "many">;
|
48538
|
+
}, "strip", z.ZodTypeAny, {
|
48539
|
+
id: string;
|
48540
|
+
value: string;
|
48541
|
+
createdAt: Date;
|
48542
|
+
updatedAt: Date;
|
48543
|
+
deletedAt: Date | null;
|
48544
|
+
level: 2 | 1 | 3;
|
48545
|
+
parentId: string | null;
|
48546
|
+
childCategoryList: {
|
48547
|
+
id: string;
|
48548
|
+
value: string;
|
48549
|
+
level: 2 | 1 | 3;
|
48550
|
+
parentId: string | null;
|
48551
|
+
childCategoryList: {
|
48552
|
+
id: string;
|
48553
|
+
value: string;
|
48554
|
+
level: 2 | 1 | 3;
|
48555
|
+
parentId: string | null;
|
48556
|
+
childCategoryList: any[];
|
48557
|
+
}[];
|
48558
|
+
}[];
|
48559
|
+
}, {
|
48560
|
+
id: string;
|
48561
|
+
value: string;
|
48562
|
+
createdAt: Date;
|
48563
|
+
updatedAt: Date;
|
48564
|
+
deletedAt: Date | null;
|
48565
|
+
level: 2 | 1 | 3;
|
48566
|
+
parentId: string | null;
|
48567
|
+
childCategoryList: {
|
48568
|
+
id: string;
|
48569
|
+
value: string;
|
48570
|
+
level: 2 | 1 | 3;
|
48571
|
+
parentId: string | null;
|
48572
|
+
childCategoryList: {
|
48573
|
+
id: string;
|
48574
|
+
value: string;
|
48575
|
+
level: 2 | 1 | 3;
|
48576
|
+
parentId: string | null;
|
48577
|
+
childCategoryList: any[];
|
48578
|
+
}[];
|
48579
|
+
}[];
|
48580
|
+
}>, "many">;
|
48581
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
48582
|
+
callTo: z.ZodNullable<z.ZodString>;
|
45448
48583
|
}, "strip", z.ZodTypeAny, {
|
48584
|
+
type: string;
|
45449
48585
|
id: string;
|
45450
48586
|
disposition: string | null;
|
45451
48587
|
createdAt: Date;
|
45452
48588
|
updatedAt: Date;
|
45453
48589
|
deletedAt: Date | null;
|
48590
|
+
categories: {
|
48591
|
+
id: string;
|
48592
|
+
value: string;
|
48593
|
+
createdAt: Date;
|
48594
|
+
updatedAt: Date;
|
48595
|
+
deletedAt: Date | null;
|
48596
|
+
level: 2 | 1 | 3;
|
48597
|
+
parentId: string | null;
|
48598
|
+
childCategoryList: {
|
48599
|
+
id: string;
|
48600
|
+
value: string;
|
48601
|
+
level: 2 | 1 | 3;
|
48602
|
+
parentId: string | null;
|
48603
|
+
childCategoryList: {
|
48604
|
+
id: string;
|
48605
|
+
value: string;
|
48606
|
+
level: 2 | 1 | 3;
|
48607
|
+
parentId: string | null;
|
48608
|
+
childCategoryList: any[];
|
48609
|
+
}[];
|
48610
|
+
}[];
|
48611
|
+
}[];
|
45454
48612
|
tags: {
|
45455
48613
|
id: string;
|
45456
48614
|
name: string;
|
@@ -45462,11 +48620,34 @@ export declare const mainChatContract: {
|
|
45462
48620
|
callTo: string | null;
|
45463
48621
|
note: string | null;
|
45464
48622
|
}, {
|
48623
|
+
type: string;
|
45465
48624
|
id: string;
|
45466
48625
|
disposition: string | null;
|
45467
48626
|
createdAt: Date;
|
45468
48627
|
updatedAt: Date;
|
45469
48628
|
deletedAt: Date | null;
|
48629
|
+
categories: {
|
48630
|
+
id: string;
|
48631
|
+
value: string;
|
48632
|
+
createdAt: Date;
|
48633
|
+
updatedAt: Date;
|
48634
|
+
deletedAt: Date | null;
|
48635
|
+
level: 2 | 1 | 3;
|
48636
|
+
parentId: string | null;
|
48637
|
+
childCategoryList: {
|
48638
|
+
id: string;
|
48639
|
+
value: string;
|
48640
|
+
level: 2 | 1 | 3;
|
48641
|
+
parentId: string | null;
|
48642
|
+
childCategoryList: {
|
48643
|
+
id: string;
|
48644
|
+
value: string;
|
48645
|
+
level: 2 | 1 | 3;
|
48646
|
+
parentId: string | null;
|
48647
|
+
childCategoryList: any[];
|
48648
|
+
}[];
|
48649
|
+
}[];
|
48650
|
+
}[];
|
45470
48651
|
tags: {
|
45471
48652
|
id: string;
|
45472
48653
|
name: string;
|
@@ -45495,11 +48676,34 @@ export declare const mainChatContract: {
|
|
45495
48676
|
handledTime: number | null;
|
45496
48677
|
firstResponseTime: number | null;
|
45497
48678
|
wrapUpForm: {
|
48679
|
+
type: string;
|
45498
48680
|
id: string;
|
45499
48681
|
disposition: string | null;
|
45500
48682
|
createdAt: Date;
|
45501
48683
|
updatedAt: Date;
|
45502
48684
|
deletedAt: Date | null;
|
48685
|
+
categories: {
|
48686
|
+
id: string;
|
48687
|
+
value: string;
|
48688
|
+
createdAt: Date;
|
48689
|
+
updatedAt: Date;
|
48690
|
+
deletedAt: Date | null;
|
48691
|
+
level: 2 | 1 | 3;
|
48692
|
+
parentId: string | null;
|
48693
|
+
childCategoryList: {
|
48694
|
+
id: string;
|
48695
|
+
value: string;
|
48696
|
+
level: 2 | 1 | 3;
|
48697
|
+
parentId: string | null;
|
48698
|
+
childCategoryList: {
|
48699
|
+
id: string;
|
48700
|
+
value: string;
|
48701
|
+
level: 2 | 1 | 3;
|
48702
|
+
parentId: string | null;
|
48703
|
+
childCategoryList: any[];
|
48704
|
+
}[];
|
48705
|
+
}[];
|
48706
|
+
}[];
|
45503
48707
|
tags: {
|
45504
48708
|
id: string;
|
45505
48709
|
name: string;
|
@@ -45528,11 +48732,34 @@ export declare const mainChatContract: {
|
|
45528
48732
|
handledTime: number | null;
|
45529
48733
|
firstResponseTime: number | null;
|
45530
48734
|
wrapUpForm: {
|
48735
|
+
type: string;
|
45531
48736
|
id: string;
|
45532
48737
|
disposition: string | null;
|
45533
48738
|
createdAt: Date;
|
45534
48739
|
updatedAt: Date;
|
45535
48740
|
deletedAt: Date | null;
|
48741
|
+
categories: {
|
48742
|
+
id: string;
|
48743
|
+
value: string;
|
48744
|
+
createdAt: Date;
|
48745
|
+
updatedAt: Date;
|
48746
|
+
deletedAt: Date | null;
|
48747
|
+
level: 2 | 1 | 3;
|
48748
|
+
parentId: string | null;
|
48749
|
+
childCategoryList: {
|
48750
|
+
id: string;
|
48751
|
+
value: string;
|
48752
|
+
level: 2 | 1 | 3;
|
48753
|
+
parentId: string | null;
|
48754
|
+
childCategoryList: {
|
48755
|
+
id: string;
|
48756
|
+
value: string;
|
48757
|
+
level: 2 | 1 | 3;
|
48758
|
+
parentId: string | null;
|
48759
|
+
childCategoryList: any[];
|
48760
|
+
}[];
|
48761
|
+
}[];
|
48762
|
+
}[];
|
45536
48763
|
tags: {
|
45537
48764
|
id: string;
|
45538
48765
|
name: string;
|
@@ -45842,11 +49069,34 @@ export declare const mainChatContract: {
|
|
45842
49069
|
handledTime: number | null;
|
45843
49070
|
firstResponseTime: number | null;
|
45844
49071
|
wrapUpForm: {
|
49072
|
+
type: string;
|
45845
49073
|
id: string;
|
45846
49074
|
disposition: string | null;
|
45847
49075
|
createdAt: Date;
|
45848
49076
|
updatedAt: Date;
|
45849
49077
|
deletedAt: Date | null;
|
49078
|
+
categories: {
|
49079
|
+
id: string;
|
49080
|
+
value: string;
|
49081
|
+
createdAt: Date;
|
49082
|
+
updatedAt: Date;
|
49083
|
+
deletedAt: Date | null;
|
49084
|
+
level: 2 | 1 | 3;
|
49085
|
+
parentId: string | null;
|
49086
|
+
childCategoryList: {
|
49087
|
+
id: string;
|
49088
|
+
value: string;
|
49089
|
+
level: 2 | 1 | 3;
|
49090
|
+
parentId: string | null;
|
49091
|
+
childCategoryList: {
|
49092
|
+
id: string;
|
49093
|
+
value: string;
|
49094
|
+
level: 2 | 1 | 3;
|
49095
|
+
parentId: string | null;
|
49096
|
+
childCategoryList: any[];
|
49097
|
+
}[];
|
49098
|
+
}[];
|
49099
|
+
}[];
|
45850
49100
|
tags: {
|
45851
49101
|
id: string;
|
45852
49102
|
name: string;
|
@@ -46156,11 +49406,34 @@ export declare const mainChatContract: {
|
|
46156
49406
|
handledTime: number | null;
|
46157
49407
|
firstResponseTime: number | null;
|
46158
49408
|
wrapUpForm: {
|
49409
|
+
type: string;
|
46159
49410
|
id: string;
|
46160
49411
|
disposition: string | null;
|
46161
49412
|
createdAt: Date;
|
46162
49413
|
updatedAt: Date;
|
46163
49414
|
deletedAt: Date | null;
|
49415
|
+
categories: {
|
49416
|
+
id: string;
|
49417
|
+
value: string;
|
49418
|
+
createdAt: Date;
|
49419
|
+
updatedAt: Date;
|
49420
|
+
deletedAt: Date | null;
|
49421
|
+
level: 2 | 1 | 3;
|
49422
|
+
parentId: string | null;
|
49423
|
+
childCategoryList: {
|
49424
|
+
id: string;
|
49425
|
+
value: string;
|
49426
|
+
level: 2 | 1 | 3;
|
49427
|
+
parentId: string | null;
|
49428
|
+
childCategoryList: {
|
49429
|
+
id: string;
|
49430
|
+
value: string;
|
49431
|
+
level: 2 | 1 | 3;
|
49432
|
+
parentId: string | null;
|
49433
|
+
childCategoryList: any[];
|
49434
|
+
}[];
|
49435
|
+
}[];
|
49436
|
+
}[];
|
46164
49437
|
tags: {
|
46165
49438
|
id: string;
|
46166
49439
|
name: string;
|
@@ -46472,11 +49745,34 @@ export declare const mainChatContract: {
|
|
46472
49745
|
handledTime: number | null;
|
46473
49746
|
firstResponseTime: number | null;
|
46474
49747
|
wrapUpForm: {
|
49748
|
+
type: string;
|
46475
49749
|
id: string;
|
46476
49750
|
disposition: string | null;
|
46477
49751
|
createdAt: Date;
|
46478
49752
|
updatedAt: Date;
|
46479
49753
|
deletedAt: Date | null;
|
49754
|
+
categories: {
|
49755
|
+
id: string;
|
49756
|
+
value: string;
|
49757
|
+
createdAt: Date;
|
49758
|
+
updatedAt: Date;
|
49759
|
+
deletedAt: Date | null;
|
49760
|
+
level: 2 | 1 | 3;
|
49761
|
+
parentId: string | null;
|
49762
|
+
childCategoryList: {
|
49763
|
+
id: string;
|
49764
|
+
value: string;
|
49765
|
+
level: 2 | 1 | 3;
|
49766
|
+
parentId: string | null;
|
49767
|
+
childCategoryList: {
|
49768
|
+
id: string;
|
49769
|
+
value: string;
|
49770
|
+
level: 2 | 1 | 3;
|
49771
|
+
parentId: string | null;
|
49772
|
+
childCategoryList: any[];
|
49773
|
+
}[];
|
49774
|
+
}[];
|
49775
|
+
}[];
|
46480
49776
|
tags: {
|
46481
49777
|
id: string;
|
46482
49778
|
name: string;
|
@@ -46792,11 +50088,34 @@ export declare const mainChatContract: {
|
|
46792
50088
|
handledTime: number | null;
|
46793
50089
|
firstResponseTime: number | null;
|
46794
50090
|
wrapUpForm: {
|
50091
|
+
type: string;
|
46795
50092
|
id: string;
|
46796
50093
|
disposition: string | null;
|
46797
50094
|
createdAt: Date;
|
46798
50095
|
updatedAt: Date;
|
46799
50096
|
deletedAt: Date | null;
|
50097
|
+
categories: {
|
50098
|
+
id: string;
|
50099
|
+
value: string;
|
50100
|
+
createdAt: Date;
|
50101
|
+
updatedAt: Date;
|
50102
|
+
deletedAt: Date | null;
|
50103
|
+
level: 2 | 1 | 3;
|
50104
|
+
parentId: string | null;
|
50105
|
+
childCategoryList: {
|
50106
|
+
id: string;
|
50107
|
+
value: string;
|
50108
|
+
level: 2 | 1 | 3;
|
50109
|
+
parentId: string | null;
|
50110
|
+
childCategoryList: {
|
50111
|
+
id: string;
|
50112
|
+
value: string;
|
50113
|
+
level: 2 | 1 | 3;
|
50114
|
+
parentId: string | null;
|
50115
|
+
childCategoryList: any[];
|
50116
|
+
}[];
|
50117
|
+
}[];
|
50118
|
+
}[];
|
46800
50119
|
tags: {
|
46801
50120
|
id: string;
|
46802
50121
|
name: string;
|