@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
@@ -1904,8 +1904,7 @@ export declare const mailContract: {
|
|
1904
1904
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
1905
1905
|
note: import("zod").ZodNullable<import("zod").ZodString>;
|
1906
1906
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
1907
|
-
|
1908
|
-
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
1907
|
+
type: import("zod").ZodString;
|
1909
1908
|
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
1910
1909
|
id: import("zod").ZodString;
|
1911
1910
|
createdAt: import("zod").ZodDate;
|
@@ -1925,12 +1924,137 @@ export declare const mailContract: {
|
|
1925
1924
|
updatedAt: Date;
|
1926
1925
|
deletedAt: Date | null;
|
1927
1926
|
}>, "many">;
|
1927
|
+
categories: import("zod").ZodArray<import("zod").ZodObject<{
|
1928
|
+
id: import("zod").ZodString;
|
1929
|
+
createdAt: import("zod").ZodDate;
|
1930
|
+
updatedAt: import("zod").ZodDate;
|
1931
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
1932
|
+
value: import("zod").ZodString;
|
1933
|
+
level: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
1934
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
1935
|
+
childCategoryList: import("zod").ZodArray<import("zod").ZodObject<{
|
1936
|
+
id: import("zod").ZodString;
|
1937
|
+
value: import("zod").ZodString;
|
1938
|
+
level: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
1939
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
1940
|
+
childCategoryList: import("zod").ZodArray<import("zod").ZodObject<{
|
1941
|
+
id: import("zod").ZodString;
|
1942
|
+
value: import("zod").ZodString;
|
1943
|
+
level: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
1944
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
1945
|
+
childCategoryList: import("zod").ZodArray<import("zod").ZodAny, "many">;
|
1946
|
+
}, "strip", import("zod").ZodTypeAny, {
|
1947
|
+
id: string;
|
1948
|
+
value: string;
|
1949
|
+
level: 2 | 1 | 3;
|
1950
|
+
parentId: string | null;
|
1951
|
+
childCategoryList: any[];
|
1952
|
+
}, {
|
1953
|
+
id: string;
|
1954
|
+
value: string;
|
1955
|
+
level: 2 | 1 | 3;
|
1956
|
+
parentId: string | null;
|
1957
|
+
childCategoryList: any[];
|
1958
|
+
}>, "many">;
|
1959
|
+
}, "strip", import("zod").ZodTypeAny, {
|
1960
|
+
id: string;
|
1961
|
+
value: string;
|
1962
|
+
level: 2 | 1 | 3;
|
1963
|
+
parentId: string | null;
|
1964
|
+
childCategoryList: {
|
1965
|
+
id: string;
|
1966
|
+
value: string;
|
1967
|
+
level: 2 | 1 | 3;
|
1968
|
+
parentId: string | null;
|
1969
|
+
childCategoryList: any[];
|
1970
|
+
}[];
|
1971
|
+
}, {
|
1972
|
+
id: string;
|
1973
|
+
value: string;
|
1974
|
+
level: 2 | 1 | 3;
|
1975
|
+
parentId: string | null;
|
1976
|
+
childCategoryList: {
|
1977
|
+
id: string;
|
1978
|
+
value: string;
|
1979
|
+
level: 2 | 1 | 3;
|
1980
|
+
parentId: string | null;
|
1981
|
+
childCategoryList: any[];
|
1982
|
+
}[];
|
1983
|
+
}>, "many">;
|
1984
|
+
}, "strip", import("zod").ZodTypeAny, {
|
1985
|
+
id: string;
|
1986
|
+
value: string;
|
1987
|
+
createdAt: Date;
|
1988
|
+
updatedAt: Date;
|
1989
|
+
deletedAt: Date | null;
|
1990
|
+
level: 2 | 1 | 3;
|
1991
|
+
parentId: string | null;
|
1992
|
+
childCategoryList: {
|
1993
|
+
id: string;
|
1994
|
+
value: string;
|
1995
|
+
level: 2 | 1 | 3;
|
1996
|
+
parentId: string | null;
|
1997
|
+
childCategoryList: {
|
1998
|
+
id: string;
|
1999
|
+
value: string;
|
2000
|
+
level: 2 | 1 | 3;
|
2001
|
+
parentId: string | null;
|
2002
|
+
childCategoryList: any[];
|
2003
|
+
}[];
|
2004
|
+
}[];
|
2005
|
+
}, {
|
2006
|
+
id: string;
|
2007
|
+
value: string;
|
2008
|
+
createdAt: Date;
|
2009
|
+
updatedAt: Date;
|
2010
|
+
deletedAt: Date | null;
|
2011
|
+
level: 2 | 1 | 3;
|
2012
|
+
parentId: string | null;
|
2013
|
+
childCategoryList: {
|
2014
|
+
id: string;
|
2015
|
+
value: string;
|
2016
|
+
level: 2 | 1 | 3;
|
2017
|
+
parentId: string | null;
|
2018
|
+
childCategoryList: {
|
2019
|
+
id: string;
|
2020
|
+
value: string;
|
2021
|
+
level: 2 | 1 | 3;
|
2022
|
+
parentId: string | null;
|
2023
|
+
childCategoryList: any[];
|
2024
|
+
}[];
|
2025
|
+
}[];
|
2026
|
+
}>, "many">;
|
2027
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
2028
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
1928
2029
|
}, "strip", import("zod").ZodTypeAny, {
|
2030
|
+
type: string;
|
1929
2031
|
id: string;
|
1930
2032
|
disposition: string | null;
|
1931
2033
|
createdAt: Date;
|
1932
2034
|
updatedAt: Date;
|
1933
2035
|
deletedAt: Date | null;
|
2036
|
+
categories: {
|
2037
|
+
id: string;
|
2038
|
+
value: string;
|
2039
|
+
createdAt: Date;
|
2040
|
+
updatedAt: Date;
|
2041
|
+
deletedAt: Date | null;
|
2042
|
+
level: 2 | 1 | 3;
|
2043
|
+
parentId: string | null;
|
2044
|
+
childCategoryList: {
|
2045
|
+
id: string;
|
2046
|
+
value: string;
|
2047
|
+
level: 2 | 1 | 3;
|
2048
|
+
parentId: string | null;
|
2049
|
+
childCategoryList: {
|
2050
|
+
id: string;
|
2051
|
+
value: string;
|
2052
|
+
level: 2 | 1 | 3;
|
2053
|
+
parentId: string | null;
|
2054
|
+
childCategoryList: any[];
|
2055
|
+
}[];
|
2056
|
+
}[];
|
2057
|
+
}[];
|
1934
2058
|
tags: {
|
1935
2059
|
id: string;
|
1936
2060
|
name: string;
|
@@ -1942,11 +2066,34 @@ export declare const mailContract: {
|
|
1942
2066
|
callTo: string | null;
|
1943
2067
|
note: string | null;
|
1944
2068
|
}, {
|
2069
|
+
type: string;
|
1945
2070
|
id: string;
|
1946
2071
|
disposition: string | null;
|
1947
2072
|
createdAt: Date;
|
1948
2073
|
updatedAt: Date;
|
1949
2074
|
deletedAt: Date | null;
|
2075
|
+
categories: {
|
2076
|
+
id: string;
|
2077
|
+
value: string;
|
2078
|
+
createdAt: Date;
|
2079
|
+
updatedAt: Date;
|
2080
|
+
deletedAt: Date | null;
|
2081
|
+
level: 2 | 1 | 3;
|
2082
|
+
parentId: string | null;
|
2083
|
+
childCategoryList: {
|
2084
|
+
id: string;
|
2085
|
+
value: string;
|
2086
|
+
level: 2 | 1 | 3;
|
2087
|
+
parentId: string | null;
|
2088
|
+
childCategoryList: {
|
2089
|
+
id: string;
|
2090
|
+
value: string;
|
2091
|
+
level: 2 | 1 | 3;
|
2092
|
+
parentId: string | null;
|
2093
|
+
childCategoryList: any[];
|
2094
|
+
}[];
|
2095
|
+
}[];
|
2096
|
+
}[];
|
1950
2097
|
tags: {
|
1951
2098
|
id: string;
|
1952
2099
|
name: string;
|
@@ -1975,11 +2122,34 @@ export declare const mailContract: {
|
|
1975
2122
|
handledTime: number | null;
|
1976
2123
|
firstResponseTime: number | null;
|
1977
2124
|
wrapUpForm: {
|
2125
|
+
type: string;
|
1978
2126
|
id: string;
|
1979
2127
|
disposition: string | null;
|
1980
2128
|
createdAt: Date;
|
1981
2129
|
updatedAt: Date;
|
1982
2130
|
deletedAt: Date | null;
|
2131
|
+
categories: {
|
2132
|
+
id: string;
|
2133
|
+
value: string;
|
2134
|
+
createdAt: Date;
|
2135
|
+
updatedAt: Date;
|
2136
|
+
deletedAt: Date | null;
|
2137
|
+
level: 2 | 1 | 3;
|
2138
|
+
parentId: string | null;
|
2139
|
+
childCategoryList: {
|
2140
|
+
id: string;
|
2141
|
+
value: string;
|
2142
|
+
level: 2 | 1 | 3;
|
2143
|
+
parentId: string | null;
|
2144
|
+
childCategoryList: {
|
2145
|
+
id: string;
|
2146
|
+
value: string;
|
2147
|
+
level: 2 | 1 | 3;
|
2148
|
+
parentId: string | null;
|
2149
|
+
childCategoryList: any[];
|
2150
|
+
}[];
|
2151
|
+
}[];
|
2152
|
+
}[];
|
1983
2153
|
tags: {
|
1984
2154
|
id: string;
|
1985
2155
|
name: string;
|
@@ -2008,11 +2178,34 @@ export declare const mailContract: {
|
|
2008
2178
|
handledTime: number | null;
|
2009
2179
|
firstResponseTime: number | null;
|
2010
2180
|
wrapUpForm: {
|
2181
|
+
type: string;
|
2011
2182
|
id: string;
|
2012
2183
|
disposition: string | null;
|
2013
2184
|
createdAt: Date;
|
2014
2185
|
updatedAt: Date;
|
2015
2186
|
deletedAt: Date | null;
|
2187
|
+
categories: {
|
2188
|
+
id: string;
|
2189
|
+
value: string;
|
2190
|
+
createdAt: Date;
|
2191
|
+
updatedAt: Date;
|
2192
|
+
deletedAt: Date | null;
|
2193
|
+
level: 2 | 1 | 3;
|
2194
|
+
parentId: string | null;
|
2195
|
+
childCategoryList: {
|
2196
|
+
id: string;
|
2197
|
+
value: string;
|
2198
|
+
level: 2 | 1 | 3;
|
2199
|
+
parentId: string | null;
|
2200
|
+
childCategoryList: {
|
2201
|
+
id: string;
|
2202
|
+
value: string;
|
2203
|
+
level: 2 | 1 | 3;
|
2204
|
+
parentId: string | null;
|
2205
|
+
childCategoryList: any[];
|
2206
|
+
}[];
|
2207
|
+
}[];
|
2208
|
+
}[];
|
2016
2209
|
tags: {
|
2017
2210
|
id: string;
|
2018
2211
|
name: string;
|
@@ -2146,11 +2339,34 @@ export declare const mailContract: {
|
|
2146
2339
|
handledTime: number | null;
|
2147
2340
|
firstResponseTime: number | null;
|
2148
2341
|
wrapUpForm: {
|
2342
|
+
type: string;
|
2149
2343
|
id: string;
|
2150
2344
|
disposition: string | null;
|
2151
2345
|
createdAt: Date;
|
2152
2346
|
updatedAt: Date;
|
2153
2347
|
deletedAt: Date | null;
|
2348
|
+
categories: {
|
2349
|
+
id: string;
|
2350
|
+
value: string;
|
2351
|
+
createdAt: Date;
|
2352
|
+
updatedAt: Date;
|
2353
|
+
deletedAt: Date | null;
|
2354
|
+
level: 2 | 1 | 3;
|
2355
|
+
parentId: string | null;
|
2356
|
+
childCategoryList: {
|
2357
|
+
id: string;
|
2358
|
+
value: string;
|
2359
|
+
level: 2 | 1 | 3;
|
2360
|
+
parentId: string | null;
|
2361
|
+
childCategoryList: {
|
2362
|
+
id: string;
|
2363
|
+
value: string;
|
2364
|
+
level: 2 | 1 | 3;
|
2365
|
+
parentId: string | null;
|
2366
|
+
childCategoryList: any[];
|
2367
|
+
}[];
|
2368
|
+
}[];
|
2369
|
+
}[];
|
2154
2370
|
tags: {
|
2155
2371
|
id: string;
|
2156
2372
|
name: string;
|
@@ -2598,11 +2814,34 @@ export declare const mailContract: {
|
|
2598
2814
|
handledTime: number | null;
|
2599
2815
|
firstResponseTime: number | null;
|
2600
2816
|
wrapUpForm: {
|
2817
|
+
type: string;
|
2601
2818
|
id: string;
|
2602
2819
|
disposition: string | null;
|
2603
2820
|
createdAt: Date;
|
2604
2821
|
updatedAt: Date;
|
2605
2822
|
deletedAt: Date | null;
|
2823
|
+
categories: {
|
2824
|
+
id: string;
|
2825
|
+
value: string;
|
2826
|
+
createdAt: Date;
|
2827
|
+
updatedAt: Date;
|
2828
|
+
deletedAt: Date | null;
|
2829
|
+
level: 2 | 1 | 3;
|
2830
|
+
parentId: string | null;
|
2831
|
+
childCategoryList: {
|
2832
|
+
id: string;
|
2833
|
+
value: string;
|
2834
|
+
level: 2 | 1 | 3;
|
2835
|
+
parentId: string | null;
|
2836
|
+
childCategoryList: {
|
2837
|
+
id: string;
|
2838
|
+
value: string;
|
2839
|
+
level: 2 | 1 | 3;
|
2840
|
+
parentId: string | null;
|
2841
|
+
childCategoryList: any[];
|
2842
|
+
}[];
|
2843
|
+
}[];
|
2844
|
+
}[];
|
2606
2845
|
tags: {
|
2607
2846
|
id: string;
|
2608
2847
|
name: string;
|
@@ -3055,11 +3294,34 @@ export declare const mailContract: {
|
|
3055
3294
|
handledTime: number | null;
|
3056
3295
|
firstResponseTime: number | null;
|
3057
3296
|
wrapUpForm: {
|
3297
|
+
type: string;
|
3058
3298
|
id: string;
|
3059
3299
|
disposition: string | null;
|
3060
3300
|
createdAt: Date;
|
3061
3301
|
updatedAt: Date;
|
3062
3302
|
deletedAt: Date | null;
|
3303
|
+
categories: {
|
3304
|
+
id: string;
|
3305
|
+
value: string;
|
3306
|
+
createdAt: Date;
|
3307
|
+
updatedAt: Date;
|
3308
|
+
deletedAt: Date | null;
|
3309
|
+
level: 2 | 1 | 3;
|
3310
|
+
parentId: string | null;
|
3311
|
+
childCategoryList: {
|
3312
|
+
id: string;
|
3313
|
+
value: string;
|
3314
|
+
level: 2 | 1 | 3;
|
3315
|
+
parentId: string | null;
|
3316
|
+
childCategoryList: {
|
3317
|
+
id: string;
|
3318
|
+
value: string;
|
3319
|
+
level: 2 | 1 | 3;
|
3320
|
+
parentId: string | null;
|
3321
|
+
childCategoryList: any[];
|
3322
|
+
}[];
|
3323
|
+
}[];
|
3324
|
+
}[];
|
3063
3325
|
tags: {
|
3064
3326
|
id: string;
|
3065
3327
|
name: string;
|
@@ -3513,11 +3775,34 @@ export declare const mailContract: {
|
|
3513
3775
|
handledTime: number | null;
|
3514
3776
|
firstResponseTime: number | null;
|
3515
3777
|
wrapUpForm: {
|
3778
|
+
type: string;
|
3516
3779
|
id: string;
|
3517
3780
|
disposition: string | null;
|
3518
3781
|
createdAt: Date;
|
3519
3782
|
updatedAt: Date;
|
3520
3783
|
deletedAt: Date | null;
|
3784
|
+
categories: {
|
3785
|
+
id: string;
|
3786
|
+
value: string;
|
3787
|
+
createdAt: Date;
|
3788
|
+
updatedAt: Date;
|
3789
|
+
deletedAt: Date | null;
|
3790
|
+
level: 2 | 1 | 3;
|
3791
|
+
parentId: string | null;
|
3792
|
+
childCategoryList: {
|
3793
|
+
id: string;
|
3794
|
+
value: string;
|
3795
|
+
level: 2 | 1 | 3;
|
3796
|
+
parentId: string | null;
|
3797
|
+
childCategoryList: {
|
3798
|
+
id: string;
|
3799
|
+
value: string;
|
3800
|
+
level: 2 | 1 | 3;
|
3801
|
+
parentId: string | null;
|
3802
|
+
childCategoryList: any[];
|
3803
|
+
}[];
|
3804
|
+
}[];
|
3805
|
+
}[];
|
3521
3806
|
tags: {
|
3522
3807
|
id: string;
|
3523
3808
|
name: string;
|
@@ -6393,8 +6678,7 @@ export declare const mailContract: {
|
|
6393
6678
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
6394
6679
|
note: import("zod").ZodNullable<import("zod").ZodString>;
|
6395
6680
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
6396
|
-
|
6397
|
-
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
6681
|
+
type: import("zod").ZodString;
|
6398
6682
|
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
6399
6683
|
id: import("zod").ZodString;
|
6400
6684
|
createdAt: import("zod").ZodDate;
|
@@ -6414,12 +6698,137 @@ export declare const mailContract: {
|
|
6414
6698
|
updatedAt: Date;
|
6415
6699
|
deletedAt: Date | null;
|
6416
6700
|
}>, "many">;
|
6701
|
+
categories: import("zod").ZodArray<import("zod").ZodObject<{
|
6702
|
+
id: import("zod").ZodString;
|
6703
|
+
createdAt: import("zod").ZodDate;
|
6704
|
+
updatedAt: import("zod").ZodDate;
|
6705
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
6706
|
+
value: import("zod").ZodString;
|
6707
|
+
level: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
6708
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
6709
|
+
childCategoryList: import("zod").ZodArray<import("zod").ZodObject<{
|
6710
|
+
id: import("zod").ZodString;
|
6711
|
+
value: import("zod").ZodString;
|
6712
|
+
level: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
6713
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
6714
|
+
childCategoryList: import("zod").ZodArray<import("zod").ZodObject<{
|
6715
|
+
id: import("zod").ZodString;
|
6716
|
+
value: import("zod").ZodString;
|
6717
|
+
level: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
6718
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
6719
|
+
childCategoryList: import("zod").ZodArray<import("zod").ZodAny, "many">;
|
6720
|
+
}, "strip", import("zod").ZodTypeAny, {
|
6721
|
+
id: string;
|
6722
|
+
value: string;
|
6723
|
+
level: 2 | 1 | 3;
|
6724
|
+
parentId: string | null;
|
6725
|
+
childCategoryList: any[];
|
6726
|
+
}, {
|
6727
|
+
id: string;
|
6728
|
+
value: string;
|
6729
|
+
level: 2 | 1 | 3;
|
6730
|
+
parentId: string | null;
|
6731
|
+
childCategoryList: any[];
|
6732
|
+
}>, "many">;
|
6733
|
+
}, "strip", import("zod").ZodTypeAny, {
|
6734
|
+
id: string;
|
6735
|
+
value: string;
|
6736
|
+
level: 2 | 1 | 3;
|
6737
|
+
parentId: string | null;
|
6738
|
+
childCategoryList: {
|
6739
|
+
id: string;
|
6740
|
+
value: string;
|
6741
|
+
level: 2 | 1 | 3;
|
6742
|
+
parentId: string | null;
|
6743
|
+
childCategoryList: any[];
|
6744
|
+
}[];
|
6745
|
+
}, {
|
6746
|
+
id: string;
|
6747
|
+
value: string;
|
6748
|
+
level: 2 | 1 | 3;
|
6749
|
+
parentId: string | null;
|
6750
|
+
childCategoryList: {
|
6751
|
+
id: string;
|
6752
|
+
value: string;
|
6753
|
+
level: 2 | 1 | 3;
|
6754
|
+
parentId: string | null;
|
6755
|
+
childCategoryList: any[];
|
6756
|
+
}[];
|
6757
|
+
}>, "many">;
|
6758
|
+
}, "strip", import("zod").ZodTypeAny, {
|
6759
|
+
id: string;
|
6760
|
+
value: string;
|
6761
|
+
createdAt: Date;
|
6762
|
+
updatedAt: Date;
|
6763
|
+
deletedAt: Date | null;
|
6764
|
+
level: 2 | 1 | 3;
|
6765
|
+
parentId: string | null;
|
6766
|
+
childCategoryList: {
|
6767
|
+
id: string;
|
6768
|
+
value: string;
|
6769
|
+
level: 2 | 1 | 3;
|
6770
|
+
parentId: string | null;
|
6771
|
+
childCategoryList: {
|
6772
|
+
id: string;
|
6773
|
+
value: string;
|
6774
|
+
level: 2 | 1 | 3;
|
6775
|
+
parentId: string | null;
|
6776
|
+
childCategoryList: any[];
|
6777
|
+
}[];
|
6778
|
+
}[];
|
6779
|
+
}, {
|
6780
|
+
id: string;
|
6781
|
+
value: string;
|
6782
|
+
createdAt: Date;
|
6783
|
+
updatedAt: Date;
|
6784
|
+
deletedAt: Date | null;
|
6785
|
+
level: 2 | 1 | 3;
|
6786
|
+
parentId: string | null;
|
6787
|
+
childCategoryList: {
|
6788
|
+
id: string;
|
6789
|
+
value: string;
|
6790
|
+
level: 2 | 1 | 3;
|
6791
|
+
parentId: string | null;
|
6792
|
+
childCategoryList: {
|
6793
|
+
id: string;
|
6794
|
+
value: string;
|
6795
|
+
level: 2 | 1 | 3;
|
6796
|
+
parentId: string | null;
|
6797
|
+
childCategoryList: any[];
|
6798
|
+
}[];
|
6799
|
+
}[];
|
6800
|
+
}>, "many">;
|
6801
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
6802
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
6417
6803
|
}, "strip", import("zod").ZodTypeAny, {
|
6804
|
+
type: string;
|
6418
6805
|
id: string;
|
6419
6806
|
disposition: string | null;
|
6420
6807
|
createdAt: Date;
|
6421
6808
|
updatedAt: Date;
|
6422
6809
|
deletedAt: Date | null;
|
6810
|
+
categories: {
|
6811
|
+
id: string;
|
6812
|
+
value: string;
|
6813
|
+
createdAt: Date;
|
6814
|
+
updatedAt: Date;
|
6815
|
+
deletedAt: Date | null;
|
6816
|
+
level: 2 | 1 | 3;
|
6817
|
+
parentId: string | null;
|
6818
|
+
childCategoryList: {
|
6819
|
+
id: string;
|
6820
|
+
value: string;
|
6821
|
+
level: 2 | 1 | 3;
|
6822
|
+
parentId: string | null;
|
6823
|
+
childCategoryList: {
|
6824
|
+
id: string;
|
6825
|
+
value: string;
|
6826
|
+
level: 2 | 1 | 3;
|
6827
|
+
parentId: string | null;
|
6828
|
+
childCategoryList: any[];
|
6829
|
+
}[];
|
6830
|
+
}[];
|
6831
|
+
}[];
|
6423
6832
|
tags: {
|
6424
6833
|
id: string;
|
6425
6834
|
name: string;
|
@@ -6431,11 +6840,34 @@ export declare const mailContract: {
|
|
6431
6840
|
callTo: string | null;
|
6432
6841
|
note: string | null;
|
6433
6842
|
}, {
|
6843
|
+
type: string;
|
6434
6844
|
id: string;
|
6435
6845
|
disposition: string | null;
|
6436
6846
|
createdAt: Date;
|
6437
6847
|
updatedAt: Date;
|
6438
6848
|
deletedAt: Date | null;
|
6849
|
+
categories: {
|
6850
|
+
id: string;
|
6851
|
+
value: string;
|
6852
|
+
createdAt: Date;
|
6853
|
+
updatedAt: Date;
|
6854
|
+
deletedAt: Date | null;
|
6855
|
+
level: 2 | 1 | 3;
|
6856
|
+
parentId: string | null;
|
6857
|
+
childCategoryList: {
|
6858
|
+
id: string;
|
6859
|
+
value: string;
|
6860
|
+
level: 2 | 1 | 3;
|
6861
|
+
parentId: string | null;
|
6862
|
+
childCategoryList: {
|
6863
|
+
id: string;
|
6864
|
+
value: string;
|
6865
|
+
level: 2 | 1 | 3;
|
6866
|
+
parentId: string | null;
|
6867
|
+
childCategoryList: any[];
|
6868
|
+
}[];
|
6869
|
+
}[];
|
6870
|
+
}[];
|
6439
6871
|
tags: {
|
6440
6872
|
id: string;
|
6441
6873
|
name: string;
|
@@ -6464,11 +6896,34 @@ export declare const mailContract: {
|
|
6464
6896
|
handledTime: number | null;
|
6465
6897
|
firstResponseTime: number | null;
|
6466
6898
|
wrapUpForm: {
|
6899
|
+
type: string;
|
6467
6900
|
id: string;
|
6468
6901
|
disposition: string | null;
|
6469
6902
|
createdAt: Date;
|
6470
6903
|
updatedAt: Date;
|
6471
6904
|
deletedAt: Date | null;
|
6905
|
+
categories: {
|
6906
|
+
id: string;
|
6907
|
+
value: string;
|
6908
|
+
createdAt: Date;
|
6909
|
+
updatedAt: Date;
|
6910
|
+
deletedAt: Date | null;
|
6911
|
+
level: 2 | 1 | 3;
|
6912
|
+
parentId: string | null;
|
6913
|
+
childCategoryList: {
|
6914
|
+
id: string;
|
6915
|
+
value: string;
|
6916
|
+
level: 2 | 1 | 3;
|
6917
|
+
parentId: string | null;
|
6918
|
+
childCategoryList: {
|
6919
|
+
id: string;
|
6920
|
+
value: string;
|
6921
|
+
level: 2 | 1 | 3;
|
6922
|
+
parentId: string | null;
|
6923
|
+
childCategoryList: any[];
|
6924
|
+
}[];
|
6925
|
+
}[];
|
6926
|
+
}[];
|
6472
6927
|
tags: {
|
6473
6928
|
id: string;
|
6474
6929
|
name: string;
|
@@ -6497,11 +6952,34 @@ export declare const mailContract: {
|
|
6497
6952
|
handledTime: number | null;
|
6498
6953
|
firstResponseTime: number | null;
|
6499
6954
|
wrapUpForm: {
|
6955
|
+
type: string;
|
6500
6956
|
id: string;
|
6501
6957
|
disposition: string | null;
|
6502
6958
|
createdAt: Date;
|
6503
6959
|
updatedAt: Date;
|
6504
6960
|
deletedAt: Date | null;
|
6961
|
+
categories: {
|
6962
|
+
id: string;
|
6963
|
+
value: string;
|
6964
|
+
createdAt: Date;
|
6965
|
+
updatedAt: Date;
|
6966
|
+
deletedAt: Date | null;
|
6967
|
+
level: 2 | 1 | 3;
|
6968
|
+
parentId: string | null;
|
6969
|
+
childCategoryList: {
|
6970
|
+
id: string;
|
6971
|
+
value: string;
|
6972
|
+
level: 2 | 1 | 3;
|
6973
|
+
parentId: string | null;
|
6974
|
+
childCategoryList: {
|
6975
|
+
id: string;
|
6976
|
+
value: string;
|
6977
|
+
level: 2 | 1 | 3;
|
6978
|
+
parentId: string | null;
|
6979
|
+
childCategoryList: any[];
|
6980
|
+
}[];
|
6981
|
+
}[];
|
6982
|
+
}[];
|
6505
6983
|
tags: {
|
6506
6984
|
id: string;
|
6507
6985
|
name: string;
|
@@ -6635,11 +7113,34 @@ export declare const mailContract: {
|
|
6635
7113
|
handledTime: number | null;
|
6636
7114
|
firstResponseTime: number | null;
|
6637
7115
|
wrapUpForm: {
|
7116
|
+
type: string;
|
6638
7117
|
id: string;
|
6639
7118
|
disposition: string | null;
|
6640
7119
|
createdAt: Date;
|
6641
7120
|
updatedAt: Date;
|
6642
7121
|
deletedAt: Date | null;
|
7122
|
+
categories: {
|
7123
|
+
id: string;
|
7124
|
+
value: string;
|
7125
|
+
createdAt: Date;
|
7126
|
+
updatedAt: Date;
|
7127
|
+
deletedAt: Date | null;
|
7128
|
+
level: 2 | 1 | 3;
|
7129
|
+
parentId: string | null;
|
7130
|
+
childCategoryList: {
|
7131
|
+
id: string;
|
7132
|
+
value: string;
|
7133
|
+
level: 2 | 1 | 3;
|
7134
|
+
parentId: string | null;
|
7135
|
+
childCategoryList: {
|
7136
|
+
id: string;
|
7137
|
+
value: string;
|
7138
|
+
level: 2 | 1 | 3;
|
7139
|
+
parentId: string | null;
|
7140
|
+
childCategoryList: any[];
|
7141
|
+
}[];
|
7142
|
+
}[];
|
7143
|
+
}[];
|
6643
7144
|
tags: {
|
6644
7145
|
id: string;
|
6645
7146
|
name: string;
|
@@ -7087,11 +7588,34 @@ export declare const mailContract: {
|
|
7087
7588
|
handledTime: number | null;
|
7088
7589
|
firstResponseTime: number | null;
|
7089
7590
|
wrapUpForm: {
|
7591
|
+
type: string;
|
7090
7592
|
id: string;
|
7091
7593
|
disposition: string | null;
|
7092
7594
|
createdAt: Date;
|
7093
7595
|
updatedAt: Date;
|
7094
7596
|
deletedAt: Date | null;
|
7597
|
+
categories: {
|
7598
|
+
id: string;
|
7599
|
+
value: string;
|
7600
|
+
createdAt: Date;
|
7601
|
+
updatedAt: Date;
|
7602
|
+
deletedAt: Date | null;
|
7603
|
+
level: 2 | 1 | 3;
|
7604
|
+
parentId: string | null;
|
7605
|
+
childCategoryList: {
|
7606
|
+
id: string;
|
7607
|
+
value: string;
|
7608
|
+
level: 2 | 1 | 3;
|
7609
|
+
parentId: string | null;
|
7610
|
+
childCategoryList: {
|
7611
|
+
id: string;
|
7612
|
+
value: string;
|
7613
|
+
level: 2 | 1 | 3;
|
7614
|
+
parentId: string | null;
|
7615
|
+
childCategoryList: any[];
|
7616
|
+
}[];
|
7617
|
+
}[];
|
7618
|
+
}[];
|
7095
7619
|
tags: {
|
7096
7620
|
id: string;
|
7097
7621
|
name: string;
|
@@ -7541,11 +8065,34 @@ export declare const mailContract: {
|
|
7541
8065
|
handledTime: number | null;
|
7542
8066
|
firstResponseTime: number | null;
|
7543
8067
|
wrapUpForm: {
|
8068
|
+
type: string;
|
7544
8069
|
id: string;
|
7545
8070
|
disposition: string | null;
|
7546
8071
|
createdAt: Date;
|
7547
8072
|
updatedAt: Date;
|
7548
8073
|
deletedAt: Date | null;
|
8074
|
+
categories: {
|
8075
|
+
id: string;
|
8076
|
+
value: string;
|
8077
|
+
createdAt: Date;
|
8078
|
+
updatedAt: Date;
|
8079
|
+
deletedAt: Date | null;
|
8080
|
+
level: 2 | 1 | 3;
|
8081
|
+
parentId: string | null;
|
8082
|
+
childCategoryList: {
|
8083
|
+
id: string;
|
8084
|
+
value: string;
|
8085
|
+
level: 2 | 1 | 3;
|
8086
|
+
parentId: string | null;
|
8087
|
+
childCategoryList: {
|
8088
|
+
id: string;
|
8089
|
+
value: string;
|
8090
|
+
level: 2 | 1 | 3;
|
8091
|
+
parentId: string | null;
|
8092
|
+
childCategoryList: any[];
|
8093
|
+
}[];
|
8094
|
+
}[];
|
8095
|
+
}[];
|
7549
8096
|
tags: {
|
7550
8097
|
id: string;
|
7551
8098
|
name: string;
|
@@ -7996,11 +8543,34 @@ export declare const mailContract: {
|
|
7996
8543
|
handledTime: number | null;
|
7997
8544
|
firstResponseTime: number | null;
|
7998
8545
|
wrapUpForm: {
|
8546
|
+
type: string;
|
7999
8547
|
id: string;
|
8000
8548
|
disposition: string | null;
|
8001
8549
|
createdAt: Date;
|
8002
8550
|
updatedAt: Date;
|
8003
8551
|
deletedAt: Date | null;
|
8552
|
+
categories: {
|
8553
|
+
id: string;
|
8554
|
+
value: string;
|
8555
|
+
createdAt: Date;
|
8556
|
+
updatedAt: Date;
|
8557
|
+
deletedAt: Date | null;
|
8558
|
+
level: 2 | 1 | 3;
|
8559
|
+
parentId: string | null;
|
8560
|
+
childCategoryList: {
|
8561
|
+
id: string;
|
8562
|
+
value: string;
|
8563
|
+
level: 2 | 1 | 3;
|
8564
|
+
parentId: string | null;
|
8565
|
+
childCategoryList: {
|
8566
|
+
id: string;
|
8567
|
+
value: string;
|
8568
|
+
level: 2 | 1 | 3;
|
8569
|
+
parentId: string | null;
|
8570
|
+
childCategoryList: any[];
|
8571
|
+
}[];
|
8572
|
+
}[];
|
8573
|
+
}[];
|
8004
8574
|
tags: {
|
8005
8575
|
id: string;
|
8006
8576
|
name: string;
|
@@ -10201,8 +10771,7 @@ export declare const mailContract: {
|
|
10201
10771
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
10202
10772
|
note: import("zod").ZodNullable<import("zod").ZodString>;
|
10203
10773
|
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
10204
|
-
|
10205
|
-
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
10774
|
+
type: import("zod").ZodString;
|
10206
10775
|
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
10207
10776
|
id: import("zod").ZodString;
|
10208
10777
|
createdAt: import("zod").ZodDate;
|
@@ -10222,12 +10791,137 @@ export declare const mailContract: {
|
|
10222
10791
|
updatedAt: Date;
|
10223
10792
|
deletedAt: Date | null;
|
10224
10793
|
}>, "many">;
|
10794
|
+
categories: import("zod").ZodArray<import("zod").ZodObject<{
|
10795
|
+
id: import("zod").ZodString;
|
10796
|
+
createdAt: import("zod").ZodDate;
|
10797
|
+
updatedAt: import("zod").ZodDate;
|
10798
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
10799
|
+
value: import("zod").ZodString;
|
10800
|
+
level: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
10801
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
10802
|
+
childCategoryList: import("zod").ZodArray<import("zod").ZodObject<{
|
10803
|
+
id: import("zod").ZodString;
|
10804
|
+
value: import("zod").ZodString;
|
10805
|
+
level: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
10806
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
10807
|
+
childCategoryList: import("zod").ZodArray<import("zod").ZodObject<{
|
10808
|
+
id: import("zod").ZodString;
|
10809
|
+
value: import("zod").ZodString;
|
10810
|
+
level: import("zod").ZodUnion<[import("zod").ZodLiteral<1>, import("zod").ZodLiteral<2>, import("zod").ZodLiteral<3>]>;
|
10811
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
10812
|
+
childCategoryList: import("zod").ZodArray<import("zod").ZodAny, "many">;
|
10813
|
+
}, "strip", import("zod").ZodTypeAny, {
|
10814
|
+
id: string;
|
10815
|
+
value: string;
|
10816
|
+
level: 2 | 1 | 3;
|
10817
|
+
parentId: string | null;
|
10818
|
+
childCategoryList: any[];
|
10819
|
+
}, {
|
10820
|
+
id: string;
|
10821
|
+
value: string;
|
10822
|
+
level: 2 | 1 | 3;
|
10823
|
+
parentId: string | null;
|
10824
|
+
childCategoryList: any[];
|
10825
|
+
}>, "many">;
|
10826
|
+
}, "strip", import("zod").ZodTypeAny, {
|
10827
|
+
id: string;
|
10828
|
+
value: string;
|
10829
|
+
level: 2 | 1 | 3;
|
10830
|
+
parentId: string | null;
|
10831
|
+
childCategoryList: {
|
10832
|
+
id: string;
|
10833
|
+
value: string;
|
10834
|
+
level: 2 | 1 | 3;
|
10835
|
+
parentId: string | null;
|
10836
|
+
childCategoryList: any[];
|
10837
|
+
}[];
|
10838
|
+
}, {
|
10839
|
+
id: string;
|
10840
|
+
value: string;
|
10841
|
+
level: 2 | 1 | 3;
|
10842
|
+
parentId: string | null;
|
10843
|
+
childCategoryList: {
|
10844
|
+
id: string;
|
10845
|
+
value: string;
|
10846
|
+
level: 2 | 1 | 3;
|
10847
|
+
parentId: string | null;
|
10848
|
+
childCategoryList: any[];
|
10849
|
+
}[];
|
10850
|
+
}>, "many">;
|
10851
|
+
}, "strip", import("zod").ZodTypeAny, {
|
10852
|
+
id: string;
|
10853
|
+
value: string;
|
10854
|
+
createdAt: Date;
|
10855
|
+
updatedAt: Date;
|
10856
|
+
deletedAt: Date | null;
|
10857
|
+
level: 2 | 1 | 3;
|
10858
|
+
parentId: string | null;
|
10859
|
+
childCategoryList: {
|
10860
|
+
id: string;
|
10861
|
+
value: string;
|
10862
|
+
level: 2 | 1 | 3;
|
10863
|
+
parentId: string | null;
|
10864
|
+
childCategoryList: {
|
10865
|
+
id: string;
|
10866
|
+
value: string;
|
10867
|
+
level: 2 | 1 | 3;
|
10868
|
+
parentId: string | null;
|
10869
|
+
childCategoryList: any[];
|
10870
|
+
}[];
|
10871
|
+
}[];
|
10872
|
+
}, {
|
10873
|
+
id: string;
|
10874
|
+
value: string;
|
10875
|
+
createdAt: Date;
|
10876
|
+
updatedAt: Date;
|
10877
|
+
deletedAt: Date | null;
|
10878
|
+
level: 2 | 1 | 3;
|
10879
|
+
parentId: string | null;
|
10880
|
+
childCategoryList: {
|
10881
|
+
id: string;
|
10882
|
+
value: string;
|
10883
|
+
level: 2 | 1 | 3;
|
10884
|
+
parentId: string | null;
|
10885
|
+
childCategoryList: {
|
10886
|
+
id: string;
|
10887
|
+
value: string;
|
10888
|
+
level: 2 | 1 | 3;
|
10889
|
+
parentId: string | null;
|
10890
|
+
childCategoryList: any[];
|
10891
|
+
}[];
|
10892
|
+
}[];
|
10893
|
+
}>, "many">;
|
10894
|
+
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
10895
|
+
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
10225
10896
|
}, "strip", import("zod").ZodTypeAny, {
|
10897
|
+
type: string;
|
10226
10898
|
id: string;
|
10227
10899
|
disposition: string | null;
|
10228
10900
|
createdAt: Date;
|
10229
10901
|
updatedAt: Date;
|
10230
10902
|
deletedAt: Date | null;
|
10903
|
+
categories: {
|
10904
|
+
id: string;
|
10905
|
+
value: string;
|
10906
|
+
createdAt: Date;
|
10907
|
+
updatedAt: Date;
|
10908
|
+
deletedAt: Date | null;
|
10909
|
+
level: 2 | 1 | 3;
|
10910
|
+
parentId: string | null;
|
10911
|
+
childCategoryList: {
|
10912
|
+
id: string;
|
10913
|
+
value: string;
|
10914
|
+
level: 2 | 1 | 3;
|
10915
|
+
parentId: string | null;
|
10916
|
+
childCategoryList: {
|
10917
|
+
id: string;
|
10918
|
+
value: string;
|
10919
|
+
level: 2 | 1 | 3;
|
10920
|
+
parentId: string | null;
|
10921
|
+
childCategoryList: any[];
|
10922
|
+
}[];
|
10923
|
+
}[];
|
10924
|
+
}[];
|
10231
10925
|
tags: {
|
10232
10926
|
id: string;
|
10233
10927
|
name: string;
|
@@ -10239,11 +10933,34 @@ export declare const mailContract: {
|
|
10239
10933
|
callTo: string | null;
|
10240
10934
|
note: string | null;
|
10241
10935
|
}, {
|
10936
|
+
type: string;
|
10242
10937
|
id: string;
|
10243
10938
|
disposition: string | null;
|
10244
10939
|
createdAt: Date;
|
10245
10940
|
updatedAt: Date;
|
10246
10941
|
deletedAt: Date | null;
|
10942
|
+
categories: {
|
10943
|
+
id: string;
|
10944
|
+
value: string;
|
10945
|
+
createdAt: Date;
|
10946
|
+
updatedAt: Date;
|
10947
|
+
deletedAt: Date | null;
|
10948
|
+
level: 2 | 1 | 3;
|
10949
|
+
parentId: string | null;
|
10950
|
+
childCategoryList: {
|
10951
|
+
id: string;
|
10952
|
+
value: string;
|
10953
|
+
level: 2 | 1 | 3;
|
10954
|
+
parentId: string | null;
|
10955
|
+
childCategoryList: {
|
10956
|
+
id: string;
|
10957
|
+
value: string;
|
10958
|
+
level: 2 | 1 | 3;
|
10959
|
+
parentId: string | null;
|
10960
|
+
childCategoryList: any[];
|
10961
|
+
}[];
|
10962
|
+
}[];
|
10963
|
+
}[];
|
10247
10964
|
tags: {
|
10248
10965
|
id: string;
|
10249
10966
|
name: string;
|
@@ -10272,11 +10989,34 @@ export declare const mailContract: {
|
|
10272
10989
|
handledTime: number | null;
|
10273
10990
|
firstResponseTime: number | null;
|
10274
10991
|
wrapUpForm: {
|
10992
|
+
type: string;
|
10275
10993
|
id: string;
|
10276
10994
|
disposition: string | null;
|
10277
10995
|
createdAt: Date;
|
10278
10996
|
updatedAt: Date;
|
10279
10997
|
deletedAt: Date | null;
|
10998
|
+
categories: {
|
10999
|
+
id: string;
|
11000
|
+
value: string;
|
11001
|
+
createdAt: Date;
|
11002
|
+
updatedAt: Date;
|
11003
|
+
deletedAt: Date | null;
|
11004
|
+
level: 2 | 1 | 3;
|
11005
|
+
parentId: string | null;
|
11006
|
+
childCategoryList: {
|
11007
|
+
id: string;
|
11008
|
+
value: string;
|
11009
|
+
level: 2 | 1 | 3;
|
11010
|
+
parentId: string | null;
|
11011
|
+
childCategoryList: {
|
11012
|
+
id: string;
|
11013
|
+
value: string;
|
11014
|
+
level: 2 | 1 | 3;
|
11015
|
+
parentId: string | null;
|
11016
|
+
childCategoryList: any[];
|
11017
|
+
}[];
|
11018
|
+
}[];
|
11019
|
+
}[];
|
10280
11020
|
tags: {
|
10281
11021
|
id: string;
|
10282
11022
|
name: string;
|
@@ -10305,11 +11045,34 @@ export declare const mailContract: {
|
|
10305
11045
|
handledTime: number | null;
|
10306
11046
|
firstResponseTime: number | null;
|
10307
11047
|
wrapUpForm: {
|
11048
|
+
type: string;
|
10308
11049
|
id: string;
|
10309
11050
|
disposition: string | null;
|
10310
11051
|
createdAt: Date;
|
10311
11052
|
updatedAt: Date;
|
10312
11053
|
deletedAt: Date | null;
|
11054
|
+
categories: {
|
11055
|
+
id: string;
|
11056
|
+
value: string;
|
11057
|
+
createdAt: Date;
|
11058
|
+
updatedAt: Date;
|
11059
|
+
deletedAt: Date | null;
|
11060
|
+
level: 2 | 1 | 3;
|
11061
|
+
parentId: string | null;
|
11062
|
+
childCategoryList: {
|
11063
|
+
id: string;
|
11064
|
+
value: string;
|
11065
|
+
level: 2 | 1 | 3;
|
11066
|
+
parentId: string | null;
|
11067
|
+
childCategoryList: {
|
11068
|
+
id: string;
|
11069
|
+
value: string;
|
11070
|
+
level: 2 | 1 | 3;
|
11071
|
+
parentId: string | null;
|
11072
|
+
childCategoryList: any[];
|
11073
|
+
}[];
|
11074
|
+
}[];
|
11075
|
+
}[];
|
10313
11076
|
tags: {
|
10314
11077
|
id: string;
|
10315
11078
|
name: string;
|
@@ -10443,11 +11206,34 @@ export declare const mailContract: {
|
|
10443
11206
|
handledTime: number | null;
|
10444
11207
|
firstResponseTime: number | null;
|
10445
11208
|
wrapUpForm: {
|
11209
|
+
type: string;
|
10446
11210
|
id: string;
|
10447
11211
|
disposition: string | null;
|
10448
11212
|
createdAt: Date;
|
10449
11213
|
updatedAt: Date;
|
10450
11214
|
deletedAt: Date | null;
|
11215
|
+
categories: {
|
11216
|
+
id: string;
|
11217
|
+
value: string;
|
11218
|
+
createdAt: Date;
|
11219
|
+
updatedAt: Date;
|
11220
|
+
deletedAt: Date | null;
|
11221
|
+
level: 2 | 1 | 3;
|
11222
|
+
parentId: string | null;
|
11223
|
+
childCategoryList: {
|
11224
|
+
id: string;
|
11225
|
+
value: string;
|
11226
|
+
level: 2 | 1 | 3;
|
11227
|
+
parentId: string | null;
|
11228
|
+
childCategoryList: {
|
11229
|
+
id: string;
|
11230
|
+
value: string;
|
11231
|
+
level: 2 | 1 | 3;
|
11232
|
+
parentId: string | null;
|
11233
|
+
childCategoryList: any[];
|
11234
|
+
}[];
|
11235
|
+
}[];
|
11236
|
+
}[];
|
10451
11237
|
tags: {
|
10452
11238
|
id: string;
|
10453
11239
|
name: string;
|
@@ -10895,11 +11681,34 @@ export declare const mailContract: {
|
|
10895
11681
|
handledTime: number | null;
|
10896
11682
|
firstResponseTime: number | null;
|
10897
11683
|
wrapUpForm: {
|
11684
|
+
type: string;
|
10898
11685
|
id: string;
|
10899
11686
|
disposition: string | null;
|
10900
11687
|
createdAt: Date;
|
10901
11688
|
updatedAt: Date;
|
10902
11689
|
deletedAt: Date | null;
|
11690
|
+
categories: {
|
11691
|
+
id: string;
|
11692
|
+
value: string;
|
11693
|
+
createdAt: Date;
|
11694
|
+
updatedAt: Date;
|
11695
|
+
deletedAt: Date | null;
|
11696
|
+
level: 2 | 1 | 3;
|
11697
|
+
parentId: string | null;
|
11698
|
+
childCategoryList: {
|
11699
|
+
id: string;
|
11700
|
+
value: string;
|
11701
|
+
level: 2 | 1 | 3;
|
11702
|
+
parentId: string | null;
|
11703
|
+
childCategoryList: {
|
11704
|
+
id: string;
|
11705
|
+
value: string;
|
11706
|
+
level: 2 | 1 | 3;
|
11707
|
+
parentId: string | null;
|
11708
|
+
childCategoryList: any[];
|
11709
|
+
}[];
|
11710
|
+
}[];
|
11711
|
+
}[];
|
10903
11712
|
tags: {
|
10904
11713
|
id: string;
|
10905
11714
|
name: string;
|
@@ -11349,11 +12158,34 @@ export declare const mailContract: {
|
|
11349
12158
|
handledTime: number | null;
|
11350
12159
|
firstResponseTime: number | null;
|
11351
12160
|
wrapUpForm: {
|
12161
|
+
type: string;
|
11352
12162
|
id: string;
|
11353
12163
|
disposition: string | null;
|
11354
12164
|
createdAt: Date;
|
11355
12165
|
updatedAt: Date;
|
11356
12166
|
deletedAt: Date | null;
|
12167
|
+
categories: {
|
12168
|
+
id: string;
|
12169
|
+
value: string;
|
12170
|
+
createdAt: Date;
|
12171
|
+
updatedAt: Date;
|
12172
|
+
deletedAt: Date | null;
|
12173
|
+
level: 2 | 1 | 3;
|
12174
|
+
parentId: string | null;
|
12175
|
+
childCategoryList: {
|
12176
|
+
id: string;
|
12177
|
+
value: string;
|
12178
|
+
level: 2 | 1 | 3;
|
12179
|
+
parentId: string | null;
|
12180
|
+
childCategoryList: {
|
12181
|
+
id: string;
|
12182
|
+
value: string;
|
12183
|
+
level: 2 | 1 | 3;
|
12184
|
+
parentId: string | null;
|
12185
|
+
childCategoryList: any[];
|
12186
|
+
}[];
|
12187
|
+
}[];
|
12188
|
+
}[];
|
11357
12189
|
tags: {
|
11358
12190
|
id: string;
|
11359
12191
|
name: string;
|
@@ -11804,11 +12636,34 @@ export declare const mailContract: {
|
|
11804
12636
|
handledTime: number | null;
|
11805
12637
|
firstResponseTime: number | null;
|
11806
12638
|
wrapUpForm: {
|
12639
|
+
type: string;
|
11807
12640
|
id: string;
|
11808
12641
|
disposition: string | null;
|
11809
12642
|
createdAt: Date;
|
11810
12643
|
updatedAt: Date;
|
11811
12644
|
deletedAt: Date | null;
|
12645
|
+
categories: {
|
12646
|
+
id: string;
|
12647
|
+
value: string;
|
12648
|
+
createdAt: Date;
|
12649
|
+
updatedAt: Date;
|
12650
|
+
deletedAt: Date | null;
|
12651
|
+
level: 2 | 1 | 3;
|
12652
|
+
parentId: string | null;
|
12653
|
+
childCategoryList: {
|
12654
|
+
id: string;
|
12655
|
+
value: string;
|
12656
|
+
level: 2 | 1 | 3;
|
12657
|
+
parentId: string | null;
|
12658
|
+
childCategoryList: {
|
12659
|
+
id: string;
|
12660
|
+
value: string;
|
12661
|
+
level: 2 | 1 | 3;
|
12662
|
+
parentId: string | null;
|
12663
|
+
childCategoryList: any[];
|
12664
|
+
}[];
|
12665
|
+
}[];
|
12666
|
+
}[];
|
11812
12667
|
tags: {
|
11813
12668
|
id: string;
|
11814
12669
|
name: string;
|