@kl1/contracts 1.1.25 → 1.1.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/index.js +935 -924
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +934 -924
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +4867 -22
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +773 -22
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +975 -5
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/contact/index.d.ts +3 -0
  12. package/dist/src/contact/index.d.ts.map +1 -1
  13. package/dist/src/contact/schema.d.ts.map +1 -1
  14. package/dist/src/contact/validation.d.ts +3 -0
  15. package/dist/src/contact/validation.d.ts.map +1 -1
  16. package/dist/src/contract.d.ts +164160 -131652
  17. package/dist/src/contract.d.ts.map +1 -1
  18. package/dist/src/cx-log/index.d.ts +352 -2
  19. package/dist/src/cx-log/index.d.ts.map +1 -1
  20. package/dist/src/cx-log/schema.d.ts +557 -4
  21. package/dist/src/cx-log/schema.d.ts.map +1 -1
  22. package/dist/src/instagram/index.d.ts +487 -2
  23. package/dist/src/instagram/index.d.ts.map +1 -1
  24. package/dist/src/line/index.d.ts +487 -2
  25. package/dist/src/line/index.d.ts.map +1 -1
  26. package/dist/src/mail/mail-contract.d.ts +30477 -6759
  27. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  28. package/dist/src/mail/message-contract.d.ts +6424 -64
  29. package/dist/src/mail/message-contract.d.ts.map +1 -1
  30. package/dist/src/mail/room-contract.d.ts +19532 -2172
  31. package/dist/src/mail/room-contract.d.ts.map +1 -1
  32. package/dist/src/mail/schemas/message-validation.schema.d.ts +7 -4
  33. package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
  34. package/dist/src/mail/schemas/message.schema.d.ts +762 -40
  35. package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
  36. package/dist/src/mail/schemas/room-validation.schema.d.ts +6057 -350
  37. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  38. package/dist/src/mail/schemas/room.schema.d.ts +5984 -308
  39. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  40. package/dist/src/messenger/index.d.ts +487 -2
  41. package/dist/src/messenger/index.d.ts.map +1 -1
  42. package/dist/src/telephony-cdr/call-report.schema.d.ts +62 -62
  43. package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
  44. package/dist/src/telephony-cdr/index.d.ts +1 -622
  45. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  46. package/dist/src/viber/index.d.ts +487 -2
  47. package/dist/src/viber/index.d.ts.map +1 -1
  48. package/dist/src/webchat/index.d.ts +487 -2
  49. package/dist/src/webchat/index.d.ts.map +1 -1
  50. package/dist/src/workflow-rule/index.d.ts +834 -4
  51. package/dist/src/workflow-rule/index.d.ts.map +1 -1
  52. package/dist/src/wrap-up-form/index.d.ts +1447 -6
  53. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  54. package/dist/src/wrap-up-form/schema.d.ts +207 -2
  55. package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
  56. package/dist/src/wrap-up-form/validation.d.ts +29 -0
  57. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  58. package/package.json +1 -1
@@ -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
- callFrom: z.ZodNullable<z.ZodString>;
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.ZodNullable<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
+ }[] | null | 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
+ }[] | null | 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
+ }[] | null | 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
+ }[] | null | undefined;
3377
3652
  } | null;
3378
3653
  }>;
3379
3654
  workflowRule: z.ZodObject<{
@@ -3698,11 +3973,34 @@ export declare const lineContract: {
3698
3973
  handledTime: number | null;
3699
3974
  firstResponseTime: number | null;
3700
3975
  wrapUpForm: {
3976
+ type: string;
3701
3977
  id: string;
3702
3978
  disposition: string | null;
3703
3979
  createdAt: Date;
3704
3980
  updatedAt: Date;
3705
3981
  deletedAt: Date | null;
3982
+ categories: {
3983
+ id: string;
3984
+ value: string;
3985
+ createdAt: Date;
3986
+ updatedAt: Date;
3987
+ deletedAt: Date | null;
3988
+ level: 2 | 1 | 3;
3989
+ parentId: string | null;
3990
+ childCategoryList: {
3991
+ id: string;
3992
+ value: string;
3993
+ level: 2 | 1 | 3;
3994
+ parentId: string | null;
3995
+ childCategoryList: {
3996
+ id: string;
3997
+ value: string;
3998
+ level: 2 | 1 | 3;
3999
+ parentId: string | null;
4000
+ childCategoryList: any[];
4001
+ }[];
4002
+ }[];
4003
+ }[];
3706
4004
  tags: {
3707
4005
  id: string;
3708
4006
  name: string;
@@ -3713,6 +4011,18 @@ export declare const lineContract: {
3713
4011
  callFrom: string | null;
3714
4012
  callTo: string | null;
3715
4013
  note: string | null;
4014
+ customFields?: {
4015
+ id: string;
4016
+ createdAt: Date;
4017
+ updatedAt: Date;
4018
+ deletedAt: Date | null;
4019
+ entityId: string;
4020
+ attributeId: string;
4021
+ textValue: string | null;
4022
+ booleanValue: boolean | null;
4023
+ numberValue: number | null;
4024
+ dateValue: Date | null;
4025
+ }[] | null | undefined;
3716
4026
  } | null;
3717
4027
  };
3718
4028
  workflowRule: {
@@ -4021,11 +4331,34 @@ export declare const lineContract: {
4021
4331
  handledTime: number | null;
4022
4332
  firstResponseTime: number | null;
4023
4333
  wrapUpForm: {
4334
+ type: string;
4024
4335
  id: string;
4025
4336
  disposition: string | null;
4026
4337
  createdAt: Date;
4027
4338
  updatedAt: Date;
4028
4339
  deletedAt: Date | null;
4340
+ categories: {
4341
+ id: string;
4342
+ value: string;
4343
+ createdAt: Date;
4344
+ updatedAt: Date;
4345
+ deletedAt: Date | null;
4346
+ level: 2 | 1 | 3;
4347
+ parentId: string | null;
4348
+ childCategoryList: {
4349
+ id: string;
4350
+ value: string;
4351
+ level: 2 | 1 | 3;
4352
+ parentId: string | null;
4353
+ childCategoryList: {
4354
+ id: string;
4355
+ value: string;
4356
+ level: 2 | 1 | 3;
4357
+ parentId: string | null;
4358
+ childCategoryList: any[];
4359
+ }[];
4360
+ }[];
4361
+ }[];
4029
4362
  tags: {
4030
4363
  id: string;
4031
4364
  name: string;
@@ -4036,6 +4369,18 @@ export declare const lineContract: {
4036
4369
  callFrom: string | null;
4037
4370
  callTo: string | null;
4038
4371
  note: string | null;
4372
+ customFields?: {
4373
+ id: string;
4374
+ createdAt: Date;
4375
+ updatedAt: Date;
4376
+ deletedAt: Date | null;
4377
+ entityId: string;
4378
+ attributeId: string;
4379
+ textValue: string | null;
4380
+ booleanValue: boolean | null;
4381
+ numberValue: number | null;
4382
+ dateValue: Date | null;
4383
+ }[] | null | undefined;
4039
4384
  } | null;
4040
4385
  };
4041
4386
  workflowRule: {
@@ -6115,11 +6460,34 @@ export declare const lineContract: {
6115
6460
  handledTime: number | null;
6116
6461
  firstResponseTime: number | null;
6117
6462
  wrapUpForm: {
6463
+ type: string;
6118
6464
  id: string;
6119
6465
  disposition: string | null;
6120
6466
  createdAt: Date;
6121
6467
  updatedAt: Date;
6122
6468
  deletedAt: Date | null;
6469
+ categories: {
6470
+ id: string;
6471
+ value: string;
6472
+ createdAt: Date;
6473
+ updatedAt: Date;
6474
+ deletedAt: Date | null;
6475
+ level: 2 | 1 | 3;
6476
+ parentId: string | null;
6477
+ childCategoryList: {
6478
+ id: string;
6479
+ value: string;
6480
+ level: 2 | 1 | 3;
6481
+ parentId: string | null;
6482
+ childCategoryList: {
6483
+ id: string;
6484
+ value: string;
6485
+ level: 2 | 1 | 3;
6486
+ parentId: string | null;
6487
+ childCategoryList: any[];
6488
+ }[];
6489
+ }[];
6490
+ }[];
6123
6491
  tags: {
6124
6492
  id: string;
6125
6493
  name: string;
@@ -6130,6 +6498,18 @@ export declare const lineContract: {
6130
6498
  callFrom: string | null;
6131
6499
  callTo: string | null;
6132
6500
  note: string | null;
6501
+ customFields?: {
6502
+ id: string;
6503
+ createdAt: Date;
6504
+ updatedAt: Date;
6505
+ deletedAt: Date | null;
6506
+ entityId: string;
6507
+ attributeId: string;
6508
+ textValue: string | null;
6509
+ booleanValue: boolean | null;
6510
+ numberValue: number | null;
6511
+ dateValue: Date | null;
6512
+ }[] | null | undefined;
6133
6513
  } | null;
6134
6514
  };
6135
6515
  workflowRule: {
@@ -6773,11 +7153,34 @@ export declare const lineContract: {
6773
7153
  handledTime: number | null;
6774
7154
  firstResponseTime: number | null;
6775
7155
  wrapUpForm: {
7156
+ type: string;
6776
7157
  id: string;
6777
7158
  disposition: string | null;
6778
7159
  createdAt: Date;
6779
7160
  updatedAt: Date;
6780
7161
  deletedAt: Date | null;
7162
+ categories: {
7163
+ id: string;
7164
+ value: string;
7165
+ createdAt: Date;
7166
+ updatedAt: Date;
7167
+ deletedAt: Date | null;
7168
+ level: 2 | 1 | 3;
7169
+ parentId: string | null;
7170
+ childCategoryList: {
7171
+ id: string;
7172
+ value: string;
7173
+ level: 2 | 1 | 3;
7174
+ parentId: string | null;
7175
+ childCategoryList: {
7176
+ id: string;
7177
+ value: string;
7178
+ level: 2 | 1 | 3;
7179
+ parentId: string | null;
7180
+ childCategoryList: any[];
7181
+ }[];
7182
+ }[];
7183
+ }[];
6781
7184
  tags: {
6782
7185
  id: string;
6783
7186
  name: string;
@@ -6788,6 +7191,18 @@ export declare const lineContract: {
6788
7191
  callFrom: string | null;
6789
7192
  callTo: string | null;
6790
7193
  note: string | null;
7194
+ customFields?: {
7195
+ id: string;
7196
+ createdAt: Date;
7197
+ updatedAt: Date;
7198
+ deletedAt: Date | null;
7199
+ entityId: string;
7200
+ attributeId: string;
7201
+ textValue: string | null;
7202
+ booleanValue: boolean | null;
7203
+ numberValue: number | null;
7204
+ dateValue: Date | null;
7205
+ }[] | null | undefined;
6791
7206
  } | null;
6792
7207
  };
6793
7208
  workflowRule: {
@@ -7433,11 +7848,34 @@ export declare const lineContract: {
7433
7848
  handledTime: number | null;
7434
7849
  firstResponseTime: number | null;
7435
7850
  wrapUpForm: {
7851
+ type: string;
7436
7852
  id: string;
7437
7853
  disposition: string | null;
7438
7854
  createdAt: Date;
7439
7855
  updatedAt: Date;
7440
7856
  deletedAt: Date | null;
7857
+ categories: {
7858
+ id: string;
7859
+ value: string;
7860
+ createdAt: Date;
7861
+ updatedAt: Date;
7862
+ deletedAt: Date | null;
7863
+ level: 2 | 1 | 3;
7864
+ parentId: string | null;
7865
+ childCategoryList: {
7866
+ id: string;
7867
+ value: string;
7868
+ level: 2 | 1 | 3;
7869
+ parentId: string | null;
7870
+ childCategoryList: {
7871
+ id: string;
7872
+ value: string;
7873
+ level: 2 | 1 | 3;
7874
+ parentId: string | null;
7875
+ childCategoryList: any[];
7876
+ }[];
7877
+ }[];
7878
+ }[];
7441
7879
  tags: {
7442
7880
  id: string;
7443
7881
  name: string;
@@ -7448,6 +7886,18 @@ export declare const lineContract: {
7448
7886
  callFrom: string | null;
7449
7887
  callTo: string | null;
7450
7888
  note: string | null;
7889
+ customFields?: {
7890
+ id: string;
7891
+ createdAt: Date;
7892
+ updatedAt: Date;
7893
+ deletedAt: Date | null;
7894
+ entityId: string;
7895
+ attributeId: string;
7896
+ textValue: string | null;
7897
+ booleanValue: boolean | null;
7898
+ numberValue: number | null;
7899
+ dateValue: Date | null;
7900
+ }[] | null | undefined;
7451
7901
  } | null;
7452
7902
  };
7453
7903
  workflowRule: {
@@ -8094,11 +8544,34 @@ export declare const lineContract: {
8094
8544
  handledTime: number | null;
8095
8545
  firstResponseTime: number | null;
8096
8546
  wrapUpForm: {
8547
+ type: string;
8097
8548
  id: string;
8098
8549
  disposition: string | null;
8099
8550
  createdAt: Date;
8100
8551
  updatedAt: Date;
8101
8552
  deletedAt: Date | null;
8553
+ categories: {
8554
+ id: string;
8555
+ value: string;
8556
+ createdAt: Date;
8557
+ updatedAt: Date;
8558
+ deletedAt: Date | null;
8559
+ level: 2 | 1 | 3;
8560
+ parentId: string | null;
8561
+ childCategoryList: {
8562
+ id: string;
8563
+ value: string;
8564
+ level: 2 | 1 | 3;
8565
+ parentId: string | null;
8566
+ childCategoryList: {
8567
+ id: string;
8568
+ value: string;
8569
+ level: 2 | 1 | 3;
8570
+ parentId: string | null;
8571
+ childCategoryList: any[];
8572
+ }[];
8573
+ }[];
8574
+ }[];
8102
8575
  tags: {
8103
8576
  id: string;
8104
8577
  name: string;
@@ -8109,6 +8582,18 @@ export declare const lineContract: {
8109
8582
  callFrom: string | null;
8110
8583
  callTo: string | null;
8111
8584
  note: string | null;
8585
+ customFields?: {
8586
+ id: string;
8587
+ createdAt: Date;
8588
+ updatedAt: Date;
8589
+ deletedAt: Date | null;
8590
+ entityId: string;
8591
+ attributeId: string;
8592
+ textValue: string | null;
8593
+ booleanValue: boolean | null;
8594
+ numberValue: number | null;
8595
+ dateValue: Date | null;
8596
+ }[] | null | undefined;
8112
8597
  } | null;
8113
8598
  };
8114
8599
  workflowRule: {