@kl1/contracts 1.1.23-uat → 1.1.23
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 +367 -238
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +367 -238
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +799 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +172 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +210 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/channel/index.d.ts +725 -611
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +12 -12
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +71 -8
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +5144 -299
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +807 -47
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +1093 -118
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +19780 -2109
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +376 -31
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +577 -27
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +628 -138
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +623 -133
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/validation.d.ts +23 -23
- package/dist/src/mail/account-contract.d.ts +156 -3
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1407 -9
- 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 +628 -138
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +13 -13
- package/dist/src/viber/index.d.ts +592 -102
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +8506 -0
- package/dist/src/webchat/index.d.ts.map +1 -0
- package/dist/src/webchat/schema.d.ts +95 -0
- package/dist/src/webchat/schema.d.ts.map +1 -0
- package/dist/src/webchat/validation.d.ts +36 -0
- package/dist/src/webchat/validation.d.ts.map +1 -0
- package/dist/src/workflow-rule/index.d.ts +7295 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -0
- package/dist/src/workflow-rule/schema.d.ts +27 -0
- package/dist/src/workflow-rule/schema.d.ts.map +1 -0
- package/dist/src/wrap-up-form/index.d.ts +1000 -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 +29 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1880,8 +1880,7 @@ export declare const roomContract: {
|
|
1880
1880
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1881
1881
|
note: z.ZodNullable<z.ZodString>;
|
1882
1882
|
disposition: z.ZodNullable<z.ZodString>;
|
1883
|
-
|
1884
|
-
callTo: z.ZodNullable<z.ZodString>;
|
1883
|
+
type: z.ZodString;
|
1885
1884
|
tags: z.ZodArray<z.ZodObject<{
|
1886
1885
|
id: z.ZodString;
|
1887
1886
|
createdAt: z.ZodDate;
|
@@ -1901,12 +1900,171 @@ export declare const roomContract: {
|
|
1901
1900
|
updatedAt: Date;
|
1902
1901
|
deletedAt: Date | null;
|
1903
1902
|
}>, "many">;
|
1903
|
+
categories: z.ZodArray<z.ZodObject<{
|
1904
|
+
id: z.ZodString;
|
1905
|
+
createdAt: z.ZodDate;
|
1906
|
+
updatedAt: z.ZodDate;
|
1907
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
1908
|
+
value: z.ZodString;
|
1909
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1910
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1911
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
1912
|
+
id: z.ZodString;
|
1913
|
+
value: z.ZodString;
|
1914
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1915
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1916
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
1917
|
+
id: z.ZodString;
|
1918
|
+
value: z.ZodString;
|
1919
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1920
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1921
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
1922
|
+
}, "strip", z.ZodTypeAny, {
|
1923
|
+
id: string;
|
1924
|
+
value: string;
|
1925
|
+
level: 2 | 1 | 3;
|
1926
|
+
parentId: string | null;
|
1927
|
+
childCategoryList: any[];
|
1928
|
+
}, {
|
1929
|
+
id: string;
|
1930
|
+
value: string;
|
1931
|
+
level: 2 | 1 | 3;
|
1932
|
+
parentId: string | null;
|
1933
|
+
childCategoryList: any[];
|
1934
|
+
}>, "many">;
|
1935
|
+
}, "strip", z.ZodTypeAny, {
|
1936
|
+
id: string;
|
1937
|
+
value: string;
|
1938
|
+
level: 2 | 1 | 3;
|
1939
|
+
parentId: string | null;
|
1940
|
+
childCategoryList: {
|
1941
|
+
id: string;
|
1942
|
+
value: string;
|
1943
|
+
level: 2 | 1 | 3;
|
1944
|
+
parentId: string | null;
|
1945
|
+
childCategoryList: any[];
|
1946
|
+
}[];
|
1947
|
+
}, {
|
1948
|
+
id: string;
|
1949
|
+
value: string;
|
1950
|
+
level: 2 | 1 | 3;
|
1951
|
+
parentId: string | null;
|
1952
|
+
childCategoryList: {
|
1953
|
+
id: string;
|
1954
|
+
value: string;
|
1955
|
+
level: 2 | 1 | 3;
|
1956
|
+
parentId: string | null;
|
1957
|
+
childCategoryList: any[];
|
1958
|
+
}[];
|
1959
|
+
}>, "many">;
|
1960
|
+
}, "strip", z.ZodTypeAny, {
|
1961
|
+
id: string;
|
1962
|
+
value: string;
|
1963
|
+
createdAt: Date;
|
1964
|
+
updatedAt: Date;
|
1965
|
+
deletedAt: Date | null;
|
1966
|
+
level: 2 | 1 | 3;
|
1967
|
+
parentId: string | null;
|
1968
|
+
childCategoryList: {
|
1969
|
+
id: string;
|
1970
|
+
value: string;
|
1971
|
+
level: 2 | 1 | 3;
|
1972
|
+
parentId: string | null;
|
1973
|
+
childCategoryList: {
|
1974
|
+
id: string;
|
1975
|
+
value: string;
|
1976
|
+
level: 2 | 1 | 3;
|
1977
|
+
parentId: string | null;
|
1978
|
+
childCategoryList: any[];
|
1979
|
+
}[];
|
1980
|
+
}[];
|
1981
|
+
}, {
|
1982
|
+
id: string;
|
1983
|
+
value: string;
|
1984
|
+
createdAt: Date;
|
1985
|
+
updatedAt: Date;
|
1986
|
+
deletedAt: Date | null;
|
1987
|
+
level: 2 | 1 | 3;
|
1988
|
+
parentId: string | null;
|
1989
|
+
childCategoryList: {
|
1990
|
+
id: string;
|
1991
|
+
value: string;
|
1992
|
+
level: 2 | 1 | 3;
|
1993
|
+
parentId: string | null;
|
1994
|
+
childCategoryList: {
|
1995
|
+
id: string;
|
1996
|
+
value: string;
|
1997
|
+
level: 2 | 1 | 3;
|
1998
|
+
parentId: string | null;
|
1999
|
+
childCategoryList: any[];
|
2000
|
+
}[];
|
2001
|
+
}[];
|
2002
|
+
}>, "many">;
|
2003
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
2004
|
+
callTo: z.ZodNullable<z.ZodString>;
|
2005
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2006
|
+
id: z.ZodString;
|
2007
|
+
createdAt: z.ZodDate;
|
2008
|
+
updatedAt: z.ZodDate;
|
2009
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2010
|
+
textValue: z.ZodNullable<z.ZodString>;
|
2011
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2012
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
2013
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
2014
|
+
entityId: z.ZodString;
|
2015
|
+
attributeId: z.ZodString;
|
2016
|
+
}, "strip", z.ZodTypeAny, {
|
2017
|
+
id: string;
|
2018
|
+
createdAt: Date;
|
2019
|
+
updatedAt: Date;
|
2020
|
+
deletedAt: Date | null;
|
2021
|
+
entityId: string;
|
2022
|
+
attributeId: string;
|
2023
|
+
textValue: string | null;
|
2024
|
+
booleanValue: boolean | null;
|
2025
|
+
numberValue: number | null;
|
2026
|
+
dateValue: Date | null;
|
2027
|
+
}, {
|
2028
|
+
id: string;
|
2029
|
+
createdAt: Date;
|
2030
|
+
updatedAt: Date;
|
2031
|
+
deletedAt: Date | null;
|
2032
|
+
entityId: string;
|
2033
|
+
attributeId: string;
|
2034
|
+
textValue: string | null;
|
2035
|
+
booleanValue: boolean | null;
|
2036
|
+
numberValue: number | null;
|
2037
|
+
dateValue: Date | null;
|
2038
|
+
}>, "many">>>;
|
1904
2039
|
}, "strip", z.ZodTypeAny, {
|
2040
|
+
type: string;
|
1905
2041
|
id: string;
|
1906
2042
|
disposition: string | null;
|
1907
2043
|
createdAt: Date;
|
1908
2044
|
updatedAt: Date;
|
1909
2045
|
deletedAt: Date | null;
|
2046
|
+
categories: {
|
2047
|
+
id: string;
|
2048
|
+
value: string;
|
2049
|
+
createdAt: Date;
|
2050
|
+
updatedAt: Date;
|
2051
|
+
deletedAt: Date | null;
|
2052
|
+
level: 2 | 1 | 3;
|
2053
|
+
parentId: string | null;
|
2054
|
+
childCategoryList: {
|
2055
|
+
id: string;
|
2056
|
+
value: string;
|
2057
|
+
level: 2 | 1 | 3;
|
2058
|
+
parentId: string | null;
|
2059
|
+
childCategoryList: {
|
2060
|
+
id: string;
|
2061
|
+
value: string;
|
2062
|
+
level: 2 | 1 | 3;
|
2063
|
+
parentId: string | null;
|
2064
|
+
childCategoryList: any[];
|
2065
|
+
}[];
|
2066
|
+
}[];
|
2067
|
+
}[];
|
1910
2068
|
tags: {
|
1911
2069
|
id: string;
|
1912
2070
|
name: string;
|
@@ -1917,12 +2075,47 @@ export declare const roomContract: {
|
|
1917
2075
|
callFrom: string | null;
|
1918
2076
|
callTo: string | null;
|
1919
2077
|
note: string | null;
|
2078
|
+
customFields?: {
|
2079
|
+
id: string;
|
2080
|
+
createdAt: Date;
|
2081
|
+
updatedAt: Date;
|
2082
|
+
deletedAt: Date | null;
|
2083
|
+
entityId: string;
|
2084
|
+
attributeId: string;
|
2085
|
+
textValue: string | null;
|
2086
|
+
booleanValue: boolean | null;
|
2087
|
+
numberValue: number | null;
|
2088
|
+
dateValue: Date | null;
|
2089
|
+
}[] | null | undefined;
|
1920
2090
|
}, {
|
2091
|
+
type: string;
|
1921
2092
|
id: string;
|
1922
2093
|
disposition: string | null;
|
1923
2094
|
createdAt: Date;
|
1924
2095
|
updatedAt: Date;
|
1925
2096
|
deletedAt: Date | null;
|
2097
|
+
categories: {
|
2098
|
+
id: string;
|
2099
|
+
value: string;
|
2100
|
+
createdAt: Date;
|
2101
|
+
updatedAt: Date;
|
2102
|
+
deletedAt: Date | null;
|
2103
|
+
level: 2 | 1 | 3;
|
2104
|
+
parentId: string | null;
|
2105
|
+
childCategoryList: {
|
2106
|
+
id: string;
|
2107
|
+
value: string;
|
2108
|
+
level: 2 | 1 | 3;
|
2109
|
+
parentId: string | null;
|
2110
|
+
childCategoryList: {
|
2111
|
+
id: string;
|
2112
|
+
value: string;
|
2113
|
+
level: 2 | 1 | 3;
|
2114
|
+
parentId: string | null;
|
2115
|
+
childCategoryList: any[];
|
2116
|
+
}[];
|
2117
|
+
}[];
|
2118
|
+
}[];
|
1926
2119
|
tags: {
|
1927
2120
|
id: string;
|
1928
2121
|
name: string;
|
@@ -1933,6 +2126,18 @@ export declare const roomContract: {
|
|
1933
2126
|
callFrom: string | null;
|
1934
2127
|
callTo: string | null;
|
1935
2128
|
note: string | null;
|
2129
|
+
customFields?: {
|
2130
|
+
id: string;
|
2131
|
+
createdAt: Date;
|
2132
|
+
updatedAt: Date;
|
2133
|
+
deletedAt: Date | null;
|
2134
|
+
entityId: string;
|
2135
|
+
attributeId: string;
|
2136
|
+
textValue: string | null;
|
2137
|
+
booleanValue: boolean | null;
|
2138
|
+
numberValue: number | null;
|
2139
|
+
dateValue: Date | null;
|
2140
|
+
}[] | null | undefined;
|
1936
2141
|
}>>;
|
1937
2142
|
}, "strip", z.ZodTypeAny, {
|
1938
2143
|
id: string;
|
@@ -1951,11 +2156,34 @@ export declare const roomContract: {
|
|
1951
2156
|
handledTime: number | null;
|
1952
2157
|
firstResponseTime: number | null;
|
1953
2158
|
wrapUpForm: {
|
2159
|
+
type: string;
|
1954
2160
|
id: string;
|
1955
2161
|
disposition: string | null;
|
1956
2162
|
createdAt: Date;
|
1957
2163
|
updatedAt: Date;
|
1958
2164
|
deletedAt: Date | null;
|
2165
|
+
categories: {
|
2166
|
+
id: string;
|
2167
|
+
value: string;
|
2168
|
+
createdAt: Date;
|
2169
|
+
updatedAt: Date;
|
2170
|
+
deletedAt: Date | null;
|
2171
|
+
level: 2 | 1 | 3;
|
2172
|
+
parentId: string | null;
|
2173
|
+
childCategoryList: {
|
2174
|
+
id: string;
|
2175
|
+
value: string;
|
2176
|
+
level: 2 | 1 | 3;
|
2177
|
+
parentId: string | null;
|
2178
|
+
childCategoryList: {
|
2179
|
+
id: string;
|
2180
|
+
value: string;
|
2181
|
+
level: 2 | 1 | 3;
|
2182
|
+
parentId: string | null;
|
2183
|
+
childCategoryList: any[];
|
2184
|
+
}[];
|
2185
|
+
}[];
|
2186
|
+
}[];
|
1959
2187
|
tags: {
|
1960
2188
|
id: string;
|
1961
2189
|
name: string;
|
@@ -1966,6 +2194,18 @@ export declare const roomContract: {
|
|
1966
2194
|
callFrom: string | null;
|
1967
2195
|
callTo: string | null;
|
1968
2196
|
note: string | null;
|
2197
|
+
customFields?: {
|
2198
|
+
id: string;
|
2199
|
+
createdAt: Date;
|
2200
|
+
updatedAt: Date;
|
2201
|
+
deletedAt: Date | null;
|
2202
|
+
entityId: string;
|
2203
|
+
attributeId: string;
|
2204
|
+
textValue: string | null;
|
2205
|
+
booleanValue: boolean | null;
|
2206
|
+
numberValue: number | null;
|
2207
|
+
dateValue: Date | null;
|
2208
|
+
}[] | null | undefined;
|
1969
2209
|
} | null;
|
1970
2210
|
}, {
|
1971
2211
|
id: string;
|
@@ -1984,11 +2224,34 @@ export declare const roomContract: {
|
|
1984
2224
|
handledTime: number | null;
|
1985
2225
|
firstResponseTime: number | null;
|
1986
2226
|
wrapUpForm: {
|
2227
|
+
type: string;
|
1987
2228
|
id: string;
|
1988
2229
|
disposition: string | null;
|
1989
2230
|
createdAt: Date;
|
1990
2231
|
updatedAt: Date;
|
1991
2232
|
deletedAt: Date | null;
|
2233
|
+
categories: {
|
2234
|
+
id: string;
|
2235
|
+
value: string;
|
2236
|
+
createdAt: Date;
|
2237
|
+
updatedAt: Date;
|
2238
|
+
deletedAt: Date | null;
|
2239
|
+
level: 2 | 1 | 3;
|
2240
|
+
parentId: string | null;
|
2241
|
+
childCategoryList: {
|
2242
|
+
id: string;
|
2243
|
+
value: string;
|
2244
|
+
level: 2 | 1 | 3;
|
2245
|
+
parentId: string | null;
|
2246
|
+
childCategoryList: {
|
2247
|
+
id: string;
|
2248
|
+
value: string;
|
2249
|
+
level: 2 | 1 | 3;
|
2250
|
+
parentId: string | null;
|
2251
|
+
childCategoryList: any[];
|
2252
|
+
}[];
|
2253
|
+
}[];
|
2254
|
+
}[];
|
1992
2255
|
tags: {
|
1993
2256
|
id: string;
|
1994
2257
|
name: string;
|
@@ -1999,6 +2262,18 @@ export declare const roomContract: {
|
|
1999
2262
|
callFrom: string | null;
|
2000
2263
|
callTo: string | null;
|
2001
2264
|
note: string | null;
|
2265
|
+
customFields?: {
|
2266
|
+
id: string;
|
2267
|
+
createdAt: Date;
|
2268
|
+
updatedAt: Date;
|
2269
|
+
deletedAt: Date | null;
|
2270
|
+
entityId: string;
|
2271
|
+
attributeId: string;
|
2272
|
+
textValue: string | null;
|
2273
|
+
booleanValue: boolean | null;
|
2274
|
+
numberValue: number | null;
|
2275
|
+
dateValue: Date | null;
|
2276
|
+
}[] | null | undefined;
|
2002
2277
|
} | null;
|
2003
2278
|
}>;
|
2004
2279
|
}, "strip", z.ZodTypeAny, {
|
@@ -2120,11 +2395,34 @@ export declare const roomContract: {
|
|
2120
2395
|
handledTime: number | null;
|
2121
2396
|
firstResponseTime: number | null;
|
2122
2397
|
wrapUpForm: {
|
2398
|
+
type: string;
|
2123
2399
|
id: string;
|
2124
2400
|
disposition: string | null;
|
2125
2401
|
createdAt: Date;
|
2126
2402
|
updatedAt: Date;
|
2127
2403
|
deletedAt: Date | null;
|
2404
|
+
categories: {
|
2405
|
+
id: string;
|
2406
|
+
value: string;
|
2407
|
+
createdAt: Date;
|
2408
|
+
updatedAt: Date;
|
2409
|
+
deletedAt: Date | null;
|
2410
|
+
level: 2 | 1 | 3;
|
2411
|
+
parentId: string | null;
|
2412
|
+
childCategoryList: {
|
2413
|
+
id: string;
|
2414
|
+
value: string;
|
2415
|
+
level: 2 | 1 | 3;
|
2416
|
+
parentId: string | null;
|
2417
|
+
childCategoryList: {
|
2418
|
+
id: string;
|
2419
|
+
value: string;
|
2420
|
+
level: 2 | 1 | 3;
|
2421
|
+
parentId: string | null;
|
2422
|
+
childCategoryList: any[];
|
2423
|
+
}[];
|
2424
|
+
}[];
|
2425
|
+
}[];
|
2128
2426
|
tags: {
|
2129
2427
|
id: string;
|
2130
2428
|
name: string;
|
@@ -2135,6 +2433,18 @@ export declare const roomContract: {
|
|
2135
2433
|
callFrom: string | null;
|
2136
2434
|
callTo: string | null;
|
2137
2435
|
note: string | null;
|
2436
|
+
customFields?: {
|
2437
|
+
id: string;
|
2438
|
+
createdAt: Date;
|
2439
|
+
updatedAt: Date;
|
2440
|
+
deletedAt: Date | null;
|
2441
|
+
entityId: string;
|
2442
|
+
attributeId: string;
|
2443
|
+
textValue: string | null;
|
2444
|
+
booleanValue: boolean | null;
|
2445
|
+
numberValue: number | null;
|
2446
|
+
dateValue: Date | null;
|
2447
|
+
}[] | null | undefined;
|
2138
2448
|
} | null;
|
2139
2449
|
};
|
2140
2450
|
assigneeId: string | null;
|
@@ -2564,11 +2874,34 @@ export declare const roomContract: {
|
|
2564
2874
|
handledTime: number | null;
|
2565
2875
|
firstResponseTime: number | null;
|
2566
2876
|
wrapUpForm: {
|
2877
|
+
type: string;
|
2567
2878
|
id: string;
|
2568
2879
|
disposition: string | null;
|
2569
2880
|
createdAt: Date;
|
2570
2881
|
updatedAt: Date;
|
2571
2882
|
deletedAt: Date | null;
|
2883
|
+
categories: {
|
2884
|
+
id: string;
|
2885
|
+
value: string;
|
2886
|
+
createdAt: Date;
|
2887
|
+
updatedAt: Date;
|
2888
|
+
deletedAt: Date | null;
|
2889
|
+
level: 2 | 1 | 3;
|
2890
|
+
parentId: string | null;
|
2891
|
+
childCategoryList: {
|
2892
|
+
id: string;
|
2893
|
+
value: string;
|
2894
|
+
level: 2 | 1 | 3;
|
2895
|
+
parentId: string | null;
|
2896
|
+
childCategoryList: {
|
2897
|
+
id: string;
|
2898
|
+
value: string;
|
2899
|
+
level: 2 | 1 | 3;
|
2900
|
+
parentId: string | null;
|
2901
|
+
childCategoryList: any[];
|
2902
|
+
}[];
|
2903
|
+
}[];
|
2904
|
+
}[];
|
2572
2905
|
tags: {
|
2573
2906
|
id: string;
|
2574
2907
|
name: string;
|
@@ -2579,6 +2912,18 @@ export declare const roomContract: {
|
|
2579
2912
|
callFrom: string | null;
|
2580
2913
|
callTo: string | null;
|
2581
2914
|
note: string | null;
|
2915
|
+
customFields?: {
|
2916
|
+
id: string;
|
2917
|
+
createdAt: Date;
|
2918
|
+
updatedAt: Date;
|
2919
|
+
deletedAt: Date | null;
|
2920
|
+
entityId: string;
|
2921
|
+
attributeId: string;
|
2922
|
+
textValue: string | null;
|
2923
|
+
booleanValue: boolean | null;
|
2924
|
+
numberValue: number | null;
|
2925
|
+
dateValue: Date | null;
|
2926
|
+
}[] | null | undefined;
|
2582
2927
|
} | null;
|
2583
2928
|
};
|
2584
2929
|
assigneeId: string | null;
|
@@ -3013,11 +3358,34 @@ export declare const roomContract: {
|
|
3013
3358
|
handledTime: number | null;
|
3014
3359
|
firstResponseTime: number | null;
|
3015
3360
|
wrapUpForm: {
|
3361
|
+
type: string;
|
3016
3362
|
id: string;
|
3017
3363
|
disposition: string | null;
|
3018
3364
|
createdAt: Date;
|
3019
3365
|
updatedAt: Date;
|
3020
3366
|
deletedAt: Date | null;
|
3367
|
+
categories: {
|
3368
|
+
id: string;
|
3369
|
+
value: string;
|
3370
|
+
createdAt: Date;
|
3371
|
+
updatedAt: Date;
|
3372
|
+
deletedAt: Date | null;
|
3373
|
+
level: 2 | 1 | 3;
|
3374
|
+
parentId: string | null;
|
3375
|
+
childCategoryList: {
|
3376
|
+
id: string;
|
3377
|
+
value: string;
|
3378
|
+
level: 2 | 1 | 3;
|
3379
|
+
parentId: string | null;
|
3380
|
+
childCategoryList: {
|
3381
|
+
id: string;
|
3382
|
+
value: string;
|
3383
|
+
level: 2 | 1 | 3;
|
3384
|
+
parentId: string | null;
|
3385
|
+
childCategoryList: any[];
|
3386
|
+
}[];
|
3387
|
+
}[];
|
3388
|
+
}[];
|
3021
3389
|
tags: {
|
3022
3390
|
id: string;
|
3023
3391
|
name: string;
|
@@ -3028,6 +3396,18 @@ export declare const roomContract: {
|
|
3028
3396
|
callFrom: string | null;
|
3029
3397
|
callTo: string | null;
|
3030
3398
|
note: string | null;
|
3399
|
+
customFields?: {
|
3400
|
+
id: string;
|
3401
|
+
createdAt: Date;
|
3402
|
+
updatedAt: Date;
|
3403
|
+
deletedAt: Date | null;
|
3404
|
+
entityId: string;
|
3405
|
+
attributeId: string;
|
3406
|
+
textValue: string | null;
|
3407
|
+
booleanValue: boolean | null;
|
3408
|
+
numberValue: number | null;
|
3409
|
+
dateValue: Date | null;
|
3410
|
+
}[] | null | undefined;
|
3031
3411
|
} | null;
|
3032
3412
|
};
|
3033
3413
|
assigneeId: string | null;
|
@@ -3463,11 +3843,34 @@ export declare const roomContract: {
|
|
3463
3843
|
handledTime: number | null;
|
3464
3844
|
firstResponseTime: number | null;
|
3465
3845
|
wrapUpForm: {
|
3846
|
+
type: string;
|
3466
3847
|
id: string;
|
3467
3848
|
disposition: string | null;
|
3468
3849
|
createdAt: Date;
|
3469
3850
|
updatedAt: Date;
|
3470
3851
|
deletedAt: Date | null;
|
3852
|
+
categories: {
|
3853
|
+
id: string;
|
3854
|
+
value: string;
|
3855
|
+
createdAt: Date;
|
3856
|
+
updatedAt: Date;
|
3857
|
+
deletedAt: Date | null;
|
3858
|
+
level: 2 | 1 | 3;
|
3859
|
+
parentId: string | null;
|
3860
|
+
childCategoryList: {
|
3861
|
+
id: string;
|
3862
|
+
value: string;
|
3863
|
+
level: 2 | 1 | 3;
|
3864
|
+
parentId: string | null;
|
3865
|
+
childCategoryList: {
|
3866
|
+
id: string;
|
3867
|
+
value: string;
|
3868
|
+
level: 2 | 1 | 3;
|
3869
|
+
parentId: string | null;
|
3870
|
+
childCategoryList: any[];
|
3871
|
+
}[];
|
3872
|
+
}[];
|
3873
|
+
}[];
|
3471
3874
|
tags: {
|
3472
3875
|
id: string;
|
3473
3876
|
name: string;
|
@@ -3478,6 +3881,18 @@ export declare const roomContract: {
|
|
3478
3881
|
callFrom: string | null;
|
3479
3882
|
callTo: string | null;
|
3480
3883
|
note: string | null;
|
3884
|
+
customFields?: {
|
3885
|
+
id: string;
|
3886
|
+
createdAt: Date;
|
3887
|
+
updatedAt: Date;
|
3888
|
+
deletedAt: Date | null;
|
3889
|
+
entityId: string;
|
3890
|
+
attributeId: string;
|
3891
|
+
textValue: string | null;
|
3892
|
+
booleanValue: boolean | null;
|
3893
|
+
numberValue: number | null;
|
3894
|
+
dateValue: Date | null;
|
3895
|
+
}[] | null | undefined;
|
3481
3896
|
} | null;
|
3482
3897
|
};
|
3483
3898
|
assigneeId: string | null;
|
@@ -6313,8 +6728,7 @@ export declare const roomContract: {
|
|
6313
6728
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
6314
6729
|
note: z.ZodNullable<z.ZodString>;
|
6315
6730
|
disposition: z.ZodNullable<z.ZodString>;
|
6316
|
-
|
6317
|
-
callTo: z.ZodNullable<z.ZodString>;
|
6731
|
+
type: z.ZodString;
|
6318
6732
|
tags: z.ZodArray<z.ZodObject<{
|
6319
6733
|
id: z.ZodString;
|
6320
6734
|
createdAt: z.ZodDate;
|
@@ -6334,12 +6748,171 @@ export declare const roomContract: {
|
|
6334
6748
|
updatedAt: Date;
|
6335
6749
|
deletedAt: Date | null;
|
6336
6750
|
}>, "many">;
|
6751
|
+
categories: z.ZodArray<z.ZodObject<{
|
6752
|
+
id: z.ZodString;
|
6753
|
+
createdAt: z.ZodDate;
|
6754
|
+
updatedAt: z.ZodDate;
|
6755
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
6756
|
+
value: z.ZodString;
|
6757
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
6758
|
+
parentId: z.ZodNullable<z.ZodString>;
|
6759
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
6760
|
+
id: z.ZodString;
|
6761
|
+
value: z.ZodString;
|
6762
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
6763
|
+
parentId: z.ZodNullable<z.ZodString>;
|
6764
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
6765
|
+
id: z.ZodString;
|
6766
|
+
value: z.ZodString;
|
6767
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
6768
|
+
parentId: z.ZodNullable<z.ZodString>;
|
6769
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
6770
|
+
}, "strip", z.ZodTypeAny, {
|
6771
|
+
id: string;
|
6772
|
+
value: string;
|
6773
|
+
level: 2 | 1 | 3;
|
6774
|
+
parentId: string | null;
|
6775
|
+
childCategoryList: any[];
|
6776
|
+
}, {
|
6777
|
+
id: string;
|
6778
|
+
value: string;
|
6779
|
+
level: 2 | 1 | 3;
|
6780
|
+
parentId: string | null;
|
6781
|
+
childCategoryList: any[];
|
6782
|
+
}>, "many">;
|
6783
|
+
}, "strip", z.ZodTypeAny, {
|
6784
|
+
id: string;
|
6785
|
+
value: string;
|
6786
|
+
level: 2 | 1 | 3;
|
6787
|
+
parentId: string | null;
|
6788
|
+
childCategoryList: {
|
6789
|
+
id: string;
|
6790
|
+
value: string;
|
6791
|
+
level: 2 | 1 | 3;
|
6792
|
+
parentId: string | null;
|
6793
|
+
childCategoryList: any[];
|
6794
|
+
}[];
|
6795
|
+
}, {
|
6796
|
+
id: string;
|
6797
|
+
value: string;
|
6798
|
+
level: 2 | 1 | 3;
|
6799
|
+
parentId: string | null;
|
6800
|
+
childCategoryList: {
|
6801
|
+
id: string;
|
6802
|
+
value: string;
|
6803
|
+
level: 2 | 1 | 3;
|
6804
|
+
parentId: string | null;
|
6805
|
+
childCategoryList: any[];
|
6806
|
+
}[];
|
6807
|
+
}>, "many">;
|
6808
|
+
}, "strip", z.ZodTypeAny, {
|
6809
|
+
id: string;
|
6810
|
+
value: string;
|
6811
|
+
createdAt: Date;
|
6812
|
+
updatedAt: Date;
|
6813
|
+
deletedAt: Date | null;
|
6814
|
+
level: 2 | 1 | 3;
|
6815
|
+
parentId: string | null;
|
6816
|
+
childCategoryList: {
|
6817
|
+
id: string;
|
6818
|
+
value: string;
|
6819
|
+
level: 2 | 1 | 3;
|
6820
|
+
parentId: string | null;
|
6821
|
+
childCategoryList: {
|
6822
|
+
id: string;
|
6823
|
+
value: string;
|
6824
|
+
level: 2 | 1 | 3;
|
6825
|
+
parentId: string | null;
|
6826
|
+
childCategoryList: any[];
|
6827
|
+
}[];
|
6828
|
+
}[];
|
6829
|
+
}, {
|
6830
|
+
id: string;
|
6831
|
+
value: string;
|
6832
|
+
createdAt: Date;
|
6833
|
+
updatedAt: Date;
|
6834
|
+
deletedAt: Date | null;
|
6835
|
+
level: 2 | 1 | 3;
|
6836
|
+
parentId: string | null;
|
6837
|
+
childCategoryList: {
|
6838
|
+
id: string;
|
6839
|
+
value: string;
|
6840
|
+
level: 2 | 1 | 3;
|
6841
|
+
parentId: string | null;
|
6842
|
+
childCategoryList: {
|
6843
|
+
id: string;
|
6844
|
+
value: string;
|
6845
|
+
level: 2 | 1 | 3;
|
6846
|
+
parentId: string | null;
|
6847
|
+
childCategoryList: any[];
|
6848
|
+
}[];
|
6849
|
+
}[];
|
6850
|
+
}>, "many">;
|
6851
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
6852
|
+
callTo: z.ZodNullable<z.ZodString>;
|
6853
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
6854
|
+
id: z.ZodString;
|
6855
|
+
createdAt: z.ZodDate;
|
6856
|
+
updatedAt: z.ZodDate;
|
6857
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
6858
|
+
textValue: z.ZodNullable<z.ZodString>;
|
6859
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
6860
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
6861
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
6862
|
+
entityId: z.ZodString;
|
6863
|
+
attributeId: z.ZodString;
|
6864
|
+
}, "strip", z.ZodTypeAny, {
|
6865
|
+
id: string;
|
6866
|
+
createdAt: Date;
|
6867
|
+
updatedAt: Date;
|
6868
|
+
deletedAt: Date | null;
|
6869
|
+
entityId: string;
|
6870
|
+
attributeId: string;
|
6871
|
+
textValue: string | null;
|
6872
|
+
booleanValue: boolean | null;
|
6873
|
+
numberValue: number | null;
|
6874
|
+
dateValue: Date | null;
|
6875
|
+
}, {
|
6876
|
+
id: string;
|
6877
|
+
createdAt: Date;
|
6878
|
+
updatedAt: Date;
|
6879
|
+
deletedAt: Date | null;
|
6880
|
+
entityId: string;
|
6881
|
+
attributeId: string;
|
6882
|
+
textValue: string | null;
|
6883
|
+
booleanValue: boolean | null;
|
6884
|
+
numberValue: number | null;
|
6885
|
+
dateValue: Date | null;
|
6886
|
+
}>, "many">>>;
|
6337
6887
|
}, "strip", z.ZodTypeAny, {
|
6888
|
+
type: string;
|
6338
6889
|
id: string;
|
6339
6890
|
disposition: string | null;
|
6340
6891
|
createdAt: Date;
|
6341
6892
|
updatedAt: Date;
|
6342
6893
|
deletedAt: Date | null;
|
6894
|
+
categories: {
|
6895
|
+
id: string;
|
6896
|
+
value: string;
|
6897
|
+
createdAt: Date;
|
6898
|
+
updatedAt: Date;
|
6899
|
+
deletedAt: Date | null;
|
6900
|
+
level: 2 | 1 | 3;
|
6901
|
+
parentId: string | null;
|
6902
|
+
childCategoryList: {
|
6903
|
+
id: string;
|
6904
|
+
value: string;
|
6905
|
+
level: 2 | 1 | 3;
|
6906
|
+
parentId: string | null;
|
6907
|
+
childCategoryList: {
|
6908
|
+
id: string;
|
6909
|
+
value: string;
|
6910
|
+
level: 2 | 1 | 3;
|
6911
|
+
parentId: string | null;
|
6912
|
+
childCategoryList: any[];
|
6913
|
+
}[];
|
6914
|
+
}[];
|
6915
|
+
}[];
|
6343
6916
|
tags: {
|
6344
6917
|
id: string;
|
6345
6918
|
name: string;
|
@@ -6350,12 +6923,47 @@ export declare const roomContract: {
|
|
6350
6923
|
callFrom: string | null;
|
6351
6924
|
callTo: string | null;
|
6352
6925
|
note: string | null;
|
6926
|
+
customFields?: {
|
6927
|
+
id: string;
|
6928
|
+
createdAt: Date;
|
6929
|
+
updatedAt: Date;
|
6930
|
+
deletedAt: Date | null;
|
6931
|
+
entityId: string;
|
6932
|
+
attributeId: string;
|
6933
|
+
textValue: string | null;
|
6934
|
+
booleanValue: boolean | null;
|
6935
|
+
numberValue: number | null;
|
6936
|
+
dateValue: Date | null;
|
6937
|
+
}[] | null | undefined;
|
6353
6938
|
}, {
|
6939
|
+
type: string;
|
6354
6940
|
id: string;
|
6355
6941
|
disposition: string | null;
|
6356
6942
|
createdAt: Date;
|
6357
6943
|
updatedAt: Date;
|
6358
6944
|
deletedAt: Date | null;
|
6945
|
+
categories: {
|
6946
|
+
id: string;
|
6947
|
+
value: string;
|
6948
|
+
createdAt: Date;
|
6949
|
+
updatedAt: Date;
|
6950
|
+
deletedAt: Date | null;
|
6951
|
+
level: 2 | 1 | 3;
|
6952
|
+
parentId: string | null;
|
6953
|
+
childCategoryList: {
|
6954
|
+
id: string;
|
6955
|
+
value: string;
|
6956
|
+
level: 2 | 1 | 3;
|
6957
|
+
parentId: string | null;
|
6958
|
+
childCategoryList: {
|
6959
|
+
id: string;
|
6960
|
+
value: string;
|
6961
|
+
level: 2 | 1 | 3;
|
6962
|
+
parentId: string | null;
|
6963
|
+
childCategoryList: any[];
|
6964
|
+
}[];
|
6965
|
+
}[];
|
6966
|
+
}[];
|
6359
6967
|
tags: {
|
6360
6968
|
id: string;
|
6361
6969
|
name: string;
|
@@ -6366,6 +6974,18 @@ export declare const roomContract: {
|
|
6366
6974
|
callFrom: string | null;
|
6367
6975
|
callTo: string | null;
|
6368
6976
|
note: string | null;
|
6977
|
+
customFields?: {
|
6978
|
+
id: string;
|
6979
|
+
createdAt: Date;
|
6980
|
+
updatedAt: Date;
|
6981
|
+
deletedAt: Date | null;
|
6982
|
+
entityId: string;
|
6983
|
+
attributeId: string;
|
6984
|
+
textValue: string | null;
|
6985
|
+
booleanValue: boolean | null;
|
6986
|
+
numberValue: number | null;
|
6987
|
+
dateValue: Date | null;
|
6988
|
+
}[] | null | undefined;
|
6369
6989
|
}>>;
|
6370
6990
|
}, "strip", z.ZodTypeAny, {
|
6371
6991
|
id: string;
|
@@ -6384,11 +7004,34 @@ export declare const roomContract: {
|
|
6384
7004
|
handledTime: number | null;
|
6385
7005
|
firstResponseTime: number | null;
|
6386
7006
|
wrapUpForm: {
|
7007
|
+
type: string;
|
6387
7008
|
id: string;
|
6388
7009
|
disposition: string | null;
|
6389
7010
|
createdAt: Date;
|
6390
7011
|
updatedAt: Date;
|
6391
7012
|
deletedAt: Date | null;
|
7013
|
+
categories: {
|
7014
|
+
id: string;
|
7015
|
+
value: string;
|
7016
|
+
createdAt: Date;
|
7017
|
+
updatedAt: Date;
|
7018
|
+
deletedAt: Date | null;
|
7019
|
+
level: 2 | 1 | 3;
|
7020
|
+
parentId: string | null;
|
7021
|
+
childCategoryList: {
|
7022
|
+
id: string;
|
7023
|
+
value: string;
|
7024
|
+
level: 2 | 1 | 3;
|
7025
|
+
parentId: string | null;
|
7026
|
+
childCategoryList: {
|
7027
|
+
id: string;
|
7028
|
+
value: string;
|
7029
|
+
level: 2 | 1 | 3;
|
7030
|
+
parentId: string | null;
|
7031
|
+
childCategoryList: any[];
|
7032
|
+
}[];
|
7033
|
+
}[];
|
7034
|
+
}[];
|
6392
7035
|
tags: {
|
6393
7036
|
id: string;
|
6394
7037
|
name: string;
|
@@ -6399,6 +7042,18 @@ export declare const roomContract: {
|
|
6399
7042
|
callFrom: string | null;
|
6400
7043
|
callTo: string | null;
|
6401
7044
|
note: string | null;
|
7045
|
+
customFields?: {
|
7046
|
+
id: string;
|
7047
|
+
createdAt: Date;
|
7048
|
+
updatedAt: Date;
|
7049
|
+
deletedAt: Date | null;
|
7050
|
+
entityId: string;
|
7051
|
+
attributeId: string;
|
7052
|
+
textValue: string | null;
|
7053
|
+
booleanValue: boolean | null;
|
7054
|
+
numberValue: number | null;
|
7055
|
+
dateValue: Date | null;
|
7056
|
+
}[] | null | undefined;
|
6402
7057
|
} | null;
|
6403
7058
|
}, {
|
6404
7059
|
id: string;
|
@@ -6417,11 +7072,34 @@ export declare const roomContract: {
|
|
6417
7072
|
handledTime: number | null;
|
6418
7073
|
firstResponseTime: number | null;
|
6419
7074
|
wrapUpForm: {
|
7075
|
+
type: string;
|
6420
7076
|
id: string;
|
6421
7077
|
disposition: string | null;
|
6422
7078
|
createdAt: Date;
|
6423
7079
|
updatedAt: Date;
|
6424
7080
|
deletedAt: Date | null;
|
7081
|
+
categories: {
|
7082
|
+
id: string;
|
7083
|
+
value: string;
|
7084
|
+
createdAt: Date;
|
7085
|
+
updatedAt: Date;
|
7086
|
+
deletedAt: Date | null;
|
7087
|
+
level: 2 | 1 | 3;
|
7088
|
+
parentId: string | null;
|
7089
|
+
childCategoryList: {
|
7090
|
+
id: string;
|
7091
|
+
value: string;
|
7092
|
+
level: 2 | 1 | 3;
|
7093
|
+
parentId: string | null;
|
7094
|
+
childCategoryList: {
|
7095
|
+
id: string;
|
7096
|
+
value: string;
|
7097
|
+
level: 2 | 1 | 3;
|
7098
|
+
parentId: string | null;
|
7099
|
+
childCategoryList: any[];
|
7100
|
+
}[];
|
7101
|
+
}[];
|
7102
|
+
}[];
|
6425
7103
|
tags: {
|
6426
7104
|
id: string;
|
6427
7105
|
name: string;
|
@@ -6432,6 +7110,18 @@ export declare const roomContract: {
|
|
6432
7110
|
callFrom: string | null;
|
6433
7111
|
callTo: string | null;
|
6434
7112
|
note: string | null;
|
7113
|
+
customFields?: {
|
7114
|
+
id: string;
|
7115
|
+
createdAt: Date;
|
7116
|
+
updatedAt: Date;
|
7117
|
+
deletedAt: Date | null;
|
7118
|
+
entityId: string;
|
7119
|
+
attributeId: string;
|
7120
|
+
textValue: string | null;
|
7121
|
+
booleanValue: boolean | null;
|
7122
|
+
numberValue: number | null;
|
7123
|
+
dateValue: Date | null;
|
7124
|
+
}[] | null | undefined;
|
6435
7125
|
} | null;
|
6436
7126
|
}>;
|
6437
7127
|
}, "strip", z.ZodTypeAny, {
|
@@ -6553,11 +7243,34 @@ export declare const roomContract: {
|
|
6553
7243
|
handledTime: number | null;
|
6554
7244
|
firstResponseTime: number | null;
|
6555
7245
|
wrapUpForm: {
|
7246
|
+
type: string;
|
6556
7247
|
id: string;
|
6557
7248
|
disposition: string | null;
|
6558
7249
|
createdAt: Date;
|
6559
7250
|
updatedAt: Date;
|
6560
7251
|
deletedAt: Date | null;
|
7252
|
+
categories: {
|
7253
|
+
id: string;
|
7254
|
+
value: string;
|
7255
|
+
createdAt: Date;
|
7256
|
+
updatedAt: Date;
|
7257
|
+
deletedAt: Date | null;
|
7258
|
+
level: 2 | 1 | 3;
|
7259
|
+
parentId: string | null;
|
7260
|
+
childCategoryList: {
|
7261
|
+
id: string;
|
7262
|
+
value: string;
|
7263
|
+
level: 2 | 1 | 3;
|
7264
|
+
parentId: string | null;
|
7265
|
+
childCategoryList: {
|
7266
|
+
id: string;
|
7267
|
+
value: string;
|
7268
|
+
level: 2 | 1 | 3;
|
7269
|
+
parentId: string | null;
|
7270
|
+
childCategoryList: any[];
|
7271
|
+
}[];
|
7272
|
+
}[];
|
7273
|
+
}[];
|
6561
7274
|
tags: {
|
6562
7275
|
id: string;
|
6563
7276
|
name: string;
|
@@ -6568,6 +7281,18 @@ export declare const roomContract: {
|
|
6568
7281
|
callFrom: string | null;
|
6569
7282
|
callTo: string | null;
|
6570
7283
|
note: string | null;
|
7284
|
+
customFields?: {
|
7285
|
+
id: string;
|
7286
|
+
createdAt: Date;
|
7287
|
+
updatedAt: Date;
|
7288
|
+
deletedAt: Date | null;
|
7289
|
+
entityId: string;
|
7290
|
+
attributeId: string;
|
7291
|
+
textValue: string | null;
|
7292
|
+
booleanValue: boolean | null;
|
7293
|
+
numberValue: number | null;
|
7294
|
+
dateValue: Date | null;
|
7295
|
+
}[] | null | undefined;
|
6571
7296
|
} | null;
|
6572
7297
|
};
|
6573
7298
|
assigneeId: string | null;
|
@@ -6997,11 +7722,34 @@ export declare const roomContract: {
|
|
6997
7722
|
handledTime: number | null;
|
6998
7723
|
firstResponseTime: number | null;
|
6999
7724
|
wrapUpForm: {
|
7725
|
+
type: string;
|
7000
7726
|
id: string;
|
7001
7727
|
disposition: string | null;
|
7002
7728
|
createdAt: Date;
|
7003
7729
|
updatedAt: Date;
|
7004
7730
|
deletedAt: Date | null;
|
7731
|
+
categories: {
|
7732
|
+
id: string;
|
7733
|
+
value: string;
|
7734
|
+
createdAt: Date;
|
7735
|
+
updatedAt: Date;
|
7736
|
+
deletedAt: Date | null;
|
7737
|
+
level: 2 | 1 | 3;
|
7738
|
+
parentId: string | null;
|
7739
|
+
childCategoryList: {
|
7740
|
+
id: string;
|
7741
|
+
value: string;
|
7742
|
+
level: 2 | 1 | 3;
|
7743
|
+
parentId: string | null;
|
7744
|
+
childCategoryList: {
|
7745
|
+
id: string;
|
7746
|
+
value: string;
|
7747
|
+
level: 2 | 1 | 3;
|
7748
|
+
parentId: string | null;
|
7749
|
+
childCategoryList: any[];
|
7750
|
+
}[];
|
7751
|
+
}[];
|
7752
|
+
}[];
|
7005
7753
|
tags: {
|
7006
7754
|
id: string;
|
7007
7755
|
name: string;
|
@@ -7012,6 +7760,18 @@ export declare const roomContract: {
|
|
7012
7760
|
callFrom: string | null;
|
7013
7761
|
callTo: string | null;
|
7014
7762
|
note: string | null;
|
7763
|
+
customFields?: {
|
7764
|
+
id: string;
|
7765
|
+
createdAt: Date;
|
7766
|
+
updatedAt: Date;
|
7767
|
+
deletedAt: Date | null;
|
7768
|
+
entityId: string;
|
7769
|
+
attributeId: string;
|
7770
|
+
textValue: string | null;
|
7771
|
+
booleanValue: boolean | null;
|
7772
|
+
numberValue: number | null;
|
7773
|
+
dateValue: Date | null;
|
7774
|
+
}[] | null | undefined;
|
7015
7775
|
} | null;
|
7016
7776
|
};
|
7017
7777
|
assigneeId: string | null;
|
@@ -7443,11 +8203,34 @@ export declare const roomContract: {
|
|
7443
8203
|
handledTime: number | null;
|
7444
8204
|
firstResponseTime: number | null;
|
7445
8205
|
wrapUpForm: {
|
8206
|
+
type: string;
|
7446
8207
|
id: string;
|
7447
8208
|
disposition: string | null;
|
7448
8209
|
createdAt: Date;
|
7449
8210
|
updatedAt: Date;
|
7450
8211
|
deletedAt: Date | null;
|
8212
|
+
categories: {
|
8213
|
+
id: string;
|
8214
|
+
value: string;
|
8215
|
+
createdAt: Date;
|
8216
|
+
updatedAt: Date;
|
8217
|
+
deletedAt: Date | null;
|
8218
|
+
level: 2 | 1 | 3;
|
8219
|
+
parentId: string | null;
|
8220
|
+
childCategoryList: {
|
8221
|
+
id: string;
|
8222
|
+
value: string;
|
8223
|
+
level: 2 | 1 | 3;
|
8224
|
+
parentId: string | null;
|
8225
|
+
childCategoryList: {
|
8226
|
+
id: string;
|
8227
|
+
value: string;
|
8228
|
+
level: 2 | 1 | 3;
|
8229
|
+
parentId: string | null;
|
8230
|
+
childCategoryList: any[];
|
8231
|
+
}[];
|
8232
|
+
}[];
|
8233
|
+
}[];
|
7451
8234
|
tags: {
|
7452
8235
|
id: string;
|
7453
8236
|
name: string;
|
@@ -7458,6 +8241,18 @@ export declare const roomContract: {
|
|
7458
8241
|
callFrom: string | null;
|
7459
8242
|
callTo: string | null;
|
7460
8243
|
note: string | null;
|
8244
|
+
customFields?: {
|
8245
|
+
id: string;
|
8246
|
+
createdAt: Date;
|
8247
|
+
updatedAt: Date;
|
8248
|
+
deletedAt: Date | null;
|
8249
|
+
entityId: string;
|
8250
|
+
attributeId: string;
|
8251
|
+
textValue: string | null;
|
8252
|
+
booleanValue: boolean | null;
|
8253
|
+
numberValue: number | null;
|
8254
|
+
dateValue: Date | null;
|
8255
|
+
}[] | null | undefined;
|
7461
8256
|
} | null;
|
7462
8257
|
};
|
7463
8258
|
assigneeId: string | null;
|
@@ -7890,11 +8685,34 @@ export declare const roomContract: {
|
|
7890
8685
|
handledTime: number | null;
|
7891
8686
|
firstResponseTime: number | null;
|
7892
8687
|
wrapUpForm: {
|
8688
|
+
type: string;
|
7893
8689
|
id: string;
|
7894
8690
|
disposition: string | null;
|
7895
8691
|
createdAt: Date;
|
7896
8692
|
updatedAt: Date;
|
7897
8693
|
deletedAt: Date | null;
|
8694
|
+
categories: {
|
8695
|
+
id: string;
|
8696
|
+
value: string;
|
8697
|
+
createdAt: Date;
|
8698
|
+
updatedAt: Date;
|
8699
|
+
deletedAt: Date | null;
|
8700
|
+
level: 2 | 1 | 3;
|
8701
|
+
parentId: string | null;
|
8702
|
+
childCategoryList: {
|
8703
|
+
id: string;
|
8704
|
+
value: string;
|
8705
|
+
level: 2 | 1 | 3;
|
8706
|
+
parentId: string | null;
|
8707
|
+
childCategoryList: {
|
8708
|
+
id: string;
|
8709
|
+
value: string;
|
8710
|
+
level: 2 | 1 | 3;
|
8711
|
+
parentId: string | null;
|
8712
|
+
childCategoryList: any[];
|
8713
|
+
}[];
|
8714
|
+
}[];
|
8715
|
+
}[];
|
7898
8716
|
tags: {
|
7899
8717
|
id: string;
|
7900
8718
|
name: string;
|
@@ -7905,6 +8723,18 @@ export declare const roomContract: {
|
|
7905
8723
|
callFrom: string | null;
|
7906
8724
|
callTo: string | null;
|
7907
8725
|
note: string | null;
|
8726
|
+
customFields?: {
|
8727
|
+
id: string;
|
8728
|
+
createdAt: Date;
|
8729
|
+
updatedAt: Date;
|
8730
|
+
deletedAt: Date | null;
|
8731
|
+
entityId: string;
|
8732
|
+
attributeId: string;
|
8733
|
+
textValue: string | null;
|
8734
|
+
booleanValue: boolean | null;
|
8735
|
+
numberValue: number | null;
|
8736
|
+
dateValue: Date | null;
|
8737
|
+
}[] | null | undefined;
|
7908
8738
|
} | null;
|
7909
8739
|
};
|
7910
8740
|
assigneeId: string | null;
|
@@ -10065,8 +10895,7 @@ export declare const roomContract: {
|
|
10065
10895
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
10066
10896
|
note: z.ZodNullable<z.ZodString>;
|
10067
10897
|
disposition: z.ZodNullable<z.ZodString>;
|
10068
|
-
|
10069
|
-
callTo: z.ZodNullable<z.ZodString>;
|
10898
|
+
type: z.ZodString;
|
10070
10899
|
tags: z.ZodArray<z.ZodObject<{
|
10071
10900
|
id: z.ZodString;
|
10072
10901
|
createdAt: z.ZodDate;
|
@@ -10086,12 +10915,171 @@ export declare const roomContract: {
|
|
10086
10915
|
updatedAt: Date;
|
10087
10916
|
deletedAt: Date | null;
|
10088
10917
|
}>, "many">;
|
10918
|
+
categories: z.ZodArray<z.ZodObject<{
|
10919
|
+
id: z.ZodString;
|
10920
|
+
createdAt: z.ZodDate;
|
10921
|
+
updatedAt: z.ZodDate;
|
10922
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
10923
|
+
value: z.ZodString;
|
10924
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
10925
|
+
parentId: z.ZodNullable<z.ZodString>;
|
10926
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
10927
|
+
id: z.ZodString;
|
10928
|
+
value: z.ZodString;
|
10929
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
10930
|
+
parentId: z.ZodNullable<z.ZodString>;
|
10931
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
10932
|
+
id: z.ZodString;
|
10933
|
+
value: z.ZodString;
|
10934
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
10935
|
+
parentId: z.ZodNullable<z.ZodString>;
|
10936
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
10937
|
+
}, "strip", z.ZodTypeAny, {
|
10938
|
+
id: string;
|
10939
|
+
value: string;
|
10940
|
+
level: 2 | 1 | 3;
|
10941
|
+
parentId: string | null;
|
10942
|
+
childCategoryList: any[];
|
10943
|
+
}, {
|
10944
|
+
id: string;
|
10945
|
+
value: string;
|
10946
|
+
level: 2 | 1 | 3;
|
10947
|
+
parentId: string | null;
|
10948
|
+
childCategoryList: any[];
|
10949
|
+
}>, "many">;
|
10950
|
+
}, "strip", z.ZodTypeAny, {
|
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
|
+
id: string;
|
10964
|
+
value: string;
|
10965
|
+
level: 2 | 1 | 3;
|
10966
|
+
parentId: string | null;
|
10967
|
+
childCategoryList: {
|
10968
|
+
id: string;
|
10969
|
+
value: string;
|
10970
|
+
level: 2 | 1 | 3;
|
10971
|
+
parentId: string | null;
|
10972
|
+
childCategoryList: any[];
|
10973
|
+
}[];
|
10974
|
+
}>, "many">;
|
10975
|
+
}, "strip", z.ZodTypeAny, {
|
10976
|
+
id: string;
|
10977
|
+
value: string;
|
10978
|
+
createdAt: Date;
|
10979
|
+
updatedAt: Date;
|
10980
|
+
deletedAt: Date | null;
|
10981
|
+
level: 2 | 1 | 3;
|
10982
|
+
parentId: string | null;
|
10983
|
+
childCategoryList: {
|
10984
|
+
id: string;
|
10985
|
+
value: string;
|
10986
|
+
level: 2 | 1 | 3;
|
10987
|
+
parentId: string | null;
|
10988
|
+
childCategoryList: {
|
10989
|
+
id: string;
|
10990
|
+
value: string;
|
10991
|
+
level: 2 | 1 | 3;
|
10992
|
+
parentId: string | null;
|
10993
|
+
childCategoryList: any[];
|
10994
|
+
}[];
|
10995
|
+
}[];
|
10996
|
+
}, {
|
10997
|
+
id: string;
|
10998
|
+
value: string;
|
10999
|
+
createdAt: Date;
|
11000
|
+
updatedAt: Date;
|
11001
|
+
deletedAt: Date | null;
|
11002
|
+
level: 2 | 1 | 3;
|
11003
|
+
parentId: string | null;
|
11004
|
+
childCategoryList: {
|
11005
|
+
id: string;
|
11006
|
+
value: string;
|
11007
|
+
level: 2 | 1 | 3;
|
11008
|
+
parentId: string | null;
|
11009
|
+
childCategoryList: {
|
11010
|
+
id: string;
|
11011
|
+
value: string;
|
11012
|
+
level: 2 | 1 | 3;
|
11013
|
+
parentId: string | null;
|
11014
|
+
childCategoryList: any[];
|
11015
|
+
}[];
|
11016
|
+
}[];
|
11017
|
+
}>, "many">;
|
11018
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
11019
|
+
callTo: z.ZodNullable<z.ZodString>;
|
11020
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11021
|
+
id: z.ZodString;
|
11022
|
+
createdAt: z.ZodDate;
|
11023
|
+
updatedAt: z.ZodDate;
|
11024
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
11025
|
+
textValue: z.ZodNullable<z.ZodString>;
|
11026
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
11027
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
11028
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
11029
|
+
entityId: z.ZodString;
|
11030
|
+
attributeId: z.ZodString;
|
11031
|
+
}, "strip", z.ZodTypeAny, {
|
11032
|
+
id: string;
|
11033
|
+
createdAt: Date;
|
11034
|
+
updatedAt: Date;
|
11035
|
+
deletedAt: Date | null;
|
11036
|
+
entityId: string;
|
11037
|
+
attributeId: string;
|
11038
|
+
textValue: string | null;
|
11039
|
+
booleanValue: boolean | null;
|
11040
|
+
numberValue: number | null;
|
11041
|
+
dateValue: Date | null;
|
11042
|
+
}, {
|
11043
|
+
id: string;
|
11044
|
+
createdAt: Date;
|
11045
|
+
updatedAt: Date;
|
11046
|
+
deletedAt: Date | null;
|
11047
|
+
entityId: string;
|
11048
|
+
attributeId: string;
|
11049
|
+
textValue: string | null;
|
11050
|
+
booleanValue: boolean | null;
|
11051
|
+
numberValue: number | null;
|
11052
|
+
dateValue: Date | null;
|
11053
|
+
}>, "many">>>;
|
10089
11054
|
}, "strip", z.ZodTypeAny, {
|
11055
|
+
type: string;
|
10090
11056
|
id: string;
|
10091
11057
|
disposition: string | null;
|
10092
11058
|
createdAt: Date;
|
10093
11059
|
updatedAt: Date;
|
10094
11060
|
deletedAt: Date | null;
|
11061
|
+
categories: {
|
11062
|
+
id: string;
|
11063
|
+
value: string;
|
11064
|
+
createdAt: Date;
|
11065
|
+
updatedAt: Date;
|
11066
|
+
deletedAt: Date | null;
|
11067
|
+
level: 2 | 1 | 3;
|
11068
|
+
parentId: string | null;
|
11069
|
+
childCategoryList: {
|
11070
|
+
id: string;
|
11071
|
+
value: string;
|
11072
|
+
level: 2 | 1 | 3;
|
11073
|
+
parentId: string | null;
|
11074
|
+
childCategoryList: {
|
11075
|
+
id: string;
|
11076
|
+
value: string;
|
11077
|
+
level: 2 | 1 | 3;
|
11078
|
+
parentId: string | null;
|
11079
|
+
childCategoryList: any[];
|
11080
|
+
}[];
|
11081
|
+
}[];
|
11082
|
+
}[];
|
10095
11083
|
tags: {
|
10096
11084
|
id: string;
|
10097
11085
|
name: string;
|
@@ -10102,12 +11090,47 @@ export declare const roomContract: {
|
|
10102
11090
|
callFrom: string | null;
|
10103
11091
|
callTo: string | null;
|
10104
11092
|
note: string | null;
|
11093
|
+
customFields?: {
|
11094
|
+
id: string;
|
11095
|
+
createdAt: Date;
|
11096
|
+
updatedAt: Date;
|
11097
|
+
deletedAt: Date | null;
|
11098
|
+
entityId: string;
|
11099
|
+
attributeId: string;
|
11100
|
+
textValue: string | null;
|
11101
|
+
booleanValue: boolean | null;
|
11102
|
+
numberValue: number | null;
|
11103
|
+
dateValue: Date | null;
|
11104
|
+
}[] | null | undefined;
|
10105
11105
|
}, {
|
11106
|
+
type: string;
|
10106
11107
|
id: string;
|
10107
11108
|
disposition: string | null;
|
10108
11109
|
createdAt: Date;
|
10109
11110
|
updatedAt: Date;
|
10110
11111
|
deletedAt: Date | null;
|
11112
|
+
categories: {
|
11113
|
+
id: string;
|
11114
|
+
value: string;
|
11115
|
+
createdAt: Date;
|
11116
|
+
updatedAt: Date;
|
11117
|
+
deletedAt: Date | null;
|
11118
|
+
level: 2 | 1 | 3;
|
11119
|
+
parentId: string | null;
|
11120
|
+
childCategoryList: {
|
11121
|
+
id: string;
|
11122
|
+
value: string;
|
11123
|
+
level: 2 | 1 | 3;
|
11124
|
+
parentId: string | null;
|
11125
|
+
childCategoryList: {
|
11126
|
+
id: string;
|
11127
|
+
value: string;
|
11128
|
+
level: 2 | 1 | 3;
|
11129
|
+
parentId: string | null;
|
11130
|
+
childCategoryList: any[];
|
11131
|
+
}[];
|
11132
|
+
}[];
|
11133
|
+
}[];
|
10111
11134
|
tags: {
|
10112
11135
|
id: string;
|
10113
11136
|
name: string;
|
@@ -10118,6 +11141,18 @@ export declare const roomContract: {
|
|
10118
11141
|
callFrom: string | null;
|
10119
11142
|
callTo: string | null;
|
10120
11143
|
note: string | null;
|
11144
|
+
customFields?: {
|
11145
|
+
id: string;
|
11146
|
+
createdAt: Date;
|
11147
|
+
updatedAt: Date;
|
11148
|
+
deletedAt: Date | null;
|
11149
|
+
entityId: string;
|
11150
|
+
attributeId: string;
|
11151
|
+
textValue: string | null;
|
11152
|
+
booleanValue: boolean | null;
|
11153
|
+
numberValue: number | null;
|
11154
|
+
dateValue: Date | null;
|
11155
|
+
}[] | null | undefined;
|
10121
11156
|
}>>;
|
10122
11157
|
}, "strip", z.ZodTypeAny, {
|
10123
11158
|
id: string;
|
@@ -10136,11 +11171,34 @@ export declare const roomContract: {
|
|
10136
11171
|
handledTime: number | null;
|
10137
11172
|
firstResponseTime: number | null;
|
10138
11173
|
wrapUpForm: {
|
11174
|
+
type: string;
|
10139
11175
|
id: string;
|
10140
11176
|
disposition: string | null;
|
10141
11177
|
createdAt: Date;
|
10142
11178
|
updatedAt: Date;
|
10143
11179
|
deletedAt: Date | null;
|
11180
|
+
categories: {
|
11181
|
+
id: string;
|
11182
|
+
value: string;
|
11183
|
+
createdAt: Date;
|
11184
|
+
updatedAt: Date;
|
11185
|
+
deletedAt: Date | null;
|
11186
|
+
level: 2 | 1 | 3;
|
11187
|
+
parentId: string | null;
|
11188
|
+
childCategoryList: {
|
11189
|
+
id: string;
|
11190
|
+
value: string;
|
11191
|
+
level: 2 | 1 | 3;
|
11192
|
+
parentId: string | null;
|
11193
|
+
childCategoryList: {
|
11194
|
+
id: string;
|
11195
|
+
value: string;
|
11196
|
+
level: 2 | 1 | 3;
|
11197
|
+
parentId: string | null;
|
11198
|
+
childCategoryList: any[];
|
11199
|
+
}[];
|
11200
|
+
}[];
|
11201
|
+
}[];
|
10144
11202
|
tags: {
|
10145
11203
|
id: string;
|
10146
11204
|
name: string;
|
@@ -10151,6 +11209,18 @@ export declare const roomContract: {
|
|
10151
11209
|
callFrom: string | null;
|
10152
11210
|
callTo: string | null;
|
10153
11211
|
note: string | null;
|
11212
|
+
customFields?: {
|
11213
|
+
id: string;
|
11214
|
+
createdAt: Date;
|
11215
|
+
updatedAt: Date;
|
11216
|
+
deletedAt: Date | null;
|
11217
|
+
entityId: string;
|
11218
|
+
attributeId: string;
|
11219
|
+
textValue: string | null;
|
11220
|
+
booleanValue: boolean | null;
|
11221
|
+
numberValue: number | null;
|
11222
|
+
dateValue: Date | null;
|
11223
|
+
}[] | null | undefined;
|
10154
11224
|
} | null;
|
10155
11225
|
}, {
|
10156
11226
|
id: string;
|
@@ -10169,11 +11239,34 @@ export declare const roomContract: {
|
|
10169
11239
|
handledTime: number | null;
|
10170
11240
|
firstResponseTime: number | null;
|
10171
11241
|
wrapUpForm: {
|
11242
|
+
type: string;
|
10172
11243
|
id: string;
|
10173
11244
|
disposition: string | null;
|
10174
11245
|
createdAt: Date;
|
10175
11246
|
updatedAt: Date;
|
10176
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
|
+
}[];
|
10177
11270
|
tags: {
|
10178
11271
|
id: string;
|
10179
11272
|
name: string;
|
@@ -10184,6 +11277,18 @@ export declare const roomContract: {
|
|
10184
11277
|
callFrom: string | null;
|
10185
11278
|
callTo: string | null;
|
10186
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
|
+
}[] | null | undefined;
|
10187
11292
|
} | null;
|
10188
11293
|
}>;
|
10189
11294
|
}, "strip", z.ZodTypeAny, {
|
@@ -10305,11 +11410,34 @@ export declare const roomContract: {
|
|
10305
11410
|
handledTime: number | null;
|
10306
11411
|
firstResponseTime: number | null;
|
10307
11412
|
wrapUpForm: {
|
11413
|
+
type: string;
|
10308
11414
|
id: string;
|
10309
11415
|
disposition: string | null;
|
10310
11416
|
createdAt: Date;
|
10311
11417
|
updatedAt: Date;
|
10312
11418
|
deletedAt: Date | null;
|
11419
|
+
categories: {
|
11420
|
+
id: string;
|
11421
|
+
value: string;
|
11422
|
+
createdAt: Date;
|
11423
|
+
updatedAt: Date;
|
11424
|
+
deletedAt: Date | null;
|
11425
|
+
level: 2 | 1 | 3;
|
11426
|
+
parentId: string | null;
|
11427
|
+
childCategoryList: {
|
11428
|
+
id: string;
|
11429
|
+
value: string;
|
11430
|
+
level: 2 | 1 | 3;
|
11431
|
+
parentId: string | null;
|
11432
|
+
childCategoryList: {
|
11433
|
+
id: string;
|
11434
|
+
value: string;
|
11435
|
+
level: 2 | 1 | 3;
|
11436
|
+
parentId: string | null;
|
11437
|
+
childCategoryList: any[];
|
11438
|
+
}[];
|
11439
|
+
}[];
|
11440
|
+
}[];
|
10313
11441
|
tags: {
|
10314
11442
|
id: string;
|
10315
11443
|
name: string;
|
@@ -10320,6 +11448,18 @@ export declare const roomContract: {
|
|
10320
11448
|
callFrom: string | null;
|
10321
11449
|
callTo: string | null;
|
10322
11450
|
note: string | null;
|
11451
|
+
customFields?: {
|
11452
|
+
id: string;
|
11453
|
+
createdAt: Date;
|
11454
|
+
updatedAt: Date;
|
11455
|
+
deletedAt: Date | null;
|
11456
|
+
entityId: string;
|
11457
|
+
attributeId: string;
|
11458
|
+
textValue: string | null;
|
11459
|
+
booleanValue: boolean | null;
|
11460
|
+
numberValue: number | null;
|
11461
|
+
dateValue: Date | null;
|
11462
|
+
}[] | null | undefined;
|
10323
11463
|
} | null;
|
10324
11464
|
};
|
10325
11465
|
assigneeId: string | null;
|
@@ -10749,11 +11889,34 @@ export declare const roomContract: {
|
|
10749
11889
|
handledTime: number | null;
|
10750
11890
|
firstResponseTime: number | null;
|
10751
11891
|
wrapUpForm: {
|
11892
|
+
type: string;
|
10752
11893
|
id: string;
|
10753
11894
|
disposition: string | null;
|
10754
11895
|
createdAt: Date;
|
10755
11896
|
updatedAt: Date;
|
10756
11897
|
deletedAt: Date | null;
|
11898
|
+
categories: {
|
11899
|
+
id: string;
|
11900
|
+
value: string;
|
11901
|
+
createdAt: Date;
|
11902
|
+
updatedAt: Date;
|
11903
|
+
deletedAt: Date | null;
|
11904
|
+
level: 2 | 1 | 3;
|
11905
|
+
parentId: string | null;
|
11906
|
+
childCategoryList: {
|
11907
|
+
id: string;
|
11908
|
+
value: string;
|
11909
|
+
level: 2 | 1 | 3;
|
11910
|
+
parentId: string | null;
|
11911
|
+
childCategoryList: {
|
11912
|
+
id: string;
|
11913
|
+
value: string;
|
11914
|
+
level: 2 | 1 | 3;
|
11915
|
+
parentId: string | null;
|
11916
|
+
childCategoryList: any[];
|
11917
|
+
}[];
|
11918
|
+
}[];
|
11919
|
+
}[];
|
10757
11920
|
tags: {
|
10758
11921
|
id: string;
|
10759
11922
|
name: string;
|
@@ -10764,6 +11927,18 @@ export declare const roomContract: {
|
|
10764
11927
|
callFrom: string | null;
|
10765
11928
|
callTo: string | null;
|
10766
11929
|
note: string | null;
|
11930
|
+
customFields?: {
|
11931
|
+
id: string;
|
11932
|
+
createdAt: Date;
|
11933
|
+
updatedAt: Date;
|
11934
|
+
deletedAt: Date | null;
|
11935
|
+
entityId: string;
|
11936
|
+
attributeId: string;
|
11937
|
+
textValue: string | null;
|
11938
|
+
booleanValue: boolean | null;
|
11939
|
+
numberValue: number | null;
|
11940
|
+
dateValue: Date | null;
|
11941
|
+
}[] | null | undefined;
|
10767
11942
|
} | null;
|
10768
11943
|
};
|
10769
11944
|
assigneeId: string | null;
|
@@ -11195,11 +12370,34 @@ export declare const roomContract: {
|
|
11195
12370
|
handledTime: number | null;
|
11196
12371
|
firstResponseTime: number | null;
|
11197
12372
|
wrapUpForm: {
|
12373
|
+
type: string;
|
11198
12374
|
id: string;
|
11199
12375
|
disposition: string | null;
|
11200
12376
|
createdAt: Date;
|
11201
12377
|
updatedAt: Date;
|
11202
12378
|
deletedAt: Date | null;
|
12379
|
+
categories: {
|
12380
|
+
id: string;
|
12381
|
+
value: string;
|
12382
|
+
createdAt: Date;
|
12383
|
+
updatedAt: Date;
|
12384
|
+
deletedAt: Date | null;
|
12385
|
+
level: 2 | 1 | 3;
|
12386
|
+
parentId: string | null;
|
12387
|
+
childCategoryList: {
|
12388
|
+
id: string;
|
12389
|
+
value: string;
|
12390
|
+
level: 2 | 1 | 3;
|
12391
|
+
parentId: string | null;
|
12392
|
+
childCategoryList: {
|
12393
|
+
id: string;
|
12394
|
+
value: string;
|
12395
|
+
level: 2 | 1 | 3;
|
12396
|
+
parentId: string | null;
|
12397
|
+
childCategoryList: any[];
|
12398
|
+
}[];
|
12399
|
+
}[];
|
12400
|
+
}[];
|
11203
12401
|
tags: {
|
11204
12402
|
id: string;
|
11205
12403
|
name: string;
|
@@ -11210,6 +12408,18 @@ export declare const roomContract: {
|
|
11210
12408
|
callFrom: string | null;
|
11211
12409
|
callTo: string | null;
|
11212
12410
|
note: string | null;
|
12411
|
+
customFields?: {
|
12412
|
+
id: string;
|
12413
|
+
createdAt: Date;
|
12414
|
+
updatedAt: Date;
|
12415
|
+
deletedAt: Date | null;
|
12416
|
+
entityId: string;
|
12417
|
+
attributeId: string;
|
12418
|
+
textValue: string | null;
|
12419
|
+
booleanValue: boolean | null;
|
12420
|
+
numberValue: number | null;
|
12421
|
+
dateValue: Date | null;
|
12422
|
+
}[] | null | undefined;
|
11213
12423
|
} | null;
|
11214
12424
|
};
|
11215
12425
|
assigneeId: string | null;
|
@@ -11642,11 +12852,34 @@ export declare const roomContract: {
|
|
11642
12852
|
handledTime: number | null;
|
11643
12853
|
firstResponseTime: number | null;
|
11644
12854
|
wrapUpForm: {
|
12855
|
+
type: string;
|
11645
12856
|
id: string;
|
11646
12857
|
disposition: string | null;
|
11647
12858
|
createdAt: Date;
|
11648
12859
|
updatedAt: Date;
|
11649
12860
|
deletedAt: Date | null;
|
12861
|
+
categories: {
|
12862
|
+
id: string;
|
12863
|
+
value: string;
|
12864
|
+
createdAt: Date;
|
12865
|
+
updatedAt: Date;
|
12866
|
+
deletedAt: Date | null;
|
12867
|
+
level: 2 | 1 | 3;
|
12868
|
+
parentId: string | null;
|
12869
|
+
childCategoryList: {
|
12870
|
+
id: string;
|
12871
|
+
value: string;
|
12872
|
+
level: 2 | 1 | 3;
|
12873
|
+
parentId: string | null;
|
12874
|
+
childCategoryList: {
|
12875
|
+
id: string;
|
12876
|
+
value: string;
|
12877
|
+
level: 2 | 1 | 3;
|
12878
|
+
parentId: string | null;
|
12879
|
+
childCategoryList: any[];
|
12880
|
+
}[];
|
12881
|
+
}[];
|
12882
|
+
}[];
|
11650
12883
|
tags: {
|
11651
12884
|
id: string;
|
11652
12885
|
name: string;
|
@@ -11657,6 +12890,18 @@ export declare const roomContract: {
|
|
11657
12890
|
callFrom: string | null;
|
11658
12891
|
callTo: string | null;
|
11659
12892
|
note: string | null;
|
12893
|
+
customFields?: {
|
12894
|
+
id: string;
|
12895
|
+
createdAt: Date;
|
12896
|
+
updatedAt: Date;
|
12897
|
+
deletedAt: Date | null;
|
12898
|
+
entityId: string;
|
12899
|
+
attributeId: string;
|
12900
|
+
textValue: string | null;
|
12901
|
+
booleanValue: boolean | null;
|
12902
|
+
numberValue: number | null;
|
12903
|
+
dateValue: Date | null;
|
12904
|
+
}[] | null | undefined;
|
11660
12905
|
} | null;
|
11661
12906
|
};
|
11662
12907
|
assigneeId: string | null;
|