@kl1/contracts 1.1.25-uat → 1.1.27-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 +349 -185
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +348 -185
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +414 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +99 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +260 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +4867 -22
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +764 -4
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +984 -14
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +9819 -44
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +347 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +554 -4
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +487 -2
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +487 -2
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1251 -6
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +1251 -6
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +417 -2
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +347 -2
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +487 -2
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +487 -2
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +487 -2
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +997 -6
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +207 -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 roomContract: {
|
|
1904
1904
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1905
1905
|
note: z.ZodNullable<z.ZodString>;
|
1906
1906
|
disposition: z.ZodNullable<z.ZodString>;
|
1907
|
-
|
1908
|
-
callTo: z.ZodNullable<z.ZodString>;
|
1907
|
+
type: z.ZodString;
|
1909
1908
|
tags: z.ZodArray<z.ZodObject<{
|
1910
1909
|
id: z.ZodString;
|
1911
1910
|
createdAt: z.ZodDate;
|
@@ -1925,12 +1924,171 @@ export declare const roomContract: {
|
|
1925
1924
|
updatedAt: Date;
|
1926
1925
|
deletedAt: Date | null;
|
1927
1926
|
}>, "many">;
|
1927
|
+
categories: z.ZodArray<z.ZodObject<{
|
1928
|
+
id: z.ZodString;
|
1929
|
+
createdAt: z.ZodDate;
|
1930
|
+
updatedAt: z.ZodDate;
|
1931
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
1932
|
+
value: z.ZodString;
|
1933
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1934
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1935
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
1936
|
+
id: z.ZodString;
|
1937
|
+
value: z.ZodString;
|
1938
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1939
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1940
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
1941
|
+
id: z.ZodString;
|
1942
|
+
value: z.ZodString;
|
1943
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1944
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1945
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
1946
|
+
}, "strip", z.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", z.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", z.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: z.ZodNullable<z.ZodString>;
|
2028
|
+
callTo: z.ZodNullable<z.ZodString>;
|
2029
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2030
|
+
id: z.ZodString;
|
2031
|
+
createdAt: z.ZodDate;
|
2032
|
+
updatedAt: z.ZodDate;
|
2033
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2034
|
+
textValue: z.ZodNullable<z.ZodString>;
|
2035
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2036
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
2037
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
2038
|
+
entityId: z.ZodString;
|
2039
|
+
attributeId: z.ZodString;
|
2040
|
+
}, "strip", z.ZodTypeAny, {
|
2041
|
+
id: string;
|
2042
|
+
createdAt: Date;
|
2043
|
+
updatedAt: Date;
|
2044
|
+
deletedAt: Date | null;
|
2045
|
+
entityId: string;
|
2046
|
+
attributeId: string;
|
2047
|
+
textValue: string | null;
|
2048
|
+
booleanValue: boolean | null;
|
2049
|
+
numberValue: number | null;
|
2050
|
+
dateValue: Date | null;
|
2051
|
+
}, {
|
2052
|
+
id: string;
|
2053
|
+
createdAt: Date;
|
2054
|
+
updatedAt: Date;
|
2055
|
+
deletedAt: Date | null;
|
2056
|
+
entityId: string;
|
2057
|
+
attributeId: string;
|
2058
|
+
textValue: string | null;
|
2059
|
+
booleanValue: boolean | null;
|
2060
|
+
numberValue: number | null;
|
2061
|
+
dateValue: Date | null;
|
2062
|
+
}>, "many">>;
|
1928
2063
|
}, "strip", z.ZodTypeAny, {
|
2064
|
+
type: string;
|
1929
2065
|
id: string;
|
1930
2066
|
disposition: string | null;
|
1931
2067
|
createdAt: Date;
|
1932
2068
|
updatedAt: Date;
|
1933
2069
|
deletedAt: Date | null;
|
2070
|
+
categories: {
|
2071
|
+
id: string;
|
2072
|
+
value: string;
|
2073
|
+
createdAt: Date;
|
2074
|
+
updatedAt: Date;
|
2075
|
+
deletedAt: Date | null;
|
2076
|
+
level: 2 | 1 | 3;
|
2077
|
+
parentId: string | null;
|
2078
|
+
childCategoryList: {
|
2079
|
+
id: string;
|
2080
|
+
value: string;
|
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: any[];
|
2089
|
+
}[];
|
2090
|
+
}[];
|
2091
|
+
}[];
|
1934
2092
|
tags: {
|
1935
2093
|
id: string;
|
1936
2094
|
name: string;
|
@@ -1941,12 +2099,47 @@ export declare const roomContract: {
|
|
1941
2099
|
callFrom: string | null;
|
1942
2100
|
callTo: string | null;
|
1943
2101
|
note: string | null;
|
2102
|
+
customFields?: {
|
2103
|
+
id: string;
|
2104
|
+
createdAt: Date;
|
2105
|
+
updatedAt: Date;
|
2106
|
+
deletedAt: Date | null;
|
2107
|
+
entityId: string;
|
2108
|
+
attributeId: string;
|
2109
|
+
textValue: string | null;
|
2110
|
+
booleanValue: boolean | null;
|
2111
|
+
numberValue: number | null;
|
2112
|
+
dateValue: Date | null;
|
2113
|
+
}[] | undefined;
|
1944
2114
|
}, {
|
2115
|
+
type: string;
|
1945
2116
|
id: string;
|
1946
2117
|
disposition: string | null;
|
1947
2118
|
createdAt: Date;
|
1948
2119
|
updatedAt: Date;
|
1949
2120
|
deletedAt: Date | null;
|
2121
|
+
categories: {
|
2122
|
+
id: string;
|
2123
|
+
value: string;
|
2124
|
+
createdAt: Date;
|
2125
|
+
updatedAt: Date;
|
2126
|
+
deletedAt: Date | null;
|
2127
|
+
level: 2 | 1 | 3;
|
2128
|
+
parentId: string | null;
|
2129
|
+
childCategoryList: {
|
2130
|
+
id: string;
|
2131
|
+
value: string;
|
2132
|
+
level: 2 | 1 | 3;
|
2133
|
+
parentId: string | null;
|
2134
|
+
childCategoryList: {
|
2135
|
+
id: string;
|
2136
|
+
value: string;
|
2137
|
+
level: 2 | 1 | 3;
|
2138
|
+
parentId: string | null;
|
2139
|
+
childCategoryList: any[];
|
2140
|
+
}[];
|
2141
|
+
}[];
|
2142
|
+
}[];
|
1950
2143
|
tags: {
|
1951
2144
|
id: string;
|
1952
2145
|
name: string;
|
@@ -1957,6 +2150,18 @@ export declare const roomContract: {
|
|
1957
2150
|
callFrom: string | null;
|
1958
2151
|
callTo: string | null;
|
1959
2152
|
note: string | null;
|
2153
|
+
customFields?: {
|
2154
|
+
id: string;
|
2155
|
+
createdAt: Date;
|
2156
|
+
updatedAt: Date;
|
2157
|
+
deletedAt: Date | null;
|
2158
|
+
entityId: string;
|
2159
|
+
attributeId: string;
|
2160
|
+
textValue: string | null;
|
2161
|
+
booleanValue: boolean | null;
|
2162
|
+
numberValue: number | null;
|
2163
|
+
dateValue: Date | null;
|
2164
|
+
}[] | undefined;
|
1960
2165
|
}>>;
|
1961
2166
|
}, "strip", z.ZodTypeAny, {
|
1962
2167
|
id: string;
|
@@ -1975,11 +2180,34 @@ export declare const roomContract: {
|
|
1975
2180
|
handledTime: number | null;
|
1976
2181
|
firstResponseTime: number | null;
|
1977
2182
|
wrapUpForm: {
|
2183
|
+
type: string;
|
1978
2184
|
id: string;
|
1979
2185
|
disposition: string | null;
|
1980
2186
|
createdAt: Date;
|
1981
2187
|
updatedAt: Date;
|
1982
2188
|
deletedAt: Date | null;
|
2189
|
+
categories: {
|
2190
|
+
id: string;
|
2191
|
+
value: string;
|
2192
|
+
createdAt: Date;
|
2193
|
+
updatedAt: Date;
|
2194
|
+
deletedAt: Date | null;
|
2195
|
+
level: 2 | 1 | 3;
|
2196
|
+
parentId: string | null;
|
2197
|
+
childCategoryList: {
|
2198
|
+
id: string;
|
2199
|
+
value: string;
|
2200
|
+
level: 2 | 1 | 3;
|
2201
|
+
parentId: string | null;
|
2202
|
+
childCategoryList: {
|
2203
|
+
id: string;
|
2204
|
+
value: string;
|
2205
|
+
level: 2 | 1 | 3;
|
2206
|
+
parentId: string | null;
|
2207
|
+
childCategoryList: any[];
|
2208
|
+
}[];
|
2209
|
+
}[];
|
2210
|
+
}[];
|
1983
2211
|
tags: {
|
1984
2212
|
id: string;
|
1985
2213
|
name: string;
|
@@ -1990,6 +2218,18 @@ export declare const roomContract: {
|
|
1990
2218
|
callFrom: string | null;
|
1991
2219
|
callTo: string | null;
|
1992
2220
|
note: string | null;
|
2221
|
+
customFields?: {
|
2222
|
+
id: string;
|
2223
|
+
createdAt: Date;
|
2224
|
+
updatedAt: Date;
|
2225
|
+
deletedAt: Date | null;
|
2226
|
+
entityId: string;
|
2227
|
+
attributeId: string;
|
2228
|
+
textValue: string | null;
|
2229
|
+
booleanValue: boolean | null;
|
2230
|
+
numberValue: number | null;
|
2231
|
+
dateValue: Date | null;
|
2232
|
+
}[] | undefined;
|
1993
2233
|
} | null;
|
1994
2234
|
}, {
|
1995
2235
|
id: string;
|
@@ -2008,11 +2248,34 @@ export declare const roomContract: {
|
|
2008
2248
|
handledTime: number | null;
|
2009
2249
|
firstResponseTime: number | null;
|
2010
2250
|
wrapUpForm: {
|
2251
|
+
type: string;
|
2011
2252
|
id: string;
|
2012
2253
|
disposition: string | null;
|
2013
2254
|
createdAt: Date;
|
2014
2255
|
updatedAt: Date;
|
2015
2256
|
deletedAt: Date | null;
|
2257
|
+
categories: {
|
2258
|
+
id: string;
|
2259
|
+
value: string;
|
2260
|
+
createdAt: Date;
|
2261
|
+
updatedAt: Date;
|
2262
|
+
deletedAt: Date | null;
|
2263
|
+
level: 2 | 1 | 3;
|
2264
|
+
parentId: string | null;
|
2265
|
+
childCategoryList: {
|
2266
|
+
id: string;
|
2267
|
+
value: string;
|
2268
|
+
level: 2 | 1 | 3;
|
2269
|
+
parentId: string | null;
|
2270
|
+
childCategoryList: {
|
2271
|
+
id: string;
|
2272
|
+
value: string;
|
2273
|
+
level: 2 | 1 | 3;
|
2274
|
+
parentId: string | null;
|
2275
|
+
childCategoryList: any[];
|
2276
|
+
}[];
|
2277
|
+
}[];
|
2278
|
+
}[];
|
2016
2279
|
tags: {
|
2017
2280
|
id: string;
|
2018
2281
|
name: string;
|
@@ -2023,6 +2286,18 @@ export declare const roomContract: {
|
|
2023
2286
|
callFrom: string | null;
|
2024
2287
|
callTo: string | null;
|
2025
2288
|
note: string | null;
|
2289
|
+
customFields?: {
|
2290
|
+
id: string;
|
2291
|
+
createdAt: Date;
|
2292
|
+
updatedAt: Date;
|
2293
|
+
deletedAt: Date | null;
|
2294
|
+
entityId: string;
|
2295
|
+
attributeId: string;
|
2296
|
+
textValue: string | null;
|
2297
|
+
booleanValue: boolean | null;
|
2298
|
+
numberValue: number | null;
|
2299
|
+
dateValue: Date | null;
|
2300
|
+
}[] | undefined;
|
2026
2301
|
} | null;
|
2027
2302
|
}>;
|
2028
2303
|
}, "strip", z.ZodTypeAny, {
|
@@ -2146,11 +2421,34 @@ export declare const roomContract: {
|
|
2146
2421
|
handledTime: number | null;
|
2147
2422
|
firstResponseTime: number | null;
|
2148
2423
|
wrapUpForm: {
|
2424
|
+
type: string;
|
2149
2425
|
id: string;
|
2150
2426
|
disposition: string | null;
|
2151
2427
|
createdAt: Date;
|
2152
2428
|
updatedAt: Date;
|
2153
2429
|
deletedAt: Date | null;
|
2430
|
+
categories: {
|
2431
|
+
id: string;
|
2432
|
+
value: string;
|
2433
|
+
createdAt: Date;
|
2434
|
+
updatedAt: Date;
|
2435
|
+
deletedAt: Date | null;
|
2436
|
+
level: 2 | 1 | 3;
|
2437
|
+
parentId: string | null;
|
2438
|
+
childCategoryList: {
|
2439
|
+
id: string;
|
2440
|
+
value: string;
|
2441
|
+
level: 2 | 1 | 3;
|
2442
|
+
parentId: string | null;
|
2443
|
+
childCategoryList: {
|
2444
|
+
id: string;
|
2445
|
+
value: string;
|
2446
|
+
level: 2 | 1 | 3;
|
2447
|
+
parentId: string | null;
|
2448
|
+
childCategoryList: any[];
|
2449
|
+
}[];
|
2450
|
+
}[];
|
2451
|
+
}[];
|
2154
2452
|
tags: {
|
2155
2453
|
id: string;
|
2156
2454
|
name: string;
|
@@ -2161,6 +2459,18 @@ export declare const roomContract: {
|
|
2161
2459
|
callFrom: string | null;
|
2162
2460
|
callTo: string | null;
|
2163
2461
|
note: string | null;
|
2462
|
+
customFields?: {
|
2463
|
+
id: string;
|
2464
|
+
createdAt: Date;
|
2465
|
+
updatedAt: Date;
|
2466
|
+
deletedAt: Date | null;
|
2467
|
+
entityId: string;
|
2468
|
+
attributeId: string;
|
2469
|
+
textValue: string | null;
|
2470
|
+
booleanValue: boolean | null;
|
2471
|
+
numberValue: number | null;
|
2472
|
+
dateValue: Date | null;
|
2473
|
+
}[] | undefined;
|
2164
2474
|
} | null;
|
2165
2475
|
};
|
2166
2476
|
assigneeId: string | null;
|
@@ -2598,11 +2908,34 @@ export declare const roomContract: {
|
|
2598
2908
|
handledTime: number | null;
|
2599
2909
|
firstResponseTime: number | null;
|
2600
2910
|
wrapUpForm: {
|
2911
|
+
type: string;
|
2601
2912
|
id: string;
|
2602
2913
|
disposition: string | null;
|
2603
2914
|
createdAt: Date;
|
2604
2915
|
updatedAt: Date;
|
2605
2916
|
deletedAt: Date | null;
|
2917
|
+
categories: {
|
2918
|
+
id: string;
|
2919
|
+
value: string;
|
2920
|
+
createdAt: Date;
|
2921
|
+
updatedAt: Date;
|
2922
|
+
deletedAt: Date | null;
|
2923
|
+
level: 2 | 1 | 3;
|
2924
|
+
parentId: string | null;
|
2925
|
+
childCategoryList: {
|
2926
|
+
id: string;
|
2927
|
+
value: string;
|
2928
|
+
level: 2 | 1 | 3;
|
2929
|
+
parentId: string | null;
|
2930
|
+
childCategoryList: {
|
2931
|
+
id: string;
|
2932
|
+
value: string;
|
2933
|
+
level: 2 | 1 | 3;
|
2934
|
+
parentId: string | null;
|
2935
|
+
childCategoryList: any[];
|
2936
|
+
}[];
|
2937
|
+
}[];
|
2938
|
+
}[];
|
2606
2939
|
tags: {
|
2607
2940
|
id: string;
|
2608
2941
|
name: string;
|
@@ -2613,6 +2946,18 @@ export declare const roomContract: {
|
|
2613
2946
|
callFrom: string | null;
|
2614
2947
|
callTo: string | null;
|
2615
2948
|
note: string | null;
|
2949
|
+
customFields?: {
|
2950
|
+
id: string;
|
2951
|
+
createdAt: Date;
|
2952
|
+
updatedAt: Date;
|
2953
|
+
deletedAt: Date | null;
|
2954
|
+
entityId: string;
|
2955
|
+
attributeId: string;
|
2956
|
+
textValue: string | null;
|
2957
|
+
booleanValue: boolean | null;
|
2958
|
+
numberValue: number | null;
|
2959
|
+
dateValue: Date | null;
|
2960
|
+
}[] | undefined;
|
2616
2961
|
} | null;
|
2617
2962
|
};
|
2618
2963
|
assigneeId: string | null;
|
@@ -3055,11 +3400,34 @@ export declare const roomContract: {
|
|
3055
3400
|
handledTime: number | null;
|
3056
3401
|
firstResponseTime: number | null;
|
3057
3402
|
wrapUpForm: {
|
3403
|
+
type: string;
|
3058
3404
|
id: string;
|
3059
3405
|
disposition: string | null;
|
3060
3406
|
createdAt: Date;
|
3061
3407
|
updatedAt: Date;
|
3062
3408
|
deletedAt: Date | null;
|
3409
|
+
categories: {
|
3410
|
+
id: string;
|
3411
|
+
value: string;
|
3412
|
+
createdAt: Date;
|
3413
|
+
updatedAt: Date;
|
3414
|
+
deletedAt: Date | null;
|
3415
|
+
level: 2 | 1 | 3;
|
3416
|
+
parentId: string | null;
|
3417
|
+
childCategoryList: {
|
3418
|
+
id: string;
|
3419
|
+
value: string;
|
3420
|
+
level: 2 | 1 | 3;
|
3421
|
+
parentId: string | null;
|
3422
|
+
childCategoryList: {
|
3423
|
+
id: string;
|
3424
|
+
value: string;
|
3425
|
+
level: 2 | 1 | 3;
|
3426
|
+
parentId: string | null;
|
3427
|
+
childCategoryList: any[];
|
3428
|
+
}[];
|
3429
|
+
}[];
|
3430
|
+
}[];
|
3063
3431
|
tags: {
|
3064
3432
|
id: string;
|
3065
3433
|
name: string;
|
@@ -3070,6 +3438,18 @@ export declare const roomContract: {
|
|
3070
3438
|
callFrom: string | null;
|
3071
3439
|
callTo: string | null;
|
3072
3440
|
note: string | null;
|
3441
|
+
customFields?: {
|
3442
|
+
id: string;
|
3443
|
+
createdAt: Date;
|
3444
|
+
updatedAt: Date;
|
3445
|
+
deletedAt: Date | null;
|
3446
|
+
entityId: string;
|
3447
|
+
attributeId: string;
|
3448
|
+
textValue: string | null;
|
3449
|
+
booleanValue: boolean | null;
|
3450
|
+
numberValue: number | null;
|
3451
|
+
dateValue: Date | null;
|
3452
|
+
}[] | undefined;
|
3073
3453
|
} | null;
|
3074
3454
|
};
|
3075
3455
|
assigneeId: string | null;
|
@@ -3513,11 +3893,34 @@ export declare const roomContract: {
|
|
3513
3893
|
handledTime: number | null;
|
3514
3894
|
firstResponseTime: number | null;
|
3515
3895
|
wrapUpForm: {
|
3896
|
+
type: string;
|
3516
3897
|
id: string;
|
3517
3898
|
disposition: string | null;
|
3518
3899
|
createdAt: Date;
|
3519
3900
|
updatedAt: Date;
|
3520
3901
|
deletedAt: Date | null;
|
3902
|
+
categories: {
|
3903
|
+
id: string;
|
3904
|
+
value: string;
|
3905
|
+
createdAt: Date;
|
3906
|
+
updatedAt: Date;
|
3907
|
+
deletedAt: Date | null;
|
3908
|
+
level: 2 | 1 | 3;
|
3909
|
+
parentId: string | null;
|
3910
|
+
childCategoryList: {
|
3911
|
+
id: string;
|
3912
|
+
value: string;
|
3913
|
+
level: 2 | 1 | 3;
|
3914
|
+
parentId: string | null;
|
3915
|
+
childCategoryList: {
|
3916
|
+
id: string;
|
3917
|
+
value: string;
|
3918
|
+
level: 2 | 1 | 3;
|
3919
|
+
parentId: string | null;
|
3920
|
+
childCategoryList: any[];
|
3921
|
+
}[];
|
3922
|
+
}[];
|
3923
|
+
}[];
|
3521
3924
|
tags: {
|
3522
3925
|
id: string;
|
3523
3926
|
name: string;
|
@@ -3528,6 +3931,18 @@ export declare const roomContract: {
|
|
3528
3931
|
callFrom: string | null;
|
3529
3932
|
callTo: string | null;
|
3530
3933
|
note: string | null;
|
3934
|
+
customFields?: {
|
3935
|
+
id: string;
|
3936
|
+
createdAt: Date;
|
3937
|
+
updatedAt: Date;
|
3938
|
+
deletedAt: Date | null;
|
3939
|
+
entityId: string;
|
3940
|
+
attributeId: string;
|
3941
|
+
textValue: string | null;
|
3942
|
+
booleanValue: boolean | null;
|
3943
|
+
numberValue: number | null;
|
3944
|
+
dateValue: Date | null;
|
3945
|
+
}[] | undefined;
|
3531
3946
|
} | null;
|
3532
3947
|
};
|
3533
3948
|
assigneeId: string | null;
|
@@ -6393,8 +6808,7 @@ export declare const roomContract: {
|
|
6393
6808
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
6394
6809
|
note: z.ZodNullable<z.ZodString>;
|
6395
6810
|
disposition: z.ZodNullable<z.ZodString>;
|
6396
|
-
|
6397
|
-
callTo: z.ZodNullable<z.ZodString>;
|
6811
|
+
type: z.ZodString;
|
6398
6812
|
tags: z.ZodArray<z.ZodObject<{
|
6399
6813
|
id: z.ZodString;
|
6400
6814
|
createdAt: z.ZodDate;
|
@@ -6414,12 +6828,171 @@ export declare const roomContract: {
|
|
6414
6828
|
updatedAt: Date;
|
6415
6829
|
deletedAt: Date | null;
|
6416
6830
|
}>, "many">;
|
6831
|
+
categories: z.ZodArray<z.ZodObject<{
|
6832
|
+
id: z.ZodString;
|
6833
|
+
createdAt: z.ZodDate;
|
6834
|
+
updatedAt: z.ZodDate;
|
6835
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
6836
|
+
value: z.ZodString;
|
6837
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
6838
|
+
parentId: z.ZodNullable<z.ZodString>;
|
6839
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
6840
|
+
id: z.ZodString;
|
6841
|
+
value: z.ZodString;
|
6842
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
6843
|
+
parentId: z.ZodNullable<z.ZodString>;
|
6844
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
6845
|
+
id: z.ZodString;
|
6846
|
+
value: z.ZodString;
|
6847
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
6848
|
+
parentId: z.ZodNullable<z.ZodString>;
|
6849
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
6850
|
+
}, "strip", z.ZodTypeAny, {
|
6851
|
+
id: string;
|
6852
|
+
value: string;
|
6853
|
+
level: 2 | 1 | 3;
|
6854
|
+
parentId: string | null;
|
6855
|
+
childCategoryList: any[];
|
6856
|
+
}, {
|
6857
|
+
id: string;
|
6858
|
+
value: string;
|
6859
|
+
level: 2 | 1 | 3;
|
6860
|
+
parentId: string | null;
|
6861
|
+
childCategoryList: any[];
|
6862
|
+
}>, "many">;
|
6863
|
+
}, "strip", z.ZodTypeAny, {
|
6864
|
+
id: string;
|
6865
|
+
value: string;
|
6866
|
+
level: 2 | 1 | 3;
|
6867
|
+
parentId: string | null;
|
6868
|
+
childCategoryList: {
|
6869
|
+
id: string;
|
6870
|
+
value: string;
|
6871
|
+
level: 2 | 1 | 3;
|
6872
|
+
parentId: string | null;
|
6873
|
+
childCategoryList: any[];
|
6874
|
+
}[];
|
6875
|
+
}, {
|
6876
|
+
id: string;
|
6877
|
+
value: string;
|
6878
|
+
level: 2 | 1 | 3;
|
6879
|
+
parentId: string | null;
|
6880
|
+
childCategoryList: {
|
6881
|
+
id: string;
|
6882
|
+
value: string;
|
6883
|
+
level: 2 | 1 | 3;
|
6884
|
+
parentId: string | null;
|
6885
|
+
childCategoryList: any[];
|
6886
|
+
}[];
|
6887
|
+
}>, "many">;
|
6888
|
+
}, "strip", z.ZodTypeAny, {
|
6889
|
+
id: string;
|
6890
|
+
value: string;
|
6891
|
+
createdAt: Date;
|
6892
|
+
updatedAt: Date;
|
6893
|
+
deletedAt: Date | null;
|
6894
|
+
level: 2 | 1 | 3;
|
6895
|
+
parentId: string | null;
|
6896
|
+
childCategoryList: {
|
6897
|
+
id: string;
|
6898
|
+
value: string;
|
6899
|
+
level: 2 | 1 | 3;
|
6900
|
+
parentId: string | null;
|
6901
|
+
childCategoryList: {
|
6902
|
+
id: string;
|
6903
|
+
value: string;
|
6904
|
+
level: 2 | 1 | 3;
|
6905
|
+
parentId: string | null;
|
6906
|
+
childCategoryList: any[];
|
6907
|
+
}[];
|
6908
|
+
}[];
|
6909
|
+
}, {
|
6910
|
+
id: string;
|
6911
|
+
value: string;
|
6912
|
+
createdAt: Date;
|
6913
|
+
updatedAt: Date;
|
6914
|
+
deletedAt: Date | null;
|
6915
|
+
level: 2 | 1 | 3;
|
6916
|
+
parentId: string | null;
|
6917
|
+
childCategoryList: {
|
6918
|
+
id: string;
|
6919
|
+
value: string;
|
6920
|
+
level: 2 | 1 | 3;
|
6921
|
+
parentId: string | null;
|
6922
|
+
childCategoryList: {
|
6923
|
+
id: string;
|
6924
|
+
value: string;
|
6925
|
+
level: 2 | 1 | 3;
|
6926
|
+
parentId: string | null;
|
6927
|
+
childCategoryList: any[];
|
6928
|
+
}[];
|
6929
|
+
}[];
|
6930
|
+
}>, "many">;
|
6931
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
6932
|
+
callTo: z.ZodNullable<z.ZodString>;
|
6933
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
6934
|
+
id: z.ZodString;
|
6935
|
+
createdAt: z.ZodDate;
|
6936
|
+
updatedAt: z.ZodDate;
|
6937
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
6938
|
+
textValue: z.ZodNullable<z.ZodString>;
|
6939
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
6940
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
6941
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
6942
|
+
entityId: z.ZodString;
|
6943
|
+
attributeId: z.ZodString;
|
6944
|
+
}, "strip", z.ZodTypeAny, {
|
6945
|
+
id: string;
|
6946
|
+
createdAt: Date;
|
6947
|
+
updatedAt: Date;
|
6948
|
+
deletedAt: Date | null;
|
6949
|
+
entityId: string;
|
6950
|
+
attributeId: string;
|
6951
|
+
textValue: string | null;
|
6952
|
+
booleanValue: boolean | null;
|
6953
|
+
numberValue: number | null;
|
6954
|
+
dateValue: Date | null;
|
6955
|
+
}, {
|
6956
|
+
id: string;
|
6957
|
+
createdAt: Date;
|
6958
|
+
updatedAt: Date;
|
6959
|
+
deletedAt: Date | null;
|
6960
|
+
entityId: string;
|
6961
|
+
attributeId: string;
|
6962
|
+
textValue: string | null;
|
6963
|
+
booleanValue: boolean | null;
|
6964
|
+
numberValue: number | null;
|
6965
|
+
dateValue: Date | null;
|
6966
|
+
}>, "many">>;
|
6417
6967
|
}, "strip", z.ZodTypeAny, {
|
6968
|
+
type: string;
|
6418
6969
|
id: string;
|
6419
6970
|
disposition: string | null;
|
6420
6971
|
createdAt: Date;
|
6421
6972
|
updatedAt: Date;
|
6422
6973
|
deletedAt: Date | null;
|
6974
|
+
categories: {
|
6975
|
+
id: string;
|
6976
|
+
value: string;
|
6977
|
+
createdAt: Date;
|
6978
|
+
updatedAt: Date;
|
6979
|
+
deletedAt: Date | null;
|
6980
|
+
level: 2 | 1 | 3;
|
6981
|
+
parentId: string | null;
|
6982
|
+
childCategoryList: {
|
6983
|
+
id: string;
|
6984
|
+
value: string;
|
6985
|
+
level: 2 | 1 | 3;
|
6986
|
+
parentId: string | null;
|
6987
|
+
childCategoryList: {
|
6988
|
+
id: string;
|
6989
|
+
value: string;
|
6990
|
+
level: 2 | 1 | 3;
|
6991
|
+
parentId: string | null;
|
6992
|
+
childCategoryList: any[];
|
6993
|
+
}[];
|
6994
|
+
}[];
|
6995
|
+
}[];
|
6423
6996
|
tags: {
|
6424
6997
|
id: string;
|
6425
6998
|
name: string;
|
@@ -6430,12 +7003,47 @@ export declare const roomContract: {
|
|
6430
7003
|
callFrom: string | null;
|
6431
7004
|
callTo: string | null;
|
6432
7005
|
note: string | null;
|
7006
|
+
customFields?: {
|
7007
|
+
id: string;
|
7008
|
+
createdAt: Date;
|
7009
|
+
updatedAt: Date;
|
7010
|
+
deletedAt: Date | null;
|
7011
|
+
entityId: string;
|
7012
|
+
attributeId: string;
|
7013
|
+
textValue: string | null;
|
7014
|
+
booleanValue: boolean | null;
|
7015
|
+
numberValue: number | null;
|
7016
|
+
dateValue: Date | null;
|
7017
|
+
}[] | undefined;
|
6433
7018
|
}, {
|
7019
|
+
type: string;
|
6434
7020
|
id: string;
|
6435
7021
|
disposition: string | null;
|
6436
7022
|
createdAt: Date;
|
6437
7023
|
updatedAt: Date;
|
6438
7024
|
deletedAt: Date | null;
|
7025
|
+
categories: {
|
7026
|
+
id: string;
|
7027
|
+
value: string;
|
7028
|
+
createdAt: Date;
|
7029
|
+
updatedAt: Date;
|
7030
|
+
deletedAt: Date | null;
|
7031
|
+
level: 2 | 1 | 3;
|
7032
|
+
parentId: string | null;
|
7033
|
+
childCategoryList: {
|
7034
|
+
id: string;
|
7035
|
+
value: string;
|
7036
|
+
level: 2 | 1 | 3;
|
7037
|
+
parentId: string | null;
|
7038
|
+
childCategoryList: {
|
7039
|
+
id: string;
|
7040
|
+
value: string;
|
7041
|
+
level: 2 | 1 | 3;
|
7042
|
+
parentId: string | null;
|
7043
|
+
childCategoryList: any[];
|
7044
|
+
}[];
|
7045
|
+
}[];
|
7046
|
+
}[];
|
6439
7047
|
tags: {
|
6440
7048
|
id: string;
|
6441
7049
|
name: string;
|
@@ -6446,6 +7054,18 @@ export declare const roomContract: {
|
|
6446
7054
|
callFrom: string | null;
|
6447
7055
|
callTo: string | null;
|
6448
7056
|
note: string | null;
|
7057
|
+
customFields?: {
|
7058
|
+
id: string;
|
7059
|
+
createdAt: Date;
|
7060
|
+
updatedAt: Date;
|
7061
|
+
deletedAt: Date | null;
|
7062
|
+
entityId: string;
|
7063
|
+
attributeId: string;
|
7064
|
+
textValue: string | null;
|
7065
|
+
booleanValue: boolean | null;
|
7066
|
+
numberValue: number | null;
|
7067
|
+
dateValue: Date | null;
|
7068
|
+
}[] | undefined;
|
6449
7069
|
}>>;
|
6450
7070
|
}, "strip", z.ZodTypeAny, {
|
6451
7071
|
id: string;
|
@@ -6464,11 +7084,34 @@ export declare const roomContract: {
|
|
6464
7084
|
handledTime: number | null;
|
6465
7085
|
firstResponseTime: number | null;
|
6466
7086
|
wrapUpForm: {
|
7087
|
+
type: string;
|
6467
7088
|
id: string;
|
6468
7089
|
disposition: string | null;
|
6469
7090
|
createdAt: Date;
|
6470
7091
|
updatedAt: Date;
|
6471
7092
|
deletedAt: Date | null;
|
7093
|
+
categories: {
|
7094
|
+
id: string;
|
7095
|
+
value: string;
|
7096
|
+
createdAt: Date;
|
7097
|
+
updatedAt: Date;
|
7098
|
+
deletedAt: Date | null;
|
7099
|
+
level: 2 | 1 | 3;
|
7100
|
+
parentId: string | null;
|
7101
|
+
childCategoryList: {
|
7102
|
+
id: string;
|
7103
|
+
value: string;
|
7104
|
+
level: 2 | 1 | 3;
|
7105
|
+
parentId: string | null;
|
7106
|
+
childCategoryList: {
|
7107
|
+
id: string;
|
7108
|
+
value: string;
|
7109
|
+
level: 2 | 1 | 3;
|
7110
|
+
parentId: string | null;
|
7111
|
+
childCategoryList: any[];
|
7112
|
+
}[];
|
7113
|
+
}[];
|
7114
|
+
}[];
|
6472
7115
|
tags: {
|
6473
7116
|
id: string;
|
6474
7117
|
name: string;
|
@@ -6479,6 +7122,18 @@ export declare const roomContract: {
|
|
6479
7122
|
callFrom: string | null;
|
6480
7123
|
callTo: string | null;
|
6481
7124
|
note: string | null;
|
7125
|
+
customFields?: {
|
7126
|
+
id: string;
|
7127
|
+
createdAt: Date;
|
7128
|
+
updatedAt: Date;
|
7129
|
+
deletedAt: Date | null;
|
7130
|
+
entityId: string;
|
7131
|
+
attributeId: string;
|
7132
|
+
textValue: string | null;
|
7133
|
+
booleanValue: boolean | null;
|
7134
|
+
numberValue: number | null;
|
7135
|
+
dateValue: Date | null;
|
7136
|
+
}[] | undefined;
|
6482
7137
|
} | null;
|
6483
7138
|
}, {
|
6484
7139
|
id: string;
|
@@ -6497,11 +7152,34 @@ export declare const roomContract: {
|
|
6497
7152
|
handledTime: number | null;
|
6498
7153
|
firstResponseTime: number | null;
|
6499
7154
|
wrapUpForm: {
|
7155
|
+
type: string;
|
6500
7156
|
id: string;
|
6501
7157
|
disposition: string | null;
|
6502
7158
|
createdAt: Date;
|
6503
7159
|
updatedAt: Date;
|
6504
7160
|
deletedAt: Date | null;
|
7161
|
+
categories: {
|
7162
|
+
id: string;
|
7163
|
+
value: string;
|
7164
|
+
createdAt: Date;
|
7165
|
+
updatedAt: Date;
|
7166
|
+
deletedAt: Date | null;
|
7167
|
+
level: 2 | 1 | 3;
|
7168
|
+
parentId: string | null;
|
7169
|
+
childCategoryList: {
|
7170
|
+
id: string;
|
7171
|
+
value: string;
|
7172
|
+
level: 2 | 1 | 3;
|
7173
|
+
parentId: string | null;
|
7174
|
+
childCategoryList: {
|
7175
|
+
id: string;
|
7176
|
+
value: string;
|
7177
|
+
level: 2 | 1 | 3;
|
7178
|
+
parentId: string | null;
|
7179
|
+
childCategoryList: any[];
|
7180
|
+
}[];
|
7181
|
+
}[];
|
7182
|
+
}[];
|
6505
7183
|
tags: {
|
6506
7184
|
id: string;
|
6507
7185
|
name: string;
|
@@ -6512,6 +7190,18 @@ export declare const roomContract: {
|
|
6512
7190
|
callFrom: string | null;
|
6513
7191
|
callTo: string | null;
|
6514
7192
|
note: string | null;
|
7193
|
+
customFields?: {
|
7194
|
+
id: string;
|
7195
|
+
createdAt: Date;
|
7196
|
+
updatedAt: Date;
|
7197
|
+
deletedAt: Date | null;
|
7198
|
+
entityId: string;
|
7199
|
+
attributeId: string;
|
7200
|
+
textValue: string | null;
|
7201
|
+
booleanValue: boolean | null;
|
7202
|
+
numberValue: number | null;
|
7203
|
+
dateValue: Date | null;
|
7204
|
+
}[] | undefined;
|
6515
7205
|
} | null;
|
6516
7206
|
}>;
|
6517
7207
|
}, "strip", z.ZodTypeAny, {
|
@@ -6635,11 +7325,34 @@ export declare const roomContract: {
|
|
6635
7325
|
handledTime: number | null;
|
6636
7326
|
firstResponseTime: number | null;
|
6637
7327
|
wrapUpForm: {
|
7328
|
+
type: string;
|
6638
7329
|
id: string;
|
6639
7330
|
disposition: string | null;
|
6640
7331
|
createdAt: Date;
|
6641
7332
|
updatedAt: Date;
|
6642
7333
|
deletedAt: Date | null;
|
7334
|
+
categories: {
|
7335
|
+
id: string;
|
7336
|
+
value: string;
|
7337
|
+
createdAt: Date;
|
7338
|
+
updatedAt: Date;
|
7339
|
+
deletedAt: Date | null;
|
7340
|
+
level: 2 | 1 | 3;
|
7341
|
+
parentId: string | null;
|
7342
|
+
childCategoryList: {
|
7343
|
+
id: string;
|
7344
|
+
value: string;
|
7345
|
+
level: 2 | 1 | 3;
|
7346
|
+
parentId: string | null;
|
7347
|
+
childCategoryList: {
|
7348
|
+
id: string;
|
7349
|
+
value: string;
|
7350
|
+
level: 2 | 1 | 3;
|
7351
|
+
parentId: string | null;
|
7352
|
+
childCategoryList: any[];
|
7353
|
+
}[];
|
7354
|
+
}[];
|
7355
|
+
}[];
|
6643
7356
|
tags: {
|
6644
7357
|
id: string;
|
6645
7358
|
name: string;
|
@@ -6650,6 +7363,18 @@ export declare const roomContract: {
|
|
6650
7363
|
callFrom: string | null;
|
6651
7364
|
callTo: string | null;
|
6652
7365
|
note: string | null;
|
7366
|
+
customFields?: {
|
7367
|
+
id: string;
|
7368
|
+
createdAt: Date;
|
7369
|
+
updatedAt: Date;
|
7370
|
+
deletedAt: Date | null;
|
7371
|
+
entityId: string;
|
7372
|
+
attributeId: string;
|
7373
|
+
textValue: string | null;
|
7374
|
+
booleanValue: boolean | null;
|
7375
|
+
numberValue: number | null;
|
7376
|
+
dateValue: Date | null;
|
7377
|
+
}[] | undefined;
|
6653
7378
|
} | null;
|
6654
7379
|
};
|
6655
7380
|
assigneeId: string | null;
|
@@ -7087,11 +7812,34 @@ export declare const roomContract: {
|
|
7087
7812
|
handledTime: number | null;
|
7088
7813
|
firstResponseTime: number | null;
|
7089
7814
|
wrapUpForm: {
|
7815
|
+
type: string;
|
7090
7816
|
id: string;
|
7091
7817
|
disposition: string | null;
|
7092
7818
|
createdAt: Date;
|
7093
7819
|
updatedAt: Date;
|
7094
7820
|
deletedAt: Date | null;
|
7821
|
+
categories: {
|
7822
|
+
id: string;
|
7823
|
+
value: string;
|
7824
|
+
createdAt: Date;
|
7825
|
+
updatedAt: Date;
|
7826
|
+
deletedAt: Date | null;
|
7827
|
+
level: 2 | 1 | 3;
|
7828
|
+
parentId: string | null;
|
7829
|
+
childCategoryList: {
|
7830
|
+
id: string;
|
7831
|
+
value: string;
|
7832
|
+
level: 2 | 1 | 3;
|
7833
|
+
parentId: string | null;
|
7834
|
+
childCategoryList: {
|
7835
|
+
id: string;
|
7836
|
+
value: string;
|
7837
|
+
level: 2 | 1 | 3;
|
7838
|
+
parentId: string | null;
|
7839
|
+
childCategoryList: any[];
|
7840
|
+
}[];
|
7841
|
+
}[];
|
7842
|
+
}[];
|
7095
7843
|
tags: {
|
7096
7844
|
id: string;
|
7097
7845
|
name: string;
|
@@ -7102,6 +7850,18 @@ export declare const roomContract: {
|
|
7102
7850
|
callFrom: string | null;
|
7103
7851
|
callTo: string | null;
|
7104
7852
|
note: string | null;
|
7853
|
+
customFields?: {
|
7854
|
+
id: string;
|
7855
|
+
createdAt: Date;
|
7856
|
+
updatedAt: Date;
|
7857
|
+
deletedAt: Date | null;
|
7858
|
+
entityId: string;
|
7859
|
+
attributeId: string;
|
7860
|
+
textValue: string | null;
|
7861
|
+
booleanValue: boolean | null;
|
7862
|
+
numberValue: number | null;
|
7863
|
+
dateValue: Date | null;
|
7864
|
+
}[] | undefined;
|
7105
7865
|
} | null;
|
7106
7866
|
};
|
7107
7867
|
assigneeId: string | null;
|
@@ -7541,11 +8301,34 @@ export declare const roomContract: {
|
|
7541
8301
|
handledTime: number | null;
|
7542
8302
|
firstResponseTime: number | null;
|
7543
8303
|
wrapUpForm: {
|
8304
|
+
type: string;
|
7544
8305
|
id: string;
|
7545
8306
|
disposition: string | null;
|
7546
8307
|
createdAt: Date;
|
7547
8308
|
updatedAt: Date;
|
7548
8309
|
deletedAt: Date | null;
|
8310
|
+
categories: {
|
8311
|
+
id: string;
|
8312
|
+
value: string;
|
8313
|
+
createdAt: Date;
|
8314
|
+
updatedAt: Date;
|
8315
|
+
deletedAt: Date | null;
|
8316
|
+
level: 2 | 1 | 3;
|
8317
|
+
parentId: string | null;
|
8318
|
+
childCategoryList: {
|
8319
|
+
id: string;
|
8320
|
+
value: string;
|
8321
|
+
level: 2 | 1 | 3;
|
8322
|
+
parentId: string | null;
|
8323
|
+
childCategoryList: {
|
8324
|
+
id: string;
|
8325
|
+
value: string;
|
8326
|
+
level: 2 | 1 | 3;
|
8327
|
+
parentId: string | null;
|
8328
|
+
childCategoryList: any[];
|
8329
|
+
}[];
|
8330
|
+
}[];
|
8331
|
+
}[];
|
7549
8332
|
tags: {
|
7550
8333
|
id: string;
|
7551
8334
|
name: string;
|
@@ -7556,6 +8339,18 @@ export declare const roomContract: {
|
|
7556
8339
|
callFrom: string | null;
|
7557
8340
|
callTo: string | null;
|
7558
8341
|
note: string | null;
|
8342
|
+
customFields?: {
|
8343
|
+
id: string;
|
8344
|
+
createdAt: Date;
|
8345
|
+
updatedAt: Date;
|
8346
|
+
deletedAt: Date | null;
|
8347
|
+
entityId: string;
|
8348
|
+
attributeId: string;
|
8349
|
+
textValue: string | null;
|
8350
|
+
booleanValue: boolean | null;
|
8351
|
+
numberValue: number | null;
|
8352
|
+
dateValue: Date | null;
|
8353
|
+
}[] | undefined;
|
7559
8354
|
} | null;
|
7560
8355
|
};
|
7561
8356
|
assigneeId: string | null;
|
@@ -7996,11 +8791,34 @@ export declare const roomContract: {
|
|
7996
8791
|
handledTime: number | null;
|
7997
8792
|
firstResponseTime: number | null;
|
7998
8793
|
wrapUpForm: {
|
8794
|
+
type: string;
|
7999
8795
|
id: string;
|
8000
8796
|
disposition: string | null;
|
8001
8797
|
createdAt: Date;
|
8002
8798
|
updatedAt: Date;
|
8003
8799
|
deletedAt: Date | null;
|
8800
|
+
categories: {
|
8801
|
+
id: string;
|
8802
|
+
value: string;
|
8803
|
+
createdAt: Date;
|
8804
|
+
updatedAt: Date;
|
8805
|
+
deletedAt: Date | null;
|
8806
|
+
level: 2 | 1 | 3;
|
8807
|
+
parentId: string | null;
|
8808
|
+
childCategoryList: {
|
8809
|
+
id: string;
|
8810
|
+
value: string;
|
8811
|
+
level: 2 | 1 | 3;
|
8812
|
+
parentId: string | null;
|
8813
|
+
childCategoryList: {
|
8814
|
+
id: string;
|
8815
|
+
value: string;
|
8816
|
+
level: 2 | 1 | 3;
|
8817
|
+
parentId: string | null;
|
8818
|
+
childCategoryList: any[];
|
8819
|
+
}[];
|
8820
|
+
}[];
|
8821
|
+
}[];
|
8004
8822
|
tags: {
|
8005
8823
|
id: string;
|
8006
8824
|
name: string;
|
@@ -8011,6 +8829,18 @@ export declare const roomContract: {
|
|
8011
8829
|
callFrom: string | null;
|
8012
8830
|
callTo: string | null;
|
8013
8831
|
note: string | null;
|
8832
|
+
customFields?: {
|
8833
|
+
id: string;
|
8834
|
+
createdAt: Date;
|
8835
|
+
updatedAt: Date;
|
8836
|
+
deletedAt: Date | null;
|
8837
|
+
entityId: string;
|
8838
|
+
attributeId: string;
|
8839
|
+
textValue: string | null;
|
8840
|
+
booleanValue: boolean | null;
|
8841
|
+
numberValue: number | null;
|
8842
|
+
dateValue: Date | null;
|
8843
|
+
}[] | undefined;
|
8014
8844
|
} | null;
|
8015
8845
|
};
|
8016
8846
|
assigneeId: string | null;
|
@@ -10201,8 +11031,7 @@ export declare const roomContract: {
|
|
10201
11031
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
10202
11032
|
note: z.ZodNullable<z.ZodString>;
|
10203
11033
|
disposition: z.ZodNullable<z.ZodString>;
|
10204
|
-
|
10205
|
-
callTo: z.ZodNullable<z.ZodString>;
|
11034
|
+
type: z.ZodString;
|
10206
11035
|
tags: z.ZodArray<z.ZodObject<{
|
10207
11036
|
id: z.ZodString;
|
10208
11037
|
createdAt: z.ZodDate;
|
@@ -10222,12 +11051,171 @@ export declare const roomContract: {
|
|
10222
11051
|
updatedAt: Date;
|
10223
11052
|
deletedAt: Date | null;
|
10224
11053
|
}>, "many">;
|
11054
|
+
categories: z.ZodArray<z.ZodObject<{
|
11055
|
+
id: z.ZodString;
|
11056
|
+
createdAt: z.ZodDate;
|
11057
|
+
updatedAt: z.ZodDate;
|
11058
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
11059
|
+
value: z.ZodString;
|
11060
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
11061
|
+
parentId: z.ZodNullable<z.ZodString>;
|
11062
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
11063
|
+
id: z.ZodString;
|
11064
|
+
value: z.ZodString;
|
11065
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
11066
|
+
parentId: z.ZodNullable<z.ZodString>;
|
11067
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
11068
|
+
id: z.ZodString;
|
11069
|
+
value: z.ZodString;
|
11070
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
11071
|
+
parentId: z.ZodNullable<z.ZodString>;
|
11072
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
11073
|
+
}, "strip", z.ZodTypeAny, {
|
11074
|
+
id: string;
|
11075
|
+
value: string;
|
11076
|
+
level: 2 | 1 | 3;
|
11077
|
+
parentId: string | null;
|
11078
|
+
childCategoryList: any[];
|
11079
|
+
}, {
|
11080
|
+
id: string;
|
11081
|
+
value: string;
|
11082
|
+
level: 2 | 1 | 3;
|
11083
|
+
parentId: string | null;
|
11084
|
+
childCategoryList: any[];
|
11085
|
+
}>, "many">;
|
11086
|
+
}, "strip", z.ZodTypeAny, {
|
11087
|
+
id: string;
|
11088
|
+
value: string;
|
11089
|
+
level: 2 | 1 | 3;
|
11090
|
+
parentId: string | null;
|
11091
|
+
childCategoryList: {
|
11092
|
+
id: string;
|
11093
|
+
value: string;
|
11094
|
+
level: 2 | 1 | 3;
|
11095
|
+
parentId: string | null;
|
11096
|
+
childCategoryList: any[];
|
11097
|
+
}[];
|
11098
|
+
}, {
|
11099
|
+
id: string;
|
11100
|
+
value: string;
|
11101
|
+
level: 2 | 1 | 3;
|
11102
|
+
parentId: string | null;
|
11103
|
+
childCategoryList: {
|
11104
|
+
id: string;
|
11105
|
+
value: string;
|
11106
|
+
level: 2 | 1 | 3;
|
11107
|
+
parentId: string | null;
|
11108
|
+
childCategoryList: any[];
|
11109
|
+
}[];
|
11110
|
+
}>, "many">;
|
11111
|
+
}, "strip", z.ZodTypeAny, {
|
11112
|
+
id: string;
|
11113
|
+
value: string;
|
11114
|
+
createdAt: Date;
|
11115
|
+
updatedAt: Date;
|
11116
|
+
deletedAt: Date | null;
|
11117
|
+
level: 2 | 1 | 3;
|
11118
|
+
parentId: string | null;
|
11119
|
+
childCategoryList: {
|
11120
|
+
id: string;
|
11121
|
+
value: string;
|
11122
|
+
level: 2 | 1 | 3;
|
11123
|
+
parentId: string | null;
|
11124
|
+
childCategoryList: {
|
11125
|
+
id: string;
|
11126
|
+
value: string;
|
11127
|
+
level: 2 | 1 | 3;
|
11128
|
+
parentId: string | null;
|
11129
|
+
childCategoryList: any[];
|
11130
|
+
}[];
|
11131
|
+
}[];
|
11132
|
+
}, {
|
11133
|
+
id: string;
|
11134
|
+
value: string;
|
11135
|
+
createdAt: Date;
|
11136
|
+
updatedAt: Date;
|
11137
|
+
deletedAt: Date | null;
|
11138
|
+
level: 2 | 1 | 3;
|
11139
|
+
parentId: string | null;
|
11140
|
+
childCategoryList: {
|
11141
|
+
id: string;
|
11142
|
+
value: string;
|
11143
|
+
level: 2 | 1 | 3;
|
11144
|
+
parentId: string | null;
|
11145
|
+
childCategoryList: {
|
11146
|
+
id: string;
|
11147
|
+
value: string;
|
11148
|
+
level: 2 | 1 | 3;
|
11149
|
+
parentId: string | null;
|
11150
|
+
childCategoryList: any[];
|
11151
|
+
}[];
|
11152
|
+
}[];
|
11153
|
+
}>, "many">;
|
11154
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
11155
|
+
callTo: z.ZodNullable<z.ZodString>;
|
11156
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11157
|
+
id: z.ZodString;
|
11158
|
+
createdAt: z.ZodDate;
|
11159
|
+
updatedAt: z.ZodDate;
|
11160
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
11161
|
+
textValue: z.ZodNullable<z.ZodString>;
|
11162
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
11163
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
11164
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
11165
|
+
entityId: z.ZodString;
|
11166
|
+
attributeId: z.ZodString;
|
11167
|
+
}, "strip", z.ZodTypeAny, {
|
11168
|
+
id: string;
|
11169
|
+
createdAt: Date;
|
11170
|
+
updatedAt: Date;
|
11171
|
+
deletedAt: Date | null;
|
11172
|
+
entityId: string;
|
11173
|
+
attributeId: string;
|
11174
|
+
textValue: string | null;
|
11175
|
+
booleanValue: boolean | null;
|
11176
|
+
numberValue: number | null;
|
11177
|
+
dateValue: Date | null;
|
11178
|
+
}, {
|
11179
|
+
id: string;
|
11180
|
+
createdAt: Date;
|
11181
|
+
updatedAt: Date;
|
11182
|
+
deletedAt: Date | null;
|
11183
|
+
entityId: string;
|
11184
|
+
attributeId: string;
|
11185
|
+
textValue: string | null;
|
11186
|
+
booleanValue: boolean | null;
|
11187
|
+
numberValue: number | null;
|
11188
|
+
dateValue: Date | null;
|
11189
|
+
}>, "many">>;
|
10225
11190
|
}, "strip", z.ZodTypeAny, {
|
11191
|
+
type: string;
|
10226
11192
|
id: string;
|
10227
11193
|
disposition: string | null;
|
10228
11194
|
createdAt: Date;
|
10229
11195
|
updatedAt: Date;
|
10230
11196
|
deletedAt: Date | null;
|
11197
|
+
categories: {
|
11198
|
+
id: string;
|
11199
|
+
value: string;
|
11200
|
+
createdAt: Date;
|
11201
|
+
updatedAt: Date;
|
11202
|
+
deletedAt: Date | null;
|
11203
|
+
level: 2 | 1 | 3;
|
11204
|
+
parentId: string | null;
|
11205
|
+
childCategoryList: {
|
11206
|
+
id: string;
|
11207
|
+
value: string;
|
11208
|
+
level: 2 | 1 | 3;
|
11209
|
+
parentId: string | null;
|
11210
|
+
childCategoryList: {
|
11211
|
+
id: string;
|
11212
|
+
value: string;
|
11213
|
+
level: 2 | 1 | 3;
|
11214
|
+
parentId: string | null;
|
11215
|
+
childCategoryList: any[];
|
11216
|
+
}[];
|
11217
|
+
}[];
|
11218
|
+
}[];
|
10231
11219
|
tags: {
|
10232
11220
|
id: string;
|
10233
11221
|
name: string;
|
@@ -10238,12 +11226,47 @@ export declare const roomContract: {
|
|
10238
11226
|
callFrom: string | null;
|
10239
11227
|
callTo: string | null;
|
10240
11228
|
note: string | null;
|
11229
|
+
customFields?: {
|
11230
|
+
id: string;
|
11231
|
+
createdAt: Date;
|
11232
|
+
updatedAt: Date;
|
11233
|
+
deletedAt: Date | null;
|
11234
|
+
entityId: string;
|
11235
|
+
attributeId: string;
|
11236
|
+
textValue: string | null;
|
11237
|
+
booleanValue: boolean | null;
|
11238
|
+
numberValue: number | null;
|
11239
|
+
dateValue: Date | null;
|
11240
|
+
}[] | undefined;
|
10241
11241
|
}, {
|
11242
|
+
type: string;
|
10242
11243
|
id: string;
|
10243
11244
|
disposition: string | null;
|
10244
11245
|
createdAt: Date;
|
10245
11246
|
updatedAt: Date;
|
10246
11247
|
deletedAt: Date | null;
|
11248
|
+
categories: {
|
11249
|
+
id: string;
|
11250
|
+
value: string;
|
11251
|
+
createdAt: Date;
|
11252
|
+
updatedAt: Date;
|
11253
|
+
deletedAt: Date | null;
|
11254
|
+
level: 2 | 1 | 3;
|
11255
|
+
parentId: string | null;
|
11256
|
+
childCategoryList: {
|
11257
|
+
id: string;
|
11258
|
+
value: string;
|
11259
|
+
level: 2 | 1 | 3;
|
11260
|
+
parentId: string | null;
|
11261
|
+
childCategoryList: {
|
11262
|
+
id: string;
|
11263
|
+
value: string;
|
11264
|
+
level: 2 | 1 | 3;
|
11265
|
+
parentId: string | null;
|
11266
|
+
childCategoryList: any[];
|
11267
|
+
}[];
|
11268
|
+
}[];
|
11269
|
+
}[];
|
10247
11270
|
tags: {
|
10248
11271
|
id: string;
|
10249
11272
|
name: string;
|
@@ -10254,6 +11277,18 @@ export declare const roomContract: {
|
|
10254
11277
|
callFrom: string | null;
|
10255
11278
|
callTo: string | null;
|
10256
11279
|
note: string | null;
|
11280
|
+
customFields?: {
|
11281
|
+
id: string;
|
11282
|
+
createdAt: Date;
|
11283
|
+
updatedAt: Date;
|
11284
|
+
deletedAt: Date | null;
|
11285
|
+
entityId: string;
|
11286
|
+
attributeId: string;
|
11287
|
+
textValue: string | null;
|
11288
|
+
booleanValue: boolean | null;
|
11289
|
+
numberValue: number | null;
|
11290
|
+
dateValue: Date | null;
|
11291
|
+
}[] | undefined;
|
10257
11292
|
}>>;
|
10258
11293
|
}, "strip", z.ZodTypeAny, {
|
10259
11294
|
id: string;
|
@@ -10272,11 +11307,34 @@ export declare const roomContract: {
|
|
10272
11307
|
handledTime: number | null;
|
10273
11308
|
firstResponseTime: number | null;
|
10274
11309
|
wrapUpForm: {
|
11310
|
+
type: string;
|
10275
11311
|
id: string;
|
10276
11312
|
disposition: string | null;
|
10277
11313
|
createdAt: Date;
|
10278
11314
|
updatedAt: Date;
|
10279
11315
|
deletedAt: Date | null;
|
11316
|
+
categories: {
|
11317
|
+
id: string;
|
11318
|
+
value: string;
|
11319
|
+
createdAt: Date;
|
11320
|
+
updatedAt: Date;
|
11321
|
+
deletedAt: Date | null;
|
11322
|
+
level: 2 | 1 | 3;
|
11323
|
+
parentId: string | null;
|
11324
|
+
childCategoryList: {
|
11325
|
+
id: string;
|
11326
|
+
value: string;
|
11327
|
+
level: 2 | 1 | 3;
|
11328
|
+
parentId: string | null;
|
11329
|
+
childCategoryList: {
|
11330
|
+
id: string;
|
11331
|
+
value: string;
|
11332
|
+
level: 2 | 1 | 3;
|
11333
|
+
parentId: string | null;
|
11334
|
+
childCategoryList: any[];
|
11335
|
+
}[];
|
11336
|
+
}[];
|
11337
|
+
}[];
|
10280
11338
|
tags: {
|
10281
11339
|
id: string;
|
10282
11340
|
name: string;
|
@@ -10287,6 +11345,18 @@ export declare const roomContract: {
|
|
10287
11345
|
callFrom: string | null;
|
10288
11346
|
callTo: string | null;
|
10289
11347
|
note: string | null;
|
11348
|
+
customFields?: {
|
11349
|
+
id: string;
|
11350
|
+
createdAt: Date;
|
11351
|
+
updatedAt: Date;
|
11352
|
+
deletedAt: Date | null;
|
11353
|
+
entityId: string;
|
11354
|
+
attributeId: string;
|
11355
|
+
textValue: string | null;
|
11356
|
+
booleanValue: boolean | null;
|
11357
|
+
numberValue: number | null;
|
11358
|
+
dateValue: Date | null;
|
11359
|
+
}[] | undefined;
|
10290
11360
|
} | null;
|
10291
11361
|
}, {
|
10292
11362
|
id: string;
|
@@ -10305,11 +11375,34 @@ export declare const roomContract: {
|
|
10305
11375
|
handledTime: number | null;
|
10306
11376
|
firstResponseTime: number | null;
|
10307
11377
|
wrapUpForm: {
|
11378
|
+
type: string;
|
10308
11379
|
id: string;
|
10309
11380
|
disposition: string | null;
|
10310
11381
|
createdAt: Date;
|
10311
11382
|
updatedAt: Date;
|
10312
11383
|
deletedAt: Date | null;
|
11384
|
+
categories: {
|
11385
|
+
id: string;
|
11386
|
+
value: string;
|
11387
|
+
createdAt: Date;
|
11388
|
+
updatedAt: Date;
|
11389
|
+
deletedAt: Date | null;
|
11390
|
+
level: 2 | 1 | 3;
|
11391
|
+
parentId: string | null;
|
11392
|
+
childCategoryList: {
|
11393
|
+
id: string;
|
11394
|
+
value: string;
|
11395
|
+
level: 2 | 1 | 3;
|
11396
|
+
parentId: string | null;
|
11397
|
+
childCategoryList: {
|
11398
|
+
id: string;
|
11399
|
+
value: string;
|
11400
|
+
level: 2 | 1 | 3;
|
11401
|
+
parentId: string | null;
|
11402
|
+
childCategoryList: any[];
|
11403
|
+
}[];
|
11404
|
+
}[];
|
11405
|
+
}[];
|
10313
11406
|
tags: {
|
10314
11407
|
id: string;
|
10315
11408
|
name: string;
|
@@ -10320,6 +11413,18 @@ export declare const roomContract: {
|
|
10320
11413
|
callFrom: string | null;
|
10321
11414
|
callTo: string | null;
|
10322
11415
|
note: string | null;
|
11416
|
+
customFields?: {
|
11417
|
+
id: string;
|
11418
|
+
createdAt: Date;
|
11419
|
+
updatedAt: Date;
|
11420
|
+
deletedAt: Date | null;
|
11421
|
+
entityId: string;
|
11422
|
+
attributeId: string;
|
11423
|
+
textValue: string | null;
|
11424
|
+
booleanValue: boolean | null;
|
11425
|
+
numberValue: number | null;
|
11426
|
+
dateValue: Date | null;
|
11427
|
+
}[] | undefined;
|
10323
11428
|
} | null;
|
10324
11429
|
}>;
|
10325
11430
|
}, "strip", z.ZodTypeAny, {
|
@@ -10443,11 +11548,34 @@ export declare const roomContract: {
|
|
10443
11548
|
handledTime: number | null;
|
10444
11549
|
firstResponseTime: number | null;
|
10445
11550
|
wrapUpForm: {
|
11551
|
+
type: string;
|
10446
11552
|
id: string;
|
10447
11553
|
disposition: string | null;
|
10448
11554
|
createdAt: Date;
|
10449
11555
|
updatedAt: Date;
|
10450
11556
|
deletedAt: Date | null;
|
11557
|
+
categories: {
|
11558
|
+
id: string;
|
11559
|
+
value: string;
|
11560
|
+
createdAt: Date;
|
11561
|
+
updatedAt: Date;
|
11562
|
+
deletedAt: Date | null;
|
11563
|
+
level: 2 | 1 | 3;
|
11564
|
+
parentId: string | null;
|
11565
|
+
childCategoryList: {
|
11566
|
+
id: string;
|
11567
|
+
value: string;
|
11568
|
+
level: 2 | 1 | 3;
|
11569
|
+
parentId: string | null;
|
11570
|
+
childCategoryList: {
|
11571
|
+
id: string;
|
11572
|
+
value: string;
|
11573
|
+
level: 2 | 1 | 3;
|
11574
|
+
parentId: string | null;
|
11575
|
+
childCategoryList: any[];
|
11576
|
+
}[];
|
11577
|
+
}[];
|
11578
|
+
}[];
|
10451
11579
|
tags: {
|
10452
11580
|
id: string;
|
10453
11581
|
name: string;
|
@@ -10458,6 +11586,18 @@ export declare const roomContract: {
|
|
10458
11586
|
callFrom: string | null;
|
10459
11587
|
callTo: string | null;
|
10460
11588
|
note: string | null;
|
11589
|
+
customFields?: {
|
11590
|
+
id: string;
|
11591
|
+
createdAt: Date;
|
11592
|
+
updatedAt: Date;
|
11593
|
+
deletedAt: Date | null;
|
11594
|
+
entityId: string;
|
11595
|
+
attributeId: string;
|
11596
|
+
textValue: string | null;
|
11597
|
+
booleanValue: boolean | null;
|
11598
|
+
numberValue: number | null;
|
11599
|
+
dateValue: Date | null;
|
11600
|
+
}[] | undefined;
|
10461
11601
|
} | null;
|
10462
11602
|
};
|
10463
11603
|
assigneeId: string | null;
|
@@ -10895,11 +12035,34 @@ export declare const roomContract: {
|
|
10895
12035
|
handledTime: number | null;
|
10896
12036
|
firstResponseTime: number | null;
|
10897
12037
|
wrapUpForm: {
|
12038
|
+
type: string;
|
10898
12039
|
id: string;
|
10899
12040
|
disposition: string | null;
|
10900
12041
|
createdAt: Date;
|
10901
12042
|
updatedAt: Date;
|
10902
12043
|
deletedAt: Date | null;
|
12044
|
+
categories: {
|
12045
|
+
id: string;
|
12046
|
+
value: string;
|
12047
|
+
createdAt: Date;
|
12048
|
+
updatedAt: Date;
|
12049
|
+
deletedAt: Date | null;
|
12050
|
+
level: 2 | 1 | 3;
|
12051
|
+
parentId: string | null;
|
12052
|
+
childCategoryList: {
|
12053
|
+
id: string;
|
12054
|
+
value: string;
|
12055
|
+
level: 2 | 1 | 3;
|
12056
|
+
parentId: string | null;
|
12057
|
+
childCategoryList: {
|
12058
|
+
id: string;
|
12059
|
+
value: string;
|
12060
|
+
level: 2 | 1 | 3;
|
12061
|
+
parentId: string | null;
|
12062
|
+
childCategoryList: any[];
|
12063
|
+
}[];
|
12064
|
+
}[];
|
12065
|
+
}[];
|
10903
12066
|
tags: {
|
10904
12067
|
id: string;
|
10905
12068
|
name: string;
|
@@ -10910,6 +12073,18 @@ export declare const roomContract: {
|
|
10910
12073
|
callFrom: string | null;
|
10911
12074
|
callTo: string | null;
|
10912
12075
|
note: string | null;
|
12076
|
+
customFields?: {
|
12077
|
+
id: string;
|
12078
|
+
createdAt: Date;
|
12079
|
+
updatedAt: Date;
|
12080
|
+
deletedAt: Date | null;
|
12081
|
+
entityId: string;
|
12082
|
+
attributeId: string;
|
12083
|
+
textValue: string | null;
|
12084
|
+
booleanValue: boolean | null;
|
12085
|
+
numberValue: number | null;
|
12086
|
+
dateValue: Date | null;
|
12087
|
+
}[] | undefined;
|
10913
12088
|
} | null;
|
10914
12089
|
};
|
10915
12090
|
assigneeId: string | null;
|
@@ -11349,11 +12524,34 @@ export declare const roomContract: {
|
|
11349
12524
|
handledTime: number | null;
|
11350
12525
|
firstResponseTime: number | null;
|
11351
12526
|
wrapUpForm: {
|
12527
|
+
type: string;
|
11352
12528
|
id: string;
|
11353
12529
|
disposition: string | null;
|
11354
12530
|
createdAt: Date;
|
11355
12531
|
updatedAt: Date;
|
11356
12532
|
deletedAt: Date | null;
|
12533
|
+
categories: {
|
12534
|
+
id: string;
|
12535
|
+
value: string;
|
12536
|
+
createdAt: Date;
|
12537
|
+
updatedAt: Date;
|
12538
|
+
deletedAt: Date | null;
|
12539
|
+
level: 2 | 1 | 3;
|
12540
|
+
parentId: string | null;
|
12541
|
+
childCategoryList: {
|
12542
|
+
id: string;
|
12543
|
+
value: string;
|
12544
|
+
level: 2 | 1 | 3;
|
12545
|
+
parentId: string | null;
|
12546
|
+
childCategoryList: {
|
12547
|
+
id: string;
|
12548
|
+
value: string;
|
12549
|
+
level: 2 | 1 | 3;
|
12550
|
+
parentId: string | null;
|
12551
|
+
childCategoryList: any[];
|
12552
|
+
}[];
|
12553
|
+
}[];
|
12554
|
+
}[];
|
11357
12555
|
tags: {
|
11358
12556
|
id: string;
|
11359
12557
|
name: string;
|
@@ -11364,6 +12562,18 @@ export declare const roomContract: {
|
|
11364
12562
|
callFrom: string | null;
|
11365
12563
|
callTo: string | null;
|
11366
12564
|
note: string | null;
|
12565
|
+
customFields?: {
|
12566
|
+
id: string;
|
12567
|
+
createdAt: Date;
|
12568
|
+
updatedAt: Date;
|
12569
|
+
deletedAt: Date | null;
|
12570
|
+
entityId: string;
|
12571
|
+
attributeId: string;
|
12572
|
+
textValue: string | null;
|
12573
|
+
booleanValue: boolean | null;
|
12574
|
+
numberValue: number | null;
|
12575
|
+
dateValue: Date | null;
|
12576
|
+
}[] | undefined;
|
11367
12577
|
} | null;
|
11368
12578
|
};
|
11369
12579
|
assigneeId: string | null;
|
@@ -11804,11 +13014,34 @@ export declare const roomContract: {
|
|
11804
13014
|
handledTime: number | null;
|
11805
13015
|
firstResponseTime: number | null;
|
11806
13016
|
wrapUpForm: {
|
13017
|
+
type: string;
|
11807
13018
|
id: string;
|
11808
13019
|
disposition: string | null;
|
11809
13020
|
createdAt: Date;
|
11810
13021
|
updatedAt: Date;
|
11811
13022
|
deletedAt: Date | null;
|
13023
|
+
categories: {
|
13024
|
+
id: string;
|
13025
|
+
value: string;
|
13026
|
+
createdAt: Date;
|
13027
|
+
updatedAt: Date;
|
13028
|
+
deletedAt: Date | null;
|
13029
|
+
level: 2 | 1 | 3;
|
13030
|
+
parentId: string | null;
|
13031
|
+
childCategoryList: {
|
13032
|
+
id: string;
|
13033
|
+
value: string;
|
13034
|
+
level: 2 | 1 | 3;
|
13035
|
+
parentId: string | null;
|
13036
|
+
childCategoryList: {
|
13037
|
+
id: string;
|
13038
|
+
value: string;
|
13039
|
+
level: 2 | 1 | 3;
|
13040
|
+
parentId: string | null;
|
13041
|
+
childCategoryList: any[];
|
13042
|
+
}[];
|
13043
|
+
}[];
|
13044
|
+
}[];
|
11812
13045
|
tags: {
|
11813
13046
|
id: string;
|
11814
13047
|
name: string;
|
@@ -11819,6 +13052,18 @@ export declare const roomContract: {
|
|
11819
13052
|
callFrom: string | null;
|
11820
13053
|
callTo: string | null;
|
11821
13054
|
note: string | null;
|
13055
|
+
customFields?: {
|
13056
|
+
id: string;
|
13057
|
+
createdAt: Date;
|
13058
|
+
updatedAt: Date;
|
13059
|
+
deletedAt: Date | null;
|
13060
|
+
entityId: string;
|
13061
|
+
attributeId: string;
|
13062
|
+
textValue: string | null;
|
13063
|
+
booleanValue: boolean | null;
|
13064
|
+
numberValue: number | null;
|
13065
|
+
dateValue: Date | null;
|
13066
|
+
}[] | undefined;
|
11822
13067
|
} | null;
|
11823
13068
|
};
|
11824
13069
|
assigneeId: string | null;
|