@kl1/contracts 1.1.24-uat → 1.1.26-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +14 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -3
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +3341 -22
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +528 -4
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +666 -4
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +6481 -44
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +241 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +390 -4
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +333 -2
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +333 -2
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +861 -6
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +861 -6
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +287 -2
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +241 -2
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +333 -2
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +333 -2
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +333 -2
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +706 -6
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +149 -2
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +29 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -22,8 +22,7 @@ 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
|
-
|
26
|
-
callTo: z.ZodNullable<z.ZodString>;
|
25
|
+
type: z.ZodString;
|
27
26
|
tags: z.ZodArray<z.ZodObject<{
|
28
27
|
id: z.ZodString;
|
29
28
|
createdAt: z.ZodDate;
|
@@ -43,12 +42,137 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
43
42
|
updatedAt: Date;
|
44
43
|
deletedAt: Date | null;
|
45
44
|
}>, "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>;
|
46
147
|
}, "strip", z.ZodTypeAny, {
|
148
|
+
type: string;
|
47
149
|
id: string;
|
48
150
|
disposition: string | null;
|
49
151
|
createdAt: Date;
|
50
152
|
updatedAt: Date;
|
51
153
|
deletedAt: Date | null;
|
154
|
+
categories: {
|
155
|
+
id: string;
|
156
|
+
value: string;
|
157
|
+
createdAt: Date;
|
158
|
+
updatedAt: Date;
|
159
|
+
deletedAt: Date | null;
|
160
|
+
level: 2 | 1 | 3;
|
161
|
+
parentId: string | null;
|
162
|
+
childCategoryList: {
|
163
|
+
id: string;
|
164
|
+
value: string;
|
165
|
+
level: 2 | 1 | 3;
|
166
|
+
parentId: string | null;
|
167
|
+
childCategoryList: {
|
168
|
+
id: string;
|
169
|
+
value: string;
|
170
|
+
level: 2 | 1 | 3;
|
171
|
+
parentId: string | null;
|
172
|
+
childCategoryList: any[];
|
173
|
+
}[];
|
174
|
+
}[];
|
175
|
+
}[];
|
52
176
|
tags: {
|
53
177
|
id: string;
|
54
178
|
name: string;
|
@@ -60,11 +184,34 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
60
184
|
callTo: string | null;
|
61
185
|
note: string | null;
|
62
186
|
}, {
|
187
|
+
type: string;
|
63
188
|
id: string;
|
64
189
|
disposition: string | null;
|
65
190
|
createdAt: Date;
|
66
191
|
updatedAt: Date;
|
67
192
|
deletedAt: Date | null;
|
193
|
+
categories: {
|
194
|
+
id: string;
|
195
|
+
value: string;
|
196
|
+
createdAt: Date;
|
197
|
+
updatedAt: Date;
|
198
|
+
deletedAt: Date | null;
|
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: {
|
207
|
+
id: string;
|
208
|
+
value: string;
|
209
|
+
level: 2 | 1 | 3;
|
210
|
+
parentId: string | null;
|
211
|
+
childCategoryList: any[];
|
212
|
+
}[];
|
213
|
+
}[];
|
214
|
+
}[];
|
68
215
|
tags: {
|
69
216
|
id: string;
|
70
217
|
name: string;
|
@@ -93,11 +240,34 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
93
240
|
handledTime: number | null;
|
94
241
|
firstResponseTime: number | null;
|
95
242
|
wrapUpForm: {
|
243
|
+
type: string;
|
96
244
|
id: string;
|
97
245
|
disposition: string | null;
|
98
246
|
createdAt: Date;
|
99
247
|
updatedAt: Date;
|
100
248
|
deletedAt: Date | null;
|
249
|
+
categories: {
|
250
|
+
id: string;
|
251
|
+
value: string;
|
252
|
+
createdAt: Date;
|
253
|
+
updatedAt: Date;
|
254
|
+
deletedAt: Date | null;
|
255
|
+
level: 2 | 1 | 3;
|
256
|
+
parentId: string | null;
|
257
|
+
childCategoryList: {
|
258
|
+
id: string;
|
259
|
+
value: string;
|
260
|
+
level: 2 | 1 | 3;
|
261
|
+
parentId: string | null;
|
262
|
+
childCategoryList: {
|
263
|
+
id: string;
|
264
|
+
value: string;
|
265
|
+
level: 2 | 1 | 3;
|
266
|
+
parentId: string | null;
|
267
|
+
childCategoryList: any[];
|
268
|
+
}[];
|
269
|
+
}[];
|
270
|
+
}[];
|
101
271
|
tags: {
|
102
272
|
id: string;
|
103
273
|
name: string;
|
@@ -126,11 +296,34 @@ export declare const CxLogSchema: z.ZodObject<{
|
|
126
296
|
handledTime: number | null;
|
127
297
|
firstResponseTime: number | null;
|
128
298
|
wrapUpForm: {
|
299
|
+
type: string;
|
129
300
|
id: string;
|
130
301
|
disposition: string | null;
|
131
302
|
createdAt: Date;
|
132
303
|
updatedAt: Date;
|
133
304
|
deletedAt: Date | null;
|
305
|
+
categories: {
|
306
|
+
id: string;
|
307
|
+
value: string;
|
308
|
+
createdAt: Date;
|
309
|
+
updatedAt: Date;
|
310
|
+
deletedAt: Date | null;
|
311
|
+
level: 2 | 1 | 3;
|
312
|
+
parentId: string | null;
|
313
|
+
childCategoryList: {
|
314
|
+
id: string;
|
315
|
+
value: string;
|
316
|
+
level: 2 | 1 | 3;
|
317
|
+
parentId: string | null;
|
318
|
+
childCategoryList: {
|
319
|
+
id: string;
|
320
|
+
value: string;
|
321
|
+
level: 2 | 1 | 3;
|
322
|
+
parentId: string | null;
|
323
|
+
childCategoryList: any[];
|
324
|
+
}[];
|
325
|
+
}[];
|
326
|
+
}[];
|
134
327
|
tags: {
|
135
328
|
id: string;
|
136
329
|
name: string;
|
@@ -194,8 +387,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
194
387
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
195
388
|
note: z.ZodNullable<z.ZodString>;
|
196
389
|
disposition: z.ZodNullable<z.ZodString>;
|
197
|
-
|
198
|
-
callTo: z.ZodNullable<z.ZodString>;
|
390
|
+
type: z.ZodString;
|
199
391
|
tags: z.ZodArray<z.ZodObject<{
|
200
392
|
id: z.ZodString;
|
201
393
|
createdAt: z.ZodDate;
|
@@ -215,12 +407,137 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
215
407
|
updatedAt: Date;
|
216
408
|
deletedAt: Date | null;
|
217
409
|
}>, "many">;
|
410
|
+
categories: z.ZodArray<z.ZodObject<{
|
411
|
+
id: z.ZodString;
|
412
|
+
createdAt: z.ZodDate;
|
413
|
+
updatedAt: z.ZodDate;
|
414
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
415
|
+
value: z.ZodString;
|
416
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
417
|
+
parentId: z.ZodNullable<z.ZodString>;
|
418
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
419
|
+
id: z.ZodString;
|
420
|
+
value: z.ZodString;
|
421
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
422
|
+
parentId: z.ZodNullable<z.ZodString>;
|
423
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
424
|
+
id: z.ZodString;
|
425
|
+
value: z.ZodString;
|
426
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
427
|
+
parentId: z.ZodNullable<z.ZodString>;
|
428
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
429
|
+
}, "strip", z.ZodTypeAny, {
|
430
|
+
id: string;
|
431
|
+
value: string;
|
432
|
+
level: 2 | 1 | 3;
|
433
|
+
parentId: string | null;
|
434
|
+
childCategoryList: any[];
|
435
|
+
}, {
|
436
|
+
id: string;
|
437
|
+
value: string;
|
438
|
+
level: 2 | 1 | 3;
|
439
|
+
parentId: string | null;
|
440
|
+
childCategoryList: any[];
|
441
|
+
}>, "many">;
|
442
|
+
}, "strip", z.ZodTypeAny, {
|
443
|
+
id: string;
|
444
|
+
value: string;
|
445
|
+
level: 2 | 1 | 3;
|
446
|
+
parentId: string | null;
|
447
|
+
childCategoryList: {
|
448
|
+
id: string;
|
449
|
+
value: string;
|
450
|
+
level: 2 | 1 | 3;
|
451
|
+
parentId: string | null;
|
452
|
+
childCategoryList: any[];
|
453
|
+
}[];
|
454
|
+
}, {
|
455
|
+
id: string;
|
456
|
+
value: string;
|
457
|
+
level: 2 | 1 | 3;
|
458
|
+
parentId: string | null;
|
459
|
+
childCategoryList: {
|
460
|
+
id: string;
|
461
|
+
value: string;
|
462
|
+
level: 2 | 1 | 3;
|
463
|
+
parentId: string | null;
|
464
|
+
childCategoryList: any[];
|
465
|
+
}[];
|
466
|
+
}>, "many">;
|
467
|
+
}, "strip", z.ZodTypeAny, {
|
468
|
+
id: string;
|
469
|
+
value: string;
|
470
|
+
createdAt: Date;
|
471
|
+
updatedAt: Date;
|
472
|
+
deletedAt: Date | null;
|
473
|
+
level: 2 | 1 | 3;
|
474
|
+
parentId: string | null;
|
475
|
+
childCategoryList: {
|
476
|
+
id: string;
|
477
|
+
value: string;
|
478
|
+
level: 2 | 1 | 3;
|
479
|
+
parentId: string | null;
|
480
|
+
childCategoryList: {
|
481
|
+
id: string;
|
482
|
+
value: string;
|
483
|
+
level: 2 | 1 | 3;
|
484
|
+
parentId: string | null;
|
485
|
+
childCategoryList: any[];
|
486
|
+
}[];
|
487
|
+
}[];
|
488
|
+
}, {
|
489
|
+
id: string;
|
490
|
+
value: string;
|
491
|
+
createdAt: Date;
|
492
|
+
updatedAt: Date;
|
493
|
+
deletedAt: Date | null;
|
494
|
+
level: 2 | 1 | 3;
|
495
|
+
parentId: string | null;
|
496
|
+
childCategoryList: {
|
497
|
+
id: string;
|
498
|
+
value: string;
|
499
|
+
level: 2 | 1 | 3;
|
500
|
+
parentId: string | null;
|
501
|
+
childCategoryList: {
|
502
|
+
id: string;
|
503
|
+
value: string;
|
504
|
+
level: 2 | 1 | 3;
|
505
|
+
parentId: string | null;
|
506
|
+
childCategoryList: any[];
|
507
|
+
}[];
|
508
|
+
}[];
|
509
|
+
}>, "many">;
|
510
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
511
|
+
callTo: z.ZodNullable<z.ZodString>;
|
218
512
|
}, "strip", z.ZodTypeAny, {
|
513
|
+
type: string;
|
219
514
|
id: string;
|
220
515
|
disposition: string | null;
|
221
516
|
createdAt: Date;
|
222
517
|
updatedAt: Date;
|
223
518
|
deletedAt: Date | null;
|
519
|
+
categories: {
|
520
|
+
id: string;
|
521
|
+
value: string;
|
522
|
+
createdAt: Date;
|
523
|
+
updatedAt: Date;
|
524
|
+
deletedAt: Date | null;
|
525
|
+
level: 2 | 1 | 3;
|
526
|
+
parentId: string | null;
|
527
|
+
childCategoryList: {
|
528
|
+
id: string;
|
529
|
+
value: string;
|
530
|
+
level: 2 | 1 | 3;
|
531
|
+
parentId: string | null;
|
532
|
+
childCategoryList: {
|
533
|
+
id: string;
|
534
|
+
value: string;
|
535
|
+
level: 2 | 1 | 3;
|
536
|
+
parentId: string | null;
|
537
|
+
childCategoryList: any[];
|
538
|
+
}[];
|
539
|
+
}[];
|
540
|
+
}[];
|
224
541
|
tags: {
|
225
542
|
id: string;
|
226
543
|
name: string;
|
@@ -232,11 +549,34 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
232
549
|
callTo: string | null;
|
233
550
|
note: string | null;
|
234
551
|
}, {
|
552
|
+
type: string;
|
235
553
|
id: string;
|
236
554
|
disposition: string | null;
|
237
555
|
createdAt: Date;
|
238
556
|
updatedAt: Date;
|
239
557
|
deletedAt: Date | null;
|
558
|
+
categories: {
|
559
|
+
id: string;
|
560
|
+
value: string;
|
561
|
+
createdAt: Date;
|
562
|
+
updatedAt: Date;
|
563
|
+
deletedAt: Date | null;
|
564
|
+
level: 2 | 1 | 3;
|
565
|
+
parentId: string | null;
|
566
|
+
childCategoryList: {
|
567
|
+
id: string;
|
568
|
+
value: string;
|
569
|
+
level: 2 | 1 | 3;
|
570
|
+
parentId: string | null;
|
571
|
+
childCategoryList: {
|
572
|
+
id: string;
|
573
|
+
value: string;
|
574
|
+
level: 2 | 1 | 3;
|
575
|
+
parentId: string | null;
|
576
|
+
childCategoryList: any[];
|
577
|
+
}[];
|
578
|
+
}[];
|
579
|
+
}[];
|
240
580
|
tags: {
|
241
581
|
id: string;
|
242
582
|
name: string;
|
@@ -5667,11 +6007,34 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5667
6007
|
handledTime: string | null;
|
5668
6008
|
firstResponseTime: string | null;
|
5669
6009
|
wrapUpForm: {
|
6010
|
+
type: string;
|
5670
6011
|
id: string;
|
5671
6012
|
disposition: string | null;
|
5672
6013
|
createdAt: Date;
|
5673
6014
|
updatedAt: Date;
|
5674
6015
|
deletedAt: Date | null;
|
6016
|
+
categories: {
|
6017
|
+
id: string;
|
6018
|
+
value: string;
|
6019
|
+
createdAt: Date;
|
6020
|
+
updatedAt: Date;
|
6021
|
+
deletedAt: Date | null;
|
6022
|
+
level: 2 | 1 | 3;
|
6023
|
+
parentId: string | null;
|
6024
|
+
childCategoryList: {
|
6025
|
+
id: string;
|
6026
|
+
value: string;
|
6027
|
+
level: 2 | 1 | 3;
|
6028
|
+
parentId: string | null;
|
6029
|
+
childCategoryList: {
|
6030
|
+
id: string;
|
6031
|
+
value: string;
|
6032
|
+
level: 2 | 1 | 3;
|
6033
|
+
parentId: string | null;
|
6034
|
+
childCategoryList: any[];
|
6035
|
+
}[];
|
6036
|
+
}[];
|
6037
|
+
}[];
|
5675
6038
|
tags: {
|
5676
6039
|
id: string;
|
5677
6040
|
name: string;
|
@@ -6392,11 +6755,34 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6392
6755
|
handledTime: string | null;
|
6393
6756
|
firstResponseTime: string | null;
|
6394
6757
|
wrapUpForm: {
|
6758
|
+
type: string;
|
6395
6759
|
id: string;
|
6396
6760
|
disposition: string | null;
|
6397
6761
|
createdAt: Date;
|
6398
6762
|
updatedAt: Date;
|
6399
6763
|
deletedAt: Date | null;
|
6764
|
+
categories: {
|
6765
|
+
id: string;
|
6766
|
+
value: string;
|
6767
|
+
createdAt: Date;
|
6768
|
+
updatedAt: Date;
|
6769
|
+
deletedAt: Date | null;
|
6770
|
+
level: 2 | 1 | 3;
|
6771
|
+
parentId: string | null;
|
6772
|
+
childCategoryList: {
|
6773
|
+
id: string;
|
6774
|
+
value: string;
|
6775
|
+
level: 2 | 1 | 3;
|
6776
|
+
parentId: string | null;
|
6777
|
+
childCategoryList: {
|
6778
|
+
id: string;
|
6779
|
+
value: string;
|
6780
|
+
level: 2 | 1 | 3;
|
6781
|
+
parentId: string | null;
|
6782
|
+
childCategoryList: any[];
|
6783
|
+
}[];
|
6784
|
+
}[];
|
6785
|
+
}[];
|
6400
6786
|
tags: {
|
6401
6787
|
id: string;
|
6402
6788
|
name: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/cx-log/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAapB,eAAO,MAAM,WAAW
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/cx-log/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAapB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAatB,CAAC;AAGH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8CnC,CAAC"}
|