@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.
- package/dist/index.js +6 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -30
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +22 -4867
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +4 -764
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +4 -974
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +44 -9413
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +2 -347
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +4 -554
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +2 -487
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +2 -487
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +6 -1251
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +6 -1251
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +2 -417
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +2 -347
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +2 -487
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +2 -487
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +2 -487
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +6 -1000
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +2 -207
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +0 -29
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -22,7 +22,8 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
22
22
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
23
23
|
note: z.ZodNullable<z.ZodString>;
|
24
24
|
disposition: z.ZodNullable<z.ZodString>;
|
25
|
-
|
25
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
26
|
+
callTo: z.ZodNullable<z.ZodString>;
|
26
27
|
tags: z.ZodArray<z.ZodObject<{
|
27
28
|
id: z.ZodString;
|
28
29
|
createdAt: z.ZodDate;
|
@@ -42,171 +43,12 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
42
43
|
updatedAt: Date;
|
43
44
|
deletedAt: Date | null;
|
44
45
|
}>, "many">;
|
45
|
-
categories: z.ZodArray<z.ZodObject<{
|
46
|
-
id: z.ZodString;
|
47
|
-
createdAt: z.ZodDate;
|
48
|
-
updatedAt: z.ZodDate;
|
49
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
50
|
-
value: z.ZodString;
|
51
|
-
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
52
|
-
parentId: z.ZodNullable<z.ZodString>;
|
53
|
-
childCategoryList: z.ZodArray<z.ZodObject<{
|
54
|
-
id: z.ZodString;
|
55
|
-
value: z.ZodString;
|
56
|
-
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
57
|
-
parentId: z.ZodNullable<z.ZodString>;
|
58
|
-
childCategoryList: z.ZodArray<z.ZodObject<{
|
59
|
-
id: z.ZodString;
|
60
|
-
value: z.ZodString;
|
61
|
-
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
62
|
-
parentId: z.ZodNullable<z.ZodString>;
|
63
|
-
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
64
|
-
}, "strip", z.ZodTypeAny, {
|
65
|
-
id: string;
|
66
|
-
value: string;
|
67
|
-
level: 2 | 1 | 3;
|
68
|
-
parentId: string | null;
|
69
|
-
childCategoryList: any[];
|
70
|
-
}, {
|
71
|
-
id: string;
|
72
|
-
value: string;
|
73
|
-
level: 2 | 1 | 3;
|
74
|
-
parentId: string | null;
|
75
|
-
childCategoryList: any[];
|
76
|
-
}>, "many">;
|
77
|
-
}, "strip", z.ZodTypeAny, {
|
78
|
-
id: string;
|
79
|
-
value: string;
|
80
|
-
level: 2 | 1 | 3;
|
81
|
-
parentId: string | null;
|
82
|
-
childCategoryList: {
|
83
|
-
id: string;
|
84
|
-
value: string;
|
85
|
-
level: 2 | 1 | 3;
|
86
|
-
parentId: string | null;
|
87
|
-
childCategoryList: any[];
|
88
|
-
}[];
|
89
|
-
}, {
|
90
|
-
id: string;
|
91
|
-
value: string;
|
92
|
-
level: 2 | 1 | 3;
|
93
|
-
parentId: string | null;
|
94
|
-
childCategoryList: {
|
95
|
-
id: string;
|
96
|
-
value: string;
|
97
|
-
level: 2 | 1 | 3;
|
98
|
-
parentId: string | null;
|
99
|
-
childCategoryList: any[];
|
100
|
-
}[];
|
101
|
-
}>, "many">;
|
102
|
-
}, "strip", z.ZodTypeAny, {
|
103
|
-
id: string;
|
104
|
-
value: string;
|
105
|
-
createdAt: Date;
|
106
|
-
updatedAt: Date;
|
107
|
-
deletedAt: Date | null;
|
108
|
-
level: 2 | 1 | 3;
|
109
|
-
parentId: string | null;
|
110
|
-
childCategoryList: {
|
111
|
-
id: string;
|
112
|
-
value: string;
|
113
|
-
level: 2 | 1 | 3;
|
114
|
-
parentId: string | null;
|
115
|
-
childCategoryList: {
|
116
|
-
id: string;
|
117
|
-
value: string;
|
118
|
-
level: 2 | 1 | 3;
|
119
|
-
parentId: string | null;
|
120
|
-
childCategoryList: any[];
|
121
|
-
}[];
|
122
|
-
}[];
|
123
|
-
}, {
|
124
|
-
id: string;
|
125
|
-
value: string;
|
126
|
-
createdAt: Date;
|
127
|
-
updatedAt: Date;
|
128
|
-
deletedAt: Date | null;
|
129
|
-
level: 2 | 1 | 3;
|
130
|
-
parentId: string | null;
|
131
|
-
childCategoryList: {
|
132
|
-
id: string;
|
133
|
-
value: string;
|
134
|
-
level: 2 | 1 | 3;
|
135
|
-
parentId: string | null;
|
136
|
-
childCategoryList: {
|
137
|
-
id: string;
|
138
|
-
value: string;
|
139
|
-
level: 2 | 1 | 3;
|
140
|
-
parentId: string | null;
|
141
|
-
childCategoryList: any[];
|
142
|
-
}[];
|
143
|
-
}[];
|
144
|
-
}>, "many">;
|
145
|
-
callFrom: z.ZodNullable<z.ZodString>;
|
146
|
-
callTo: z.ZodNullable<z.ZodString>;
|
147
|
-
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
148
|
-
id: z.ZodString;
|
149
|
-
createdAt: z.ZodDate;
|
150
|
-
updatedAt: z.ZodDate;
|
151
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
152
|
-
textValue: z.ZodNullable<z.ZodString>;
|
153
|
-
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
154
|
-
numberValue: z.ZodNullable<z.ZodNumber>;
|
155
|
-
dateValue: z.ZodNullable<z.ZodDate>;
|
156
|
-
entityId: z.ZodString;
|
157
|
-
attributeId: z.ZodString;
|
158
|
-
}, "strip", z.ZodTypeAny, {
|
159
|
-
id: string;
|
160
|
-
createdAt: Date;
|
161
|
-
updatedAt: Date;
|
162
|
-
deletedAt: Date | null;
|
163
|
-
entityId: string;
|
164
|
-
attributeId: string;
|
165
|
-
textValue: string | null;
|
166
|
-
booleanValue: boolean | null;
|
167
|
-
numberValue: number | null;
|
168
|
-
dateValue: Date | null;
|
169
|
-
}, {
|
170
|
-
id: string;
|
171
|
-
createdAt: Date;
|
172
|
-
updatedAt: Date;
|
173
|
-
deletedAt: Date | null;
|
174
|
-
entityId: string;
|
175
|
-
attributeId: string;
|
176
|
-
textValue: string | null;
|
177
|
-
booleanValue: boolean | null;
|
178
|
-
numberValue: number | null;
|
179
|
-
dateValue: Date | null;
|
180
|
-
}>, "many">>>;
|
181
46
|
}, "strip", z.ZodTypeAny, {
|
182
|
-
type: string;
|
183
47
|
id: string;
|
184
48
|
disposition: string | null;
|
185
49
|
createdAt: Date;
|
186
50
|
updatedAt: Date;
|
187
51
|
deletedAt: Date | null;
|
188
|
-
categories: {
|
189
|
-
id: string;
|
190
|
-
value: string;
|
191
|
-
createdAt: Date;
|
192
|
-
updatedAt: Date;
|
193
|
-
deletedAt: Date | null;
|
194
|
-
level: 2 | 1 | 3;
|
195
|
-
parentId: string | null;
|
196
|
-
childCategoryList: {
|
197
|
-
id: string;
|
198
|
-
value: string;
|
199
|
-
level: 2 | 1 | 3;
|
200
|
-
parentId: string | null;
|
201
|
-
childCategoryList: {
|
202
|
-
id: string;
|
203
|
-
value: string;
|
204
|
-
level: 2 | 1 | 3;
|
205
|
-
parentId: string | null;
|
206
|
-
childCategoryList: any[];
|
207
|
-
}[];
|
208
|
-
}[];
|
209
|
-
}[];
|
210
52
|
tags: {
|
211
53
|
id: string;
|
212
54
|
name: string;
|
@@ -217,47 +59,12 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
217
59
|
callFrom: string | null;
|
218
60
|
callTo: string | null;
|
219
61
|
note: string | null;
|
220
|
-
customFields?: {
|
221
|
-
id: string;
|
222
|
-
createdAt: Date;
|
223
|
-
updatedAt: Date;
|
224
|
-
deletedAt: Date | null;
|
225
|
-
entityId: string;
|
226
|
-
attributeId: string;
|
227
|
-
textValue: string | null;
|
228
|
-
booleanValue: boolean | null;
|
229
|
-
numberValue: number | null;
|
230
|
-
dateValue: Date | null;
|
231
|
-
}[] | null | undefined;
|
232
62
|
}, {
|
233
|
-
type: string;
|
234
63
|
id: string;
|
235
64
|
disposition: string | null;
|
236
65
|
createdAt: Date;
|
237
66
|
updatedAt: Date;
|
238
67
|
deletedAt: Date | null;
|
239
|
-
categories: {
|
240
|
-
id: string;
|
241
|
-
value: string;
|
242
|
-
createdAt: Date;
|
243
|
-
updatedAt: Date;
|
244
|
-
deletedAt: Date | null;
|
245
|
-
level: 2 | 1 | 3;
|
246
|
-
parentId: string | null;
|
247
|
-
childCategoryList: {
|
248
|
-
id: string;
|
249
|
-
value: string;
|
250
|
-
level: 2 | 1 | 3;
|
251
|
-
parentId: string | null;
|
252
|
-
childCategoryList: {
|
253
|
-
id: string;
|
254
|
-
value: string;
|
255
|
-
level: 2 | 1 | 3;
|
256
|
-
parentId: string | null;
|
257
|
-
childCategoryList: any[];
|
258
|
-
}[];
|
259
|
-
}[];
|
260
|
-
}[];
|
261
68
|
tags: {
|
262
69
|
id: string;
|
263
70
|
name: string;
|
@@ -268,18 +75,6 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
268
75
|
callFrom: string | null;
|
269
76
|
callTo: string | null;
|
270
77
|
note: string | null;
|
271
|
-
customFields?: {
|
272
|
-
id: string;
|
273
|
-
createdAt: Date;
|
274
|
-
updatedAt: Date;
|
275
|
-
deletedAt: Date | null;
|
276
|
-
entityId: string;
|
277
|
-
attributeId: string;
|
278
|
-
textValue: string | null;
|
279
|
-
booleanValue: boolean | null;
|
280
|
-
numberValue: number | null;
|
281
|
-
dateValue: Date | null;
|
282
|
-
}[] | null | undefined;
|
283
78
|
}>>;
|
284
79
|
}, "strip", z.ZodTypeAny, {
|
285
80
|
id: string;
|
@@ -298,34 +93,11 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
298
93
|
handledTime: number | null;
|
299
94
|
firstResponseTime: number | null;
|
300
95
|
wrapUpForm: {
|
301
|
-
type: string;
|
302
96
|
id: string;
|
303
97
|
disposition: string | null;
|
304
98
|
createdAt: Date;
|
305
99
|
updatedAt: Date;
|
306
100
|
deletedAt: Date | null;
|
307
|
-
categories: {
|
308
|
-
id: string;
|
309
|
-
value: string;
|
310
|
-
createdAt: Date;
|
311
|
-
updatedAt: Date;
|
312
|
-
deletedAt: Date | null;
|
313
|
-
level: 2 | 1 | 3;
|
314
|
-
parentId: string | null;
|
315
|
-
childCategoryList: {
|
316
|
-
id: string;
|
317
|
-
value: string;
|
318
|
-
level: 2 | 1 | 3;
|
319
|
-
parentId: string | null;
|
320
|
-
childCategoryList: {
|
321
|
-
id: string;
|
322
|
-
value: string;
|
323
|
-
level: 2 | 1 | 3;
|
324
|
-
parentId: string | null;
|
325
|
-
childCategoryList: any[];
|
326
|
-
}[];
|
327
|
-
}[];
|
328
|
-
}[];
|
329
101
|
tags: {
|
330
102
|
id: string;
|
331
103
|
name: string;
|
@@ -336,18 +108,6 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
336
108
|
callFrom: string | null;
|
337
109
|
callTo: string | null;
|
338
110
|
note: string | null;
|
339
|
-
customFields?: {
|
340
|
-
id: string;
|
341
|
-
createdAt: Date;
|
342
|
-
updatedAt: Date;
|
343
|
-
deletedAt: Date | null;
|
344
|
-
entityId: string;
|
345
|
-
attributeId: string;
|
346
|
-
textValue: string | null;
|
347
|
-
booleanValue: boolean | null;
|
348
|
-
numberValue: number | null;
|
349
|
-
dateValue: Date | null;
|
350
|
-
}[] | null | undefined;
|
351
111
|
} | null;
|
352
112
|
}, {
|
353
113
|
id: string;
|
@@ -366,34 +126,11 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
366
126
|
handledTime: number | null;
|
367
127
|
firstResponseTime: number | null;
|
368
128
|
wrapUpForm: {
|
369
|
-
type: string;
|
370
129
|
id: string;
|
371
130
|
disposition: string | null;
|
372
131
|
createdAt: Date;
|
373
132
|
updatedAt: Date;
|
374
133
|
deletedAt: Date | null;
|
375
|
-
categories: {
|
376
|
-
id: string;
|
377
|
-
value: string;
|
378
|
-
createdAt: Date;
|
379
|
-
updatedAt: Date;
|
380
|
-
deletedAt: Date | null;
|
381
|
-
level: 2 | 1 | 3;
|
382
|
-
parentId: string | null;
|
383
|
-
childCategoryList: {
|
384
|
-
id: string;
|
385
|
-
value: string;
|
386
|
-
level: 2 | 1 | 3;
|
387
|
-
parentId: string | null;
|
388
|
-
childCategoryList: {
|
389
|
-
id: string;
|
390
|
-
value: string;
|
391
|
-
level: 2 | 1 | 3;
|
392
|
-
parentId: string | null;
|
393
|
-
childCategoryList: any[];
|
394
|
-
}[];
|
395
|
-
}[];
|
396
|
-
}[];
|
397
134
|
tags: {
|
398
135
|
id: string;
|
399
136
|
name: string;
|
@@ -404,18 +141,6 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
404
141
|
callFrom: string | null;
|
405
142
|
callTo: string | null;
|
406
143
|
note: string | null;
|
407
|
-
customFields?: {
|
408
|
-
id: string;
|
409
|
-
createdAt: Date;
|
410
|
-
updatedAt: Date;
|
411
|
-
deletedAt: Date | null;
|
412
|
-
entityId: string;
|
413
|
-
attributeId: string;
|
414
|
-
textValue: string | null;
|
415
|
-
booleanValue: boolean | null;
|
416
|
-
numberValue: number | null;
|
417
|
-
dateValue: Date | null;
|
418
|
-
}[] | null | undefined;
|
419
144
|
} | null;
|
420
145
|
}>;
|
421
146
|
export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
@@ -469,7 +194,8 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
469
194
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
470
195
|
note: z.ZodNullable<z.ZodString>;
|
471
196
|
disposition: z.ZodNullable<z.ZodString>;
|
472
|
-
|
197
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
198
|
+
callTo: z.ZodNullable<z.ZodString>;
|
473
199
|
tags: z.ZodArray<z.ZodObject<{
|
474
200
|
id: z.ZodString;
|
475
201
|
createdAt: z.ZodDate;
|
@@ -489,171 +215,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
489
215
|
updatedAt: Date;
|
490
216
|
deletedAt: Date | null;
|
491
217
|
}>, "many">;
|
492
|
-
categories: z.ZodArray<z.ZodObject<{
|
493
|
-
id: z.ZodString;
|
494
|
-
createdAt: z.ZodDate;
|
495
|
-
updatedAt: z.ZodDate;
|
496
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
497
|
-
value: z.ZodString;
|
498
|
-
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
499
|
-
parentId: z.ZodNullable<z.ZodString>;
|
500
|
-
childCategoryList: z.ZodArray<z.ZodObject<{
|
501
|
-
id: z.ZodString;
|
502
|
-
value: z.ZodString;
|
503
|
-
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
504
|
-
parentId: z.ZodNullable<z.ZodString>;
|
505
|
-
childCategoryList: z.ZodArray<z.ZodObject<{
|
506
|
-
id: z.ZodString;
|
507
|
-
value: z.ZodString;
|
508
|
-
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
509
|
-
parentId: z.ZodNullable<z.ZodString>;
|
510
|
-
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
511
|
-
}, "strip", z.ZodTypeAny, {
|
512
|
-
id: string;
|
513
|
-
value: string;
|
514
|
-
level: 2 | 1 | 3;
|
515
|
-
parentId: string | null;
|
516
|
-
childCategoryList: any[];
|
517
|
-
}, {
|
518
|
-
id: string;
|
519
|
-
value: string;
|
520
|
-
level: 2 | 1 | 3;
|
521
|
-
parentId: string | null;
|
522
|
-
childCategoryList: any[];
|
523
|
-
}>, "many">;
|
524
|
-
}, "strip", z.ZodTypeAny, {
|
525
|
-
id: string;
|
526
|
-
value: string;
|
527
|
-
level: 2 | 1 | 3;
|
528
|
-
parentId: string | null;
|
529
|
-
childCategoryList: {
|
530
|
-
id: string;
|
531
|
-
value: string;
|
532
|
-
level: 2 | 1 | 3;
|
533
|
-
parentId: string | null;
|
534
|
-
childCategoryList: any[];
|
535
|
-
}[];
|
536
|
-
}, {
|
537
|
-
id: string;
|
538
|
-
value: string;
|
539
|
-
level: 2 | 1 | 3;
|
540
|
-
parentId: string | null;
|
541
|
-
childCategoryList: {
|
542
|
-
id: string;
|
543
|
-
value: string;
|
544
|
-
level: 2 | 1 | 3;
|
545
|
-
parentId: string | null;
|
546
|
-
childCategoryList: any[];
|
547
|
-
}[];
|
548
|
-
}>, "many">;
|
549
|
-
}, "strip", z.ZodTypeAny, {
|
550
|
-
id: string;
|
551
|
-
value: string;
|
552
|
-
createdAt: Date;
|
553
|
-
updatedAt: Date;
|
554
|
-
deletedAt: Date | null;
|
555
|
-
level: 2 | 1 | 3;
|
556
|
-
parentId: string | null;
|
557
|
-
childCategoryList: {
|
558
|
-
id: string;
|
559
|
-
value: string;
|
560
|
-
level: 2 | 1 | 3;
|
561
|
-
parentId: string | null;
|
562
|
-
childCategoryList: {
|
563
|
-
id: string;
|
564
|
-
value: string;
|
565
|
-
level: 2 | 1 | 3;
|
566
|
-
parentId: string | null;
|
567
|
-
childCategoryList: any[];
|
568
|
-
}[];
|
569
|
-
}[];
|
570
|
-
}, {
|
571
|
-
id: string;
|
572
|
-
value: string;
|
573
|
-
createdAt: Date;
|
574
|
-
updatedAt: Date;
|
575
|
-
deletedAt: Date | null;
|
576
|
-
level: 2 | 1 | 3;
|
577
|
-
parentId: string | null;
|
578
|
-
childCategoryList: {
|
579
|
-
id: string;
|
580
|
-
value: string;
|
581
|
-
level: 2 | 1 | 3;
|
582
|
-
parentId: string | null;
|
583
|
-
childCategoryList: {
|
584
|
-
id: string;
|
585
|
-
value: string;
|
586
|
-
level: 2 | 1 | 3;
|
587
|
-
parentId: string | null;
|
588
|
-
childCategoryList: any[];
|
589
|
-
}[];
|
590
|
-
}[];
|
591
|
-
}>, "many">;
|
592
|
-
callFrom: z.ZodNullable<z.ZodString>;
|
593
|
-
callTo: z.ZodNullable<z.ZodString>;
|
594
|
-
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
595
|
-
id: z.ZodString;
|
596
|
-
createdAt: z.ZodDate;
|
597
|
-
updatedAt: z.ZodDate;
|
598
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
599
|
-
textValue: z.ZodNullable<z.ZodString>;
|
600
|
-
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
601
|
-
numberValue: z.ZodNullable<z.ZodNumber>;
|
602
|
-
dateValue: z.ZodNullable<z.ZodDate>;
|
603
|
-
entityId: z.ZodString;
|
604
|
-
attributeId: z.ZodString;
|
605
|
-
}, "strip", z.ZodTypeAny, {
|
606
|
-
id: string;
|
607
|
-
createdAt: Date;
|
608
|
-
updatedAt: Date;
|
609
|
-
deletedAt: Date | null;
|
610
|
-
entityId: string;
|
611
|
-
attributeId: string;
|
612
|
-
textValue: string | null;
|
613
|
-
booleanValue: boolean | null;
|
614
|
-
numberValue: number | null;
|
615
|
-
dateValue: Date | null;
|
616
|
-
}, {
|
617
|
-
id: string;
|
618
|
-
createdAt: Date;
|
619
|
-
updatedAt: Date;
|
620
|
-
deletedAt: Date | null;
|
621
|
-
entityId: string;
|
622
|
-
attributeId: string;
|
623
|
-
textValue: string | null;
|
624
|
-
booleanValue: boolean | null;
|
625
|
-
numberValue: number | null;
|
626
|
-
dateValue: Date | null;
|
627
|
-
}>, "many">>>;
|
628
218
|
}, "strip", z.ZodTypeAny, {
|
629
|
-
type: string;
|
630
219
|
id: string;
|
631
220
|
disposition: string | null;
|
632
221
|
createdAt: Date;
|
633
222
|
updatedAt: Date;
|
634
223
|
deletedAt: Date | null;
|
635
|
-
categories: {
|
636
|
-
id: string;
|
637
|
-
value: string;
|
638
|
-
createdAt: Date;
|
639
|
-
updatedAt: Date;
|
640
|
-
deletedAt: Date | null;
|
641
|
-
level: 2 | 1 | 3;
|
642
|
-
parentId: string | null;
|
643
|
-
childCategoryList: {
|
644
|
-
id: string;
|
645
|
-
value: string;
|
646
|
-
level: 2 | 1 | 3;
|
647
|
-
parentId: string | null;
|
648
|
-
childCategoryList: {
|
649
|
-
id: string;
|
650
|
-
value: string;
|
651
|
-
level: 2 | 1 | 3;
|
652
|
-
parentId: string | null;
|
653
|
-
childCategoryList: any[];
|
654
|
-
}[];
|
655
|
-
}[];
|
656
|
-
}[];
|
657
224
|
tags: {
|
658
225
|
id: string;
|
659
226
|
name: string;
|
@@ -664,47 +231,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
664
231
|
callFrom: string | null;
|
665
232
|
callTo: string | null;
|
666
233
|
note: string | null;
|
667
|
-
customFields?: {
|
668
|
-
id: string;
|
669
|
-
createdAt: Date;
|
670
|
-
updatedAt: Date;
|
671
|
-
deletedAt: Date | null;
|
672
|
-
entityId: string;
|
673
|
-
attributeId: string;
|
674
|
-
textValue: string | null;
|
675
|
-
booleanValue: boolean | null;
|
676
|
-
numberValue: number | null;
|
677
|
-
dateValue: Date | null;
|
678
|
-
}[] | null | undefined;
|
679
234
|
}, {
|
680
|
-
type: string;
|
681
235
|
id: string;
|
682
236
|
disposition: string | null;
|
683
237
|
createdAt: Date;
|
684
238
|
updatedAt: Date;
|
685
239
|
deletedAt: Date | null;
|
686
|
-
categories: {
|
687
|
-
id: string;
|
688
|
-
value: string;
|
689
|
-
createdAt: Date;
|
690
|
-
updatedAt: Date;
|
691
|
-
deletedAt: Date | null;
|
692
|
-
level: 2 | 1 | 3;
|
693
|
-
parentId: string | null;
|
694
|
-
childCategoryList: {
|
695
|
-
id: string;
|
696
|
-
value: string;
|
697
|
-
level: 2 | 1 | 3;
|
698
|
-
parentId: string | null;
|
699
|
-
childCategoryList: {
|
700
|
-
id: string;
|
701
|
-
value: string;
|
702
|
-
level: 2 | 1 | 3;
|
703
|
-
parentId: string | null;
|
704
|
-
childCategoryList: any[];
|
705
|
-
}[];
|
706
|
-
}[];
|
707
|
-
}[];
|
708
240
|
tags: {
|
709
241
|
id: string;
|
710
242
|
name: string;
|
@@ -715,18 +247,6 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
715
247
|
callFrom: string | null;
|
716
248
|
callTo: string | null;
|
717
249
|
note: string | null;
|
718
|
-
customFields?: {
|
719
|
-
id: string;
|
720
|
-
createdAt: Date;
|
721
|
-
updatedAt: Date;
|
722
|
-
deletedAt: Date | null;
|
723
|
-
entityId: string;
|
724
|
-
attributeId: string;
|
725
|
-
textValue: string | null;
|
726
|
-
booleanValue: boolean | null;
|
727
|
-
numberValue: number | null;
|
728
|
-
dateValue: Date | null;
|
729
|
-
}[] | null | undefined;
|
730
250
|
}>>;
|
731
251
|
room: z.ZodNullable<z.ZodObject<{
|
732
252
|
id: z.ZodString;
|
@@ -6147,34 +5667,11 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6147
5667
|
handledTime: string | null;
|
6148
5668
|
firstResponseTime: string | null;
|
6149
5669
|
wrapUpForm: {
|
6150
|
-
type: string;
|
6151
5670
|
id: string;
|
6152
5671
|
disposition: string | null;
|
6153
5672
|
createdAt: Date;
|
6154
5673
|
updatedAt: Date;
|
6155
5674
|
deletedAt: Date | null;
|
6156
|
-
categories: {
|
6157
|
-
id: string;
|
6158
|
-
value: string;
|
6159
|
-
createdAt: Date;
|
6160
|
-
updatedAt: Date;
|
6161
|
-
deletedAt: Date | null;
|
6162
|
-
level: 2 | 1 | 3;
|
6163
|
-
parentId: string | null;
|
6164
|
-
childCategoryList: {
|
6165
|
-
id: string;
|
6166
|
-
value: string;
|
6167
|
-
level: 2 | 1 | 3;
|
6168
|
-
parentId: string | null;
|
6169
|
-
childCategoryList: {
|
6170
|
-
id: string;
|
6171
|
-
value: string;
|
6172
|
-
level: 2 | 1 | 3;
|
6173
|
-
parentId: string | null;
|
6174
|
-
childCategoryList: any[];
|
6175
|
-
}[];
|
6176
|
-
}[];
|
6177
|
-
}[];
|
6178
5675
|
tags: {
|
6179
5676
|
id: string;
|
6180
5677
|
name: string;
|
@@ -6185,18 +5682,6 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6185
5682
|
callFrom: string | null;
|
6186
5683
|
callTo: string | null;
|
6187
5684
|
note: string | null;
|
6188
|
-
customFields?: {
|
6189
|
-
id: string;
|
6190
|
-
createdAt: Date;
|
6191
|
-
updatedAt: Date;
|
6192
|
-
deletedAt: Date | null;
|
6193
|
-
entityId: string;
|
6194
|
-
attributeId: string;
|
6195
|
-
textValue: string | null;
|
6196
|
-
booleanValue: boolean | null;
|
6197
|
-
numberValue: number | null;
|
6198
|
-
dateValue: Date | null;
|
6199
|
-
}[] | null | undefined;
|
6200
5685
|
} | null;
|
6201
5686
|
customerPhone: string | null;
|
6202
5687
|
channelType: string | null;
|
@@ -6907,34 +6392,11 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6907
6392
|
handledTime: string | null;
|
6908
6393
|
firstResponseTime: string | null;
|
6909
6394
|
wrapUpForm: {
|
6910
|
-
type: string;
|
6911
6395
|
id: string;
|
6912
6396
|
disposition: string | null;
|
6913
6397
|
createdAt: Date;
|
6914
6398
|
updatedAt: Date;
|
6915
6399
|
deletedAt: Date | null;
|
6916
|
-
categories: {
|
6917
|
-
id: string;
|
6918
|
-
value: string;
|
6919
|
-
createdAt: Date;
|
6920
|
-
updatedAt: Date;
|
6921
|
-
deletedAt: Date | null;
|
6922
|
-
level: 2 | 1 | 3;
|
6923
|
-
parentId: string | null;
|
6924
|
-
childCategoryList: {
|
6925
|
-
id: string;
|
6926
|
-
value: string;
|
6927
|
-
level: 2 | 1 | 3;
|
6928
|
-
parentId: string | null;
|
6929
|
-
childCategoryList: {
|
6930
|
-
id: string;
|
6931
|
-
value: string;
|
6932
|
-
level: 2 | 1 | 3;
|
6933
|
-
parentId: string | null;
|
6934
|
-
childCategoryList: any[];
|
6935
|
-
}[];
|
6936
|
-
}[];
|
6937
|
-
}[];
|
6938
6400
|
tags: {
|
6939
6401
|
id: string;
|
6940
6402
|
name: string;
|
@@ -6945,18 +6407,6 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6945
6407
|
callFrom: string | null;
|
6946
6408
|
callTo: string | null;
|
6947
6409
|
note: string | null;
|
6948
|
-
customFields?: {
|
6949
|
-
id: string;
|
6950
|
-
createdAt: Date;
|
6951
|
-
updatedAt: Date;
|
6952
|
-
deletedAt: Date | null;
|
6953
|
-
entityId: string;
|
6954
|
-
attributeId: string;
|
6955
|
-
textValue: string | null;
|
6956
|
-
booleanValue: boolean | null;
|
6957
|
-
numberValue: number | null;
|
6958
|
-
dateValue: Date | null;
|
6959
|
-
}[] | null | undefined;
|
6960
6410
|
} | null;
|
6961
6411
|
customerPhone: string | null;
|
6962
6412
|
channelType: string | null;
|