@kl1/contracts 1.1.23 → 1.1.24

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.
Files changed (41) hide show
  1. package/dist/index.js +6 -30
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +6 -30
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +22 -4867
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +4 -764
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +4 -974
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/contract.d.ts +44 -9413
  12. package/dist/src/contract.d.ts.map +1 -1
  13. package/dist/src/cx-log/index.d.ts +2 -347
  14. package/dist/src/cx-log/index.d.ts.map +1 -1
  15. package/dist/src/cx-log/schema.d.ts +4 -554
  16. package/dist/src/cx-log/schema.d.ts.map +1 -1
  17. package/dist/src/instagram/index.d.ts +2 -487
  18. package/dist/src/instagram/index.d.ts.map +1 -1
  19. package/dist/src/line/index.d.ts +2 -487
  20. package/dist/src/line/index.d.ts.map +1 -1
  21. package/dist/src/mail/mail-contract.d.ts +6 -1251
  22. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  23. package/dist/src/mail/room-contract.d.ts +6 -1251
  24. package/dist/src/mail/room-contract.d.ts.map +1 -1
  25. package/dist/src/mail/schemas/room-validation.schema.d.ts +2 -417
  26. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  27. package/dist/src/mail/schemas/room.schema.d.ts +2 -347
  28. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  29. package/dist/src/messenger/index.d.ts +2 -487
  30. package/dist/src/messenger/index.d.ts.map +1 -1
  31. package/dist/src/viber/index.d.ts +2 -487
  32. package/dist/src/viber/index.d.ts.map +1 -1
  33. package/dist/src/webchat/index.d.ts +2 -487
  34. package/dist/src/webchat/index.d.ts.map +1 -1
  35. package/dist/src/wrap-up-form/index.d.ts +6 -1000
  36. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  37. package/dist/src/wrap-up-form/schema.d.ts +2 -207
  38. package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
  39. package/dist/src/wrap-up-form/validation.d.ts +0 -29
  40. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  41. package/package.json +1 -1
@@ -1880,7 +1880,8 @@ 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
- type: z.ZodString;
1883
+ callFrom: z.ZodNullable<z.ZodString>;
1884
+ callTo: z.ZodNullable<z.ZodString>;
1884
1885
  tags: z.ZodArray<z.ZodObject<{
1885
1886
  id: z.ZodString;
1886
1887
  createdAt: z.ZodDate;
@@ -1900,171 +1901,12 @@ export declare const roomContract: {
1900
1901
  updatedAt: Date;
1901
1902
  deletedAt: Date | null;
1902
1903
  }>, "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">>>;
2039
1904
  }, "strip", z.ZodTypeAny, {
2040
- type: string;
2041
1905
  id: string;
2042
1906
  disposition: string | null;
2043
1907
  createdAt: Date;
2044
1908
  updatedAt: Date;
2045
1909
  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
- }[];
2068
1910
  tags: {
2069
1911
  id: string;
2070
1912
  name: string;
@@ -2075,47 +1917,12 @@ export declare const roomContract: {
2075
1917
  callFrom: string | null;
2076
1918
  callTo: string | null;
2077
1919
  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;
2090
1920
  }, {
2091
- type: string;
2092
1921
  id: string;
2093
1922
  disposition: string | null;
2094
1923
  createdAt: Date;
2095
1924
  updatedAt: Date;
2096
1925
  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
- }[];
2119
1926
  tags: {
2120
1927
  id: string;
2121
1928
  name: string;
@@ -2126,18 +1933,6 @@ export declare const roomContract: {
2126
1933
  callFrom: string | null;
2127
1934
  callTo: string | null;
2128
1935
  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;
2141
1936
  }>>;
2142
1937
  }, "strip", z.ZodTypeAny, {
2143
1938
  id: string;
@@ -2156,34 +1951,11 @@ export declare const roomContract: {
2156
1951
  handledTime: number | null;
2157
1952
  firstResponseTime: number | null;
2158
1953
  wrapUpForm: {
2159
- type: string;
2160
1954
  id: string;
2161
1955
  disposition: string | null;
2162
1956
  createdAt: Date;
2163
1957
  updatedAt: Date;
2164
1958
  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
- }[];
2187
1959
  tags: {
2188
1960
  id: string;
2189
1961
  name: string;
@@ -2194,18 +1966,6 @@ export declare const roomContract: {
2194
1966
  callFrom: string | null;
2195
1967
  callTo: string | null;
2196
1968
  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;
2209
1969
  } | null;
2210
1970
  }, {
2211
1971
  id: string;
@@ -2224,34 +1984,11 @@ export declare const roomContract: {
2224
1984
  handledTime: number | null;
2225
1985
  firstResponseTime: number | null;
2226
1986
  wrapUpForm: {
2227
- type: string;
2228
1987
  id: string;
2229
1988
  disposition: string | null;
2230
1989
  createdAt: Date;
2231
1990
  updatedAt: Date;
2232
1991
  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
- }[];
2255
1992
  tags: {
2256
1993
  id: string;
2257
1994
  name: string;
@@ -2262,18 +1999,6 @@ export declare const roomContract: {
2262
1999
  callFrom: string | null;
2263
2000
  callTo: string | null;
2264
2001
  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;
2277
2002
  } | null;
2278
2003
  }>;
2279
2004
  }, "strip", z.ZodTypeAny, {
@@ -2395,34 +2120,11 @@ export declare const roomContract: {
2395
2120
  handledTime: number | null;
2396
2121
  firstResponseTime: number | null;
2397
2122
  wrapUpForm: {
2398
- type: string;
2399
2123
  id: string;
2400
2124
  disposition: string | null;
2401
2125
  createdAt: Date;
2402
2126
  updatedAt: Date;
2403
2127
  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
- }[];
2426
2128
  tags: {
2427
2129
  id: string;
2428
2130
  name: string;
@@ -2433,18 +2135,6 @@ export declare const roomContract: {
2433
2135
  callFrom: string | null;
2434
2136
  callTo: string | null;
2435
2137
  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;
2448
2138
  } | null;
2449
2139
  };
2450
2140
  assigneeId: string | null;
@@ -2874,34 +2564,11 @@ export declare const roomContract: {
2874
2564
  handledTime: number | null;
2875
2565
  firstResponseTime: number | null;
2876
2566
  wrapUpForm: {
2877
- type: string;
2878
2567
  id: string;
2879
2568
  disposition: string | null;
2880
2569
  createdAt: Date;
2881
2570
  updatedAt: Date;
2882
2571
  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
- }[];
2905
2572
  tags: {
2906
2573
  id: string;
2907
2574
  name: string;
@@ -2912,18 +2579,6 @@ export declare const roomContract: {
2912
2579
  callFrom: string | null;
2913
2580
  callTo: string | null;
2914
2581
  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;
2927
2582
  } | null;
2928
2583
  };
2929
2584
  assigneeId: string | null;
@@ -3358,34 +3013,11 @@ export declare const roomContract: {
3358
3013
  handledTime: number | null;
3359
3014
  firstResponseTime: number | null;
3360
3015
  wrapUpForm: {
3361
- type: string;
3362
3016
  id: string;
3363
3017
  disposition: string | null;
3364
3018
  createdAt: Date;
3365
3019
  updatedAt: Date;
3366
3020
  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
- }[];
3389
3021
  tags: {
3390
3022
  id: string;
3391
3023
  name: string;
@@ -3396,18 +3028,6 @@ export declare const roomContract: {
3396
3028
  callFrom: string | null;
3397
3029
  callTo: string | null;
3398
3030
  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;
3411
3031
  } | null;
3412
3032
  };
3413
3033
  assigneeId: string | null;
@@ -3843,34 +3463,11 @@ export declare const roomContract: {
3843
3463
  handledTime: number | null;
3844
3464
  firstResponseTime: number | null;
3845
3465
  wrapUpForm: {
3846
- type: string;
3847
3466
  id: string;
3848
3467
  disposition: string | null;
3849
3468
  createdAt: Date;
3850
3469
  updatedAt: Date;
3851
3470
  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
- }[];
3874
3471
  tags: {
3875
3472
  id: string;
3876
3473
  name: string;
@@ -3881,18 +3478,6 @@ export declare const roomContract: {
3881
3478
  callFrom: string | null;
3882
3479
  callTo: string | null;
3883
3480
  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;
3896
3481
  } | null;
3897
3482
  };
3898
3483
  assigneeId: string | null;
@@ -6728,7 +6313,8 @@ export declare const roomContract: {
6728
6313
  deletedAt: z.ZodNullable<z.ZodDate>;
6729
6314
  note: z.ZodNullable<z.ZodString>;
6730
6315
  disposition: z.ZodNullable<z.ZodString>;
6731
- type: z.ZodString;
6316
+ callFrom: z.ZodNullable<z.ZodString>;
6317
+ callTo: z.ZodNullable<z.ZodString>;
6732
6318
  tags: z.ZodArray<z.ZodObject<{
6733
6319
  id: z.ZodString;
6734
6320
  createdAt: z.ZodDate;
@@ -6748,171 +6334,12 @@ export declare const roomContract: {
6748
6334
  updatedAt: Date;
6749
6335
  deletedAt: Date | null;
6750
6336
  }>, "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">>>;
6887
6337
  }, "strip", z.ZodTypeAny, {
6888
- type: string;
6889
6338
  id: string;
6890
6339
  disposition: string | null;
6891
6340
  createdAt: Date;
6892
6341
  updatedAt: Date;
6893
6342
  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
- }[];
6916
6343
  tags: {
6917
6344
  id: string;
6918
6345
  name: string;
@@ -6923,47 +6350,12 @@ export declare const roomContract: {
6923
6350
  callFrom: string | null;
6924
6351
  callTo: string | null;
6925
6352
  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;
6938
6353
  }, {
6939
- type: string;
6940
6354
  id: string;
6941
6355
  disposition: string | null;
6942
6356
  createdAt: Date;
6943
6357
  updatedAt: Date;
6944
6358
  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
- }[];
6967
6359
  tags: {
6968
6360
  id: string;
6969
6361
  name: string;
@@ -6974,18 +6366,6 @@ export declare const roomContract: {
6974
6366
  callFrom: string | null;
6975
6367
  callTo: string | null;
6976
6368
  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;
6989
6369
  }>>;
6990
6370
  }, "strip", z.ZodTypeAny, {
6991
6371
  id: string;
@@ -7004,34 +6384,11 @@ export declare const roomContract: {
7004
6384
  handledTime: number | null;
7005
6385
  firstResponseTime: number | null;
7006
6386
  wrapUpForm: {
7007
- type: string;
7008
6387
  id: string;
7009
6388
  disposition: string | null;
7010
6389
  createdAt: Date;
7011
6390
  updatedAt: Date;
7012
6391
  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
- }[];
7035
6392
  tags: {
7036
6393
  id: string;
7037
6394
  name: string;
@@ -7042,18 +6399,6 @@ export declare const roomContract: {
7042
6399
  callFrom: string | null;
7043
6400
  callTo: string | null;
7044
6401
  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;
7057
6402
  } | null;
7058
6403
  }, {
7059
6404
  id: string;
@@ -7072,34 +6417,11 @@ export declare const roomContract: {
7072
6417
  handledTime: number | null;
7073
6418
  firstResponseTime: number | null;
7074
6419
  wrapUpForm: {
7075
- type: string;
7076
6420
  id: string;
7077
6421
  disposition: string | null;
7078
6422
  createdAt: Date;
7079
6423
  updatedAt: Date;
7080
6424
  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
- }[];
7103
6425
  tags: {
7104
6426
  id: string;
7105
6427
  name: string;
@@ -7110,18 +6432,6 @@ export declare const roomContract: {
7110
6432
  callFrom: string | null;
7111
6433
  callTo: string | null;
7112
6434
  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;
7125
6435
  } | null;
7126
6436
  }>;
7127
6437
  }, "strip", z.ZodTypeAny, {
@@ -7243,34 +6553,11 @@ export declare const roomContract: {
7243
6553
  handledTime: number | null;
7244
6554
  firstResponseTime: number | null;
7245
6555
  wrapUpForm: {
7246
- type: string;
7247
6556
  id: string;
7248
6557
  disposition: string | null;
7249
6558
  createdAt: Date;
7250
6559
  updatedAt: Date;
7251
6560
  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
- }[];
7274
6561
  tags: {
7275
6562
  id: string;
7276
6563
  name: string;
@@ -7281,18 +6568,6 @@ export declare const roomContract: {
7281
6568
  callFrom: string | null;
7282
6569
  callTo: string | null;
7283
6570
  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;
7296
6571
  } | null;
7297
6572
  };
7298
6573
  assigneeId: string | null;
@@ -7722,34 +6997,11 @@ export declare const roomContract: {
7722
6997
  handledTime: number | null;
7723
6998
  firstResponseTime: number | null;
7724
6999
  wrapUpForm: {
7725
- type: string;
7726
7000
  id: string;
7727
7001
  disposition: string | null;
7728
7002
  createdAt: Date;
7729
7003
  updatedAt: Date;
7730
7004
  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
- }[];
7753
7005
  tags: {
7754
7006
  id: string;
7755
7007
  name: string;
@@ -7760,18 +7012,6 @@ export declare const roomContract: {
7760
7012
  callFrom: string | null;
7761
7013
  callTo: string | null;
7762
7014
  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;
7775
7015
  } | null;
7776
7016
  };
7777
7017
  assigneeId: string | null;
@@ -8203,34 +7443,11 @@ export declare const roomContract: {
8203
7443
  handledTime: number | null;
8204
7444
  firstResponseTime: number | null;
8205
7445
  wrapUpForm: {
8206
- type: string;
8207
7446
  id: string;
8208
7447
  disposition: string | null;
8209
7448
  createdAt: Date;
8210
7449
  updatedAt: Date;
8211
7450
  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
- }[];
8234
7451
  tags: {
8235
7452
  id: string;
8236
7453
  name: string;
@@ -8241,18 +7458,6 @@ export declare const roomContract: {
8241
7458
  callFrom: string | null;
8242
7459
  callTo: string | null;
8243
7460
  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;
8256
7461
  } | null;
8257
7462
  };
8258
7463
  assigneeId: string | null;
@@ -8685,34 +7890,11 @@ export declare const roomContract: {
8685
7890
  handledTime: number | null;
8686
7891
  firstResponseTime: number | null;
8687
7892
  wrapUpForm: {
8688
- type: string;
8689
7893
  id: string;
8690
7894
  disposition: string | null;
8691
7895
  createdAt: Date;
8692
7896
  updatedAt: Date;
8693
7897
  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
- }[];
8716
7898
  tags: {
8717
7899
  id: string;
8718
7900
  name: string;
@@ -8723,18 +7905,6 @@ export declare const roomContract: {
8723
7905
  callFrom: string | null;
8724
7906
  callTo: string | null;
8725
7907
  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;
8738
7908
  } | null;
8739
7909
  };
8740
7910
  assigneeId: string | null;
@@ -10895,7 +10065,8 @@ export declare const roomContract: {
10895
10065
  deletedAt: z.ZodNullable<z.ZodDate>;
10896
10066
  note: z.ZodNullable<z.ZodString>;
10897
10067
  disposition: z.ZodNullable<z.ZodString>;
10898
- type: z.ZodString;
10068
+ callFrom: z.ZodNullable<z.ZodString>;
10069
+ callTo: z.ZodNullable<z.ZodString>;
10899
10070
  tags: z.ZodArray<z.ZodObject<{
10900
10071
  id: z.ZodString;
10901
10072
  createdAt: z.ZodDate;
@@ -10915,171 +10086,12 @@ export declare const roomContract: {
10915
10086
  updatedAt: Date;
10916
10087
  deletedAt: Date | null;
10917
10088
  }>, "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">>>;
11054
10089
  }, "strip", z.ZodTypeAny, {
11055
- type: string;
11056
10090
  id: string;
11057
10091
  disposition: string | null;
11058
10092
  createdAt: Date;
11059
10093
  updatedAt: Date;
11060
10094
  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
- }[];
11083
10095
  tags: {
11084
10096
  id: string;
11085
10097
  name: string;
@@ -11090,47 +10102,12 @@ export declare const roomContract: {
11090
10102
  callFrom: string | null;
11091
10103
  callTo: string | null;
11092
10104
  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;
11105
10105
  }, {
11106
- type: string;
11107
10106
  id: string;
11108
10107
  disposition: string | null;
11109
10108
  createdAt: Date;
11110
10109
  updatedAt: Date;
11111
10110
  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
- }[];
11134
10111
  tags: {
11135
10112
  id: string;
11136
10113
  name: string;
@@ -11141,18 +10118,6 @@ export declare const roomContract: {
11141
10118
  callFrom: string | null;
11142
10119
  callTo: string | null;
11143
10120
  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;
11156
10121
  }>>;
11157
10122
  }, "strip", z.ZodTypeAny, {
11158
10123
  id: string;
@@ -11171,34 +10136,11 @@ export declare const roomContract: {
11171
10136
  handledTime: number | null;
11172
10137
  firstResponseTime: number | null;
11173
10138
  wrapUpForm: {
11174
- type: string;
11175
10139
  id: string;
11176
10140
  disposition: string | null;
11177
10141
  createdAt: Date;
11178
10142
  updatedAt: Date;
11179
10143
  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
- }[];
11202
10144
  tags: {
11203
10145
  id: string;
11204
10146
  name: string;
@@ -11209,18 +10151,6 @@ export declare const roomContract: {
11209
10151
  callFrom: string | null;
11210
10152
  callTo: string | null;
11211
10153
  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;
11224
10154
  } | null;
11225
10155
  }, {
11226
10156
  id: string;
@@ -11239,34 +10169,11 @@ export declare const roomContract: {
11239
10169
  handledTime: number | null;
11240
10170
  firstResponseTime: number | null;
11241
10171
  wrapUpForm: {
11242
- type: string;
11243
10172
  id: string;
11244
10173
  disposition: string | null;
11245
10174
  createdAt: Date;
11246
10175
  updatedAt: Date;
11247
10176
  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
- }[];
11270
10177
  tags: {
11271
10178
  id: string;
11272
10179
  name: string;
@@ -11277,18 +10184,6 @@ export declare const roomContract: {
11277
10184
  callFrom: string | null;
11278
10185
  callTo: string | null;
11279
10186
  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;
11292
10187
  } | null;
11293
10188
  }>;
11294
10189
  }, "strip", z.ZodTypeAny, {
@@ -11410,34 +10305,11 @@ export declare const roomContract: {
11410
10305
  handledTime: number | null;
11411
10306
  firstResponseTime: number | null;
11412
10307
  wrapUpForm: {
11413
- type: string;
11414
10308
  id: string;
11415
10309
  disposition: string | null;
11416
10310
  createdAt: Date;
11417
10311
  updatedAt: Date;
11418
10312
  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
- }[];
11441
10313
  tags: {
11442
10314
  id: string;
11443
10315
  name: string;
@@ -11448,18 +10320,6 @@ export declare const roomContract: {
11448
10320
  callFrom: string | null;
11449
10321
  callTo: string | null;
11450
10322
  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;
11463
10323
  } | null;
11464
10324
  };
11465
10325
  assigneeId: string | null;
@@ -11889,34 +10749,11 @@ export declare const roomContract: {
11889
10749
  handledTime: number | null;
11890
10750
  firstResponseTime: number | null;
11891
10751
  wrapUpForm: {
11892
- type: string;
11893
10752
  id: string;
11894
10753
  disposition: string | null;
11895
10754
  createdAt: Date;
11896
10755
  updatedAt: Date;
11897
10756
  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
- }[];
11920
10757
  tags: {
11921
10758
  id: string;
11922
10759
  name: string;
@@ -11927,18 +10764,6 @@ export declare const roomContract: {
11927
10764
  callFrom: string | null;
11928
10765
  callTo: string | null;
11929
10766
  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;
11942
10767
  } | null;
11943
10768
  };
11944
10769
  assigneeId: string | null;
@@ -12370,34 +11195,11 @@ export declare const roomContract: {
12370
11195
  handledTime: number | null;
12371
11196
  firstResponseTime: number | null;
12372
11197
  wrapUpForm: {
12373
- type: string;
12374
11198
  id: string;
12375
11199
  disposition: string | null;
12376
11200
  createdAt: Date;
12377
11201
  updatedAt: Date;
12378
11202
  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
- }[];
12401
11203
  tags: {
12402
11204
  id: string;
12403
11205
  name: string;
@@ -12408,18 +11210,6 @@ export declare const roomContract: {
12408
11210
  callFrom: string | null;
12409
11211
  callTo: string | null;
12410
11212
  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;
12423
11213
  } | null;
12424
11214
  };
12425
11215
  assigneeId: string | null;
@@ -12852,34 +11642,11 @@ export declare const roomContract: {
12852
11642
  handledTime: number | null;
12853
11643
  firstResponseTime: number | null;
12854
11644
  wrapUpForm: {
12855
- type: string;
12856
11645
  id: string;
12857
11646
  disposition: string | null;
12858
11647
  createdAt: Date;
12859
11648
  updatedAt: Date;
12860
11649
  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
- }[];
12883
11650
  tags: {
12884
11651
  id: string;
12885
11652
  name: string;
@@ -12890,18 +11657,6 @@ export declare const roomContract: {
12890
11657
  callFrom: string | null;
12891
11658
  callTo: string | null;
12892
11659
  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;
12905
11660
  } | null;
12906
11661
  };
12907
11662
  assigneeId: string | null;