@kl1/contracts 1.0.43 → 1.0.45

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 (55) hide show
  1. package/dist/index.js +333 -25
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +333 -25
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/app/index.d.ts +17 -0
  6. package/dist/src/app/index.d.ts.map +1 -0
  7. package/dist/src/chat/index.d.ts +203 -0
  8. package/dist/src/chat/index.d.ts.map +1 -1
  9. package/dist/src/chat/schema.d.ts +44 -0
  10. package/dist/src/chat/schema.d.ts.map +1 -1
  11. package/dist/src/chat/validation.d.ts +48 -0
  12. package/dist/src/chat/validation.d.ts.map +1 -1
  13. package/dist/src/comment/index.d.ts +1540 -150
  14. package/dist/src/comment/index.d.ts.map +1 -1
  15. package/dist/src/comment/schema.d.ts +424 -22
  16. package/dist/src/comment/schema.d.ts.map +1 -1
  17. package/dist/src/contact/index.d.ts +77 -0
  18. package/dist/src/contact/index.d.ts.map +1 -1
  19. package/dist/src/contact/schema.d.ts +16 -0
  20. package/dist/src/contact/schema.d.ts.map +1 -1
  21. package/dist/src/contact/validation.d.ts +63 -0
  22. package/dist/src/contact/validation.d.ts.map +1 -1
  23. package/dist/src/contract.d.ts +9588 -950
  24. package/dist/src/contract.d.ts.map +1 -1
  25. package/dist/src/cx-log/index.d.ts +610 -0
  26. package/dist/src/cx-log/index.d.ts.map +1 -1
  27. package/dist/src/cx-log/schema.d.ts +514 -0
  28. package/dist/src/cx-log/schema.d.ts.map +1 -1
  29. package/dist/src/mail/mail-contract.d.ts +7 -0
  30. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  31. package/dist/src/mail/mail-server.d.ts +216 -0
  32. package/dist/src/mail/mail-server.d.ts.map +1 -0
  33. package/dist/src/mail/room-contract.d.ts +7 -0
  34. package/dist/src/mail/room-contract.d.ts.map +1 -1
  35. package/dist/src/mail/schemas/room.schema.d.ts +5 -0
  36. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  37. package/dist/src/messenger/index.d.ts +24 -0
  38. package/dist/src/messenger/index.d.ts.map +1 -1
  39. package/dist/src/platform-contact/schema.d.ts +30 -0
  40. package/dist/src/platform-contact/schema.d.ts.map +1 -0
  41. package/dist/src/telephony-cdr/call-report.schema.d.ts +1753 -0
  42. package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -0
  43. package/dist/src/telephony-cdr/index.d.ts +4378 -175
  44. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  45. package/dist/src/telephony-cdr/schema.d.ts +1050 -0
  46. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  47. package/dist/src/telephony-cdr/validation.d.ts +56 -0
  48. package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
  49. package/dist/src/ticket/index.d.ts +2338 -171
  50. package/dist/src/ticket/index.d.ts.map +1 -1
  51. package/dist/src/ticket/schema.d.ts +327 -12
  52. package/dist/src/ticket/schema.d.ts.map +1 -1
  53. package/dist/src/upload/schema.d.ts +3 -0
  54. package/dist/src/upload/schema.d.ts.map +1 -1
  55. package/package.json +1 -1
@@ -546,6 +546,7 @@ export declare const cxLogContract: {
546
546
  fileSize: z.ZodNumber;
547
547
  fileKey: z.ZodString;
548
548
  fileUrl: z.ZodNullable<z.ZodString>;
549
+ status: z.ZodOptional<z.ZodString>;
549
550
  }, "strip", z.ZodTypeAny, {
550
551
  id: string;
551
552
  createdAt: Date;
@@ -556,6 +557,7 @@ export declare const cxLogContract: {
556
557
  bucketName: string;
557
558
  fileSize: number;
558
559
  fileUrl: string | null;
560
+ status?: string | undefined;
559
561
  }, {
560
562
  id: string;
561
563
  createdAt: Date;
@@ -566,6 +568,7 @@ export declare const cxLogContract: {
566
568
  bucketName: string;
567
569
  fileSize: number;
568
570
  fileUrl: string | null;
571
+ status?: string | undefined;
569
572
  }>;
570
573
  }, "strip", z.ZodTypeAny, {
571
574
  id: string;
@@ -583,6 +586,7 @@ export declare const cxLogContract: {
583
586
  bucketName: string;
584
587
  fileSize: number;
585
588
  fileUrl: string | null;
589
+ status?: string | undefined;
586
590
  };
587
591
  }, {
588
592
  id: string;
@@ -600,6 +604,7 @@ export declare const cxLogContract: {
600
604
  bucketName: string;
601
605
  fileSize: number;
602
606
  fileUrl: string | null;
607
+ status?: string | undefined;
603
608
  };
604
609
  }>, "many">;
605
610
  }, "strip", z.ZodTypeAny, {
@@ -641,6 +646,7 @@ export declare const cxLogContract: {
641
646
  bucketName: string;
642
647
  fileSize: number;
643
648
  fileUrl: string | null;
649
+ status?: string | undefined;
644
650
  };
645
651
  }[];
646
652
  }, {
@@ -682,6 +688,7 @@ export declare const cxLogContract: {
682
688
  bucketName: string;
683
689
  fileSize: number;
684
690
  fileUrl: string | null;
691
+ status?: string | undefined;
685
692
  };
686
693
  }[];
687
694
  }>, "many">;
@@ -836,6 +843,7 @@ export declare const cxLogContract: {
836
843
  bucketName: string;
837
844
  fileSize: number;
838
845
  fileUrl: string | null;
846
+ status?: string | undefined;
839
847
  };
840
848
  }[];
841
849
  }[];
@@ -938,6 +946,7 @@ export declare const cxLogContract: {
938
946
  bucketName: string;
939
947
  fileSize: number;
940
948
  fileUrl: string | null;
949
+ status?: string | undefined;
941
950
  };
942
951
  }[];
943
952
  }[];
@@ -1054,6 +1063,7 @@ export declare const cxLogContract: {
1054
1063
  bucketName: string;
1055
1064
  fileSize: number;
1056
1065
  fileUrl: string | null;
1066
+ status?: string | undefined;
1057
1067
  };
1058
1068
  }[];
1059
1069
  }[];
@@ -1171,6 +1181,7 @@ export declare const cxLogContract: {
1171
1181
  bucketName: string;
1172
1182
  fileSize: number;
1173
1183
  fileUrl: string | null;
1184
+ status?: string | undefined;
1174
1185
  };
1175
1186
  }[];
1176
1187
  }[];
@@ -2114,6 +2125,7 @@ export declare const cxLogContract: {
2114
2125
  bucketName: string;
2115
2126
  fileSize: number;
2116
2127
  fileUrl: string | null;
2128
+ status?: string | undefined;
2117
2129
  };
2118
2130
  }[];
2119
2131
  }[];
@@ -2397,6 +2409,7 @@ export declare const cxLogContract: {
2397
2409
  bucketName: string;
2398
2410
  fileSize: number;
2399
2411
  fileUrl: string | null;
2412
+ status?: string | undefined;
2400
2413
  };
2401
2414
  }[];
2402
2415
  }[];
@@ -2878,6 +2891,7 @@ export declare const cxLogContract: {
2878
2891
  fileSize: z.ZodNumber;
2879
2892
  fileKey: z.ZodString;
2880
2893
  fileUrl: z.ZodNullable<z.ZodString>;
2894
+ status: z.ZodOptional<z.ZodString>;
2881
2895
  }, "strip", z.ZodTypeAny, {
2882
2896
  id: string;
2883
2897
  createdAt: Date;
@@ -2888,6 +2902,7 @@ export declare const cxLogContract: {
2888
2902
  bucketName: string;
2889
2903
  fileSize: number;
2890
2904
  fileUrl: string | null;
2905
+ status?: string | undefined;
2891
2906
  }, {
2892
2907
  id: string;
2893
2908
  createdAt: Date;
@@ -2898,6 +2913,7 @@ export declare const cxLogContract: {
2898
2913
  bucketName: string;
2899
2914
  fileSize: number;
2900
2915
  fileUrl: string | null;
2916
+ status?: string | undefined;
2901
2917
  }>;
2902
2918
  }, "strip", z.ZodTypeAny, {
2903
2919
  id: string;
@@ -2915,6 +2931,7 @@ export declare const cxLogContract: {
2915
2931
  bucketName: string;
2916
2932
  fileSize: number;
2917
2933
  fileUrl: string | null;
2934
+ status?: string | undefined;
2918
2935
  };
2919
2936
  }, {
2920
2937
  id: string;
@@ -2932,6 +2949,7 @@ export declare const cxLogContract: {
2932
2949
  bucketName: string;
2933
2950
  fileSize: number;
2934
2951
  fileUrl: string | null;
2952
+ status?: string | undefined;
2935
2953
  };
2936
2954
  }>, "many">;
2937
2955
  }, "strip", z.ZodTypeAny, {
@@ -2973,6 +2991,7 @@ export declare const cxLogContract: {
2973
2991
  bucketName: string;
2974
2992
  fileSize: number;
2975
2993
  fileUrl: string | null;
2994
+ status?: string | undefined;
2976
2995
  };
2977
2996
  }[];
2978
2997
  }, {
@@ -3014,6 +3033,7 @@ export declare const cxLogContract: {
3014
3033
  bucketName: string;
3015
3034
  fileSize: number;
3016
3035
  fileUrl: string | null;
3036
+ status?: string | undefined;
3017
3037
  };
3018
3038
  }[];
3019
3039
  }>, "many">;
@@ -3168,6 +3188,7 @@ export declare const cxLogContract: {
3168
3188
  bucketName: string;
3169
3189
  fileSize: number;
3170
3190
  fileUrl: string | null;
3191
+ status?: string | undefined;
3171
3192
  };
3172
3193
  }[];
3173
3194
  }[];
@@ -3270,6 +3291,7 @@ export declare const cxLogContract: {
3270
3291
  bucketName: string;
3271
3292
  fileSize: number;
3272
3293
  fileUrl: string | null;
3294
+ status?: string | undefined;
3273
3295
  };
3274
3296
  }[];
3275
3297
  }[];
@@ -3371,6 +3393,7 @@ export declare const cxLogContract: {
3371
3393
  fileSize: z.ZodNumber;
3372
3394
  fileKey: z.ZodString;
3373
3395
  fileUrl: z.ZodNullable<z.ZodString>;
3396
+ status: z.ZodOptional<z.ZodString>;
3374
3397
  }, "strip", z.ZodTypeAny, {
3375
3398
  id: string;
3376
3399
  createdAt: Date;
@@ -3381,6 +3404,7 @@ export declare const cxLogContract: {
3381
3404
  bucketName: string;
3382
3405
  fileSize: number;
3383
3406
  fileUrl: string | null;
3407
+ status?: string | undefined;
3384
3408
  }, {
3385
3409
  id: string;
3386
3410
  createdAt: Date;
@@ -3391,6 +3415,7 @@ export declare const cxLogContract: {
3391
3415
  bucketName: string;
3392
3416
  fileSize: number;
3393
3417
  fileUrl: string | null;
3418
+ status?: string | undefined;
3394
3419
  }>>>;
3395
3420
  serialNumber: z.ZodNullable<z.ZodString>;
3396
3421
  extensionId: z.ZodNullable<z.ZodString>;
@@ -3406,6 +3431,210 @@ export declare const cxLogContract: {
3406
3431
  extensionId: z.ZodNumber;
3407
3432
  extensionName: z.ZodString;
3408
3433
  telephonySignature: z.ZodNullable<z.ZodString>;
3434
+ user: z.ZodNullable<z.ZodOptional<z.ZodObject<{
3435
+ id: z.ZodString;
3436
+ createdAt: z.ZodDate;
3437
+ updatedAt: z.ZodDate;
3438
+ deletedAt: z.ZodNullable<z.ZodDate>;
3439
+ name: z.ZodString;
3440
+ email: z.ZodString;
3441
+ emailVerifiedAt: z.ZodNullable<z.ZodDate>;
3442
+ password: z.ZodString;
3443
+ address: z.ZodNullable<z.ZodString>;
3444
+ phone: z.ZodNullable<z.ZodString>;
3445
+ notificationCount: z.ZodNullable<z.ZodNumber>;
3446
+ roles: z.ZodArray<z.ZodObject<{
3447
+ id: z.ZodString;
3448
+ createdAt: z.ZodDate;
3449
+ updatedAt: z.ZodDate;
3450
+ deletedAt: z.ZodNullable<z.ZodDate>;
3451
+ systemName: z.ZodString;
3452
+ displayName: z.ZodString;
3453
+ description: z.ZodNullable<z.ZodString>;
3454
+ permissions: z.ZodArray<z.ZodObject<{
3455
+ id: z.ZodString;
3456
+ createdAt: z.ZodDate;
3457
+ updatedAt: z.ZodDate;
3458
+ deletedAt: z.ZodNullable<z.ZodDate>;
3459
+ systemName: z.ZodString;
3460
+ displayName: z.ZodString;
3461
+ description: z.ZodNullable<z.ZodString>;
3462
+ }, "strip", z.ZodTypeAny, {
3463
+ id: string;
3464
+ description: string | null;
3465
+ createdAt: Date;
3466
+ updatedAt: Date;
3467
+ deletedAt: Date | null;
3468
+ systemName: string;
3469
+ displayName: string;
3470
+ }, {
3471
+ id: string;
3472
+ description: string | null;
3473
+ createdAt: Date;
3474
+ updatedAt: Date;
3475
+ deletedAt: Date | null;
3476
+ systemName: string;
3477
+ displayName: string;
3478
+ }>, "many">;
3479
+ }, "strip", z.ZodTypeAny, {
3480
+ id: string;
3481
+ description: string | null;
3482
+ createdAt: Date;
3483
+ updatedAt: Date;
3484
+ deletedAt: Date | null;
3485
+ systemName: string;
3486
+ displayName: string;
3487
+ permissions: {
3488
+ id: string;
3489
+ description: string | null;
3490
+ createdAt: Date;
3491
+ updatedAt: Date;
3492
+ deletedAt: Date | null;
3493
+ systemName: string;
3494
+ displayName: string;
3495
+ }[];
3496
+ }, {
3497
+ id: string;
3498
+ description: string | null;
3499
+ createdAt: Date;
3500
+ updatedAt: Date;
3501
+ deletedAt: Date | null;
3502
+ systemName: string;
3503
+ displayName: string;
3504
+ permissions: {
3505
+ id: string;
3506
+ description: string | null;
3507
+ createdAt: Date;
3508
+ updatedAt: Date;
3509
+ deletedAt: Date | null;
3510
+ systemName: string;
3511
+ displayName: string;
3512
+ }[];
3513
+ }>, "many">;
3514
+ extension: z.ZodObject<{
3515
+ id: z.ZodString;
3516
+ createdAt: z.ZodDate;
3517
+ updatedAt: z.ZodDate;
3518
+ deletedAt: z.ZodNullable<z.ZodDate>;
3519
+ userId: z.ZodNullable<z.ZodString>;
3520
+ sipServerUrl: z.ZodString;
3521
+ sipUserName: z.ZodString;
3522
+ webphoneLoginUser: z.ZodString;
3523
+ extensionId: z.ZodNumber;
3524
+ extensionName: z.ZodString;
3525
+ telephonySignature: z.ZodNullable<z.ZodString>;
3526
+ }, "strip", z.ZodTypeAny, {
3527
+ id: string;
3528
+ createdAt: Date;
3529
+ updatedAt: Date;
3530
+ deletedAt: Date | null;
3531
+ userId: string | null;
3532
+ sipServerUrl: string;
3533
+ sipUserName: string;
3534
+ webphoneLoginUser: string;
3535
+ extensionId: number;
3536
+ extensionName: string;
3537
+ telephonySignature: string | null;
3538
+ }, {
3539
+ id: string;
3540
+ createdAt: Date;
3541
+ updatedAt: Date;
3542
+ deletedAt: Date | null;
3543
+ userId: string | null;
3544
+ sipServerUrl: string;
3545
+ sipUserName: string;
3546
+ webphoneLoginUser: string;
3547
+ extensionId: number;
3548
+ extensionName: string;
3549
+ telephonySignature: string | null;
3550
+ }>;
3551
+ }, "strip", z.ZodTypeAny, {
3552
+ id: string;
3553
+ address: string | null;
3554
+ name: string;
3555
+ email: string;
3556
+ createdAt: Date;
3557
+ updatedAt: Date;
3558
+ deletedAt: Date | null;
3559
+ emailVerifiedAt: Date | null;
3560
+ password: string;
3561
+ phone: string | null;
3562
+ notificationCount: number | null;
3563
+ roles: {
3564
+ id: string;
3565
+ description: string | null;
3566
+ createdAt: Date;
3567
+ updatedAt: Date;
3568
+ deletedAt: Date | null;
3569
+ systemName: string;
3570
+ displayName: string;
3571
+ permissions: {
3572
+ id: string;
3573
+ description: string | null;
3574
+ createdAt: Date;
3575
+ updatedAt: Date;
3576
+ deletedAt: Date | null;
3577
+ systemName: string;
3578
+ displayName: string;
3579
+ }[];
3580
+ }[];
3581
+ extension: {
3582
+ id: string;
3583
+ createdAt: Date;
3584
+ updatedAt: Date;
3585
+ deletedAt: Date | null;
3586
+ userId: string | null;
3587
+ sipServerUrl: string;
3588
+ sipUserName: string;
3589
+ webphoneLoginUser: string;
3590
+ extensionId: number;
3591
+ extensionName: string;
3592
+ telephonySignature: string | null;
3593
+ };
3594
+ }, {
3595
+ id: string;
3596
+ address: string | null;
3597
+ name: string;
3598
+ email: string;
3599
+ createdAt: Date;
3600
+ updatedAt: Date;
3601
+ deletedAt: Date | null;
3602
+ emailVerifiedAt: Date | null;
3603
+ password: string;
3604
+ phone: string | null;
3605
+ notificationCount: number | null;
3606
+ roles: {
3607
+ id: string;
3608
+ description: string | null;
3609
+ createdAt: Date;
3610
+ updatedAt: Date;
3611
+ deletedAt: Date | null;
3612
+ systemName: string;
3613
+ displayName: string;
3614
+ permissions: {
3615
+ id: string;
3616
+ description: string | null;
3617
+ createdAt: Date;
3618
+ updatedAt: Date;
3619
+ deletedAt: Date | null;
3620
+ systemName: string;
3621
+ displayName: string;
3622
+ }[];
3623
+ }[];
3624
+ extension: {
3625
+ id: string;
3626
+ createdAt: Date;
3627
+ updatedAt: Date;
3628
+ deletedAt: Date | null;
3629
+ userId: string | null;
3630
+ sipServerUrl: string;
3631
+ sipUserName: string;
3632
+ webphoneLoginUser: string;
3633
+ extensionId: number;
3634
+ extensionName: string;
3635
+ telephonySignature: string | null;
3636
+ };
3637
+ }>>>;
3409
3638
  }, "strip", z.ZodTypeAny, {
3410
3639
  id: string;
3411
3640
  createdAt: Date;
@@ -3418,6 +3647,50 @@ export declare const cxLogContract: {
3418
3647
  extensionId: number;
3419
3648
  extensionName: string;
3420
3649
  telephonySignature: string | null;
3650
+ user?: {
3651
+ id: string;
3652
+ address: string | null;
3653
+ name: string;
3654
+ email: string;
3655
+ createdAt: Date;
3656
+ updatedAt: Date;
3657
+ deletedAt: Date | null;
3658
+ emailVerifiedAt: Date | null;
3659
+ password: string;
3660
+ phone: string | null;
3661
+ notificationCount: number | null;
3662
+ roles: {
3663
+ id: string;
3664
+ description: string | null;
3665
+ createdAt: Date;
3666
+ updatedAt: Date;
3667
+ deletedAt: Date | null;
3668
+ systemName: string;
3669
+ displayName: string;
3670
+ permissions: {
3671
+ id: string;
3672
+ description: string | null;
3673
+ createdAt: Date;
3674
+ updatedAt: Date;
3675
+ deletedAt: Date | null;
3676
+ systemName: string;
3677
+ displayName: string;
3678
+ }[];
3679
+ }[];
3680
+ extension: {
3681
+ id: string;
3682
+ createdAt: Date;
3683
+ updatedAt: Date;
3684
+ deletedAt: Date | null;
3685
+ userId: string | null;
3686
+ sipServerUrl: string;
3687
+ sipUserName: string;
3688
+ webphoneLoginUser: string;
3689
+ extensionId: number;
3690
+ extensionName: string;
3691
+ telephonySignature: string | null;
3692
+ };
3693
+ } | null | undefined;
3421
3694
  }, {
3422
3695
  id: string;
3423
3696
  createdAt: Date;
@@ -3430,6 +3703,50 @@ export declare const cxLogContract: {
3430
3703
  extensionId: number;
3431
3704
  extensionName: string;
3432
3705
  telephonySignature: string | null;
3706
+ user?: {
3707
+ id: string;
3708
+ address: string | null;
3709
+ name: string;
3710
+ email: string;
3711
+ createdAt: Date;
3712
+ updatedAt: Date;
3713
+ deletedAt: Date | null;
3714
+ emailVerifiedAt: Date | null;
3715
+ password: string;
3716
+ phone: string | null;
3717
+ notificationCount: number | null;
3718
+ roles: {
3719
+ id: string;
3720
+ description: string | null;
3721
+ createdAt: Date;
3722
+ updatedAt: Date;
3723
+ deletedAt: Date | null;
3724
+ systemName: string;
3725
+ displayName: string;
3726
+ permissions: {
3727
+ id: string;
3728
+ description: string | null;
3729
+ createdAt: Date;
3730
+ updatedAt: Date;
3731
+ deletedAt: Date | null;
3732
+ systemName: string;
3733
+ displayName: string;
3734
+ }[];
3735
+ }[];
3736
+ extension: {
3737
+ id: string;
3738
+ createdAt: Date;
3739
+ updatedAt: Date;
3740
+ deletedAt: Date | null;
3741
+ userId: string | null;
3742
+ sipServerUrl: string;
3743
+ sipUserName: string;
3744
+ webphoneLoginUser: string;
3745
+ extensionId: number;
3746
+ extensionName: string;
3747
+ telephonySignature: string | null;
3748
+ };
3749
+ } | null | undefined;
3433
3750
  }>>>;
3434
3751
  telephonyQueueId: z.ZodNullable<z.ZodString>;
3435
3752
  contactId: z.ZodNullable<z.ZodString>;
@@ -3504,6 +3821,7 @@ export declare const cxLogContract: {
3504
3821
  bucketName: string;
3505
3822
  fileSize: number;
3506
3823
  fileUrl: string | null;
3824
+ status?: string | undefined;
3507
3825
  };
3508
3826
  }[];
3509
3827
  }[];
@@ -3580,6 +3898,7 @@ export declare const cxLogContract: {
3580
3898
  bucketName: string;
3581
3899
  fileSize: number;
3582
3900
  fileUrl: string | null;
3901
+ status?: string | undefined;
3583
3902
  } | null | undefined;
3584
3903
  extension?: {
3585
3904
  id: string;
@@ -3593,6 +3912,50 @@ export declare const cxLogContract: {
3593
3912
  extensionId: number;
3594
3913
  extensionName: string;
3595
3914
  telephonySignature: string | null;
3915
+ user?: {
3916
+ id: string;
3917
+ address: string | null;
3918
+ name: string;
3919
+ email: string;
3920
+ createdAt: Date;
3921
+ updatedAt: Date;
3922
+ deletedAt: Date | null;
3923
+ emailVerifiedAt: Date | null;
3924
+ password: string;
3925
+ phone: string | null;
3926
+ notificationCount: number | null;
3927
+ roles: {
3928
+ id: string;
3929
+ description: string | null;
3930
+ createdAt: Date;
3931
+ updatedAt: Date;
3932
+ deletedAt: Date | null;
3933
+ systemName: string;
3934
+ displayName: string;
3935
+ permissions: {
3936
+ id: string;
3937
+ description: string | null;
3938
+ createdAt: Date;
3939
+ updatedAt: Date;
3940
+ deletedAt: Date | null;
3941
+ systemName: string;
3942
+ displayName: string;
3943
+ }[];
3944
+ }[];
3945
+ extension: {
3946
+ id: string;
3947
+ createdAt: Date;
3948
+ updatedAt: Date;
3949
+ deletedAt: Date | null;
3950
+ userId: string | null;
3951
+ sipServerUrl: string;
3952
+ sipUserName: string;
3953
+ webphoneLoginUser: string;
3954
+ extensionId: number;
3955
+ extensionName: string;
3956
+ telephonySignature: string | null;
3957
+ };
3958
+ } | null | undefined;
3596
3959
  } | null | undefined;
3597
3960
  }, {
3598
3961
  type: string;
@@ -3665,6 +4028,7 @@ export declare const cxLogContract: {
3665
4028
  bucketName: string;
3666
4029
  fileSize: number;
3667
4030
  fileUrl: string | null;
4031
+ status?: string | undefined;
3668
4032
  };
3669
4033
  }[];
3670
4034
  }[];
@@ -3741,6 +4105,7 @@ export declare const cxLogContract: {
3741
4105
  bucketName: string;
3742
4106
  fileSize: number;
3743
4107
  fileUrl: string | null;
4108
+ status?: string | undefined;
3744
4109
  } | null | undefined;
3745
4110
  extension?: {
3746
4111
  id: string;
@@ -3754,6 +4119,50 @@ export declare const cxLogContract: {
3754
4119
  extensionId: number;
3755
4120
  extensionName: string;
3756
4121
  telephonySignature: string | null;
4122
+ user?: {
4123
+ id: string;
4124
+ address: string | null;
4125
+ name: string;
4126
+ email: string;
4127
+ createdAt: Date;
4128
+ updatedAt: Date;
4129
+ deletedAt: Date | null;
4130
+ emailVerifiedAt: Date | null;
4131
+ password: string;
4132
+ phone: string | null;
4133
+ notificationCount: number | null;
4134
+ roles: {
4135
+ id: string;
4136
+ description: string | null;
4137
+ createdAt: Date;
4138
+ updatedAt: Date;
4139
+ deletedAt: Date | null;
4140
+ systemName: string;
4141
+ displayName: string;
4142
+ permissions: {
4143
+ id: string;
4144
+ description: string | null;
4145
+ createdAt: Date;
4146
+ updatedAt: Date;
4147
+ deletedAt: Date | null;
4148
+ systemName: string;
4149
+ displayName: string;
4150
+ }[];
4151
+ }[];
4152
+ extension: {
4153
+ id: string;
4154
+ createdAt: Date;
4155
+ updatedAt: Date;
4156
+ deletedAt: Date | null;
4157
+ userId: string | null;
4158
+ sipServerUrl: string;
4159
+ sipUserName: string;
4160
+ webphoneLoginUser: string;
4161
+ extensionId: number;
4162
+ extensionName: string;
4163
+ telephonySignature: string | null;
4164
+ };
4165
+ } | null | undefined;
3757
4166
  } | null | undefined;
3758
4167
  }>>;
3759
4168
  queue: z.ZodNullable<z.ZodObject<{
@@ -4064,6 +4473,7 @@ export declare const cxLogContract: {
4064
4473
  fileSize: z.ZodNumber;
4065
4474
  fileKey: z.ZodString;
4066
4475
  fileUrl: z.ZodNullable<z.ZodString>;
4476
+ status: z.ZodOptional<z.ZodString>;
4067
4477
  }, "strip", z.ZodTypeAny, {
4068
4478
  id: string;
4069
4479
  createdAt: Date;
@@ -4074,6 +4484,7 @@ export declare const cxLogContract: {
4074
4484
  bucketName: string;
4075
4485
  fileSize: number;
4076
4486
  fileUrl: string | null;
4487
+ status?: string | undefined;
4077
4488
  }, {
4078
4489
  id: string;
4079
4490
  createdAt: Date;
@@ -4084,6 +4495,7 @@ export declare const cxLogContract: {
4084
4495
  bucketName: string;
4085
4496
  fileSize: number;
4086
4497
  fileUrl: string | null;
4498
+ status?: string | undefined;
4087
4499
  }>;
4088
4500
  }, "strip", z.ZodTypeAny, {
4089
4501
  id: string;
@@ -4101,6 +4513,7 @@ export declare const cxLogContract: {
4101
4513
  bucketName: string;
4102
4514
  fileSize: number;
4103
4515
  fileUrl: string | null;
4516
+ status?: string | undefined;
4104
4517
  };
4105
4518
  }, {
4106
4519
  id: string;
@@ -4118,6 +4531,7 @@ export declare const cxLogContract: {
4118
4531
  bucketName: string;
4119
4532
  fileSize: number;
4120
4533
  fileUrl: string | null;
4534
+ status?: string | undefined;
4121
4535
  };
4122
4536
  }>, "many">;
4123
4537
  }, "strip", z.ZodTypeAny, {
@@ -4159,6 +4573,7 @@ export declare const cxLogContract: {
4159
4573
  bucketName: string;
4160
4574
  fileSize: number;
4161
4575
  fileUrl: string | null;
4576
+ status?: string | undefined;
4162
4577
  };
4163
4578
  }[];
4164
4579
  }, {
@@ -4200,6 +4615,7 @@ export declare const cxLogContract: {
4200
4615
  bucketName: string;
4201
4616
  fileSize: number;
4202
4617
  fileUrl: string | null;
4618
+ status?: string | undefined;
4203
4619
  };
4204
4620
  }[];
4205
4621
  }>, "many">;
@@ -4354,6 +4770,7 @@ export declare const cxLogContract: {
4354
4770
  bucketName: string;
4355
4771
  fileSize: number;
4356
4772
  fileUrl: string | null;
4773
+ status?: string | undefined;
4357
4774
  };
4358
4775
  }[];
4359
4776
  }[];
@@ -4456,6 +4873,7 @@ export declare const cxLogContract: {
4456
4873
  bucketName: string;
4457
4874
  fileSize: number;
4458
4875
  fileUrl: string | null;
4876
+ status?: string | undefined;
4459
4877
  };
4460
4878
  }[];
4461
4879
  }[];
@@ -4772,6 +5190,7 @@ export declare const cxLogContract: {
4772
5190
  bucketName: string;
4773
5191
  fileSize: number;
4774
5192
  fileUrl: string | null;
5193
+ status?: string | undefined;
4775
5194
  };
4776
5195
  }[];
4777
5196
  }[];
@@ -4979,6 +5398,7 @@ export declare const cxLogContract: {
4979
5398
  bucketName: string;
4980
5399
  fileSize: number;
4981
5400
  fileUrl: string | null;
5401
+ status?: string | undefined;
4982
5402
  };
4983
5403
  }[];
4984
5404
  }[];
@@ -5217,6 +5637,7 @@ export declare const cxLogContract: {
5217
5637
  bucketName: string;
5218
5638
  fileSize: number;
5219
5639
  fileUrl: string | null;
5640
+ status?: string | undefined;
5220
5641
  };
5221
5642
  }[];
5222
5643
  }[];
@@ -5293,6 +5714,7 @@ export declare const cxLogContract: {
5293
5714
  bucketName: string;
5294
5715
  fileSize: number;
5295
5716
  fileUrl: string | null;
5717
+ status?: string | undefined;
5296
5718
  } | null | undefined;
5297
5719
  extension?: {
5298
5720
  id: string;
@@ -5306,6 +5728,50 @@ export declare const cxLogContract: {
5306
5728
  extensionId: number;
5307
5729
  extensionName: string;
5308
5730
  telephonySignature: string | null;
5731
+ user?: {
5732
+ id: string;
5733
+ address: string | null;
5734
+ name: string;
5735
+ email: string;
5736
+ createdAt: Date;
5737
+ updatedAt: Date;
5738
+ deletedAt: Date | null;
5739
+ emailVerifiedAt: Date | null;
5740
+ password: string;
5741
+ phone: string | null;
5742
+ notificationCount: number | null;
5743
+ roles: {
5744
+ id: string;
5745
+ description: string | null;
5746
+ createdAt: Date;
5747
+ updatedAt: Date;
5748
+ deletedAt: Date | null;
5749
+ systemName: string;
5750
+ displayName: string;
5751
+ permissions: {
5752
+ id: string;
5753
+ description: string | null;
5754
+ createdAt: Date;
5755
+ updatedAt: Date;
5756
+ deletedAt: Date | null;
5757
+ systemName: string;
5758
+ displayName: string;
5759
+ }[];
5760
+ }[];
5761
+ extension: {
5762
+ id: string;
5763
+ createdAt: Date;
5764
+ updatedAt: Date;
5765
+ deletedAt: Date | null;
5766
+ userId: string | null;
5767
+ sipServerUrl: string;
5768
+ sipUserName: string;
5769
+ webphoneLoginUser: string;
5770
+ extensionId: number;
5771
+ extensionName: string;
5772
+ telephonySignature: string | null;
5773
+ };
5774
+ } | null | undefined;
5309
5775
  } | null | undefined;
5310
5776
  } | null;
5311
5777
  queue: {
@@ -5411,6 +5877,7 @@ export declare const cxLogContract: {
5411
5877
  bucketName: string;
5412
5878
  fileSize: number;
5413
5879
  fileUrl: string | null;
5880
+ status?: string | undefined;
5414
5881
  };
5415
5882
  }[];
5416
5883
  }[];
@@ -5618,6 +6085,7 @@ export declare const cxLogContract: {
5618
6085
  bucketName: string;
5619
6086
  fileSize: number;
5620
6087
  fileUrl: string | null;
6088
+ status?: string | undefined;
5621
6089
  };
5622
6090
  }[];
5623
6091
  }[];
@@ -5856,6 +6324,7 @@ export declare const cxLogContract: {
5856
6324
  bucketName: string;
5857
6325
  fileSize: number;
5858
6326
  fileUrl: string | null;
6327
+ status?: string | undefined;
5859
6328
  };
5860
6329
  }[];
5861
6330
  }[];
@@ -5932,6 +6401,7 @@ export declare const cxLogContract: {
5932
6401
  bucketName: string;
5933
6402
  fileSize: number;
5934
6403
  fileUrl: string | null;
6404
+ status?: string | undefined;
5935
6405
  } | null | undefined;
5936
6406
  extension?: {
5937
6407
  id: string;
@@ -5945,6 +6415,50 @@ export declare const cxLogContract: {
5945
6415
  extensionId: number;
5946
6416
  extensionName: string;
5947
6417
  telephonySignature: string | null;
6418
+ user?: {
6419
+ id: string;
6420
+ address: string | null;
6421
+ name: string;
6422
+ email: string;
6423
+ createdAt: Date;
6424
+ updatedAt: Date;
6425
+ deletedAt: Date | null;
6426
+ emailVerifiedAt: Date | null;
6427
+ password: string;
6428
+ phone: string | null;
6429
+ notificationCount: number | null;
6430
+ roles: {
6431
+ id: string;
6432
+ description: string | null;
6433
+ createdAt: Date;
6434
+ updatedAt: Date;
6435
+ deletedAt: Date | null;
6436
+ systemName: string;
6437
+ displayName: string;
6438
+ permissions: {
6439
+ id: string;
6440
+ description: string | null;
6441
+ createdAt: Date;
6442
+ updatedAt: Date;
6443
+ deletedAt: Date | null;
6444
+ systemName: string;
6445
+ displayName: string;
6446
+ }[];
6447
+ }[];
6448
+ extension: {
6449
+ id: string;
6450
+ createdAt: Date;
6451
+ updatedAt: Date;
6452
+ deletedAt: Date | null;
6453
+ userId: string | null;
6454
+ sipServerUrl: string;
6455
+ sipUserName: string;
6456
+ webphoneLoginUser: string;
6457
+ extensionId: number;
6458
+ extensionName: string;
6459
+ telephonySignature: string | null;
6460
+ };
6461
+ } | null | undefined;
5948
6462
  } | null | undefined;
5949
6463
  } | null;
5950
6464
  queue: {
@@ -6056,6 +6570,7 @@ export declare const cxLogContract: {
6056
6570
  bucketName: string;
6057
6571
  fileSize: number;
6058
6572
  fileUrl: string | null;
6573
+ status?: string | undefined;
6059
6574
  };
6060
6575
  }[];
6061
6576
  }[];
@@ -6263,6 +6778,7 @@ export declare const cxLogContract: {
6263
6778
  bucketName: string;
6264
6779
  fileSize: number;
6265
6780
  fileUrl: string | null;
6781
+ status?: string | undefined;
6266
6782
  };
6267
6783
  }[];
6268
6784
  }[];
@@ -6501,6 +7017,7 @@ export declare const cxLogContract: {
6501
7017
  bucketName: string;
6502
7018
  fileSize: number;
6503
7019
  fileUrl: string | null;
7020
+ status?: string | undefined;
6504
7021
  };
6505
7022
  }[];
6506
7023
  }[];
@@ -6577,6 +7094,7 @@ export declare const cxLogContract: {
6577
7094
  bucketName: string;
6578
7095
  fileSize: number;
6579
7096
  fileUrl: string | null;
7097
+ status?: string | undefined;
6580
7098
  } | null | undefined;
6581
7099
  extension?: {
6582
7100
  id: string;
@@ -6590,6 +7108,50 @@ export declare const cxLogContract: {
6590
7108
  extensionId: number;
6591
7109
  extensionName: string;
6592
7110
  telephonySignature: string | null;
7111
+ user?: {
7112
+ id: string;
7113
+ address: string | null;
7114
+ name: string;
7115
+ email: string;
7116
+ createdAt: Date;
7117
+ updatedAt: Date;
7118
+ deletedAt: Date | null;
7119
+ emailVerifiedAt: Date | null;
7120
+ password: string;
7121
+ phone: string | null;
7122
+ notificationCount: number | null;
7123
+ roles: {
7124
+ id: string;
7125
+ description: string | null;
7126
+ createdAt: Date;
7127
+ updatedAt: Date;
7128
+ deletedAt: Date | null;
7129
+ systemName: string;
7130
+ displayName: string;
7131
+ permissions: {
7132
+ id: string;
7133
+ description: string | null;
7134
+ createdAt: Date;
7135
+ updatedAt: Date;
7136
+ deletedAt: Date | null;
7137
+ systemName: string;
7138
+ displayName: string;
7139
+ }[];
7140
+ }[];
7141
+ extension: {
7142
+ id: string;
7143
+ createdAt: Date;
7144
+ updatedAt: Date;
7145
+ deletedAt: Date | null;
7146
+ userId: string | null;
7147
+ sipServerUrl: string;
7148
+ sipUserName: string;
7149
+ webphoneLoginUser: string;
7150
+ extensionId: number;
7151
+ extensionName: string;
7152
+ telephonySignature: string | null;
7153
+ };
7154
+ } | null | undefined;
6593
7155
  } | null | undefined;
6594
7156
  } | null;
6595
7157
  queue: {
@@ -6701,6 +7263,7 @@ export declare const cxLogContract: {
6701
7263
  bucketName: string;
6702
7264
  fileSize: number;
6703
7265
  fileUrl: string | null;
7266
+ status?: string | undefined;
6704
7267
  };
6705
7268
  }[];
6706
7269
  }[];
@@ -6908,6 +7471,7 @@ export declare const cxLogContract: {
6908
7471
  bucketName: string;
6909
7472
  fileSize: number;
6910
7473
  fileUrl: string | null;
7474
+ status?: string | undefined;
6911
7475
  };
6912
7476
  }[];
6913
7477
  }[];
@@ -7146,6 +7710,7 @@ export declare const cxLogContract: {
7146
7710
  bucketName: string;
7147
7711
  fileSize: number;
7148
7712
  fileUrl: string | null;
7713
+ status?: string | undefined;
7149
7714
  };
7150
7715
  }[];
7151
7716
  }[];
@@ -7222,6 +7787,7 @@ export declare const cxLogContract: {
7222
7787
  bucketName: string;
7223
7788
  fileSize: number;
7224
7789
  fileUrl: string | null;
7790
+ status?: string | undefined;
7225
7791
  } | null | undefined;
7226
7792
  extension?: {
7227
7793
  id: string;
@@ -7235,6 +7801,50 @@ export declare const cxLogContract: {
7235
7801
  extensionId: number;
7236
7802
  extensionName: string;
7237
7803
  telephonySignature: string | null;
7804
+ user?: {
7805
+ id: string;
7806
+ address: string | null;
7807
+ name: string;
7808
+ email: string;
7809
+ createdAt: Date;
7810
+ updatedAt: Date;
7811
+ deletedAt: Date | null;
7812
+ emailVerifiedAt: Date | null;
7813
+ password: string;
7814
+ phone: string | null;
7815
+ notificationCount: number | null;
7816
+ roles: {
7817
+ id: string;
7818
+ description: string | null;
7819
+ createdAt: Date;
7820
+ updatedAt: Date;
7821
+ deletedAt: Date | null;
7822
+ systemName: string;
7823
+ displayName: string;
7824
+ permissions: {
7825
+ id: string;
7826
+ description: string | null;
7827
+ createdAt: Date;
7828
+ updatedAt: Date;
7829
+ deletedAt: Date | null;
7830
+ systemName: string;
7831
+ displayName: string;
7832
+ }[];
7833
+ }[];
7834
+ extension: {
7835
+ id: string;
7836
+ createdAt: Date;
7837
+ updatedAt: Date;
7838
+ deletedAt: Date | null;
7839
+ userId: string | null;
7840
+ sipServerUrl: string;
7841
+ sipUserName: string;
7842
+ webphoneLoginUser: string;
7843
+ extensionId: number;
7844
+ extensionName: string;
7845
+ telephonySignature: string | null;
7846
+ };
7847
+ } | null | undefined;
7238
7848
  } | null | undefined;
7239
7849
  } | null;
7240
7850
  queue: {