@kl1/contracts 1.1.25-uat → 1.1.27-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 +349 -185
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +348 -185
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +414 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +99 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +260 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +4867 -22
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +764 -4
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +984 -14
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +9819 -44
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +347 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +554 -4
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +487 -2
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +487 -2
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1251 -6
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +1251 -6
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +417 -2
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +347 -2
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +487 -2
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +487 -2
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +487 -2
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +997 -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 +26 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/line/index.d.ts
CHANGED
@@ -3255,8 +3255,7 @@ export declare const lineContract: {
|
|
3255
3255
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
3256
3256
|
note: z.ZodNullable<z.ZodString>;
|
3257
3257
|
disposition: z.ZodNullable<z.ZodString>;
|
3258
|
-
|
3259
|
-
callTo: z.ZodNullable<z.ZodString>;
|
3258
|
+
type: z.ZodString;
|
3260
3259
|
tags: z.ZodArray<z.ZodObject<{
|
3261
3260
|
id: z.ZodString;
|
3262
3261
|
createdAt: z.ZodDate;
|
@@ -3276,12 +3275,171 @@ export declare const lineContract: {
|
|
3276
3275
|
updatedAt: Date;
|
3277
3276
|
deletedAt: Date | null;
|
3278
3277
|
}>, "many">;
|
3278
|
+
categories: z.ZodArray<z.ZodObject<{
|
3279
|
+
id: z.ZodString;
|
3280
|
+
createdAt: z.ZodDate;
|
3281
|
+
updatedAt: z.ZodDate;
|
3282
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3283
|
+
value: z.ZodString;
|
3284
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
3285
|
+
parentId: z.ZodNullable<z.ZodString>;
|
3286
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
3287
|
+
id: z.ZodString;
|
3288
|
+
value: z.ZodString;
|
3289
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
3290
|
+
parentId: z.ZodNullable<z.ZodString>;
|
3291
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
3292
|
+
id: z.ZodString;
|
3293
|
+
value: z.ZodString;
|
3294
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
3295
|
+
parentId: z.ZodNullable<z.ZodString>;
|
3296
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
3297
|
+
}, "strip", z.ZodTypeAny, {
|
3298
|
+
id: string;
|
3299
|
+
value: string;
|
3300
|
+
level: 2 | 1 | 3;
|
3301
|
+
parentId: string | null;
|
3302
|
+
childCategoryList: any[];
|
3303
|
+
}, {
|
3304
|
+
id: string;
|
3305
|
+
value: string;
|
3306
|
+
level: 2 | 1 | 3;
|
3307
|
+
parentId: string | null;
|
3308
|
+
childCategoryList: any[];
|
3309
|
+
}>, "many">;
|
3310
|
+
}, "strip", z.ZodTypeAny, {
|
3311
|
+
id: string;
|
3312
|
+
value: string;
|
3313
|
+
level: 2 | 1 | 3;
|
3314
|
+
parentId: string | null;
|
3315
|
+
childCategoryList: {
|
3316
|
+
id: string;
|
3317
|
+
value: string;
|
3318
|
+
level: 2 | 1 | 3;
|
3319
|
+
parentId: string | null;
|
3320
|
+
childCategoryList: any[];
|
3321
|
+
}[];
|
3322
|
+
}, {
|
3323
|
+
id: string;
|
3324
|
+
value: string;
|
3325
|
+
level: 2 | 1 | 3;
|
3326
|
+
parentId: string | null;
|
3327
|
+
childCategoryList: {
|
3328
|
+
id: string;
|
3329
|
+
value: string;
|
3330
|
+
level: 2 | 1 | 3;
|
3331
|
+
parentId: string | null;
|
3332
|
+
childCategoryList: any[];
|
3333
|
+
}[];
|
3334
|
+
}>, "many">;
|
3335
|
+
}, "strip", z.ZodTypeAny, {
|
3336
|
+
id: string;
|
3337
|
+
value: string;
|
3338
|
+
createdAt: Date;
|
3339
|
+
updatedAt: Date;
|
3340
|
+
deletedAt: Date | null;
|
3341
|
+
level: 2 | 1 | 3;
|
3342
|
+
parentId: string | null;
|
3343
|
+
childCategoryList: {
|
3344
|
+
id: string;
|
3345
|
+
value: string;
|
3346
|
+
level: 2 | 1 | 3;
|
3347
|
+
parentId: string | null;
|
3348
|
+
childCategoryList: {
|
3349
|
+
id: string;
|
3350
|
+
value: string;
|
3351
|
+
level: 2 | 1 | 3;
|
3352
|
+
parentId: string | null;
|
3353
|
+
childCategoryList: any[];
|
3354
|
+
}[];
|
3355
|
+
}[];
|
3356
|
+
}, {
|
3357
|
+
id: string;
|
3358
|
+
value: string;
|
3359
|
+
createdAt: Date;
|
3360
|
+
updatedAt: Date;
|
3361
|
+
deletedAt: Date | null;
|
3362
|
+
level: 2 | 1 | 3;
|
3363
|
+
parentId: string | null;
|
3364
|
+
childCategoryList: {
|
3365
|
+
id: string;
|
3366
|
+
value: string;
|
3367
|
+
level: 2 | 1 | 3;
|
3368
|
+
parentId: string | null;
|
3369
|
+
childCategoryList: {
|
3370
|
+
id: string;
|
3371
|
+
value: string;
|
3372
|
+
level: 2 | 1 | 3;
|
3373
|
+
parentId: string | null;
|
3374
|
+
childCategoryList: any[];
|
3375
|
+
}[];
|
3376
|
+
}[];
|
3377
|
+
}>, "many">;
|
3378
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
3379
|
+
callTo: z.ZodNullable<z.ZodString>;
|
3380
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3381
|
+
id: z.ZodString;
|
3382
|
+
createdAt: z.ZodDate;
|
3383
|
+
updatedAt: z.ZodDate;
|
3384
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3385
|
+
textValue: z.ZodNullable<z.ZodString>;
|
3386
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
3387
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
3388
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
3389
|
+
entityId: z.ZodString;
|
3390
|
+
attributeId: z.ZodString;
|
3391
|
+
}, "strip", z.ZodTypeAny, {
|
3392
|
+
id: string;
|
3393
|
+
createdAt: Date;
|
3394
|
+
updatedAt: Date;
|
3395
|
+
deletedAt: Date | null;
|
3396
|
+
entityId: string;
|
3397
|
+
attributeId: string;
|
3398
|
+
textValue: string | null;
|
3399
|
+
booleanValue: boolean | null;
|
3400
|
+
numberValue: number | null;
|
3401
|
+
dateValue: Date | null;
|
3402
|
+
}, {
|
3403
|
+
id: string;
|
3404
|
+
createdAt: Date;
|
3405
|
+
updatedAt: Date;
|
3406
|
+
deletedAt: Date | null;
|
3407
|
+
entityId: string;
|
3408
|
+
attributeId: string;
|
3409
|
+
textValue: string | null;
|
3410
|
+
booleanValue: boolean | null;
|
3411
|
+
numberValue: number | null;
|
3412
|
+
dateValue: Date | null;
|
3413
|
+
}>, "many">>;
|
3279
3414
|
}, "strip", z.ZodTypeAny, {
|
3415
|
+
type: string;
|
3280
3416
|
id: string;
|
3281
3417
|
disposition: string | null;
|
3282
3418
|
createdAt: Date;
|
3283
3419
|
updatedAt: Date;
|
3284
3420
|
deletedAt: Date | null;
|
3421
|
+
categories: {
|
3422
|
+
id: string;
|
3423
|
+
value: string;
|
3424
|
+
createdAt: Date;
|
3425
|
+
updatedAt: Date;
|
3426
|
+
deletedAt: Date | null;
|
3427
|
+
level: 2 | 1 | 3;
|
3428
|
+
parentId: string | null;
|
3429
|
+
childCategoryList: {
|
3430
|
+
id: string;
|
3431
|
+
value: string;
|
3432
|
+
level: 2 | 1 | 3;
|
3433
|
+
parentId: string | null;
|
3434
|
+
childCategoryList: {
|
3435
|
+
id: string;
|
3436
|
+
value: string;
|
3437
|
+
level: 2 | 1 | 3;
|
3438
|
+
parentId: string | null;
|
3439
|
+
childCategoryList: any[];
|
3440
|
+
}[];
|
3441
|
+
}[];
|
3442
|
+
}[];
|
3285
3443
|
tags: {
|
3286
3444
|
id: string;
|
3287
3445
|
name: string;
|
@@ -3292,12 +3450,47 @@ export declare const lineContract: {
|
|
3292
3450
|
callFrom: string | null;
|
3293
3451
|
callTo: string | null;
|
3294
3452
|
note: string | null;
|
3453
|
+
customFields?: {
|
3454
|
+
id: string;
|
3455
|
+
createdAt: Date;
|
3456
|
+
updatedAt: Date;
|
3457
|
+
deletedAt: Date | null;
|
3458
|
+
entityId: string;
|
3459
|
+
attributeId: string;
|
3460
|
+
textValue: string | null;
|
3461
|
+
booleanValue: boolean | null;
|
3462
|
+
numberValue: number | null;
|
3463
|
+
dateValue: Date | null;
|
3464
|
+
}[] | undefined;
|
3295
3465
|
}, {
|
3466
|
+
type: string;
|
3296
3467
|
id: string;
|
3297
3468
|
disposition: string | null;
|
3298
3469
|
createdAt: Date;
|
3299
3470
|
updatedAt: Date;
|
3300
3471
|
deletedAt: Date | null;
|
3472
|
+
categories: {
|
3473
|
+
id: string;
|
3474
|
+
value: string;
|
3475
|
+
createdAt: Date;
|
3476
|
+
updatedAt: Date;
|
3477
|
+
deletedAt: Date | null;
|
3478
|
+
level: 2 | 1 | 3;
|
3479
|
+
parentId: string | null;
|
3480
|
+
childCategoryList: {
|
3481
|
+
id: string;
|
3482
|
+
value: string;
|
3483
|
+
level: 2 | 1 | 3;
|
3484
|
+
parentId: string | null;
|
3485
|
+
childCategoryList: {
|
3486
|
+
id: string;
|
3487
|
+
value: string;
|
3488
|
+
level: 2 | 1 | 3;
|
3489
|
+
parentId: string | null;
|
3490
|
+
childCategoryList: any[];
|
3491
|
+
}[];
|
3492
|
+
}[];
|
3493
|
+
}[];
|
3301
3494
|
tags: {
|
3302
3495
|
id: string;
|
3303
3496
|
name: string;
|
@@ -3308,6 +3501,18 @@ export declare const lineContract: {
|
|
3308
3501
|
callFrom: string | null;
|
3309
3502
|
callTo: string | null;
|
3310
3503
|
note: string | null;
|
3504
|
+
customFields?: {
|
3505
|
+
id: string;
|
3506
|
+
createdAt: Date;
|
3507
|
+
updatedAt: Date;
|
3508
|
+
deletedAt: Date | null;
|
3509
|
+
entityId: string;
|
3510
|
+
attributeId: string;
|
3511
|
+
textValue: string | null;
|
3512
|
+
booleanValue: boolean | null;
|
3513
|
+
numberValue: number | null;
|
3514
|
+
dateValue: Date | null;
|
3515
|
+
}[] | undefined;
|
3311
3516
|
}>>;
|
3312
3517
|
}, "strip", z.ZodTypeAny, {
|
3313
3518
|
id: string;
|
@@ -3326,11 +3531,34 @@ export declare const lineContract: {
|
|
3326
3531
|
handledTime: number | null;
|
3327
3532
|
firstResponseTime: number | null;
|
3328
3533
|
wrapUpForm: {
|
3534
|
+
type: string;
|
3329
3535
|
id: string;
|
3330
3536
|
disposition: string | null;
|
3331
3537
|
createdAt: Date;
|
3332
3538
|
updatedAt: Date;
|
3333
3539
|
deletedAt: Date | null;
|
3540
|
+
categories: {
|
3541
|
+
id: string;
|
3542
|
+
value: string;
|
3543
|
+
createdAt: Date;
|
3544
|
+
updatedAt: Date;
|
3545
|
+
deletedAt: Date | null;
|
3546
|
+
level: 2 | 1 | 3;
|
3547
|
+
parentId: string | null;
|
3548
|
+
childCategoryList: {
|
3549
|
+
id: string;
|
3550
|
+
value: string;
|
3551
|
+
level: 2 | 1 | 3;
|
3552
|
+
parentId: string | null;
|
3553
|
+
childCategoryList: {
|
3554
|
+
id: string;
|
3555
|
+
value: string;
|
3556
|
+
level: 2 | 1 | 3;
|
3557
|
+
parentId: string | null;
|
3558
|
+
childCategoryList: any[];
|
3559
|
+
}[];
|
3560
|
+
}[];
|
3561
|
+
}[];
|
3334
3562
|
tags: {
|
3335
3563
|
id: string;
|
3336
3564
|
name: string;
|
@@ -3341,6 +3569,18 @@ export declare const lineContract: {
|
|
3341
3569
|
callFrom: string | null;
|
3342
3570
|
callTo: string | null;
|
3343
3571
|
note: string | null;
|
3572
|
+
customFields?: {
|
3573
|
+
id: string;
|
3574
|
+
createdAt: Date;
|
3575
|
+
updatedAt: Date;
|
3576
|
+
deletedAt: Date | null;
|
3577
|
+
entityId: string;
|
3578
|
+
attributeId: string;
|
3579
|
+
textValue: string | null;
|
3580
|
+
booleanValue: boolean | null;
|
3581
|
+
numberValue: number | null;
|
3582
|
+
dateValue: Date | null;
|
3583
|
+
}[] | undefined;
|
3344
3584
|
} | null;
|
3345
3585
|
}, {
|
3346
3586
|
id: string;
|
@@ -3359,11 +3599,34 @@ export declare const lineContract: {
|
|
3359
3599
|
handledTime: number | null;
|
3360
3600
|
firstResponseTime: number | null;
|
3361
3601
|
wrapUpForm: {
|
3602
|
+
type: string;
|
3362
3603
|
id: string;
|
3363
3604
|
disposition: string | null;
|
3364
3605
|
createdAt: Date;
|
3365
3606
|
updatedAt: Date;
|
3366
3607
|
deletedAt: Date | null;
|
3608
|
+
categories: {
|
3609
|
+
id: string;
|
3610
|
+
value: string;
|
3611
|
+
createdAt: Date;
|
3612
|
+
updatedAt: Date;
|
3613
|
+
deletedAt: Date | null;
|
3614
|
+
level: 2 | 1 | 3;
|
3615
|
+
parentId: string | null;
|
3616
|
+
childCategoryList: {
|
3617
|
+
id: string;
|
3618
|
+
value: string;
|
3619
|
+
level: 2 | 1 | 3;
|
3620
|
+
parentId: string | null;
|
3621
|
+
childCategoryList: {
|
3622
|
+
id: string;
|
3623
|
+
value: string;
|
3624
|
+
level: 2 | 1 | 3;
|
3625
|
+
parentId: string | null;
|
3626
|
+
childCategoryList: any[];
|
3627
|
+
}[];
|
3628
|
+
}[];
|
3629
|
+
}[];
|
3367
3630
|
tags: {
|
3368
3631
|
id: string;
|
3369
3632
|
name: string;
|
@@ -3374,6 +3637,18 @@ export declare const lineContract: {
|
|
3374
3637
|
callFrom: string | null;
|
3375
3638
|
callTo: string | null;
|
3376
3639
|
note: string | null;
|
3640
|
+
customFields?: {
|
3641
|
+
id: string;
|
3642
|
+
createdAt: Date;
|
3643
|
+
updatedAt: Date;
|
3644
|
+
deletedAt: Date | null;
|
3645
|
+
entityId: string;
|
3646
|
+
attributeId: string;
|
3647
|
+
textValue: string | null;
|
3648
|
+
booleanValue: boolean | null;
|
3649
|
+
numberValue: number | null;
|
3650
|
+
dateValue: Date | null;
|
3651
|
+
}[] | undefined;
|
3377
3652
|
} | null;
|
3378
3653
|
}>;
|
3379
3654
|
}, "strip", z.ZodTypeAny, {
|
@@ -3673,11 +3948,34 @@ export declare const lineContract: {
|
|
3673
3948
|
handledTime: number | null;
|
3674
3949
|
firstResponseTime: number | null;
|
3675
3950
|
wrapUpForm: {
|
3951
|
+
type: string;
|
3676
3952
|
id: string;
|
3677
3953
|
disposition: string | null;
|
3678
3954
|
createdAt: Date;
|
3679
3955
|
updatedAt: Date;
|
3680
3956
|
deletedAt: Date | null;
|
3957
|
+
categories: {
|
3958
|
+
id: string;
|
3959
|
+
value: string;
|
3960
|
+
createdAt: Date;
|
3961
|
+
updatedAt: Date;
|
3962
|
+
deletedAt: Date | null;
|
3963
|
+
level: 2 | 1 | 3;
|
3964
|
+
parentId: string | null;
|
3965
|
+
childCategoryList: {
|
3966
|
+
id: string;
|
3967
|
+
value: string;
|
3968
|
+
level: 2 | 1 | 3;
|
3969
|
+
parentId: string | null;
|
3970
|
+
childCategoryList: {
|
3971
|
+
id: string;
|
3972
|
+
value: string;
|
3973
|
+
level: 2 | 1 | 3;
|
3974
|
+
parentId: string | null;
|
3975
|
+
childCategoryList: any[];
|
3976
|
+
}[];
|
3977
|
+
}[];
|
3978
|
+
}[];
|
3681
3979
|
tags: {
|
3682
3980
|
id: string;
|
3683
3981
|
name: string;
|
@@ -3688,6 +3986,18 @@ export declare const lineContract: {
|
|
3688
3986
|
callFrom: string | null;
|
3689
3987
|
callTo: string | null;
|
3690
3988
|
note: string | null;
|
3989
|
+
customFields?: {
|
3990
|
+
id: string;
|
3991
|
+
createdAt: Date;
|
3992
|
+
updatedAt: Date;
|
3993
|
+
deletedAt: Date | null;
|
3994
|
+
entityId: string;
|
3995
|
+
attributeId: string;
|
3996
|
+
textValue: string | null;
|
3997
|
+
booleanValue: boolean | null;
|
3998
|
+
numberValue: number | null;
|
3999
|
+
dateValue: Date | null;
|
4000
|
+
}[] | undefined;
|
3691
4001
|
} | null;
|
3692
4002
|
};
|
3693
4003
|
}, {
|
@@ -3987,11 +4297,34 @@ export declare const lineContract: {
|
|
3987
4297
|
handledTime: number | null;
|
3988
4298
|
firstResponseTime: number | null;
|
3989
4299
|
wrapUpForm: {
|
4300
|
+
type: string;
|
3990
4301
|
id: string;
|
3991
4302
|
disposition: string | null;
|
3992
4303
|
createdAt: Date;
|
3993
4304
|
updatedAt: Date;
|
3994
4305
|
deletedAt: Date | null;
|
4306
|
+
categories: {
|
4307
|
+
id: string;
|
4308
|
+
value: string;
|
4309
|
+
createdAt: Date;
|
4310
|
+
updatedAt: Date;
|
4311
|
+
deletedAt: Date | null;
|
4312
|
+
level: 2 | 1 | 3;
|
4313
|
+
parentId: string | null;
|
4314
|
+
childCategoryList: {
|
4315
|
+
id: string;
|
4316
|
+
value: string;
|
4317
|
+
level: 2 | 1 | 3;
|
4318
|
+
parentId: string | null;
|
4319
|
+
childCategoryList: {
|
4320
|
+
id: string;
|
4321
|
+
value: string;
|
4322
|
+
level: 2 | 1 | 3;
|
4323
|
+
parentId: string | null;
|
4324
|
+
childCategoryList: any[];
|
4325
|
+
}[];
|
4326
|
+
}[];
|
4327
|
+
}[];
|
3995
4328
|
tags: {
|
3996
4329
|
id: string;
|
3997
4330
|
name: string;
|
@@ -4002,6 +4335,18 @@ export declare const lineContract: {
|
|
4002
4335
|
callFrom: string | null;
|
4003
4336
|
callTo: string | null;
|
4004
4337
|
note: string | null;
|
4338
|
+
customFields?: {
|
4339
|
+
id: string;
|
4340
|
+
createdAt: Date;
|
4341
|
+
updatedAt: Date;
|
4342
|
+
deletedAt: Date | null;
|
4343
|
+
entityId: string;
|
4344
|
+
attributeId: string;
|
4345
|
+
textValue: string | null;
|
4346
|
+
booleanValue: boolean | null;
|
4347
|
+
numberValue: number | null;
|
4348
|
+
dateValue: Date | null;
|
4349
|
+
}[] | undefined;
|
4005
4350
|
} | null;
|
4006
4351
|
};
|
4007
4352
|
}>;
|
@@ -6047,11 +6392,34 @@ export declare const lineContract: {
|
|
6047
6392
|
handledTime: number | null;
|
6048
6393
|
firstResponseTime: number | null;
|
6049
6394
|
wrapUpForm: {
|
6395
|
+
type: string;
|
6050
6396
|
id: string;
|
6051
6397
|
disposition: string | null;
|
6052
6398
|
createdAt: Date;
|
6053
6399
|
updatedAt: Date;
|
6054
6400
|
deletedAt: Date | null;
|
6401
|
+
categories: {
|
6402
|
+
id: string;
|
6403
|
+
value: string;
|
6404
|
+
createdAt: Date;
|
6405
|
+
updatedAt: Date;
|
6406
|
+
deletedAt: Date | null;
|
6407
|
+
level: 2 | 1 | 3;
|
6408
|
+
parentId: string | null;
|
6409
|
+
childCategoryList: {
|
6410
|
+
id: string;
|
6411
|
+
value: string;
|
6412
|
+
level: 2 | 1 | 3;
|
6413
|
+
parentId: string | null;
|
6414
|
+
childCategoryList: {
|
6415
|
+
id: string;
|
6416
|
+
value: string;
|
6417
|
+
level: 2 | 1 | 3;
|
6418
|
+
parentId: string | null;
|
6419
|
+
childCategoryList: any[];
|
6420
|
+
}[];
|
6421
|
+
}[];
|
6422
|
+
}[];
|
6055
6423
|
tags: {
|
6056
6424
|
id: string;
|
6057
6425
|
name: string;
|
@@ -6062,6 +6430,18 @@ export declare const lineContract: {
|
|
6062
6430
|
callFrom: string | null;
|
6063
6431
|
callTo: string | null;
|
6064
6432
|
note: string | null;
|
6433
|
+
customFields?: {
|
6434
|
+
id: string;
|
6435
|
+
createdAt: Date;
|
6436
|
+
updatedAt: Date;
|
6437
|
+
deletedAt: Date | null;
|
6438
|
+
entityId: string;
|
6439
|
+
attributeId: string;
|
6440
|
+
textValue: string | null;
|
6441
|
+
booleanValue: boolean | null;
|
6442
|
+
numberValue: number | null;
|
6443
|
+
dateValue: Date | null;
|
6444
|
+
}[] | undefined;
|
6065
6445
|
} | null;
|
6066
6446
|
};
|
6067
6447
|
};
|
@@ -6687,11 +7067,34 @@ export declare const lineContract: {
|
|
6687
7067
|
handledTime: number | null;
|
6688
7068
|
firstResponseTime: number | null;
|
6689
7069
|
wrapUpForm: {
|
7070
|
+
type: string;
|
6690
7071
|
id: string;
|
6691
7072
|
disposition: string | null;
|
6692
7073
|
createdAt: Date;
|
6693
7074
|
updatedAt: Date;
|
6694
7075
|
deletedAt: Date | null;
|
7076
|
+
categories: {
|
7077
|
+
id: string;
|
7078
|
+
value: string;
|
7079
|
+
createdAt: Date;
|
7080
|
+
updatedAt: Date;
|
7081
|
+
deletedAt: Date | null;
|
7082
|
+
level: 2 | 1 | 3;
|
7083
|
+
parentId: string | null;
|
7084
|
+
childCategoryList: {
|
7085
|
+
id: string;
|
7086
|
+
value: string;
|
7087
|
+
level: 2 | 1 | 3;
|
7088
|
+
parentId: string | null;
|
7089
|
+
childCategoryList: {
|
7090
|
+
id: string;
|
7091
|
+
value: string;
|
7092
|
+
level: 2 | 1 | 3;
|
7093
|
+
parentId: string | null;
|
7094
|
+
childCategoryList: any[];
|
7095
|
+
}[];
|
7096
|
+
}[];
|
7097
|
+
}[];
|
6695
7098
|
tags: {
|
6696
7099
|
id: string;
|
6697
7100
|
name: string;
|
@@ -6702,6 +7105,18 @@ export declare const lineContract: {
|
|
6702
7105
|
callFrom: string | null;
|
6703
7106
|
callTo: string | null;
|
6704
7107
|
note: string | null;
|
7108
|
+
customFields?: {
|
7109
|
+
id: string;
|
7110
|
+
createdAt: Date;
|
7111
|
+
updatedAt: Date;
|
7112
|
+
deletedAt: Date | null;
|
7113
|
+
entityId: string;
|
7114
|
+
attributeId: string;
|
7115
|
+
textValue: string | null;
|
7116
|
+
booleanValue: boolean | null;
|
7117
|
+
numberValue: number | null;
|
7118
|
+
dateValue: Date | null;
|
7119
|
+
}[] | undefined;
|
6705
7120
|
} | null;
|
6706
7121
|
};
|
6707
7122
|
};
|
@@ -7329,11 +7744,34 @@ export declare const lineContract: {
|
|
7329
7744
|
handledTime: number | null;
|
7330
7745
|
firstResponseTime: number | null;
|
7331
7746
|
wrapUpForm: {
|
7747
|
+
type: string;
|
7332
7748
|
id: string;
|
7333
7749
|
disposition: string | null;
|
7334
7750
|
createdAt: Date;
|
7335
7751
|
updatedAt: Date;
|
7336
7752
|
deletedAt: Date | null;
|
7753
|
+
categories: {
|
7754
|
+
id: string;
|
7755
|
+
value: string;
|
7756
|
+
createdAt: Date;
|
7757
|
+
updatedAt: Date;
|
7758
|
+
deletedAt: Date | null;
|
7759
|
+
level: 2 | 1 | 3;
|
7760
|
+
parentId: string | null;
|
7761
|
+
childCategoryList: {
|
7762
|
+
id: string;
|
7763
|
+
value: string;
|
7764
|
+
level: 2 | 1 | 3;
|
7765
|
+
parentId: string | null;
|
7766
|
+
childCategoryList: {
|
7767
|
+
id: string;
|
7768
|
+
value: string;
|
7769
|
+
level: 2 | 1 | 3;
|
7770
|
+
parentId: string | null;
|
7771
|
+
childCategoryList: any[];
|
7772
|
+
}[];
|
7773
|
+
}[];
|
7774
|
+
}[];
|
7337
7775
|
tags: {
|
7338
7776
|
id: string;
|
7339
7777
|
name: string;
|
@@ -7344,6 +7782,18 @@ export declare const lineContract: {
|
|
7344
7782
|
callFrom: string | null;
|
7345
7783
|
callTo: string | null;
|
7346
7784
|
note: string | null;
|
7785
|
+
customFields?: {
|
7786
|
+
id: string;
|
7787
|
+
createdAt: Date;
|
7788
|
+
updatedAt: Date;
|
7789
|
+
deletedAt: Date | null;
|
7790
|
+
entityId: string;
|
7791
|
+
attributeId: string;
|
7792
|
+
textValue: string | null;
|
7793
|
+
booleanValue: boolean | null;
|
7794
|
+
numberValue: number | null;
|
7795
|
+
dateValue: Date | null;
|
7796
|
+
}[] | undefined;
|
7347
7797
|
} | null;
|
7348
7798
|
};
|
7349
7799
|
};
|
@@ -7972,11 +8422,34 @@ export declare const lineContract: {
|
|
7972
8422
|
handledTime: number | null;
|
7973
8423
|
firstResponseTime: number | null;
|
7974
8424
|
wrapUpForm: {
|
8425
|
+
type: string;
|
7975
8426
|
id: string;
|
7976
8427
|
disposition: string | null;
|
7977
8428
|
createdAt: Date;
|
7978
8429
|
updatedAt: Date;
|
7979
8430
|
deletedAt: Date | null;
|
8431
|
+
categories: {
|
8432
|
+
id: string;
|
8433
|
+
value: string;
|
8434
|
+
createdAt: Date;
|
8435
|
+
updatedAt: Date;
|
8436
|
+
deletedAt: Date | null;
|
8437
|
+
level: 2 | 1 | 3;
|
8438
|
+
parentId: string | null;
|
8439
|
+
childCategoryList: {
|
8440
|
+
id: string;
|
8441
|
+
value: string;
|
8442
|
+
level: 2 | 1 | 3;
|
8443
|
+
parentId: string | null;
|
8444
|
+
childCategoryList: {
|
8445
|
+
id: string;
|
8446
|
+
value: string;
|
8447
|
+
level: 2 | 1 | 3;
|
8448
|
+
parentId: string | null;
|
8449
|
+
childCategoryList: any[];
|
8450
|
+
}[];
|
8451
|
+
}[];
|
8452
|
+
}[];
|
7980
8453
|
tags: {
|
7981
8454
|
id: string;
|
7982
8455
|
name: string;
|
@@ -7987,6 +8460,18 @@ export declare const lineContract: {
|
|
7987
8460
|
callFrom: string | null;
|
7988
8461
|
callTo: string | null;
|
7989
8462
|
note: string | null;
|
8463
|
+
customFields?: {
|
8464
|
+
id: string;
|
8465
|
+
createdAt: Date;
|
8466
|
+
updatedAt: Date;
|
8467
|
+
deletedAt: Date | null;
|
8468
|
+
entityId: string;
|
8469
|
+
attributeId: string;
|
8470
|
+
textValue: string | null;
|
8471
|
+
booleanValue: boolean | null;
|
8472
|
+
numberValue: number | null;
|
8473
|
+
dateValue: Date | null;
|
8474
|
+
}[] | undefined;
|
7990
8475
|
} | null;
|
7991
8476
|
};
|
7992
8477
|
};
|