@kl1/contracts 1.1.22 → 1.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +579 -211
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +578 -211
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +799 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +172 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +210 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/channel/index.d.ts +725 -611
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +12 -12
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +71 -8
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +5144 -299
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +807 -47
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +1093 -118
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +26553 -6263
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +376 -31
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +577 -27
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +628 -138
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +623 -133
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/schema.d.ts.map +1 -1
- package/dist/src/line/validation.d.ts +23 -23
- package/dist/src/line/validation.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +230 -4
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +3277 -435
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +58 -1
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +3009 -450
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +731 -6
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +557 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +628 -138
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +13 -13
- package/dist/src/snippet/index.d.ts +545 -97
- package/dist/src/snippet/index.d.ts.map +1 -1
- package/dist/src/snippet/schema.d.ts +220 -19
- package/dist/src/snippet/schema.d.ts.map +1 -1
- package/dist/src/snippet/validation.d.ts +5 -5
- package/dist/src/viber/index.d.ts +592 -102
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +8506 -0
- package/dist/src/webchat/index.d.ts.map +1 -0
- package/dist/src/webchat/schema.d.ts +95 -0
- package/dist/src/webchat/schema.d.ts.map +1 -0
- package/dist/src/webchat/validation.d.ts +36 -0
- package/dist/src/webchat/validation.d.ts.map +1 -0
- package/dist/src/workflow-rule/index.d.ts +7295 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -0
- package/dist/src/workflow-rule/schema.d.ts +27 -0
- package/dist/src/workflow-rule/schema.d.ts.map +1 -0
- package/dist/src/wrap-up-form/index.d.ts +1000 -6
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +207 -2
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +29 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -33,8 +33,7 @@ export declare const wrapUpFormContract: {
|
|
33
33
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
34
34
|
note: z.ZodNullable<z.ZodString>;
|
35
35
|
disposition: z.ZodNullable<z.ZodString>;
|
36
|
-
|
37
|
-
callTo: z.ZodNullable<z.ZodString>;
|
36
|
+
type: z.ZodString;
|
38
37
|
tags: z.ZodArray<z.ZodObject<{
|
39
38
|
id: z.ZodString;
|
40
39
|
createdAt: z.ZodDate;
|
@@ -54,12 +53,171 @@ export declare const wrapUpFormContract: {
|
|
54
53
|
updatedAt: Date;
|
55
54
|
deletedAt: Date | null;
|
56
55
|
}>, "many">;
|
56
|
+
categories: z.ZodArray<z.ZodObject<{
|
57
|
+
id: z.ZodString;
|
58
|
+
createdAt: z.ZodDate;
|
59
|
+
updatedAt: z.ZodDate;
|
60
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
61
|
+
value: z.ZodString;
|
62
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
63
|
+
parentId: z.ZodNullable<z.ZodString>;
|
64
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
65
|
+
id: z.ZodString;
|
66
|
+
value: z.ZodString;
|
67
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
68
|
+
parentId: z.ZodNullable<z.ZodString>;
|
69
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
70
|
+
id: z.ZodString;
|
71
|
+
value: z.ZodString;
|
72
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
73
|
+
parentId: z.ZodNullable<z.ZodString>;
|
74
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
75
|
+
}, "strip", z.ZodTypeAny, {
|
76
|
+
id: string;
|
77
|
+
value: string;
|
78
|
+
level: 2 | 1 | 3;
|
79
|
+
parentId: string | null;
|
80
|
+
childCategoryList: any[];
|
81
|
+
}, {
|
82
|
+
id: string;
|
83
|
+
value: string;
|
84
|
+
level: 2 | 1 | 3;
|
85
|
+
parentId: string | null;
|
86
|
+
childCategoryList: any[];
|
87
|
+
}>, "many">;
|
88
|
+
}, "strip", z.ZodTypeAny, {
|
89
|
+
id: string;
|
90
|
+
value: string;
|
91
|
+
level: 2 | 1 | 3;
|
92
|
+
parentId: string | null;
|
93
|
+
childCategoryList: {
|
94
|
+
id: string;
|
95
|
+
value: string;
|
96
|
+
level: 2 | 1 | 3;
|
97
|
+
parentId: string | null;
|
98
|
+
childCategoryList: any[];
|
99
|
+
}[];
|
100
|
+
}, {
|
101
|
+
id: string;
|
102
|
+
value: string;
|
103
|
+
level: 2 | 1 | 3;
|
104
|
+
parentId: string | null;
|
105
|
+
childCategoryList: {
|
106
|
+
id: string;
|
107
|
+
value: string;
|
108
|
+
level: 2 | 1 | 3;
|
109
|
+
parentId: string | null;
|
110
|
+
childCategoryList: any[];
|
111
|
+
}[];
|
112
|
+
}>, "many">;
|
113
|
+
}, "strip", z.ZodTypeAny, {
|
114
|
+
id: string;
|
115
|
+
value: string;
|
116
|
+
createdAt: Date;
|
117
|
+
updatedAt: Date;
|
118
|
+
deletedAt: Date | null;
|
119
|
+
level: 2 | 1 | 3;
|
120
|
+
parentId: string | null;
|
121
|
+
childCategoryList: {
|
122
|
+
id: string;
|
123
|
+
value: string;
|
124
|
+
level: 2 | 1 | 3;
|
125
|
+
parentId: string | null;
|
126
|
+
childCategoryList: {
|
127
|
+
id: string;
|
128
|
+
value: string;
|
129
|
+
level: 2 | 1 | 3;
|
130
|
+
parentId: string | null;
|
131
|
+
childCategoryList: any[];
|
132
|
+
}[];
|
133
|
+
}[];
|
134
|
+
}, {
|
135
|
+
id: string;
|
136
|
+
value: string;
|
137
|
+
createdAt: Date;
|
138
|
+
updatedAt: Date;
|
139
|
+
deletedAt: Date | null;
|
140
|
+
level: 2 | 1 | 3;
|
141
|
+
parentId: string | null;
|
142
|
+
childCategoryList: {
|
143
|
+
id: string;
|
144
|
+
value: string;
|
145
|
+
level: 2 | 1 | 3;
|
146
|
+
parentId: string | null;
|
147
|
+
childCategoryList: {
|
148
|
+
id: string;
|
149
|
+
value: string;
|
150
|
+
level: 2 | 1 | 3;
|
151
|
+
parentId: string | null;
|
152
|
+
childCategoryList: any[];
|
153
|
+
}[];
|
154
|
+
}[];
|
155
|
+
}>, "many">;
|
156
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
157
|
+
callTo: z.ZodNullable<z.ZodString>;
|
158
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
159
|
+
id: z.ZodString;
|
160
|
+
createdAt: z.ZodDate;
|
161
|
+
updatedAt: z.ZodDate;
|
162
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
163
|
+
textValue: z.ZodNullable<z.ZodString>;
|
164
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
165
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
166
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
167
|
+
entityId: z.ZodString;
|
168
|
+
attributeId: z.ZodString;
|
169
|
+
}, "strip", z.ZodTypeAny, {
|
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
|
+
}, {
|
181
|
+
id: string;
|
182
|
+
createdAt: Date;
|
183
|
+
updatedAt: Date;
|
184
|
+
deletedAt: Date | null;
|
185
|
+
entityId: string;
|
186
|
+
attributeId: string;
|
187
|
+
textValue: string | null;
|
188
|
+
booleanValue: boolean | null;
|
189
|
+
numberValue: number | null;
|
190
|
+
dateValue: Date | null;
|
191
|
+
}>, "many">>>;
|
57
192
|
}, "strip", z.ZodTypeAny, {
|
193
|
+
type: string;
|
58
194
|
id: string;
|
59
195
|
disposition: string | null;
|
60
196
|
createdAt: Date;
|
61
197
|
updatedAt: Date;
|
62
198
|
deletedAt: Date | null;
|
199
|
+
categories: {
|
200
|
+
id: string;
|
201
|
+
value: string;
|
202
|
+
createdAt: Date;
|
203
|
+
updatedAt: Date;
|
204
|
+
deletedAt: Date | null;
|
205
|
+
level: 2 | 1 | 3;
|
206
|
+
parentId: string | null;
|
207
|
+
childCategoryList: {
|
208
|
+
id: string;
|
209
|
+
value: string;
|
210
|
+
level: 2 | 1 | 3;
|
211
|
+
parentId: string | null;
|
212
|
+
childCategoryList: {
|
213
|
+
id: string;
|
214
|
+
value: string;
|
215
|
+
level: 2 | 1 | 3;
|
216
|
+
parentId: string | null;
|
217
|
+
childCategoryList: any[];
|
218
|
+
}[];
|
219
|
+
}[];
|
220
|
+
}[];
|
63
221
|
tags: {
|
64
222
|
id: string;
|
65
223
|
name: string;
|
@@ -70,12 +228,47 @@ export declare const wrapUpFormContract: {
|
|
70
228
|
callFrom: string | null;
|
71
229
|
callTo: string | null;
|
72
230
|
note: string | null;
|
231
|
+
customFields?: {
|
232
|
+
id: string;
|
233
|
+
createdAt: Date;
|
234
|
+
updatedAt: Date;
|
235
|
+
deletedAt: Date | null;
|
236
|
+
entityId: string;
|
237
|
+
attributeId: string;
|
238
|
+
textValue: string | null;
|
239
|
+
booleanValue: boolean | null;
|
240
|
+
numberValue: number | null;
|
241
|
+
dateValue: Date | null;
|
242
|
+
}[] | null | undefined;
|
73
243
|
}, {
|
244
|
+
type: string;
|
74
245
|
id: string;
|
75
246
|
disposition: string | null;
|
76
247
|
createdAt: Date;
|
77
248
|
updatedAt: Date;
|
78
249
|
deletedAt: Date | null;
|
250
|
+
categories: {
|
251
|
+
id: string;
|
252
|
+
value: string;
|
253
|
+
createdAt: Date;
|
254
|
+
updatedAt: Date;
|
255
|
+
deletedAt: Date | null;
|
256
|
+
level: 2 | 1 | 3;
|
257
|
+
parentId: string | null;
|
258
|
+
childCategoryList: {
|
259
|
+
id: string;
|
260
|
+
value: string;
|
261
|
+
level: 2 | 1 | 3;
|
262
|
+
parentId: string | null;
|
263
|
+
childCategoryList: {
|
264
|
+
id: string;
|
265
|
+
value: string;
|
266
|
+
level: 2 | 1 | 3;
|
267
|
+
parentId: string | null;
|
268
|
+
childCategoryList: any[];
|
269
|
+
}[];
|
270
|
+
}[];
|
271
|
+
}[];
|
79
272
|
tags: {
|
80
273
|
id: string;
|
81
274
|
name: string;
|
@@ -86,15 +279,50 @@ export declare const wrapUpFormContract: {
|
|
86
279
|
callFrom: string | null;
|
87
280
|
callTo: string | null;
|
88
281
|
note: string | null;
|
282
|
+
customFields?: {
|
283
|
+
id: string;
|
284
|
+
createdAt: Date;
|
285
|
+
updatedAt: Date;
|
286
|
+
deletedAt: Date | null;
|
287
|
+
entityId: string;
|
288
|
+
attributeId: string;
|
289
|
+
textValue: string | null;
|
290
|
+
booleanValue: boolean | null;
|
291
|
+
numberValue: number | null;
|
292
|
+
dateValue: Date | null;
|
293
|
+
}[] | null | undefined;
|
89
294
|
}>;
|
90
295
|
}, "strip", z.ZodTypeAny, {
|
91
296
|
requestId: string;
|
92
297
|
wrapUpForm: {
|
298
|
+
type: string;
|
93
299
|
id: string;
|
94
300
|
disposition: string | null;
|
95
301
|
createdAt: Date;
|
96
302
|
updatedAt: Date;
|
97
303
|
deletedAt: Date | null;
|
304
|
+
categories: {
|
305
|
+
id: string;
|
306
|
+
value: string;
|
307
|
+
createdAt: Date;
|
308
|
+
updatedAt: Date;
|
309
|
+
deletedAt: Date | null;
|
310
|
+
level: 2 | 1 | 3;
|
311
|
+
parentId: string | null;
|
312
|
+
childCategoryList: {
|
313
|
+
id: string;
|
314
|
+
value: string;
|
315
|
+
level: 2 | 1 | 3;
|
316
|
+
parentId: string | null;
|
317
|
+
childCategoryList: {
|
318
|
+
id: string;
|
319
|
+
value: string;
|
320
|
+
level: 2 | 1 | 3;
|
321
|
+
parentId: string | null;
|
322
|
+
childCategoryList: any[];
|
323
|
+
}[];
|
324
|
+
}[];
|
325
|
+
}[];
|
98
326
|
tags: {
|
99
327
|
id: string;
|
100
328
|
name: string;
|
@@ -105,15 +333,50 @@ export declare const wrapUpFormContract: {
|
|
105
333
|
callFrom: string | null;
|
106
334
|
callTo: string | null;
|
107
335
|
note: string | null;
|
336
|
+
customFields?: {
|
337
|
+
id: string;
|
338
|
+
createdAt: Date;
|
339
|
+
updatedAt: Date;
|
340
|
+
deletedAt: Date | null;
|
341
|
+
entityId: string;
|
342
|
+
attributeId: string;
|
343
|
+
textValue: string | null;
|
344
|
+
booleanValue: boolean | null;
|
345
|
+
numberValue: number | null;
|
346
|
+
dateValue: Date | null;
|
347
|
+
}[] | null | undefined;
|
108
348
|
};
|
109
349
|
}, {
|
110
350
|
requestId: string;
|
111
351
|
wrapUpForm: {
|
352
|
+
type: string;
|
112
353
|
id: string;
|
113
354
|
disposition: string | null;
|
114
355
|
createdAt: Date;
|
115
356
|
updatedAt: Date;
|
116
357
|
deletedAt: Date | null;
|
358
|
+
categories: {
|
359
|
+
id: string;
|
360
|
+
value: string;
|
361
|
+
createdAt: Date;
|
362
|
+
updatedAt: Date;
|
363
|
+
deletedAt: Date | null;
|
364
|
+
level: 2 | 1 | 3;
|
365
|
+
parentId: string | null;
|
366
|
+
childCategoryList: {
|
367
|
+
id: string;
|
368
|
+
value: string;
|
369
|
+
level: 2 | 1 | 3;
|
370
|
+
parentId: string | null;
|
371
|
+
childCategoryList: {
|
372
|
+
id: string;
|
373
|
+
value: string;
|
374
|
+
level: 2 | 1 | 3;
|
375
|
+
parentId: string | null;
|
376
|
+
childCategoryList: any[];
|
377
|
+
}[];
|
378
|
+
}[];
|
379
|
+
}[];
|
117
380
|
tags: {
|
118
381
|
id: string;
|
119
382
|
name: string;
|
@@ -124,6 +387,18 @@ export declare const wrapUpFormContract: {
|
|
124
387
|
callFrom: string | null;
|
125
388
|
callTo: string | null;
|
126
389
|
note: string | null;
|
390
|
+
customFields?: {
|
391
|
+
id: string;
|
392
|
+
createdAt: Date;
|
393
|
+
updatedAt: Date;
|
394
|
+
deletedAt: Date | null;
|
395
|
+
entityId: string;
|
396
|
+
attributeId: string;
|
397
|
+
textValue: string | null;
|
398
|
+
booleanValue: boolean | null;
|
399
|
+
numberValue: number | null;
|
400
|
+
dateValue: Date | null;
|
401
|
+
}[] | null | undefined;
|
127
402
|
};
|
128
403
|
}>;
|
129
404
|
400: z.ZodObject<{
|
@@ -200,8 +475,7 @@ export declare const wrapUpFormContract: {
|
|
200
475
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
201
476
|
note: z.ZodNullable<z.ZodString>;
|
202
477
|
disposition: z.ZodNullable<z.ZodString>;
|
203
|
-
|
204
|
-
callTo: z.ZodNullable<z.ZodString>;
|
478
|
+
type: z.ZodString;
|
205
479
|
tags: z.ZodArray<z.ZodObject<{
|
206
480
|
id: z.ZodString;
|
207
481
|
createdAt: z.ZodDate;
|
@@ -221,12 +495,171 @@ export declare const wrapUpFormContract: {
|
|
221
495
|
updatedAt: Date;
|
222
496
|
deletedAt: Date | null;
|
223
497
|
}>, "many">;
|
498
|
+
categories: z.ZodArray<z.ZodObject<{
|
499
|
+
id: z.ZodString;
|
500
|
+
createdAt: z.ZodDate;
|
501
|
+
updatedAt: z.ZodDate;
|
502
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
503
|
+
value: z.ZodString;
|
504
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
505
|
+
parentId: z.ZodNullable<z.ZodString>;
|
506
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
507
|
+
id: z.ZodString;
|
508
|
+
value: z.ZodString;
|
509
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
510
|
+
parentId: z.ZodNullable<z.ZodString>;
|
511
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
512
|
+
id: z.ZodString;
|
513
|
+
value: z.ZodString;
|
514
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
515
|
+
parentId: z.ZodNullable<z.ZodString>;
|
516
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
517
|
+
}, "strip", z.ZodTypeAny, {
|
518
|
+
id: string;
|
519
|
+
value: string;
|
520
|
+
level: 2 | 1 | 3;
|
521
|
+
parentId: string | null;
|
522
|
+
childCategoryList: any[];
|
523
|
+
}, {
|
524
|
+
id: string;
|
525
|
+
value: string;
|
526
|
+
level: 2 | 1 | 3;
|
527
|
+
parentId: string | null;
|
528
|
+
childCategoryList: any[];
|
529
|
+
}>, "many">;
|
530
|
+
}, "strip", z.ZodTypeAny, {
|
531
|
+
id: string;
|
532
|
+
value: string;
|
533
|
+
level: 2 | 1 | 3;
|
534
|
+
parentId: string | null;
|
535
|
+
childCategoryList: {
|
536
|
+
id: string;
|
537
|
+
value: string;
|
538
|
+
level: 2 | 1 | 3;
|
539
|
+
parentId: string | null;
|
540
|
+
childCategoryList: any[];
|
541
|
+
}[];
|
542
|
+
}, {
|
543
|
+
id: string;
|
544
|
+
value: string;
|
545
|
+
level: 2 | 1 | 3;
|
546
|
+
parentId: string | null;
|
547
|
+
childCategoryList: {
|
548
|
+
id: string;
|
549
|
+
value: string;
|
550
|
+
level: 2 | 1 | 3;
|
551
|
+
parentId: string | null;
|
552
|
+
childCategoryList: any[];
|
553
|
+
}[];
|
554
|
+
}>, "many">;
|
555
|
+
}, "strip", z.ZodTypeAny, {
|
556
|
+
id: string;
|
557
|
+
value: string;
|
558
|
+
createdAt: Date;
|
559
|
+
updatedAt: Date;
|
560
|
+
deletedAt: Date | null;
|
561
|
+
level: 2 | 1 | 3;
|
562
|
+
parentId: string | null;
|
563
|
+
childCategoryList: {
|
564
|
+
id: string;
|
565
|
+
value: string;
|
566
|
+
level: 2 | 1 | 3;
|
567
|
+
parentId: string | null;
|
568
|
+
childCategoryList: {
|
569
|
+
id: string;
|
570
|
+
value: string;
|
571
|
+
level: 2 | 1 | 3;
|
572
|
+
parentId: string | null;
|
573
|
+
childCategoryList: any[];
|
574
|
+
}[];
|
575
|
+
}[];
|
576
|
+
}, {
|
577
|
+
id: string;
|
578
|
+
value: string;
|
579
|
+
createdAt: Date;
|
580
|
+
updatedAt: Date;
|
581
|
+
deletedAt: Date | null;
|
582
|
+
level: 2 | 1 | 3;
|
583
|
+
parentId: string | null;
|
584
|
+
childCategoryList: {
|
585
|
+
id: string;
|
586
|
+
value: string;
|
587
|
+
level: 2 | 1 | 3;
|
588
|
+
parentId: string | null;
|
589
|
+
childCategoryList: {
|
590
|
+
id: string;
|
591
|
+
value: string;
|
592
|
+
level: 2 | 1 | 3;
|
593
|
+
parentId: string | null;
|
594
|
+
childCategoryList: any[];
|
595
|
+
}[];
|
596
|
+
}[];
|
597
|
+
}>, "many">;
|
598
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
599
|
+
callTo: z.ZodNullable<z.ZodString>;
|
600
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
601
|
+
id: z.ZodString;
|
602
|
+
createdAt: z.ZodDate;
|
603
|
+
updatedAt: z.ZodDate;
|
604
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
605
|
+
textValue: z.ZodNullable<z.ZodString>;
|
606
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
607
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
608
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
609
|
+
entityId: z.ZodString;
|
610
|
+
attributeId: z.ZodString;
|
611
|
+
}, "strip", z.ZodTypeAny, {
|
612
|
+
id: string;
|
613
|
+
createdAt: Date;
|
614
|
+
updatedAt: Date;
|
615
|
+
deletedAt: Date | null;
|
616
|
+
entityId: string;
|
617
|
+
attributeId: string;
|
618
|
+
textValue: string | null;
|
619
|
+
booleanValue: boolean | null;
|
620
|
+
numberValue: number | null;
|
621
|
+
dateValue: Date | null;
|
622
|
+
}, {
|
623
|
+
id: string;
|
624
|
+
createdAt: Date;
|
625
|
+
updatedAt: Date;
|
626
|
+
deletedAt: Date | null;
|
627
|
+
entityId: string;
|
628
|
+
attributeId: string;
|
629
|
+
textValue: string | null;
|
630
|
+
booleanValue: boolean | null;
|
631
|
+
numberValue: number | null;
|
632
|
+
dateValue: Date | null;
|
633
|
+
}>, "many">>>;
|
224
634
|
}, "strip", z.ZodTypeAny, {
|
635
|
+
type: string;
|
225
636
|
id: string;
|
226
637
|
disposition: string | null;
|
227
638
|
createdAt: Date;
|
228
639
|
updatedAt: Date;
|
229
640
|
deletedAt: Date | null;
|
641
|
+
categories: {
|
642
|
+
id: string;
|
643
|
+
value: string;
|
644
|
+
createdAt: Date;
|
645
|
+
updatedAt: Date;
|
646
|
+
deletedAt: Date | null;
|
647
|
+
level: 2 | 1 | 3;
|
648
|
+
parentId: string | null;
|
649
|
+
childCategoryList: {
|
650
|
+
id: string;
|
651
|
+
value: string;
|
652
|
+
level: 2 | 1 | 3;
|
653
|
+
parentId: string | null;
|
654
|
+
childCategoryList: {
|
655
|
+
id: string;
|
656
|
+
value: string;
|
657
|
+
level: 2 | 1 | 3;
|
658
|
+
parentId: string | null;
|
659
|
+
childCategoryList: any[];
|
660
|
+
}[];
|
661
|
+
}[];
|
662
|
+
}[];
|
230
663
|
tags: {
|
231
664
|
id: string;
|
232
665
|
name: string;
|
@@ -237,12 +670,47 @@ export declare const wrapUpFormContract: {
|
|
237
670
|
callFrom: string | null;
|
238
671
|
callTo: string | null;
|
239
672
|
note: string | null;
|
673
|
+
customFields?: {
|
674
|
+
id: string;
|
675
|
+
createdAt: Date;
|
676
|
+
updatedAt: Date;
|
677
|
+
deletedAt: Date | null;
|
678
|
+
entityId: string;
|
679
|
+
attributeId: string;
|
680
|
+
textValue: string | null;
|
681
|
+
booleanValue: boolean | null;
|
682
|
+
numberValue: number | null;
|
683
|
+
dateValue: Date | null;
|
684
|
+
}[] | null | undefined;
|
240
685
|
}, {
|
686
|
+
type: string;
|
241
687
|
id: string;
|
242
688
|
disposition: string | null;
|
243
689
|
createdAt: Date;
|
244
690
|
updatedAt: Date;
|
245
691
|
deletedAt: Date | null;
|
692
|
+
categories: {
|
693
|
+
id: string;
|
694
|
+
value: string;
|
695
|
+
createdAt: Date;
|
696
|
+
updatedAt: Date;
|
697
|
+
deletedAt: Date | null;
|
698
|
+
level: 2 | 1 | 3;
|
699
|
+
parentId: string | null;
|
700
|
+
childCategoryList: {
|
701
|
+
id: string;
|
702
|
+
value: string;
|
703
|
+
level: 2 | 1 | 3;
|
704
|
+
parentId: string | null;
|
705
|
+
childCategoryList: {
|
706
|
+
id: string;
|
707
|
+
value: string;
|
708
|
+
level: 2 | 1 | 3;
|
709
|
+
parentId: string | null;
|
710
|
+
childCategoryList: any[];
|
711
|
+
}[];
|
712
|
+
}[];
|
713
|
+
}[];
|
246
714
|
tags: {
|
247
715
|
id: string;
|
248
716
|
name: string;
|
@@ -253,15 +721,50 @@ export declare const wrapUpFormContract: {
|
|
253
721
|
callFrom: string | null;
|
254
722
|
callTo: string | null;
|
255
723
|
note: string | null;
|
724
|
+
customFields?: {
|
725
|
+
id: string;
|
726
|
+
createdAt: Date;
|
727
|
+
updatedAt: Date;
|
728
|
+
deletedAt: Date | null;
|
729
|
+
entityId: string;
|
730
|
+
attributeId: string;
|
731
|
+
textValue: string | null;
|
732
|
+
booleanValue: boolean | null;
|
733
|
+
numberValue: number | null;
|
734
|
+
dateValue: Date | null;
|
735
|
+
}[] | null | undefined;
|
256
736
|
}>;
|
257
737
|
}, "strip", z.ZodTypeAny, {
|
258
738
|
requestId: string;
|
259
739
|
wrapUpForm: {
|
740
|
+
type: string;
|
260
741
|
id: string;
|
261
742
|
disposition: string | null;
|
262
743
|
createdAt: Date;
|
263
744
|
updatedAt: Date;
|
264
745
|
deletedAt: Date | null;
|
746
|
+
categories: {
|
747
|
+
id: string;
|
748
|
+
value: string;
|
749
|
+
createdAt: Date;
|
750
|
+
updatedAt: Date;
|
751
|
+
deletedAt: Date | null;
|
752
|
+
level: 2 | 1 | 3;
|
753
|
+
parentId: string | null;
|
754
|
+
childCategoryList: {
|
755
|
+
id: string;
|
756
|
+
value: string;
|
757
|
+
level: 2 | 1 | 3;
|
758
|
+
parentId: string | null;
|
759
|
+
childCategoryList: {
|
760
|
+
id: string;
|
761
|
+
value: string;
|
762
|
+
level: 2 | 1 | 3;
|
763
|
+
parentId: string | null;
|
764
|
+
childCategoryList: any[];
|
765
|
+
}[];
|
766
|
+
}[];
|
767
|
+
}[];
|
265
768
|
tags: {
|
266
769
|
id: string;
|
267
770
|
name: string;
|
@@ -272,15 +775,50 @@ export declare const wrapUpFormContract: {
|
|
272
775
|
callFrom: string | null;
|
273
776
|
callTo: string | null;
|
274
777
|
note: string | null;
|
778
|
+
customFields?: {
|
779
|
+
id: string;
|
780
|
+
createdAt: Date;
|
781
|
+
updatedAt: Date;
|
782
|
+
deletedAt: Date | null;
|
783
|
+
entityId: string;
|
784
|
+
attributeId: string;
|
785
|
+
textValue: string | null;
|
786
|
+
booleanValue: boolean | null;
|
787
|
+
numberValue: number | null;
|
788
|
+
dateValue: Date | null;
|
789
|
+
}[] | null | undefined;
|
275
790
|
};
|
276
791
|
}, {
|
277
792
|
requestId: string;
|
278
793
|
wrapUpForm: {
|
794
|
+
type: string;
|
279
795
|
id: string;
|
280
796
|
disposition: string | null;
|
281
797
|
createdAt: Date;
|
282
798
|
updatedAt: Date;
|
283
799
|
deletedAt: Date | null;
|
800
|
+
categories: {
|
801
|
+
id: string;
|
802
|
+
value: string;
|
803
|
+
createdAt: Date;
|
804
|
+
updatedAt: Date;
|
805
|
+
deletedAt: Date | null;
|
806
|
+
level: 2 | 1 | 3;
|
807
|
+
parentId: string | null;
|
808
|
+
childCategoryList: {
|
809
|
+
id: string;
|
810
|
+
value: string;
|
811
|
+
level: 2 | 1 | 3;
|
812
|
+
parentId: string | null;
|
813
|
+
childCategoryList: {
|
814
|
+
id: string;
|
815
|
+
value: string;
|
816
|
+
level: 2 | 1 | 3;
|
817
|
+
parentId: string | null;
|
818
|
+
childCategoryList: any[];
|
819
|
+
}[];
|
820
|
+
}[];
|
821
|
+
}[];
|
284
822
|
tags: {
|
285
823
|
id: string;
|
286
824
|
name: string;
|
@@ -291,6 +829,18 @@ export declare const wrapUpFormContract: {
|
|
291
829
|
callFrom: string | null;
|
292
830
|
callTo: string | null;
|
293
831
|
note: string | null;
|
832
|
+
customFields?: {
|
833
|
+
id: string;
|
834
|
+
createdAt: Date;
|
835
|
+
updatedAt: Date;
|
836
|
+
deletedAt: Date | null;
|
837
|
+
entityId: string;
|
838
|
+
attributeId: string;
|
839
|
+
textValue: string | null;
|
840
|
+
booleanValue: boolean | null;
|
841
|
+
numberValue: number | null;
|
842
|
+
dateValue: Date | null;
|
843
|
+
}[] | null | undefined;
|
294
844
|
};
|
295
845
|
}>;
|
296
846
|
401: z.ZodObject<{
|
@@ -336,11 +886,34 @@ export declare const wrapUpFormContract: {
|
|
336
886
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
337
887
|
lastPage: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
338
888
|
data: z.ZodArray<z.ZodType<{
|
889
|
+
type: string;
|
339
890
|
id: string;
|
340
891
|
disposition: string | null;
|
341
892
|
createdAt: Date;
|
342
893
|
updatedAt: Date;
|
343
894
|
deletedAt: Date | null;
|
895
|
+
categories: {
|
896
|
+
id: string;
|
897
|
+
value: string;
|
898
|
+
createdAt: Date;
|
899
|
+
updatedAt: Date;
|
900
|
+
deletedAt: Date | null;
|
901
|
+
level: 2 | 1 | 3;
|
902
|
+
parentId: string | null;
|
903
|
+
childCategoryList: {
|
904
|
+
id: string;
|
905
|
+
value: string;
|
906
|
+
level: 2 | 1 | 3;
|
907
|
+
parentId: string | null;
|
908
|
+
childCategoryList: {
|
909
|
+
id: string;
|
910
|
+
value: string;
|
911
|
+
level: 2 | 1 | 3;
|
912
|
+
parentId: string | null;
|
913
|
+
childCategoryList: any[];
|
914
|
+
}[];
|
915
|
+
}[];
|
916
|
+
}[];
|
344
917
|
tags: {
|
345
918
|
id: string;
|
346
919
|
name: string;
|
@@ -351,12 +924,47 @@ export declare const wrapUpFormContract: {
|
|
351
924
|
callFrom: string | null;
|
352
925
|
callTo: string | null;
|
353
926
|
note: string | null;
|
927
|
+
customFields?: {
|
928
|
+
id: string;
|
929
|
+
createdAt: Date;
|
930
|
+
updatedAt: Date;
|
931
|
+
deletedAt: Date | null;
|
932
|
+
entityId: string;
|
933
|
+
attributeId: string;
|
934
|
+
textValue: string | null;
|
935
|
+
booleanValue: boolean | null;
|
936
|
+
numberValue: number | null;
|
937
|
+
dateValue: Date | null;
|
938
|
+
}[] | null | undefined;
|
354
939
|
}, z.ZodTypeDef, {
|
940
|
+
type: string;
|
355
941
|
id: string;
|
356
942
|
disposition: string | null;
|
357
943
|
createdAt: Date;
|
358
944
|
updatedAt: Date;
|
359
945
|
deletedAt: Date | null;
|
946
|
+
categories: {
|
947
|
+
id: string;
|
948
|
+
value: string;
|
949
|
+
createdAt: Date;
|
950
|
+
updatedAt: Date;
|
951
|
+
deletedAt: Date | null;
|
952
|
+
level: 2 | 1 | 3;
|
953
|
+
parentId: string | null;
|
954
|
+
childCategoryList: {
|
955
|
+
id: string;
|
956
|
+
value: string;
|
957
|
+
level: 2 | 1 | 3;
|
958
|
+
parentId: string | null;
|
959
|
+
childCategoryList: {
|
960
|
+
id: string;
|
961
|
+
value: string;
|
962
|
+
level: 2 | 1 | 3;
|
963
|
+
parentId: string | null;
|
964
|
+
childCategoryList: any[];
|
965
|
+
}[];
|
966
|
+
}[];
|
967
|
+
}[];
|
360
968
|
tags: {
|
361
969
|
id: string;
|
362
970
|
name: string;
|
@@ -367,14 +975,49 @@ export declare const wrapUpFormContract: {
|
|
367
975
|
callFrom: string | null;
|
368
976
|
callTo: string | null;
|
369
977
|
note: string | null;
|
978
|
+
customFields?: {
|
979
|
+
id: string;
|
980
|
+
createdAt: Date;
|
981
|
+
updatedAt: Date;
|
982
|
+
deletedAt: Date | null;
|
983
|
+
entityId: string;
|
984
|
+
attributeId: string;
|
985
|
+
textValue: string | null;
|
986
|
+
booleanValue: boolean | null;
|
987
|
+
numberValue: number | null;
|
988
|
+
dateValue: Date | null;
|
989
|
+
}[] | null | undefined;
|
370
990
|
}>, "many">;
|
371
991
|
}, "strip", z.ZodTypeAny, {
|
372
992
|
data: {
|
993
|
+
type: string;
|
373
994
|
id: string;
|
374
995
|
disposition: string | null;
|
375
996
|
createdAt: Date;
|
376
997
|
updatedAt: Date;
|
377
998
|
deletedAt: Date | null;
|
999
|
+
categories: {
|
1000
|
+
id: string;
|
1001
|
+
value: string;
|
1002
|
+
createdAt: Date;
|
1003
|
+
updatedAt: Date;
|
1004
|
+
deletedAt: Date | null;
|
1005
|
+
level: 2 | 1 | 3;
|
1006
|
+
parentId: string | null;
|
1007
|
+
childCategoryList: {
|
1008
|
+
id: string;
|
1009
|
+
value: string;
|
1010
|
+
level: 2 | 1 | 3;
|
1011
|
+
parentId: string | null;
|
1012
|
+
childCategoryList: {
|
1013
|
+
id: string;
|
1014
|
+
value: string;
|
1015
|
+
level: 2 | 1 | 3;
|
1016
|
+
parentId: string | null;
|
1017
|
+
childCategoryList: any[];
|
1018
|
+
}[];
|
1019
|
+
}[];
|
1020
|
+
}[];
|
378
1021
|
tags: {
|
379
1022
|
id: string;
|
380
1023
|
name: string;
|
@@ -385,6 +1028,18 @@ export declare const wrapUpFormContract: {
|
|
385
1028
|
callFrom: string | null;
|
386
1029
|
callTo: string | null;
|
387
1030
|
note: string | null;
|
1031
|
+
customFields?: {
|
1032
|
+
id: string;
|
1033
|
+
createdAt: Date;
|
1034
|
+
updatedAt: Date;
|
1035
|
+
deletedAt: Date | null;
|
1036
|
+
entityId: string;
|
1037
|
+
attributeId: string;
|
1038
|
+
textValue: string | null;
|
1039
|
+
booleanValue: boolean | null;
|
1040
|
+
numberValue: number | null;
|
1041
|
+
dateValue: Date | null;
|
1042
|
+
}[] | null | undefined;
|
388
1043
|
}[];
|
389
1044
|
total: number;
|
390
1045
|
page: number;
|
@@ -392,11 +1047,34 @@ export declare const wrapUpFormContract: {
|
|
392
1047
|
lastPage?: number | null | undefined;
|
393
1048
|
}, {
|
394
1049
|
data: {
|
1050
|
+
type: string;
|
395
1051
|
id: string;
|
396
1052
|
disposition: string | null;
|
397
1053
|
createdAt: Date;
|
398
1054
|
updatedAt: Date;
|
399
1055
|
deletedAt: Date | null;
|
1056
|
+
categories: {
|
1057
|
+
id: string;
|
1058
|
+
value: string;
|
1059
|
+
createdAt: Date;
|
1060
|
+
updatedAt: Date;
|
1061
|
+
deletedAt: Date | null;
|
1062
|
+
level: 2 | 1 | 3;
|
1063
|
+
parentId: string | null;
|
1064
|
+
childCategoryList: {
|
1065
|
+
id: string;
|
1066
|
+
value: string;
|
1067
|
+
level: 2 | 1 | 3;
|
1068
|
+
parentId: string | null;
|
1069
|
+
childCategoryList: {
|
1070
|
+
id: string;
|
1071
|
+
value: string;
|
1072
|
+
level: 2 | 1 | 3;
|
1073
|
+
parentId: string | null;
|
1074
|
+
childCategoryList: any[];
|
1075
|
+
}[];
|
1076
|
+
}[];
|
1077
|
+
}[];
|
400
1078
|
tags: {
|
401
1079
|
id: string;
|
402
1080
|
name: string;
|
@@ -407,6 +1085,18 @@ export declare const wrapUpFormContract: {
|
|
407
1085
|
callFrom: string | null;
|
408
1086
|
callTo: string | null;
|
409
1087
|
note: string | null;
|
1088
|
+
customFields?: {
|
1089
|
+
id: string;
|
1090
|
+
createdAt: Date;
|
1091
|
+
updatedAt: Date;
|
1092
|
+
deletedAt: Date | null;
|
1093
|
+
entityId: string;
|
1094
|
+
attributeId: string;
|
1095
|
+
textValue: string | null;
|
1096
|
+
booleanValue: boolean | null;
|
1097
|
+
numberValue: number | null;
|
1098
|
+
dateValue: Date | null;
|
1099
|
+
}[] | null | undefined;
|
410
1100
|
}[];
|
411
1101
|
total: number;
|
412
1102
|
page?: number | undefined;
|
@@ -465,19 +1155,48 @@ export declare const wrapUpFormContract: {
|
|
465
1155
|
callFrom: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
466
1156
|
callTo: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
467
1157
|
note: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1158
|
+
type: z.ZodOptional<z.ZodString>;
|
468
1159
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1160
|
+
categoryIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
1161
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1162
|
+
id: z.ZodString;
|
1163
|
+
type: z.ZodString;
|
1164
|
+
value: z.ZodString;
|
1165
|
+
}, "strip", z.ZodTypeAny, {
|
1166
|
+
type: string;
|
1167
|
+
id: string;
|
1168
|
+
value: string;
|
1169
|
+
}, {
|
1170
|
+
type: string;
|
1171
|
+
id: string;
|
1172
|
+
value: string;
|
1173
|
+
}>, "many">>;
|
469
1174
|
}, "strip", z.ZodTypeAny, {
|
470
1175
|
disposition?: string | null | undefined;
|
471
1176
|
callFrom?: string | null | undefined;
|
472
1177
|
callTo?: string | null | undefined;
|
473
1178
|
note?: string | null | undefined;
|
1179
|
+
type?: string | undefined;
|
474
1180
|
tags?: string[] | undefined;
|
1181
|
+
categoryIds?: string[] | undefined;
|
1182
|
+
customFields?: {
|
1183
|
+
type: string;
|
1184
|
+
id: string;
|
1185
|
+
value: string;
|
1186
|
+
}[] | undefined;
|
475
1187
|
}, {
|
476
1188
|
disposition?: string | null | undefined;
|
477
1189
|
callFrom?: string | null | undefined;
|
478
1190
|
callTo?: string | null | undefined;
|
479
1191
|
note?: string | null | undefined;
|
1192
|
+
type?: string | undefined;
|
480
1193
|
tags?: string[] | undefined;
|
1194
|
+
categoryIds?: string[] | undefined;
|
1195
|
+
customFields?: {
|
1196
|
+
type: string;
|
1197
|
+
id: string;
|
1198
|
+
value: string;
|
1199
|
+
}[] | undefined;
|
481
1200
|
}>;
|
482
1201
|
summary: "Update a wrap up form.";
|
483
1202
|
method: "PATCH";
|
@@ -498,8 +1217,7 @@ export declare const wrapUpFormContract: {
|
|
498
1217
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
499
1218
|
note: z.ZodNullable<z.ZodString>;
|
500
1219
|
disposition: z.ZodNullable<z.ZodString>;
|
501
|
-
|
502
|
-
callTo: z.ZodNullable<z.ZodString>;
|
1220
|
+
type: z.ZodString;
|
503
1221
|
tags: z.ZodArray<z.ZodObject<{
|
504
1222
|
id: z.ZodString;
|
505
1223
|
createdAt: z.ZodDate;
|
@@ -519,12 +1237,171 @@ export declare const wrapUpFormContract: {
|
|
519
1237
|
updatedAt: Date;
|
520
1238
|
deletedAt: Date | null;
|
521
1239
|
}>, "many">;
|
1240
|
+
categories: z.ZodArray<z.ZodObject<{
|
1241
|
+
id: z.ZodString;
|
1242
|
+
createdAt: z.ZodDate;
|
1243
|
+
updatedAt: z.ZodDate;
|
1244
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
1245
|
+
value: z.ZodString;
|
1246
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1247
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1248
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
1249
|
+
id: z.ZodString;
|
1250
|
+
value: z.ZodString;
|
1251
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1252
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1253
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
1254
|
+
id: z.ZodString;
|
1255
|
+
value: z.ZodString;
|
1256
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
1257
|
+
parentId: z.ZodNullable<z.ZodString>;
|
1258
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
1259
|
+
}, "strip", z.ZodTypeAny, {
|
1260
|
+
id: string;
|
1261
|
+
value: string;
|
1262
|
+
level: 2 | 1 | 3;
|
1263
|
+
parentId: string | null;
|
1264
|
+
childCategoryList: any[];
|
1265
|
+
}, {
|
1266
|
+
id: string;
|
1267
|
+
value: string;
|
1268
|
+
level: 2 | 1 | 3;
|
1269
|
+
parentId: string | null;
|
1270
|
+
childCategoryList: any[];
|
1271
|
+
}>, "many">;
|
1272
|
+
}, "strip", z.ZodTypeAny, {
|
1273
|
+
id: string;
|
1274
|
+
value: string;
|
1275
|
+
level: 2 | 1 | 3;
|
1276
|
+
parentId: string | null;
|
1277
|
+
childCategoryList: {
|
1278
|
+
id: string;
|
1279
|
+
value: string;
|
1280
|
+
level: 2 | 1 | 3;
|
1281
|
+
parentId: string | null;
|
1282
|
+
childCategoryList: any[];
|
1283
|
+
}[];
|
1284
|
+
}, {
|
1285
|
+
id: string;
|
1286
|
+
value: string;
|
1287
|
+
level: 2 | 1 | 3;
|
1288
|
+
parentId: string | null;
|
1289
|
+
childCategoryList: {
|
1290
|
+
id: string;
|
1291
|
+
value: string;
|
1292
|
+
level: 2 | 1 | 3;
|
1293
|
+
parentId: string | null;
|
1294
|
+
childCategoryList: any[];
|
1295
|
+
}[];
|
1296
|
+
}>, "many">;
|
1297
|
+
}, "strip", z.ZodTypeAny, {
|
1298
|
+
id: string;
|
1299
|
+
value: string;
|
1300
|
+
createdAt: Date;
|
1301
|
+
updatedAt: Date;
|
1302
|
+
deletedAt: Date | null;
|
1303
|
+
level: 2 | 1 | 3;
|
1304
|
+
parentId: string | null;
|
1305
|
+
childCategoryList: {
|
1306
|
+
id: string;
|
1307
|
+
value: string;
|
1308
|
+
level: 2 | 1 | 3;
|
1309
|
+
parentId: string | null;
|
1310
|
+
childCategoryList: {
|
1311
|
+
id: string;
|
1312
|
+
value: string;
|
1313
|
+
level: 2 | 1 | 3;
|
1314
|
+
parentId: string | null;
|
1315
|
+
childCategoryList: any[];
|
1316
|
+
}[];
|
1317
|
+
}[];
|
1318
|
+
}, {
|
1319
|
+
id: string;
|
1320
|
+
value: string;
|
1321
|
+
createdAt: Date;
|
1322
|
+
updatedAt: Date;
|
1323
|
+
deletedAt: Date | null;
|
1324
|
+
level: 2 | 1 | 3;
|
1325
|
+
parentId: string | null;
|
1326
|
+
childCategoryList: {
|
1327
|
+
id: string;
|
1328
|
+
value: string;
|
1329
|
+
level: 2 | 1 | 3;
|
1330
|
+
parentId: string | null;
|
1331
|
+
childCategoryList: {
|
1332
|
+
id: string;
|
1333
|
+
value: string;
|
1334
|
+
level: 2 | 1 | 3;
|
1335
|
+
parentId: string | null;
|
1336
|
+
childCategoryList: any[];
|
1337
|
+
}[];
|
1338
|
+
}[];
|
1339
|
+
}>, "many">;
|
1340
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
1341
|
+
callTo: z.ZodNullable<z.ZodString>;
|
1342
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1343
|
+
id: z.ZodString;
|
1344
|
+
createdAt: z.ZodDate;
|
1345
|
+
updatedAt: z.ZodDate;
|
1346
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
1347
|
+
textValue: z.ZodNullable<z.ZodString>;
|
1348
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
1349
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
1350
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
1351
|
+
entityId: z.ZodString;
|
1352
|
+
attributeId: z.ZodString;
|
1353
|
+
}, "strip", z.ZodTypeAny, {
|
1354
|
+
id: string;
|
1355
|
+
createdAt: Date;
|
1356
|
+
updatedAt: Date;
|
1357
|
+
deletedAt: Date | null;
|
1358
|
+
entityId: string;
|
1359
|
+
attributeId: string;
|
1360
|
+
textValue: string | null;
|
1361
|
+
booleanValue: boolean | null;
|
1362
|
+
numberValue: number | null;
|
1363
|
+
dateValue: Date | null;
|
1364
|
+
}, {
|
1365
|
+
id: string;
|
1366
|
+
createdAt: Date;
|
1367
|
+
updatedAt: Date;
|
1368
|
+
deletedAt: Date | null;
|
1369
|
+
entityId: string;
|
1370
|
+
attributeId: string;
|
1371
|
+
textValue: string | null;
|
1372
|
+
booleanValue: boolean | null;
|
1373
|
+
numberValue: number | null;
|
1374
|
+
dateValue: Date | null;
|
1375
|
+
}>, "many">>>;
|
522
1376
|
}, "strip", z.ZodTypeAny, {
|
1377
|
+
type: string;
|
523
1378
|
id: string;
|
524
1379
|
disposition: string | null;
|
525
1380
|
createdAt: Date;
|
526
1381
|
updatedAt: Date;
|
527
1382
|
deletedAt: Date | null;
|
1383
|
+
categories: {
|
1384
|
+
id: string;
|
1385
|
+
value: string;
|
1386
|
+
createdAt: Date;
|
1387
|
+
updatedAt: Date;
|
1388
|
+
deletedAt: Date | null;
|
1389
|
+
level: 2 | 1 | 3;
|
1390
|
+
parentId: string | null;
|
1391
|
+
childCategoryList: {
|
1392
|
+
id: string;
|
1393
|
+
value: string;
|
1394
|
+
level: 2 | 1 | 3;
|
1395
|
+
parentId: string | null;
|
1396
|
+
childCategoryList: {
|
1397
|
+
id: string;
|
1398
|
+
value: string;
|
1399
|
+
level: 2 | 1 | 3;
|
1400
|
+
parentId: string | null;
|
1401
|
+
childCategoryList: any[];
|
1402
|
+
}[];
|
1403
|
+
}[];
|
1404
|
+
}[];
|
528
1405
|
tags: {
|
529
1406
|
id: string;
|
530
1407
|
name: string;
|
@@ -535,12 +1412,47 @@ export declare const wrapUpFormContract: {
|
|
535
1412
|
callFrom: string | null;
|
536
1413
|
callTo: string | null;
|
537
1414
|
note: string | null;
|
1415
|
+
customFields?: {
|
1416
|
+
id: string;
|
1417
|
+
createdAt: Date;
|
1418
|
+
updatedAt: Date;
|
1419
|
+
deletedAt: Date | null;
|
1420
|
+
entityId: string;
|
1421
|
+
attributeId: string;
|
1422
|
+
textValue: string | null;
|
1423
|
+
booleanValue: boolean | null;
|
1424
|
+
numberValue: number | null;
|
1425
|
+
dateValue: Date | null;
|
1426
|
+
}[] | null | undefined;
|
538
1427
|
}, {
|
1428
|
+
type: string;
|
539
1429
|
id: string;
|
540
1430
|
disposition: string | null;
|
541
1431
|
createdAt: Date;
|
542
1432
|
updatedAt: Date;
|
543
1433
|
deletedAt: Date | null;
|
1434
|
+
categories: {
|
1435
|
+
id: string;
|
1436
|
+
value: string;
|
1437
|
+
createdAt: Date;
|
1438
|
+
updatedAt: Date;
|
1439
|
+
deletedAt: Date | null;
|
1440
|
+
level: 2 | 1 | 3;
|
1441
|
+
parentId: string | null;
|
1442
|
+
childCategoryList: {
|
1443
|
+
id: string;
|
1444
|
+
value: string;
|
1445
|
+
level: 2 | 1 | 3;
|
1446
|
+
parentId: string | null;
|
1447
|
+
childCategoryList: {
|
1448
|
+
id: string;
|
1449
|
+
value: string;
|
1450
|
+
level: 2 | 1 | 3;
|
1451
|
+
parentId: string | null;
|
1452
|
+
childCategoryList: any[];
|
1453
|
+
}[];
|
1454
|
+
}[];
|
1455
|
+
}[];
|
544
1456
|
tags: {
|
545
1457
|
id: string;
|
546
1458
|
name: string;
|
@@ -551,15 +1463,50 @@ export declare const wrapUpFormContract: {
|
|
551
1463
|
callFrom: string | null;
|
552
1464
|
callTo: string | null;
|
553
1465
|
note: string | null;
|
1466
|
+
customFields?: {
|
1467
|
+
id: string;
|
1468
|
+
createdAt: Date;
|
1469
|
+
updatedAt: Date;
|
1470
|
+
deletedAt: Date | null;
|
1471
|
+
entityId: string;
|
1472
|
+
attributeId: string;
|
1473
|
+
textValue: string | null;
|
1474
|
+
booleanValue: boolean | null;
|
1475
|
+
numberValue: number | null;
|
1476
|
+
dateValue: Date | null;
|
1477
|
+
}[] | null | undefined;
|
554
1478
|
}>;
|
555
1479
|
}, "strip", z.ZodTypeAny, {
|
556
1480
|
requestId: string;
|
557
1481
|
wrapUpForm: {
|
1482
|
+
type: string;
|
558
1483
|
id: string;
|
559
1484
|
disposition: string | null;
|
560
1485
|
createdAt: Date;
|
561
1486
|
updatedAt: Date;
|
562
1487
|
deletedAt: Date | null;
|
1488
|
+
categories: {
|
1489
|
+
id: string;
|
1490
|
+
value: string;
|
1491
|
+
createdAt: Date;
|
1492
|
+
updatedAt: Date;
|
1493
|
+
deletedAt: Date | null;
|
1494
|
+
level: 2 | 1 | 3;
|
1495
|
+
parentId: string | null;
|
1496
|
+
childCategoryList: {
|
1497
|
+
id: string;
|
1498
|
+
value: string;
|
1499
|
+
level: 2 | 1 | 3;
|
1500
|
+
parentId: string | null;
|
1501
|
+
childCategoryList: {
|
1502
|
+
id: string;
|
1503
|
+
value: string;
|
1504
|
+
level: 2 | 1 | 3;
|
1505
|
+
parentId: string | null;
|
1506
|
+
childCategoryList: any[];
|
1507
|
+
}[];
|
1508
|
+
}[];
|
1509
|
+
}[];
|
563
1510
|
tags: {
|
564
1511
|
id: string;
|
565
1512
|
name: string;
|
@@ -570,15 +1517,50 @@ export declare const wrapUpFormContract: {
|
|
570
1517
|
callFrom: string | null;
|
571
1518
|
callTo: string | null;
|
572
1519
|
note: string | null;
|
1520
|
+
customFields?: {
|
1521
|
+
id: string;
|
1522
|
+
createdAt: Date;
|
1523
|
+
updatedAt: Date;
|
1524
|
+
deletedAt: Date | null;
|
1525
|
+
entityId: string;
|
1526
|
+
attributeId: string;
|
1527
|
+
textValue: string | null;
|
1528
|
+
booleanValue: boolean | null;
|
1529
|
+
numberValue: number | null;
|
1530
|
+
dateValue: Date | null;
|
1531
|
+
}[] | null | undefined;
|
573
1532
|
};
|
574
1533
|
}, {
|
575
1534
|
requestId: string;
|
576
1535
|
wrapUpForm: {
|
1536
|
+
type: string;
|
577
1537
|
id: string;
|
578
1538
|
disposition: string | null;
|
579
1539
|
createdAt: Date;
|
580
1540
|
updatedAt: Date;
|
581
1541
|
deletedAt: Date | null;
|
1542
|
+
categories: {
|
1543
|
+
id: string;
|
1544
|
+
value: string;
|
1545
|
+
createdAt: Date;
|
1546
|
+
updatedAt: Date;
|
1547
|
+
deletedAt: Date | null;
|
1548
|
+
level: 2 | 1 | 3;
|
1549
|
+
parentId: string | null;
|
1550
|
+
childCategoryList: {
|
1551
|
+
id: string;
|
1552
|
+
value: string;
|
1553
|
+
level: 2 | 1 | 3;
|
1554
|
+
parentId: string | null;
|
1555
|
+
childCategoryList: {
|
1556
|
+
id: string;
|
1557
|
+
value: string;
|
1558
|
+
level: 2 | 1 | 3;
|
1559
|
+
parentId: string | null;
|
1560
|
+
childCategoryList: any[];
|
1561
|
+
}[];
|
1562
|
+
}[];
|
1563
|
+
}[];
|
582
1564
|
tags: {
|
583
1565
|
id: string;
|
584
1566
|
name: string;
|
@@ -589,6 +1571,18 @@ export declare const wrapUpFormContract: {
|
|
589
1571
|
callFrom: string | null;
|
590
1572
|
callTo: string | null;
|
591
1573
|
note: string | null;
|
1574
|
+
customFields?: {
|
1575
|
+
id: string;
|
1576
|
+
createdAt: Date;
|
1577
|
+
updatedAt: Date;
|
1578
|
+
deletedAt: Date | null;
|
1579
|
+
entityId: string;
|
1580
|
+
attributeId: string;
|
1581
|
+
textValue: string | null;
|
1582
|
+
booleanValue: boolean | null;
|
1583
|
+
numberValue: number | null;
|
1584
|
+
dateValue: Date | null;
|
1585
|
+
}[] | null | undefined;
|
592
1586
|
};
|
593
1587
|
}>;
|
594
1588
|
400: z.ZodObject<{
|