@kl1/contracts 1.1.23 → 1.1.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/index.js +6 -30
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +6 -30
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +22 -4867
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +4 -764
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +4 -974
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/contract.d.ts +44 -9413
  12. package/dist/src/contract.d.ts.map +1 -1
  13. package/dist/src/cx-log/index.d.ts +2 -347
  14. package/dist/src/cx-log/index.d.ts.map +1 -1
  15. package/dist/src/cx-log/schema.d.ts +4 -554
  16. package/dist/src/cx-log/schema.d.ts.map +1 -1
  17. package/dist/src/instagram/index.d.ts +2 -487
  18. package/dist/src/instagram/index.d.ts.map +1 -1
  19. package/dist/src/line/index.d.ts +2 -487
  20. package/dist/src/line/index.d.ts.map +1 -1
  21. package/dist/src/mail/mail-contract.d.ts +6 -1251
  22. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  23. package/dist/src/mail/room-contract.d.ts +6 -1251
  24. package/dist/src/mail/room-contract.d.ts.map +1 -1
  25. package/dist/src/mail/schemas/room-validation.schema.d.ts +2 -417
  26. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  27. package/dist/src/mail/schemas/room.schema.d.ts +2 -347
  28. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  29. package/dist/src/messenger/index.d.ts +2 -487
  30. package/dist/src/messenger/index.d.ts.map +1 -1
  31. package/dist/src/viber/index.d.ts +2 -487
  32. package/dist/src/viber/index.d.ts.map +1 -1
  33. package/dist/src/webchat/index.d.ts +2 -487
  34. package/dist/src/webchat/index.d.ts.map +1 -1
  35. package/dist/src/wrap-up-form/index.d.ts +6 -1000
  36. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  37. package/dist/src/wrap-up-form/schema.d.ts +2 -207
  38. package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
  39. package/dist/src/wrap-up-form/validation.d.ts +0 -29
  40. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  41. package/package.json +1 -1
@@ -3267,7 +3267,8 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3267
3267
  deletedAt: z.ZodNullable<z.ZodDate>;
3268
3268
  note: z.ZodNullable<z.ZodString>;
3269
3269
  disposition: z.ZodNullable<z.ZodString>;
3270
- type: z.ZodString;
3270
+ callFrom: z.ZodNullable<z.ZodString>;
3271
+ callTo: z.ZodNullable<z.ZodString>;
3271
3272
  tags: z.ZodArray<z.ZodObject<{
3272
3273
  id: z.ZodString;
3273
3274
  createdAt: z.ZodDate;
@@ -3287,171 +3288,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3287
3288
  updatedAt: Date;
3288
3289
  deletedAt: Date | null;
3289
3290
  }>, "many">;
3290
- categories: z.ZodArray<z.ZodObject<{
3291
- id: z.ZodString;
3292
- createdAt: z.ZodDate;
3293
- updatedAt: z.ZodDate;
3294
- deletedAt: z.ZodNullable<z.ZodDate>;
3295
- value: z.ZodString;
3296
- level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
3297
- parentId: z.ZodNullable<z.ZodString>;
3298
- childCategoryList: z.ZodArray<z.ZodObject<{
3299
- id: z.ZodString;
3300
- value: z.ZodString;
3301
- level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
3302
- parentId: z.ZodNullable<z.ZodString>;
3303
- childCategoryList: z.ZodArray<z.ZodObject<{
3304
- id: z.ZodString;
3305
- value: z.ZodString;
3306
- level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
3307
- parentId: z.ZodNullable<z.ZodString>;
3308
- childCategoryList: z.ZodArray<z.ZodAny, "many">;
3309
- }, "strip", z.ZodTypeAny, {
3310
- id: string;
3311
- value: string;
3312
- level: 2 | 1 | 3;
3313
- parentId: string | null;
3314
- childCategoryList: any[];
3315
- }, {
3316
- id: string;
3317
- value: string;
3318
- level: 2 | 1 | 3;
3319
- parentId: string | null;
3320
- childCategoryList: any[];
3321
- }>, "many">;
3322
- }, "strip", z.ZodTypeAny, {
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
- }, {
3335
- id: string;
3336
- value: string;
3337
- level: 2 | 1 | 3;
3338
- parentId: string | null;
3339
- childCategoryList: {
3340
- id: string;
3341
- value: string;
3342
- level: 2 | 1 | 3;
3343
- parentId: string | null;
3344
- childCategoryList: any[];
3345
- }[];
3346
- }>, "many">;
3347
- }, "strip", z.ZodTypeAny, {
3348
- id: string;
3349
- value: string;
3350
- createdAt: Date;
3351
- updatedAt: Date;
3352
- deletedAt: Date | null;
3353
- level: 2 | 1 | 3;
3354
- parentId: string | null;
3355
- childCategoryList: {
3356
- id: string;
3357
- value: string;
3358
- level: 2 | 1 | 3;
3359
- parentId: string | null;
3360
- childCategoryList: {
3361
- id: string;
3362
- value: string;
3363
- level: 2 | 1 | 3;
3364
- parentId: string | null;
3365
- childCategoryList: any[];
3366
- }[];
3367
- }[];
3368
- }, {
3369
- id: string;
3370
- value: string;
3371
- createdAt: Date;
3372
- updatedAt: Date;
3373
- deletedAt: Date | null;
3374
- level: 2 | 1 | 3;
3375
- parentId: string | null;
3376
- childCategoryList: {
3377
- id: string;
3378
- value: string;
3379
- level: 2 | 1 | 3;
3380
- parentId: string | null;
3381
- childCategoryList: {
3382
- id: string;
3383
- value: string;
3384
- level: 2 | 1 | 3;
3385
- parentId: string | null;
3386
- childCategoryList: any[];
3387
- }[];
3388
- }[];
3389
- }>, "many">;
3390
- callFrom: z.ZodNullable<z.ZodString>;
3391
- callTo: z.ZodNullable<z.ZodString>;
3392
- customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
3393
- id: z.ZodString;
3394
- createdAt: z.ZodDate;
3395
- updatedAt: z.ZodDate;
3396
- deletedAt: z.ZodNullable<z.ZodDate>;
3397
- textValue: z.ZodNullable<z.ZodString>;
3398
- booleanValue: z.ZodNullable<z.ZodBoolean>;
3399
- numberValue: z.ZodNullable<z.ZodNumber>;
3400
- dateValue: z.ZodNullable<z.ZodDate>;
3401
- entityId: z.ZodString;
3402
- attributeId: z.ZodString;
3403
- }, "strip", z.ZodTypeAny, {
3404
- id: string;
3405
- createdAt: Date;
3406
- updatedAt: Date;
3407
- deletedAt: Date | null;
3408
- entityId: string;
3409
- attributeId: string;
3410
- textValue: string | null;
3411
- booleanValue: boolean | null;
3412
- numberValue: number | null;
3413
- dateValue: Date | null;
3414
- }, {
3415
- id: string;
3416
- createdAt: Date;
3417
- updatedAt: Date;
3418
- deletedAt: Date | null;
3419
- entityId: string;
3420
- attributeId: string;
3421
- textValue: string | null;
3422
- booleanValue: boolean | null;
3423
- numberValue: number | null;
3424
- dateValue: Date | null;
3425
- }>, "many">>>;
3426
3291
  }, "strip", z.ZodTypeAny, {
3427
- type: string;
3428
3292
  id: string;
3429
3293
  disposition: string | null;
3430
3294
  createdAt: Date;
3431
3295
  updatedAt: Date;
3432
3296
  deletedAt: Date | null;
3433
- categories: {
3434
- id: string;
3435
- value: string;
3436
- createdAt: Date;
3437
- updatedAt: Date;
3438
- deletedAt: Date | null;
3439
- level: 2 | 1 | 3;
3440
- parentId: string | null;
3441
- childCategoryList: {
3442
- id: string;
3443
- value: string;
3444
- level: 2 | 1 | 3;
3445
- parentId: string | null;
3446
- childCategoryList: {
3447
- id: string;
3448
- value: string;
3449
- level: 2 | 1 | 3;
3450
- parentId: string | null;
3451
- childCategoryList: any[];
3452
- }[];
3453
- }[];
3454
- }[];
3455
3297
  tags: {
3456
3298
  id: string;
3457
3299
  name: string;
@@ -3462,47 +3304,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3462
3304
  callFrom: string | null;
3463
3305
  callTo: string | null;
3464
3306
  note: string | null;
3465
- customFields?: {
3466
- id: string;
3467
- createdAt: Date;
3468
- updatedAt: Date;
3469
- deletedAt: Date | null;
3470
- entityId: string;
3471
- attributeId: string;
3472
- textValue: string | null;
3473
- booleanValue: boolean | null;
3474
- numberValue: number | null;
3475
- dateValue: Date | null;
3476
- }[] | null | undefined;
3477
3307
  }, {
3478
- type: string;
3479
3308
  id: string;
3480
3309
  disposition: string | null;
3481
3310
  createdAt: Date;
3482
3311
  updatedAt: Date;
3483
3312
  deletedAt: Date | null;
3484
- categories: {
3485
- id: string;
3486
- value: string;
3487
- createdAt: Date;
3488
- updatedAt: Date;
3489
- deletedAt: Date | null;
3490
- level: 2 | 1 | 3;
3491
- parentId: string | null;
3492
- childCategoryList: {
3493
- id: string;
3494
- value: string;
3495
- level: 2 | 1 | 3;
3496
- parentId: string | null;
3497
- childCategoryList: {
3498
- id: string;
3499
- value: string;
3500
- level: 2 | 1 | 3;
3501
- parentId: string | null;
3502
- childCategoryList: any[];
3503
- }[];
3504
- }[];
3505
- }[];
3506
3313
  tags: {
3507
3314
  id: string;
3508
3315
  name: string;
@@ -3513,18 +3320,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3513
3320
  callFrom: string | null;
3514
3321
  callTo: string | null;
3515
3322
  note: string | null;
3516
- customFields?: {
3517
- id: string;
3518
- createdAt: Date;
3519
- updatedAt: Date;
3520
- deletedAt: Date | null;
3521
- entityId: string;
3522
- attributeId: string;
3523
- textValue: string | null;
3524
- booleanValue: boolean | null;
3525
- numberValue: number | null;
3526
- dateValue: Date | null;
3527
- }[] | null | undefined;
3528
3323
  }>>;
3529
3324
  }, "strip", z.ZodTypeAny, {
3530
3325
  id: string;
@@ -3543,34 +3338,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3543
3338
  handledTime: number | null;
3544
3339
  firstResponseTime: number | null;
3545
3340
  wrapUpForm: {
3546
- type: string;
3547
3341
  id: string;
3548
3342
  disposition: string | null;
3549
3343
  createdAt: Date;
3550
3344
  updatedAt: Date;
3551
3345
  deletedAt: Date | null;
3552
- categories: {
3553
- id: string;
3554
- value: string;
3555
- createdAt: Date;
3556
- updatedAt: Date;
3557
- deletedAt: Date | null;
3558
- level: 2 | 1 | 3;
3559
- parentId: string | null;
3560
- childCategoryList: {
3561
- id: string;
3562
- value: string;
3563
- level: 2 | 1 | 3;
3564
- parentId: string | null;
3565
- childCategoryList: {
3566
- id: string;
3567
- value: string;
3568
- level: 2 | 1 | 3;
3569
- parentId: string | null;
3570
- childCategoryList: any[];
3571
- }[];
3572
- }[];
3573
- }[];
3574
3346
  tags: {
3575
3347
  id: string;
3576
3348
  name: string;
@@ -3581,18 +3353,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3581
3353
  callFrom: string | null;
3582
3354
  callTo: string | null;
3583
3355
  note: string | null;
3584
- customFields?: {
3585
- id: string;
3586
- createdAt: Date;
3587
- updatedAt: Date;
3588
- deletedAt: Date | null;
3589
- entityId: string;
3590
- attributeId: string;
3591
- textValue: string | null;
3592
- booleanValue: boolean | null;
3593
- numberValue: number | null;
3594
- dateValue: Date | null;
3595
- }[] | null | undefined;
3596
3356
  } | null;
3597
3357
  }, {
3598
3358
  id: string;
@@ -3611,34 +3371,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3611
3371
  handledTime: number | null;
3612
3372
  firstResponseTime: number | null;
3613
3373
  wrapUpForm: {
3614
- type: string;
3615
3374
  id: string;
3616
3375
  disposition: string | null;
3617
3376
  createdAt: Date;
3618
3377
  updatedAt: Date;
3619
3378
  deletedAt: Date | null;
3620
- categories: {
3621
- id: string;
3622
- value: string;
3623
- createdAt: Date;
3624
- updatedAt: Date;
3625
- deletedAt: Date | null;
3626
- level: 2 | 1 | 3;
3627
- parentId: string | null;
3628
- childCategoryList: {
3629
- id: string;
3630
- value: string;
3631
- level: 2 | 1 | 3;
3632
- parentId: string | null;
3633
- childCategoryList: {
3634
- id: string;
3635
- value: string;
3636
- level: 2 | 1 | 3;
3637
- parentId: string | null;
3638
- childCategoryList: any[];
3639
- }[];
3640
- }[];
3641
- }[];
3642
3379
  tags: {
3643
3380
  id: string;
3644
3381
  name: string;
@@ -3649,18 +3386,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3649
3386
  callFrom: string | null;
3650
3387
  callTo: string | null;
3651
3388
  note: string | null;
3652
- customFields?: {
3653
- id: string;
3654
- createdAt: Date;
3655
- updatedAt: Date;
3656
- deletedAt: Date | null;
3657
- entityId: string;
3658
- attributeId: string;
3659
- textValue: string | null;
3660
- booleanValue: boolean | null;
3661
- numberValue: number | null;
3662
- dateValue: Date | null;
3663
- }[] | null | undefined;
3664
3389
  } | null;
3665
3390
  }>;
3666
3391
  }, "strip", z.ZodTypeAny, {
@@ -3960,34 +3685,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3960
3685
  handledTime: number | null;
3961
3686
  firstResponseTime: number | null;
3962
3687
  wrapUpForm: {
3963
- type: string;
3964
3688
  id: string;
3965
3689
  disposition: string | null;
3966
3690
  createdAt: Date;
3967
3691
  updatedAt: Date;
3968
3692
  deletedAt: Date | null;
3969
- categories: {
3970
- id: string;
3971
- value: string;
3972
- createdAt: Date;
3973
- updatedAt: Date;
3974
- deletedAt: Date | null;
3975
- level: 2 | 1 | 3;
3976
- parentId: string | null;
3977
- childCategoryList: {
3978
- id: string;
3979
- value: string;
3980
- level: 2 | 1 | 3;
3981
- parentId: string | null;
3982
- childCategoryList: {
3983
- id: string;
3984
- value: string;
3985
- level: 2 | 1 | 3;
3986
- parentId: string | null;
3987
- childCategoryList: any[];
3988
- }[];
3989
- }[];
3990
- }[];
3991
3693
  tags: {
3992
3694
  id: string;
3993
3695
  name: string;
@@ -3998,18 +3700,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3998
3700
  callFrom: string | null;
3999
3701
  callTo: string | null;
4000
3702
  note: string | null;
4001
- customFields?: {
4002
- id: string;
4003
- createdAt: Date;
4004
- updatedAt: Date;
4005
- deletedAt: Date | null;
4006
- entityId: string;
4007
- attributeId: string;
4008
- textValue: string | null;
4009
- booleanValue: boolean | null;
4010
- numberValue: number | null;
4011
- dateValue: Date | null;
4012
- }[] | null | undefined;
4013
3703
  } | null;
4014
3704
  };
4015
3705
  }, {
@@ -4309,34 +3999,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4309
3999
  handledTime: number | null;
4310
4000
  firstResponseTime: number | null;
4311
4001
  wrapUpForm: {
4312
- type: string;
4313
4002
  id: string;
4314
4003
  disposition: string | null;
4315
4004
  createdAt: Date;
4316
4005
  updatedAt: Date;
4317
4006
  deletedAt: Date | null;
4318
- categories: {
4319
- id: string;
4320
- value: string;
4321
- createdAt: Date;
4322
- updatedAt: Date;
4323
- deletedAt: Date | null;
4324
- level: 2 | 1 | 3;
4325
- parentId: string | null;
4326
- childCategoryList: {
4327
- id: string;
4328
- value: string;
4329
- level: 2 | 1 | 3;
4330
- parentId: string | null;
4331
- childCategoryList: {
4332
- id: string;
4333
- value: string;
4334
- level: 2 | 1 | 3;
4335
- parentId: string | null;
4336
- childCategoryList: any[];
4337
- }[];
4338
- }[];
4339
- }[];
4340
4007
  tags: {
4341
4008
  id: string;
4342
4009
  name: string;
@@ -4347,18 +4014,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4347
4014
  callFrom: string | null;
4348
4015
  callTo: string | null;
4349
4016
  note: string | null;
4350
- customFields?: {
4351
- id: string;
4352
- createdAt: Date;
4353
- updatedAt: Date;
4354
- deletedAt: Date | null;
4355
- entityId: string;
4356
- attributeId: string;
4357
- textValue: string | null;
4358
- booleanValue: boolean | null;
4359
- numberValue: number | null;
4360
- dateValue: Date | null;
4361
- }[] | null | undefined;
4362
4017
  } | null;
4363
4018
  };
4364
4019
  }>;
@@ -6404,34 +6059,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6404
6059
  handledTime: number | null;
6405
6060
  firstResponseTime: number | null;
6406
6061
  wrapUpForm: {
6407
- type: string;
6408
6062
  id: string;
6409
6063
  disposition: string | null;
6410
6064
  createdAt: Date;
6411
6065
  updatedAt: Date;
6412
6066
  deletedAt: Date | null;
6413
- categories: {
6414
- id: string;
6415
- value: string;
6416
- createdAt: Date;
6417
- updatedAt: Date;
6418
- deletedAt: Date | null;
6419
- level: 2 | 1 | 3;
6420
- parentId: string | null;
6421
- childCategoryList: {
6422
- id: string;
6423
- value: string;
6424
- level: 2 | 1 | 3;
6425
- parentId: string | null;
6426
- childCategoryList: {
6427
- id: string;
6428
- value: string;
6429
- level: 2 | 1 | 3;
6430
- parentId: string | null;
6431
- childCategoryList: any[];
6432
- }[];
6433
- }[];
6434
- }[];
6435
6067
  tags: {
6436
6068
  id: string;
6437
6069
  name: string;
@@ -6442,18 +6074,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6442
6074
  callFrom: string | null;
6443
6075
  callTo: string | null;
6444
6076
  note: string | null;
6445
- customFields?: {
6446
- id: string;
6447
- createdAt: Date;
6448
- updatedAt: Date;
6449
- deletedAt: Date | null;
6450
- entityId: string;
6451
- attributeId: string;
6452
- textValue: string | null;
6453
- booleanValue: boolean | null;
6454
- numberValue: number | null;
6455
- dateValue: Date | null;
6456
- }[] | null | undefined;
6457
6077
  } | null;
6458
6078
  };
6459
6079
  };
@@ -7079,34 +6699,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7079
6699
  handledTime: number | null;
7080
6700
  firstResponseTime: number | null;
7081
6701
  wrapUpForm: {
7082
- type: string;
7083
6702
  id: string;
7084
6703
  disposition: string | null;
7085
6704
  createdAt: Date;
7086
6705
  updatedAt: Date;
7087
6706
  deletedAt: Date | null;
7088
- categories: {
7089
- id: string;
7090
- value: string;
7091
- createdAt: Date;
7092
- updatedAt: Date;
7093
- deletedAt: Date | null;
7094
- level: 2 | 1 | 3;
7095
- parentId: string | null;
7096
- childCategoryList: {
7097
- id: string;
7098
- value: string;
7099
- level: 2 | 1 | 3;
7100
- parentId: string | null;
7101
- childCategoryList: {
7102
- id: string;
7103
- value: string;
7104
- level: 2 | 1 | 3;
7105
- parentId: string | null;
7106
- childCategoryList: any[];
7107
- }[];
7108
- }[];
7109
- }[];
7110
6707
  tags: {
7111
6708
  id: string;
7112
6709
  name: string;
@@ -7117,18 +6714,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7117
6714
  callFrom: string | null;
7118
6715
  callTo: string | null;
7119
6716
  note: string | null;
7120
- customFields?: {
7121
- id: string;
7122
- createdAt: Date;
7123
- updatedAt: Date;
7124
- deletedAt: Date | null;
7125
- entityId: string;
7126
- attributeId: string;
7127
- textValue: string | null;
7128
- booleanValue: boolean | null;
7129
- numberValue: number | null;
7130
- dateValue: Date | null;
7131
- }[] | null | undefined;
7132
6717
  } | null;
7133
6718
  };
7134
6719
  };
@@ -7756,34 +7341,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7756
7341
  handledTime: number | null;
7757
7342
  firstResponseTime: number | null;
7758
7343
  wrapUpForm: {
7759
- type: string;
7760
7344
  id: string;
7761
7345
  disposition: string | null;
7762
7346
  createdAt: Date;
7763
7347
  updatedAt: Date;
7764
7348
  deletedAt: Date | null;
7765
- categories: {
7766
- id: string;
7767
- value: string;
7768
- createdAt: Date;
7769
- updatedAt: Date;
7770
- deletedAt: Date | null;
7771
- level: 2 | 1 | 3;
7772
- parentId: string | null;
7773
- childCategoryList: {
7774
- id: string;
7775
- value: string;
7776
- level: 2 | 1 | 3;
7777
- parentId: string | null;
7778
- childCategoryList: {
7779
- id: string;
7780
- value: string;
7781
- level: 2 | 1 | 3;
7782
- parentId: string | null;
7783
- childCategoryList: any[];
7784
- }[];
7785
- }[];
7786
- }[];
7787
7349
  tags: {
7788
7350
  id: string;
7789
7351
  name: string;
@@ -7794,18 +7356,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7794
7356
  callFrom: string | null;
7795
7357
  callTo: string | null;
7796
7358
  note: string | null;
7797
- customFields?: {
7798
- id: string;
7799
- createdAt: Date;
7800
- updatedAt: Date;
7801
- deletedAt: Date | null;
7802
- entityId: string;
7803
- attributeId: string;
7804
- textValue: string | null;
7805
- booleanValue: boolean | null;
7806
- numberValue: number | null;
7807
- dateValue: Date | null;
7808
- }[] | null | undefined;
7809
7359
  } | null;
7810
7360
  };
7811
7361
  };
@@ -8434,34 +7984,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
8434
7984
  handledTime: number | null;
8435
7985
  firstResponseTime: number | null;
8436
7986
  wrapUpForm: {
8437
- type: string;
8438
7987
  id: string;
8439
7988
  disposition: string | null;
8440
7989
  createdAt: Date;
8441
7990
  updatedAt: Date;
8442
7991
  deletedAt: Date | null;
8443
- categories: {
8444
- id: string;
8445
- value: string;
8446
- createdAt: Date;
8447
- updatedAt: Date;
8448
- deletedAt: Date | null;
8449
- level: 2 | 1 | 3;
8450
- parentId: string | null;
8451
- childCategoryList: {
8452
- id: string;
8453
- value: string;
8454
- level: 2 | 1 | 3;
8455
- parentId: string | null;
8456
- childCategoryList: {
8457
- id: string;
8458
- value: string;
8459
- level: 2 | 1 | 3;
8460
- parentId: string | null;
8461
- childCategoryList: any[];
8462
- }[];
8463
- }[];
8464
- }[];
8465
7992
  tags: {
8466
7993
  id: string;
8467
7994
  name: string;
@@ -8472,18 +7999,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
8472
7999
  callFrom: string | null;
8473
8000
  callTo: string | null;
8474
8001
  note: string | null;
8475
- customFields?: {
8476
- id: string;
8477
- createdAt: Date;
8478
- updatedAt: Date;
8479
- deletedAt: Date | null;
8480
- entityId: string;
8481
- attributeId: string;
8482
- textValue: string | null;
8483
- booleanValue: boolean | null;
8484
- numberValue: number | null;
8485
- dateValue: Date | null;
8486
- }[] | null | undefined;
8487
8002
  } | null;
8488
8003
  };
8489
8004
  };
@@ -10344,7 +9859,8 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10344
9859
  deletedAt: z.ZodNullable<z.ZodDate>;
10345
9860
  note: z.ZodNullable<z.ZodString>;
10346
9861
  disposition: z.ZodNullable<z.ZodString>;
10347
- type: z.ZodString;
9862
+ callFrom: z.ZodNullable<z.ZodString>;
9863
+ callTo: z.ZodNullable<z.ZodString>;
10348
9864
  tags: z.ZodArray<z.ZodObject<{
10349
9865
  id: z.ZodString;
10350
9866
  createdAt: z.ZodDate;
@@ -10364,171 +9880,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10364
9880
  updatedAt: Date;
10365
9881
  deletedAt: Date | null;
10366
9882
  }>, "many">;
10367
- categories: z.ZodArray<z.ZodObject<{
10368
- id: z.ZodString;
10369
- createdAt: z.ZodDate;
10370
- updatedAt: z.ZodDate;
10371
- deletedAt: z.ZodNullable<z.ZodDate>;
10372
- value: z.ZodString;
10373
- level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
10374
- parentId: z.ZodNullable<z.ZodString>;
10375
- childCategoryList: z.ZodArray<z.ZodObject<{
10376
- id: z.ZodString;
10377
- value: z.ZodString;
10378
- level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
10379
- parentId: z.ZodNullable<z.ZodString>;
10380
- childCategoryList: z.ZodArray<z.ZodObject<{
10381
- id: z.ZodString;
10382
- value: z.ZodString;
10383
- level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
10384
- parentId: z.ZodNullable<z.ZodString>;
10385
- childCategoryList: z.ZodArray<z.ZodAny, "many">;
10386
- }, "strip", z.ZodTypeAny, {
10387
- id: string;
10388
- value: string;
10389
- level: 2 | 1 | 3;
10390
- parentId: string | null;
10391
- childCategoryList: any[];
10392
- }, {
10393
- id: string;
10394
- value: string;
10395
- level: 2 | 1 | 3;
10396
- parentId: string | null;
10397
- childCategoryList: any[];
10398
- }>, "many">;
10399
- }, "strip", z.ZodTypeAny, {
10400
- id: string;
10401
- value: string;
10402
- level: 2 | 1 | 3;
10403
- parentId: string | null;
10404
- childCategoryList: {
10405
- id: string;
10406
- value: string;
10407
- level: 2 | 1 | 3;
10408
- parentId: string | null;
10409
- childCategoryList: any[];
10410
- }[];
10411
- }, {
10412
- id: string;
10413
- value: string;
10414
- level: 2 | 1 | 3;
10415
- parentId: string | null;
10416
- childCategoryList: {
10417
- id: string;
10418
- value: string;
10419
- level: 2 | 1 | 3;
10420
- parentId: string | null;
10421
- childCategoryList: any[];
10422
- }[];
10423
- }>, "many">;
10424
- }, "strip", z.ZodTypeAny, {
10425
- id: string;
10426
- value: string;
10427
- createdAt: Date;
10428
- updatedAt: Date;
10429
- deletedAt: Date | null;
10430
- level: 2 | 1 | 3;
10431
- parentId: string | null;
10432
- childCategoryList: {
10433
- id: string;
10434
- value: string;
10435
- level: 2 | 1 | 3;
10436
- parentId: string | null;
10437
- childCategoryList: {
10438
- id: string;
10439
- value: string;
10440
- level: 2 | 1 | 3;
10441
- parentId: string | null;
10442
- childCategoryList: any[];
10443
- }[];
10444
- }[];
10445
- }, {
10446
- id: string;
10447
- value: string;
10448
- createdAt: Date;
10449
- updatedAt: Date;
10450
- deletedAt: Date | null;
10451
- level: 2 | 1 | 3;
10452
- parentId: string | null;
10453
- childCategoryList: {
10454
- id: string;
10455
- value: string;
10456
- level: 2 | 1 | 3;
10457
- parentId: string | null;
10458
- childCategoryList: {
10459
- id: string;
10460
- value: string;
10461
- level: 2 | 1 | 3;
10462
- parentId: string | null;
10463
- childCategoryList: any[];
10464
- }[];
10465
- }[];
10466
- }>, "many">;
10467
- callFrom: z.ZodNullable<z.ZodString>;
10468
- callTo: z.ZodNullable<z.ZodString>;
10469
- customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
10470
- id: z.ZodString;
10471
- createdAt: z.ZodDate;
10472
- updatedAt: z.ZodDate;
10473
- deletedAt: z.ZodNullable<z.ZodDate>;
10474
- textValue: z.ZodNullable<z.ZodString>;
10475
- booleanValue: z.ZodNullable<z.ZodBoolean>;
10476
- numberValue: z.ZodNullable<z.ZodNumber>;
10477
- dateValue: z.ZodNullable<z.ZodDate>;
10478
- entityId: z.ZodString;
10479
- attributeId: z.ZodString;
10480
- }, "strip", z.ZodTypeAny, {
10481
- id: string;
10482
- createdAt: Date;
10483
- updatedAt: Date;
10484
- deletedAt: Date | null;
10485
- entityId: string;
10486
- attributeId: string;
10487
- textValue: string | null;
10488
- booleanValue: boolean | null;
10489
- numberValue: number | null;
10490
- dateValue: Date | null;
10491
- }, {
10492
- id: string;
10493
- createdAt: Date;
10494
- updatedAt: Date;
10495
- deletedAt: Date | null;
10496
- entityId: string;
10497
- attributeId: string;
10498
- textValue: string | null;
10499
- booleanValue: boolean | null;
10500
- numberValue: number | null;
10501
- dateValue: Date | null;
10502
- }>, "many">>>;
10503
9883
  }, "strip", z.ZodTypeAny, {
10504
- type: string;
10505
9884
  id: string;
10506
9885
  disposition: string | null;
10507
9886
  createdAt: Date;
10508
9887
  updatedAt: Date;
10509
9888
  deletedAt: Date | null;
10510
- categories: {
10511
- id: string;
10512
- value: string;
10513
- createdAt: Date;
10514
- updatedAt: Date;
10515
- deletedAt: Date | null;
10516
- level: 2 | 1 | 3;
10517
- parentId: string | null;
10518
- childCategoryList: {
10519
- id: string;
10520
- value: string;
10521
- level: 2 | 1 | 3;
10522
- parentId: string | null;
10523
- childCategoryList: {
10524
- id: string;
10525
- value: string;
10526
- level: 2 | 1 | 3;
10527
- parentId: string | null;
10528
- childCategoryList: any[];
10529
- }[];
10530
- }[];
10531
- }[];
10532
9889
  tags: {
10533
9890
  id: string;
10534
9891
  name: string;
@@ -10539,47 +9896,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10539
9896
  callFrom: string | null;
10540
9897
  callTo: string | null;
10541
9898
  note: string | null;
10542
- customFields?: {
10543
- id: string;
10544
- createdAt: Date;
10545
- updatedAt: Date;
10546
- deletedAt: Date | null;
10547
- entityId: string;
10548
- attributeId: string;
10549
- textValue: string | null;
10550
- booleanValue: boolean | null;
10551
- numberValue: number | null;
10552
- dateValue: Date | null;
10553
- }[] | null | undefined;
10554
9899
  }, {
10555
- type: string;
10556
9900
  id: string;
10557
9901
  disposition: string | null;
10558
9902
  createdAt: Date;
10559
9903
  updatedAt: Date;
10560
9904
  deletedAt: Date | null;
10561
- categories: {
10562
- id: string;
10563
- value: string;
10564
- createdAt: Date;
10565
- updatedAt: Date;
10566
- deletedAt: Date | null;
10567
- level: 2 | 1 | 3;
10568
- parentId: string | null;
10569
- childCategoryList: {
10570
- id: string;
10571
- value: string;
10572
- level: 2 | 1 | 3;
10573
- parentId: string | null;
10574
- childCategoryList: {
10575
- id: string;
10576
- value: string;
10577
- level: 2 | 1 | 3;
10578
- parentId: string | null;
10579
- childCategoryList: any[];
10580
- }[];
10581
- }[];
10582
- }[];
10583
9905
  tags: {
10584
9906
  id: string;
10585
9907
  name: string;
@@ -10590,18 +9912,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10590
9912
  callFrom: string | null;
10591
9913
  callTo: string | null;
10592
9914
  note: string | null;
10593
- customFields?: {
10594
- id: string;
10595
- createdAt: Date;
10596
- updatedAt: Date;
10597
- deletedAt: Date | null;
10598
- entityId: string;
10599
- attributeId: string;
10600
- textValue: string | null;
10601
- booleanValue: boolean | null;
10602
- numberValue: number | null;
10603
- dateValue: Date | null;
10604
- }[] | null | undefined;
10605
9915
  }>>;
10606
9916
  }, "strip", z.ZodTypeAny, {
10607
9917
  id: string;
@@ -10620,34 +9930,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10620
9930
  handledTime: number | null;
10621
9931
  firstResponseTime: number | null;
10622
9932
  wrapUpForm: {
10623
- type: string;
10624
9933
  id: string;
10625
9934
  disposition: string | null;
10626
9935
  createdAt: Date;
10627
9936
  updatedAt: Date;
10628
9937
  deletedAt: Date | null;
10629
- categories: {
10630
- id: string;
10631
- value: string;
10632
- createdAt: Date;
10633
- updatedAt: Date;
10634
- deletedAt: Date | null;
10635
- level: 2 | 1 | 3;
10636
- parentId: string | null;
10637
- childCategoryList: {
10638
- id: string;
10639
- value: string;
10640
- level: 2 | 1 | 3;
10641
- parentId: string | null;
10642
- childCategoryList: {
10643
- id: string;
10644
- value: string;
10645
- level: 2 | 1 | 3;
10646
- parentId: string | null;
10647
- childCategoryList: any[];
10648
- }[];
10649
- }[];
10650
- }[];
10651
9938
  tags: {
10652
9939
  id: string;
10653
9940
  name: string;
@@ -10658,18 +9945,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10658
9945
  callFrom: string | null;
10659
9946
  callTo: string | null;
10660
9947
  note: string | null;
10661
- customFields?: {
10662
- id: string;
10663
- createdAt: Date;
10664
- updatedAt: Date;
10665
- deletedAt: Date | null;
10666
- entityId: string;
10667
- attributeId: string;
10668
- textValue: string | null;
10669
- booleanValue: boolean | null;
10670
- numberValue: number | null;
10671
- dateValue: Date | null;
10672
- }[] | null | undefined;
10673
9948
  } | null;
10674
9949
  }, {
10675
9950
  id: string;
@@ -10688,34 +9963,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10688
9963
  handledTime: number | null;
10689
9964
  firstResponseTime: number | null;
10690
9965
  wrapUpForm: {
10691
- type: string;
10692
9966
  id: string;
10693
9967
  disposition: string | null;
10694
9968
  createdAt: Date;
10695
9969
  updatedAt: Date;
10696
9970
  deletedAt: Date | null;
10697
- categories: {
10698
- id: string;
10699
- value: string;
10700
- createdAt: Date;
10701
- updatedAt: Date;
10702
- deletedAt: Date | null;
10703
- level: 2 | 1 | 3;
10704
- parentId: string | null;
10705
- childCategoryList: {
10706
- id: string;
10707
- value: string;
10708
- level: 2 | 1 | 3;
10709
- parentId: string | null;
10710
- childCategoryList: {
10711
- id: string;
10712
- value: string;
10713
- level: 2 | 1 | 3;
10714
- parentId: string | null;
10715
- childCategoryList: any[];
10716
- }[];
10717
- }[];
10718
- }[];
10719
9971
  tags: {
10720
9972
  id: string;
10721
9973
  name: string;
@@ -10726,18 +9978,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10726
9978
  callFrom: string | null;
10727
9979
  callTo: string | null;
10728
9980
  note: string | null;
10729
- customFields?: {
10730
- id: string;
10731
- createdAt: Date;
10732
- updatedAt: Date;
10733
- deletedAt: Date | null;
10734
- entityId: string;
10735
- attributeId: string;
10736
- textValue: string | null;
10737
- booleanValue: boolean | null;
10738
- numberValue: number | null;
10739
- dateValue: Date | null;
10740
- }[] | null | undefined;
10741
9981
  } | null;
10742
9982
  }>>;
10743
9983
  }, "strip", z.ZodTypeAny, {
@@ -10994,34 +10234,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10994
10234
  handledTime: number | null;
10995
10235
  firstResponseTime: number | null;
10996
10236
  wrapUpForm: {
10997
- type: string;
10998
10237
  id: string;
10999
10238
  disposition: string | null;
11000
10239
  createdAt: Date;
11001
10240
  updatedAt: Date;
11002
10241
  deletedAt: Date | null;
11003
- categories: {
11004
- id: string;
11005
- value: string;
11006
- createdAt: Date;
11007
- updatedAt: Date;
11008
- deletedAt: Date | null;
11009
- level: 2 | 1 | 3;
11010
- parentId: string | null;
11011
- childCategoryList: {
11012
- id: string;
11013
- value: string;
11014
- level: 2 | 1 | 3;
11015
- parentId: string | null;
11016
- childCategoryList: {
11017
- id: string;
11018
- value: string;
11019
- level: 2 | 1 | 3;
11020
- parentId: string | null;
11021
- childCategoryList: any[];
11022
- }[];
11023
- }[];
11024
- }[];
11025
10242
  tags: {
11026
10243
  id: string;
11027
10244
  name: string;
@@ -11032,18 +10249,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11032
10249
  callFrom: string | null;
11033
10250
  callTo: string | null;
11034
10251
  note: string | null;
11035
- customFields?: {
11036
- id: string;
11037
- createdAt: Date;
11038
- updatedAt: Date;
11039
- deletedAt: Date | null;
11040
- entityId: string;
11041
- attributeId: string;
11042
- textValue: string | null;
11043
- booleanValue: boolean | null;
11044
- numberValue: number | null;
11045
- dateValue: Date | null;
11046
- }[] | null | undefined;
11047
10252
  } | null;
11048
10253
  } | undefined;
11049
10254
  }, {
@@ -11300,34 +10505,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11300
10505
  handledTime: number | null;
11301
10506
  firstResponseTime: number | null;
11302
10507
  wrapUpForm: {
11303
- type: string;
11304
10508
  id: string;
11305
10509
  disposition: string | null;
11306
10510
  createdAt: Date;
11307
10511
  updatedAt: Date;
11308
10512
  deletedAt: Date | null;
11309
- categories: {
11310
- id: string;
11311
- value: string;
11312
- createdAt: Date;
11313
- updatedAt: Date;
11314
- deletedAt: Date | null;
11315
- level: 2 | 1 | 3;
11316
- parentId: string | null;
11317
- childCategoryList: {
11318
- id: string;
11319
- value: string;
11320
- level: 2 | 1 | 3;
11321
- parentId: string | null;
11322
- childCategoryList: {
11323
- id: string;
11324
- value: string;
11325
- level: 2 | 1 | 3;
11326
- parentId: string | null;
11327
- childCategoryList: any[];
11328
- }[];
11329
- }[];
11330
- }[];
11331
10513
  tags: {
11332
10514
  id: string;
11333
10515
  name: string;
@@ -11338,18 +10520,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11338
10520
  callFrom: string | null;
11339
10521
  callTo: string | null;
11340
10522
  note: string | null;
11341
- customFields?: {
11342
- id: string;
11343
- createdAt: Date;
11344
- updatedAt: Date;
11345
- deletedAt: Date | null;
11346
- entityId: string;
11347
- attributeId: string;
11348
- textValue: string | null;
11349
- booleanValue: boolean | null;
11350
- numberValue: number | null;
11351
- dateValue: Date | null;
11352
- }[] | null | undefined;
11353
10523
  } | null;
11354
10524
  } | undefined;
11355
10525
  }>>;
@@ -12261,34 +11431,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
12261
11431
  handledTime: number | null;
12262
11432
  firstResponseTime: number | null;
12263
11433
  wrapUpForm: {
12264
- type: string;
12265
11434
  id: string;
12266
11435
  disposition: string | null;
12267
11436
  createdAt: Date;
12268
11437
  updatedAt: Date;
12269
11438
  deletedAt: Date | null;
12270
- categories: {
12271
- id: string;
12272
- value: string;
12273
- createdAt: Date;
12274
- updatedAt: Date;
12275
- deletedAt: Date | null;
12276
- level: 2 | 1 | 3;
12277
- parentId: string | null;
12278
- childCategoryList: {
12279
- id: string;
12280
- value: string;
12281
- level: 2 | 1 | 3;
12282
- parentId: string | null;
12283
- childCategoryList: {
12284
- id: string;
12285
- value: string;
12286
- level: 2 | 1 | 3;
12287
- parentId: string | null;
12288
- childCategoryList: any[];
12289
- }[];
12290
- }[];
12291
- }[];
12292
11439
  tags: {
12293
11440
  id: string;
12294
11441
  name: string;
@@ -12299,18 +11446,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
12299
11446
  callFrom: string | null;
12300
11447
  callTo: string | null;
12301
11448
  note: string | null;
12302
- customFields?: {
12303
- id: string;
12304
- createdAt: Date;
12305
- updatedAt: Date;
12306
- deletedAt: Date | null;
12307
- entityId: string;
12308
- attributeId: string;
12309
- textValue: string | null;
12310
- booleanValue: boolean | null;
12311
- numberValue: number | null;
12312
- dateValue: Date | null;
12313
- }[] | null | undefined;
12314
11449
  } | null;
12315
11450
  } | undefined;
12316
11451
  } | null;
@@ -12729,34 +11864,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
12729
11864
  handledTime: number | null;
12730
11865
  firstResponseTime: number | null;
12731
11866
  wrapUpForm: {
12732
- type: string;
12733
11867
  id: string;
12734
11868
  disposition: string | null;
12735
11869
  createdAt: Date;
12736
11870
  updatedAt: Date;
12737
11871
  deletedAt: Date | null;
12738
- categories: {
12739
- id: string;
12740
- value: string;
12741
- createdAt: Date;
12742
- updatedAt: Date;
12743
- deletedAt: Date | null;
12744
- level: 2 | 1 | 3;
12745
- parentId: string | null;
12746
- childCategoryList: {
12747
- id: string;
12748
- value: string;
12749
- level: 2 | 1 | 3;
12750
- parentId: string | null;
12751
- childCategoryList: {
12752
- id: string;
12753
- value: string;
12754
- level: 2 | 1 | 3;
12755
- parentId: string | null;
12756
- childCategoryList: any[];
12757
- }[];
12758
- }[];
12759
- }[];
12760
11872
  tags: {
12761
11873
  id: string;
12762
11874
  name: string;
@@ -12767,18 +11879,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
12767
11879
  callFrom: string | null;
12768
11880
  callTo: string | null;
12769
11881
  note: string | null;
12770
- customFields?: {
12771
- id: string;
12772
- createdAt: Date;
12773
- updatedAt: Date;
12774
- deletedAt: Date | null;
12775
- entityId: string;
12776
- attributeId: string;
12777
- textValue: string | null;
12778
- booleanValue: boolean | null;
12779
- numberValue: number | null;
12780
- dateValue: Date | null;
12781
- }[] | null | undefined;
12782
11882
  } | null;
12783
11883
  } | undefined;
12784
11884
  } | null;
@@ -13199,34 +12299,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
13199
12299
  handledTime: number | null;
13200
12300
  firstResponseTime: number | null;
13201
12301
  wrapUpForm: {
13202
- type: string;
13203
12302
  id: string;
13204
12303
  disposition: string | null;
13205
12304
  createdAt: Date;
13206
12305
  updatedAt: Date;
13207
12306
  deletedAt: Date | null;
13208
- categories: {
13209
- id: string;
13210
- value: string;
13211
- createdAt: Date;
13212
- updatedAt: Date;
13213
- deletedAt: Date | null;
13214
- level: 2 | 1 | 3;
13215
- parentId: string | null;
13216
- childCategoryList: {
13217
- id: string;
13218
- value: string;
13219
- level: 2 | 1 | 3;
13220
- parentId: string | null;
13221
- childCategoryList: {
13222
- id: string;
13223
- value: string;
13224
- level: 2 | 1 | 3;
13225
- parentId: string | null;
13226
- childCategoryList: any[];
13227
- }[];
13228
- }[];
13229
- }[];
13230
12307
  tags: {
13231
12308
  id: string;
13232
12309
  name: string;
@@ -13237,18 +12314,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
13237
12314
  callFrom: string | null;
13238
12315
  callTo: string | null;
13239
12316
  note: string | null;
13240
- customFields?: {
13241
- id: string;
13242
- createdAt: Date;
13243
- updatedAt: Date;
13244
- deletedAt: Date | null;
13245
- entityId: string;
13246
- attributeId: string;
13247
- textValue: string | null;
13248
- booleanValue: boolean | null;
13249
- numberValue: number | null;
13250
- dateValue: Date | null;
13251
- }[] | null | undefined;
13252
12317
  } | null;
13253
12318
  } | undefined;
13254
12319
  } | null;
@@ -13669,34 +12734,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
13669
12734
  handledTime: number | null;
13670
12735
  firstResponseTime: number | null;
13671
12736
  wrapUpForm: {
13672
- type: string;
13673
12737
  id: string;
13674
12738
  disposition: string | null;
13675
12739
  createdAt: Date;
13676
12740
  updatedAt: Date;
13677
12741
  deletedAt: Date | null;
13678
- categories: {
13679
- id: string;
13680
- value: string;
13681
- createdAt: Date;
13682
- updatedAt: Date;
13683
- deletedAt: Date | null;
13684
- level: 2 | 1 | 3;
13685
- parentId: string | null;
13686
- childCategoryList: {
13687
- id: string;
13688
- value: string;
13689
- level: 2 | 1 | 3;
13690
- parentId: string | null;
13691
- childCategoryList: {
13692
- id: string;
13693
- value: string;
13694
- level: 2 | 1 | 3;
13695
- parentId: string | null;
13696
- childCategoryList: any[];
13697
- }[];
13698
- }[];
13699
- }[];
13700
12742
  tags: {
13701
12743
  id: string;
13702
12744
  name: string;
@@ -13707,18 +12749,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
13707
12749
  callFrom: string | null;
13708
12750
  callTo: string | null;
13709
12751
  note: string | null;
13710
- customFields?: {
13711
- id: string;
13712
- createdAt: Date;
13713
- updatedAt: Date;
13714
- deletedAt: Date | null;
13715
- entityId: string;
13716
- attributeId: string;
13717
- textValue: string | null;
13718
- booleanValue: boolean | null;
13719
- numberValue: number | null;
13720
- dateValue: Date | null;
13721
- }[] | null | undefined;
13722
12752
  } | null;
13723
12753
  } | undefined;
13724
12754
  } | null;