@kl1/contracts 1.1.40-uat → 1.1.42-uat

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/dist/index.js +3293 -3105
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +3290 -3105
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/botpress/index.d.ts +538 -0
  6. package/dist/src/botpress/index.d.ts.map +1 -0
  7. package/dist/src/botpress/schema.d.ts +81 -0
  8. package/dist/src/botpress/schema.d.ts.map +1 -0
  9. package/dist/src/botpress/validation.d.ts +220 -0
  10. package/dist/src/botpress/validation.d.ts.map +1 -0
  11. package/dist/src/channel/index.d.ts +1692 -73
  12. package/dist/src/channel/index.d.ts.map +1 -1
  13. package/dist/src/channel/schema.d.ts +36 -0
  14. package/dist/src/channel/schema.d.ts.map +1 -1
  15. package/dist/src/channel/validation.d.ts +7 -0
  16. package/dist/src/channel/validation.d.ts.map +1 -1
  17. package/dist/src/chat/index.d.ts +33647 -32937
  18. package/dist/src/chat/index.d.ts.map +1 -1
  19. package/dist/src/chat/schema.d.ts +186 -70
  20. package/dist/src/chat/schema.d.ts.map +1 -1
  21. package/dist/src/chat/validation.d.ts +199 -107
  22. package/dist/src/chat/validation.d.ts.map +1 -1
  23. package/dist/src/comment/index.d.ts +68 -68
  24. package/dist/src/comment/schema.d.ts +20 -20
  25. package/dist/src/contact/index.d.ts +79 -79
  26. package/dist/src/contact/schema.d.ts +12 -12
  27. package/dist/src/contact/validation.d.ts +49 -49
  28. package/dist/src/contract.d.ts +15114 -68269
  29. package/dist/src/contract.d.ts.map +1 -1
  30. package/dist/src/contract2.d.ts +2 -0
  31. package/dist/src/contract2.d.ts.map +1 -0
  32. package/dist/src/cx-log/index.d.ts +123 -54
  33. package/dist/src/cx-log/index.d.ts.map +1 -1
  34. package/dist/src/cx-log/schema.d.ts +101 -40
  35. package/dist/src/cx-log/schema.d.ts.map +1 -1
  36. package/dist/src/index.d.ts +2 -0
  37. package/dist/src/index.d.ts.map +1 -1
  38. package/dist/src/instagram/index.d.ts +176 -84
  39. package/dist/src/instagram/index.d.ts.map +1 -1
  40. package/dist/src/line/index.d.ts +181 -89
  41. package/dist/src/line/index.d.ts.map +1 -1
  42. package/dist/src/line/validation.d.ts +5 -5
  43. package/dist/src/mail/mail-contract.d.ts +7 -7
  44. package/dist/src/mail/room-contract.d.ts +7 -7
  45. package/dist/src/mail/schemas/room.schema.d.ts +5 -5
  46. package/dist/src/messenger/index.d.ts +211 -85
  47. package/dist/src/messenger/index.d.ts.map +1 -1
  48. package/dist/src/messenger/validation.d.ts +54 -11
  49. package/dist/src/messenger/validation.d.ts.map +1 -1
  50. package/dist/src/public-api/index.d.ts +59 -59
  51. package/dist/src/public-api/schema.d.ts +12 -12
  52. package/dist/src/public-api/validation.d.ts +19 -19
  53. package/dist/src/snippet/index.d.ts +105 -105
  54. package/dist/src/snippet/schema.d.ts +40 -40
  55. package/dist/src/telephony-cdr/index.d.ts +54 -54
  56. package/dist/src/telephony-cdr/schema.d.ts +14 -14
  57. package/dist/src/ticket/index.d.ts +111 -111
  58. package/dist/src/ticket/schema.d.ts +21 -21
  59. package/dist/src/upload/schema.d.ts +3 -3
  60. package/dist/src/viber/index.d.ts +317 -84
  61. package/dist/src/viber/index.d.ts.map +1 -1
  62. package/dist/src/webchat/index.d.ts +224 -87
  63. package/dist/src/webchat/index.d.ts.map +1 -1
  64. package/dist/src/workflow-rule/index.d.ts +158 -26
  65. package/dist/src/workflow-rule/index.d.ts.map +1 -1
  66. package/package.json +1 -1
@@ -752,9 +752,10 @@ export declare const cxLogContract: {
752
752
  fileSize: z.ZodNumber;
753
753
  fileKey: z.ZodString;
754
754
  fileUrl: z.ZodNullable<z.ZodString>;
755
- status: z.ZodOptional<z.ZodString>;
755
+ status: z.ZodNullable<z.ZodString>;
756
756
  }, "strip", z.ZodTypeAny, {
757
757
  id: string;
758
+ status: string | null;
758
759
  createdAt: Date;
759
760
  updatedAt: Date;
760
761
  deletedAt: Date | null;
@@ -763,9 +764,9 @@ export declare const cxLogContract: {
763
764
  bucketName: string;
764
765
  fileSize: number;
765
766
  fileUrl: string | null;
766
- status?: string | undefined;
767
767
  }, {
768
768
  id: string;
769
+ status: string | null;
769
770
  createdAt: Date;
770
771
  updatedAt: Date;
771
772
  deletedAt: Date | null;
@@ -774,7 +775,6 @@ export declare const cxLogContract: {
774
775
  bucketName: string;
775
776
  fileSize: number;
776
777
  fileUrl: string | null;
777
- status?: string | undefined;
778
778
  }>, "many">;
779
779
  }, "strip", z.ZodTypeAny, {
780
780
  id: string;
@@ -801,6 +801,7 @@ export declare const cxLogContract: {
801
801
  dateValue: Date | null;
802
802
  uploads: {
803
803
  id: string;
804
+ status: string | null;
804
805
  createdAt: Date;
805
806
  updatedAt: Date;
806
807
  deletedAt: Date | null;
@@ -809,7 +810,6 @@ export declare const cxLogContract: {
809
810
  bucketName: string;
810
811
  fileSize: number;
811
812
  fileUrl: string | null;
812
- status?: string | undefined;
813
813
  }[];
814
814
  }, {
815
815
  id: string;
@@ -836,6 +836,7 @@ export declare const cxLogContract: {
836
836
  dateValue: Date | null;
837
837
  uploads: {
838
838
  id: string;
839
+ status: string | null;
839
840
  createdAt: Date;
840
841
  updatedAt: Date;
841
842
  deletedAt: Date | null;
@@ -844,7 +845,6 @@ export declare const cxLogContract: {
844
845
  bucketName: string;
845
846
  fileSize: number;
846
847
  fileUrl: string | null;
847
- status?: string | undefined;
848
848
  }[];
849
849
  }>, "many">;
850
850
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -984,6 +984,7 @@ export declare const cxLogContract: {
984
984
  dateValue: Date | null;
985
985
  uploads: {
986
986
  id: string;
987
+ status: string | null;
987
988
  createdAt: Date;
988
989
  updatedAt: Date;
989
990
  deletedAt: Date | null;
@@ -992,7 +993,6 @@ export declare const cxLogContract: {
992
993
  bucketName: string;
993
994
  fileSize: number;
994
995
  fileUrl: string | null;
995
- status?: string | undefined;
996
996
  }[];
997
997
  }[];
998
998
  company: {
@@ -1080,6 +1080,7 @@ export declare const cxLogContract: {
1080
1080
  dateValue: Date | null;
1081
1081
  uploads: {
1082
1082
  id: string;
1083
+ status: string | null;
1083
1084
  createdAt: Date;
1084
1085
  updatedAt: Date;
1085
1086
  deletedAt: Date | null;
@@ -1088,7 +1089,6 @@ export declare const cxLogContract: {
1088
1089
  bucketName: string;
1089
1090
  fileSize: number;
1090
1091
  fileUrl: string | null;
1091
- status?: string | undefined;
1092
1092
  }[];
1093
1093
  }[];
1094
1094
  company: {
@@ -1189,6 +1189,7 @@ export declare const cxLogContract: {
1189
1189
  dateValue: Date | null;
1190
1190
  uploads: {
1191
1191
  id: string;
1192
+ status: string | null;
1192
1193
  createdAt: Date;
1193
1194
  updatedAt: Date;
1194
1195
  deletedAt: Date | null;
@@ -1197,7 +1198,6 @@ export declare const cxLogContract: {
1197
1198
  bucketName: string;
1198
1199
  fileSize: number;
1199
1200
  fileUrl: string | null;
1200
- status?: string | undefined;
1201
1201
  }[];
1202
1202
  }[];
1203
1203
  company: {
@@ -1300,6 +1300,7 @@ export declare const cxLogContract: {
1300
1300
  dateValue: Date | null;
1301
1301
  uploads: {
1302
1302
  id: string;
1303
+ status: string | null;
1303
1304
  createdAt: Date;
1304
1305
  updatedAt: Date;
1305
1306
  deletedAt: Date | null;
@@ -1308,7 +1309,6 @@ export declare const cxLogContract: {
1308
1309
  bucketName: string;
1309
1310
  fileSize: number;
1310
1311
  fileUrl: string | null;
1311
- status?: string | undefined;
1312
1312
  }[];
1313
1313
  }[];
1314
1314
  company: {
@@ -1807,6 +1807,25 @@ export declare const cxLogContract: {
1807
1807
  isReloginRequired: z.ZodBoolean;
1808
1808
  connectedUserName: z.ZodString;
1809
1809
  connectedUserId: z.ZodString;
1810
+ botpressBot: z.ZodNullable<z.ZodObject<{
1811
+ id: z.ZodString;
1812
+ name: z.ZodString;
1813
+ botId: z.ZodString;
1814
+ integrationId: z.ZodString;
1815
+ accessToken: z.ZodString;
1816
+ }, "strip", z.ZodTypeAny, {
1817
+ id: string;
1818
+ name: string;
1819
+ accessToken: string;
1820
+ botId: string;
1821
+ integrationId: string;
1822
+ }, {
1823
+ id: string;
1824
+ name: string;
1825
+ accessToken: string;
1826
+ botId: string;
1827
+ integrationId: string;
1828
+ }>>;
1810
1829
  actor: z.ZodObject<{
1811
1830
  id: z.ZodString;
1812
1831
  createdAt: z.ZodDate;
@@ -2075,6 +2094,13 @@ export declare const cxLogContract: {
2075
2094
  isReloginRequired: boolean;
2076
2095
  connectedUserName: string;
2077
2096
  connectedUserId: string;
2097
+ botpressBot: {
2098
+ id: string;
2099
+ name: string;
2100
+ accessToken: string;
2101
+ botId: string;
2102
+ integrationId: string;
2103
+ } | null;
2078
2104
  }, {
2079
2105
  type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada" | "webchat";
2080
2106
  id: string;
@@ -2139,6 +2165,13 @@ export declare const cxLogContract: {
2139
2165
  isReloginRequired: boolean;
2140
2166
  connectedUserName: string;
2141
2167
  connectedUserId: string;
2168
+ botpressBot: {
2169
+ id: string;
2170
+ name: string;
2171
+ accessToken: string;
2172
+ botId: string;
2173
+ integrationId: string;
2174
+ } | null;
2142
2175
  }>;
2143
2176
  }, "strip", z.ZodTypeAny, {
2144
2177
  id: string;
@@ -2206,6 +2239,13 @@ export declare const cxLogContract: {
2206
2239
  isReloginRequired: boolean;
2207
2240
  connectedUserName: string;
2208
2241
  connectedUserId: string;
2242
+ botpressBot: {
2243
+ id: string;
2244
+ name: string;
2245
+ accessToken: string;
2246
+ botId: string;
2247
+ integrationId: string;
2248
+ } | null;
2209
2249
  };
2210
2250
  direction: "incoming" | "outgoing" | "system";
2211
2251
  createdAt: Date;
@@ -2307,6 +2347,7 @@ export declare const cxLogContract: {
2307
2347
  dateValue: Date | null;
2308
2348
  uploads: {
2309
2349
  id: string;
2350
+ status: string | null;
2310
2351
  createdAt: Date;
2311
2352
  updatedAt: Date;
2312
2353
  deletedAt: Date | null;
@@ -2315,7 +2356,6 @@ export declare const cxLogContract: {
2315
2356
  bucketName: string;
2316
2357
  fileSize: number;
2317
2358
  fileUrl: string | null;
2318
- status?: string | undefined;
2319
2359
  }[];
2320
2360
  }[];
2321
2361
  company: {
@@ -2484,6 +2524,13 @@ export declare const cxLogContract: {
2484
2524
  isReloginRequired: boolean;
2485
2525
  connectedUserName: string;
2486
2526
  connectedUserId: string;
2527
+ botpressBot: {
2528
+ id: string;
2529
+ name: string;
2530
+ accessToken: string;
2531
+ botId: string;
2532
+ integrationId: string;
2533
+ } | null;
2487
2534
  };
2488
2535
  direction: "incoming" | "outgoing" | "system";
2489
2536
  createdAt: Date;
@@ -2585,6 +2632,7 @@ export declare const cxLogContract: {
2585
2632
  dateValue: Date | null;
2586
2633
  uploads: {
2587
2634
  id: string;
2635
+ status: string | null;
2588
2636
  createdAt: Date;
2589
2637
  updatedAt: Date;
2590
2638
  deletedAt: Date | null;
@@ -2593,7 +2641,6 @@ export declare const cxLogContract: {
2593
2641
  bucketName: string;
2594
2642
  fileSize: number;
2595
2643
  fileUrl: string | null;
2596
- status?: string | undefined;
2597
2644
  }[];
2598
2645
  }[];
2599
2646
  company: {
@@ -3005,9 +3052,10 @@ export declare const cxLogContract: {
3005
3052
  fileSize: z.ZodNumber;
3006
3053
  fileKey: z.ZodString;
3007
3054
  fileUrl: z.ZodNullable<z.ZodString>;
3008
- status: z.ZodOptional<z.ZodString>;
3055
+ status: z.ZodNullable<z.ZodString>;
3009
3056
  }, "strip", z.ZodTypeAny, {
3010
3057
  id: string;
3058
+ status: string | null;
3011
3059
  createdAt: Date;
3012
3060
  updatedAt: Date;
3013
3061
  deletedAt: Date | null;
@@ -3016,9 +3064,9 @@ export declare const cxLogContract: {
3016
3064
  bucketName: string;
3017
3065
  fileSize: number;
3018
3066
  fileUrl: string | null;
3019
- status?: string | undefined;
3020
3067
  }, {
3021
3068
  id: string;
3069
+ status: string | null;
3022
3070
  createdAt: Date;
3023
3071
  updatedAt: Date;
3024
3072
  deletedAt: Date | null;
@@ -3027,7 +3075,6 @@ export declare const cxLogContract: {
3027
3075
  bucketName: string;
3028
3076
  fileSize: number;
3029
3077
  fileUrl: string | null;
3030
- status?: string | undefined;
3031
3078
  }>, "many">;
3032
3079
  }, "strip", z.ZodTypeAny, {
3033
3080
  id: string;
@@ -3054,6 +3101,7 @@ export declare const cxLogContract: {
3054
3101
  dateValue: Date | null;
3055
3102
  uploads: {
3056
3103
  id: string;
3104
+ status: string | null;
3057
3105
  createdAt: Date;
3058
3106
  updatedAt: Date;
3059
3107
  deletedAt: Date | null;
@@ -3062,7 +3110,6 @@ export declare const cxLogContract: {
3062
3110
  bucketName: string;
3063
3111
  fileSize: number;
3064
3112
  fileUrl: string | null;
3065
- status?: string | undefined;
3066
3113
  }[];
3067
3114
  }, {
3068
3115
  id: string;
@@ -3089,6 +3136,7 @@ export declare const cxLogContract: {
3089
3136
  dateValue: Date | null;
3090
3137
  uploads: {
3091
3138
  id: string;
3139
+ status: string | null;
3092
3140
  createdAt: Date;
3093
3141
  updatedAt: Date;
3094
3142
  deletedAt: Date | null;
@@ -3097,7 +3145,6 @@ export declare const cxLogContract: {
3097
3145
  bucketName: string;
3098
3146
  fileSize: number;
3099
3147
  fileUrl: string | null;
3100
- status?: string | undefined;
3101
3148
  }[];
3102
3149
  }>, "many">;
3103
3150
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -3237,6 +3284,7 @@ export declare const cxLogContract: {
3237
3284
  dateValue: Date | null;
3238
3285
  uploads: {
3239
3286
  id: string;
3287
+ status: string | null;
3240
3288
  createdAt: Date;
3241
3289
  updatedAt: Date;
3242
3290
  deletedAt: Date | null;
@@ -3245,7 +3293,6 @@ export declare const cxLogContract: {
3245
3293
  bucketName: string;
3246
3294
  fileSize: number;
3247
3295
  fileUrl: string | null;
3248
- status?: string | undefined;
3249
3296
  }[];
3250
3297
  }[];
3251
3298
  company: {
@@ -3333,6 +3380,7 @@ export declare const cxLogContract: {
3333
3380
  dateValue: Date | null;
3334
3381
  uploads: {
3335
3382
  id: string;
3383
+ status: string | null;
3336
3384
  createdAt: Date;
3337
3385
  updatedAt: Date;
3338
3386
  deletedAt: Date | null;
@@ -3341,7 +3389,6 @@ export declare const cxLogContract: {
3341
3389
  bucketName: string;
3342
3390
  fileSize: number;
3343
3391
  fileUrl: string | null;
3344
- status?: string | undefined;
3345
3392
  }[];
3346
3393
  }[];
3347
3394
  company: {
@@ -3443,9 +3490,10 @@ export declare const cxLogContract: {
3443
3490
  fileSize: z.ZodNumber;
3444
3491
  fileKey: z.ZodString;
3445
3492
  fileUrl: z.ZodNullable<z.ZodString>;
3446
- status: z.ZodOptional<z.ZodString>;
3493
+ status: z.ZodNullable<z.ZodString>;
3447
3494
  }, "strip", z.ZodTypeAny, {
3448
3495
  id: string;
3496
+ status: string | null;
3449
3497
  createdAt: Date;
3450
3498
  updatedAt: Date;
3451
3499
  deletedAt: Date | null;
@@ -3454,9 +3502,9 @@ export declare const cxLogContract: {
3454
3502
  bucketName: string;
3455
3503
  fileSize: number;
3456
3504
  fileUrl: string | null;
3457
- status?: string | undefined;
3458
3505
  }, {
3459
3506
  id: string;
3507
+ status: string | null;
3460
3508
  createdAt: Date;
3461
3509
  updatedAt: Date;
3462
3510
  deletedAt: Date | null;
@@ -3465,7 +3513,6 @@ export declare const cxLogContract: {
3465
3513
  bucketName: string;
3466
3514
  fileSize: number;
3467
3515
  fileUrl: string | null;
3468
- status?: string | undefined;
3469
3516
  }>>>;
3470
3517
  callParticipants: z.ZodNullable<z.ZodObject<{
3471
3518
  callTo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4430,6 +4477,7 @@ export declare const cxLogContract: {
4430
4477
  dateValue: Date | null;
4431
4478
  uploads: {
4432
4479
  id: string;
4480
+ status: string | null;
4433
4481
  createdAt: Date;
4434
4482
  updatedAt: Date;
4435
4483
  deletedAt: Date | null;
@@ -4438,7 +4486,6 @@ export declare const cxLogContract: {
4438
4486
  bucketName: string;
4439
4487
  fileSize: number;
4440
4488
  fileUrl: string | null;
4441
- status?: string | undefined;
4442
4489
  }[];
4443
4490
  }[];
4444
4491
  company: {
@@ -4506,6 +4553,7 @@ export declare const cxLogContract: {
4506
4553
  } | null | undefined;
4507
4554
  upload?: {
4508
4555
  id: string;
4556
+ status: string | null;
4509
4557
  createdAt: Date;
4510
4558
  updatedAt: Date;
4511
4559
  deletedAt: Date | null;
@@ -4514,7 +4562,6 @@ export declare const cxLogContract: {
4514
4562
  bucketName: string;
4515
4563
  fileSize: number;
4516
4564
  fileUrl: string | null;
4517
- status?: string | undefined;
4518
4565
  } | null | undefined;
4519
4566
  extension?: {
4520
4567
  id: string;
@@ -4685,6 +4732,7 @@ export declare const cxLogContract: {
4685
4732
  dateValue: Date | null;
4686
4733
  uploads: {
4687
4734
  id: string;
4735
+ status: string | null;
4688
4736
  createdAt: Date;
4689
4737
  updatedAt: Date;
4690
4738
  deletedAt: Date | null;
@@ -4693,7 +4741,6 @@ export declare const cxLogContract: {
4693
4741
  bucketName: string;
4694
4742
  fileSize: number;
4695
4743
  fileUrl: string | null;
4696
- status?: string | undefined;
4697
4744
  }[];
4698
4745
  }[];
4699
4746
  company: {
@@ -4761,6 +4808,7 @@ export declare const cxLogContract: {
4761
4808
  } | null | undefined;
4762
4809
  upload?: {
4763
4810
  id: string;
4811
+ status: string | null;
4764
4812
  createdAt: Date;
4765
4813
  updatedAt: Date;
4766
4814
  deletedAt: Date | null;
@@ -4769,7 +4817,6 @@ export declare const cxLogContract: {
4769
4817
  bucketName: string;
4770
4818
  fileSize: number;
4771
4819
  fileUrl: string | null;
4772
- status?: string | undefined;
4773
4820
  } | null | undefined;
4774
4821
  extension?: {
4775
4822
  id: string;
@@ -5131,9 +5178,10 @@ export declare const cxLogContract: {
5131
5178
  fileSize: z.ZodNumber;
5132
5179
  fileKey: z.ZodString;
5133
5180
  fileUrl: z.ZodNullable<z.ZodString>;
5134
- status: z.ZodOptional<z.ZodString>;
5181
+ status: z.ZodNullable<z.ZodString>;
5135
5182
  }, "strip", z.ZodTypeAny, {
5136
5183
  id: string;
5184
+ status: string | null;
5137
5185
  createdAt: Date;
5138
5186
  updatedAt: Date;
5139
5187
  deletedAt: Date | null;
@@ -5142,9 +5190,9 @@ export declare const cxLogContract: {
5142
5190
  bucketName: string;
5143
5191
  fileSize: number;
5144
5192
  fileUrl: string | null;
5145
- status?: string | undefined;
5146
5193
  }, {
5147
5194
  id: string;
5195
+ status: string | null;
5148
5196
  createdAt: Date;
5149
5197
  updatedAt: Date;
5150
5198
  deletedAt: Date | null;
@@ -5153,7 +5201,6 @@ export declare const cxLogContract: {
5153
5201
  bucketName: string;
5154
5202
  fileSize: number;
5155
5203
  fileUrl: string | null;
5156
- status?: string | undefined;
5157
5204
  }>, "many">;
5158
5205
  }, "strip", z.ZodTypeAny, {
5159
5206
  id: string;
@@ -5180,6 +5227,7 @@ export declare const cxLogContract: {
5180
5227
  dateValue: Date | null;
5181
5228
  uploads: {
5182
5229
  id: string;
5230
+ status: string | null;
5183
5231
  createdAt: Date;
5184
5232
  updatedAt: Date;
5185
5233
  deletedAt: Date | null;
@@ -5188,7 +5236,6 @@ export declare const cxLogContract: {
5188
5236
  bucketName: string;
5189
5237
  fileSize: number;
5190
5238
  fileUrl: string | null;
5191
- status?: string | undefined;
5192
5239
  }[];
5193
5240
  }, {
5194
5241
  id: string;
@@ -5215,6 +5262,7 @@ export declare const cxLogContract: {
5215
5262
  dateValue: Date | null;
5216
5263
  uploads: {
5217
5264
  id: string;
5265
+ status: string | null;
5218
5266
  createdAt: Date;
5219
5267
  updatedAt: Date;
5220
5268
  deletedAt: Date | null;
@@ -5223,7 +5271,6 @@ export declare const cxLogContract: {
5223
5271
  bucketName: string;
5224
5272
  fileSize: number;
5225
5273
  fileUrl: string | null;
5226
- status?: string | undefined;
5227
5274
  }[];
5228
5275
  }>, "many">;
5229
5276
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -5363,6 +5410,7 @@ export declare const cxLogContract: {
5363
5410
  dateValue: Date | null;
5364
5411
  uploads: {
5365
5412
  id: string;
5413
+ status: string | null;
5366
5414
  createdAt: Date;
5367
5415
  updatedAt: Date;
5368
5416
  deletedAt: Date | null;
@@ -5371,7 +5419,6 @@ export declare const cxLogContract: {
5371
5419
  bucketName: string;
5372
5420
  fileSize: number;
5373
5421
  fileUrl: string | null;
5374
- status?: string | undefined;
5375
5422
  }[];
5376
5423
  }[];
5377
5424
  company: {
@@ -5459,6 +5506,7 @@ export declare const cxLogContract: {
5459
5506
  dateValue: Date | null;
5460
5507
  uploads: {
5461
5508
  id: string;
5509
+ status: string | null;
5462
5510
  createdAt: Date;
5463
5511
  updatedAt: Date;
5464
5512
  deletedAt: Date | null;
@@ -5467,7 +5515,6 @@ export declare const cxLogContract: {
5467
5515
  bucketName: string;
5468
5516
  fileSize: number;
5469
5517
  fileUrl: string | null;
5470
- status?: string | undefined;
5471
5518
  }[];
5472
5519
  }[];
5473
5520
  company: {
@@ -5769,6 +5816,7 @@ export declare const cxLogContract: {
5769
5816
  dateValue: Date | null;
5770
5817
  uploads: {
5771
5818
  id: string;
5819
+ status: string | null;
5772
5820
  createdAt: Date;
5773
5821
  updatedAt: Date;
5774
5822
  deletedAt: Date | null;
@@ -5777,7 +5825,6 @@ export declare const cxLogContract: {
5777
5825
  bucketName: string;
5778
5826
  fileSize: number;
5779
5827
  fileUrl: string | null;
5780
- status?: string | undefined;
5781
5828
  }[];
5782
5829
  }[];
5783
5830
  company: {
@@ -5972,6 +6019,13 @@ export declare const cxLogContract: {
5972
6019
  isReloginRequired: boolean;
5973
6020
  connectedUserName: string;
5974
6021
  connectedUserId: string;
6022
+ botpressBot: {
6023
+ id: string;
6024
+ name: string;
6025
+ accessToken: string;
6026
+ botId: string;
6027
+ integrationId: string;
6028
+ } | null;
5975
6029
  };
5976
6030
  direction: "incoming" | "outgoing" | "system";
5977
6031
  createdAt: Date;
@@ -6073,6 +6127,7 @@ export declare const cxLogContract: {
6073
6127
  dateValue: Date | null;
6074
6128
  uploads: {
6075
6129
  id: string;
6130
+ status: string | null;
6076
6131
  createdAt: Date;
6077
6132
  updatedAt: Date;
6078
6133
  deletedAt: Date | null;
@@ -6081,7 +6136,6 @@ export declare const cxLogContract: {
6081
6136
  bucketName: string;
6082
6137
  fileSize: number;
6083
6138
  fileUrl: string | null;
6084
- status?: string | undefined;
6085
6139
  }[];
6086
6140
  }[];
6087
6141
  company: {
@@ -6297,6 +6351,7 @@ export declare const cxLogContract: {
6297
6351
  dateValue: Date | null;
6298
6352
  uploads: {
6299
6353
  id: string;
6354
+ status: string | null;
6300
6355
  createdAt: Date;
6301
6356
  updatedAt: Date;
6302
6357
  deletedAt: Date | null;
@@ -6305,7 +6360,6 @@ export declare const cxLogContract: {
6305
6360
  bucketName: string;
6306
6361
  fileSize: number;
6307
6362
  fileUrl: string | null;
6308
- status?: string | undefined;
6309
6363
  }[];
6310
6364
  }[];
6311
6365
  company: {
@@ -6373,6 +6427,7 @@ export declare const cxLogContract: {
6373
6427
  } | null | undefined;
6374
6428
  upload?: {
6375
6429
  id: string;
6430
+ status: string | null;
6376
6431
  createdAt: Date;
6377
6432
  updatedAt: Date;
6378
6433
  deletedAt: Date | null;
@@ -6381,7 +6436,6 @@ export declare const cxLogContract: {
6381
6436
  bucketName: string;
6382
6437
  fileSize: number;
6383
6438
  fileUrl: string | null;
6384
- status?: string | undefined;
6385
6439
  } | null | undefined;
6386
6440
  extension?: {
6387
6441
  id: string;
@@ -6530,6 +6584,7 @@ export declare const cxLogContract: {
6530
6584
  dateValue: Date | null;
6531
6585
  uploads: {
6532
6586
  id: string;
6587
+ status: string | null;
6533
6588
  createdAt: Date;
6534
6589
  updatedAt: Date;
6535
6590
  deletedAt: Date | null;
@@ -6538,7 +6593,6 @@ export declare const cxLogContract: {
6538
6593
  bucketName: string;
6539
6594
  fileSize: number;
6540
6595
  fileUrl: string | null;
6541
- status?: string | undefined;
6542
6596
  }[];
6543
6597
  }[];
6544
6598
  company: {
@@ -6733,6 +6787,13 @@ export declare const cxLogContract: {
6733
6787
  isReloginRequired: boolean;
6734
6788
  connectedUserName: string;
6735
6789
  connectedUserId: string;
6790
+ botpressBot: {
6791
+ id: string;
6792
+ name: string;
6793
+ accessToken: string;
6794
+ botId: string;
6795
+ integrationId: string;
6796
+ } | null;
6736
6797
  };
6737
6798
  direction: "incoming" | "outgoing" | "system";
6738
6799
  createdAt: Date;
@@ -6834,6 +6895,7 @@ export declare const cxLogContract: {
6834
6895
  dateValue: Date | null;
6835
6896
  uploads: {
6836
6897
  id: string;
6898
+ status: string | null;
6837
6899
  createdAt: Date;
6838
6900
  updatedAt: Date;
6839
6901
  deletedAt: Date | null;
@@ -6842,7 +6904,6 @@ export declare const cxLogContract: {
6842
6904
  bucketName: string;
6843
6905
  fileSize: number;
6844
6906
  fileUrl: string | null;
6845
- status?: string | undefined;
6846
6907
  }[];
6847
6908
  }[];
6848
6909
  company: {
@@ -7058,6 +7119,7 @@ export declare const cxLogContract: {
7058
7119
  dateValue: Date | null;
7059
7120
  uploads: {
7060
7121
  id: string;
7122
+ status: string | null;
7061
7123
  createdAt: Date;
7062
7124
  updatedAt: Date;
7063
7125
  deletedAt: Date | null;
@@ -7066,7 +7128,6 @@ export declare const cxLogContract: {
7066
7128
  bucketName: string;
7067
7129
  fileSize: number;
7068
7130
  fileUrl: string | null;
7069
- status?: string | undefined;
7070
7131
  }[];
7071
7132
  }[];
7072
7133
  company: {
@@ -7134,6 +7195,7 @@ export declare const cxLogContract: {
7134
7195
  } | null | undefined;
7135
7196
  upload?: {
7136
7197
  id: string;
7198
+ status: string | null;
7137
7199
  createdAt: Date;
7138
7200
  updatedAt: Date;
7139
7201
  deletedAt: Date | null;
@@ -7142,7 +7204,6 @@ export declare const cxLogContract: {
7142
7204
  bucketName: string;
7143
7205
  fileSize: number;
7144
7206
  fileUrl: string | null;
7145
- status?: string | undefined;
7146
7207
  } | null | undefined;
7147
7208
  extension?: {
7148
7209
  id: string;
@@ -7297,6 +7358,7 @@ export declare const cxLogContract: {
7297
7358
  dateValue: Date | null;
7298
7359
  uploads: {
7299
7360
  id: string;
7361
+ status: string | null;
7300
7362
  createdAt: Date;
7301
7363
  updatedAt: Date;
7302
7364
  deletedAt: Date | null;
@@ -7305,7 +7367,6 @@ export declare const cxLogContract: {
7305
7367
  bucketName: string;
7306
7368
  fileSize: number;
7307
7369
  fileUrl: string | null;
7308
- status?: string | undefined;
7309
7370
  }[];
7310
7371
  }[];
7311
7372
  company: {
@@ -7500,6 +7561,13 @@ export declare const cxLogContract: {
7500
7561
  isReloginRequired: boolean;
7501
7562
  connectedUserName: string;
7502
7563
  connectedUserId: string;
7564
+ botpressBot: {
7565
+ id: string;
7566
+ name: string;
7567
+ accessToken: string;
7568
+ botId: string;
7569
+ integrationId: string;
7570
+ } | null;
7503
7571
  };
7504
7572
  direction: "incoming" | "outgoing" | "system";
7505
7573
  createdAt: Date;
@@ -7601,6 +7669,7 @@ export declare const cxLogContract: {
7601
7669
  dateValue: Date | null;
7602
7670
  uploads: {
7603
7671
  id: string;
7672
+ status: string | null;
7604
7673
  createdAt: Date;
7605
7674
  updatedAt: Date;
7606
7675
  deletedAt: Date | null;
@@ -7609,7 +7678,6 @@ export declare const cxLogContract: {
7609
7678
  bucketName: string;
7610
7679
  fileSize: number;
7611
7680
  fileUrl: string | null;
7612
- status?: string | undefined;
7613
7681
  }[];
7614
7682
  }[];
7615
7683
  company: {
@@ -7825,6 +7893,7 @@ export declare const cxLogContract: {
7825
7893
  dateValue: Date | null;
7826
7894
  uploads: {
7827
7895
  id: string;
7896
+ status: string | null;
7828
7897
  createdAt: Date;
7829
7898
  updatedAt: Date;
7830
7899
  deletedAt: Date | null;
@@ -7833,7 +7902,6 @@ export declare const cxLogContract: {
7833
7902
  bucketName: string;
7834
7903
  fileSize: number;
7835
7904
  fileUrl: string | null;
7836
- status?: string | undefined;
7837
7905
  }[];
7838
7906
  }[];
7839
7907
  company: {
@@ -7901,6 +7969,7 @@ export declare const cxLogContract: {
7901
7969
  } | null | undefined;
7902
7970
  upload?: {
7903
7971
  id: string;
7972
+ status: string | null;
7904
7973
  createdAt: Date;
7905
7974
  updatedAt: Date;
7906
7975
  deletedAt: Date | null;
@@ -7909,7 +7978,6 @@ export declare const cxLogContract: {
7909
7978
  bucketName: string;
7910
7979
  fileSize: number;
7911
7980
  fileUrl: string | null;
7912
- status?: string | undefined;
7913
7981
  } | null | undefined;
7914
7982
  extension?: {
7915
7983
  id: string;
@@ -8064,6 +8132,7 @@ export declare const cxLogContract: {
8064
8132
  dateValue: Date | null;
8065
8133
  uploads: {
8066
8134
  id: string;
8135
+ status: string | null;
8067
8136
  createdAt: Date;
8068
8137
  updatedAt: Date;
8069
8138
  deletedAt: Date | null;
@@ -8072,7 +8141,6 @@ export declare const cxLogContract: {
8072
8141
  bucketName: string;
8073
8142
  fileSize: number;
8074
8143
  fileUrl: string | null;
8075
- status?: string | undefined;
8076
8144
  }[];
8077
8145
  }[];
8078
8146
  company: {
@@ -8267,6 +8335,13 @@ export declare const cxLogContract: {
8267
8335
  isReloginRequired: boolean;
8268
8336
  connectedUserName: string;
8269
8337
  connectedUserId: string;
8338
+ botpressBot: {
8339
+ id: string;
8340
+ name: string;
8341
+ accessToken: string;
8342
+ botId: string;
8343
+ integrationId: string;
8344
+ } | null;
8270
8345
  };
8271
8346
  direction: "incoming" | "outgoing" | "system";
8272
8347
  createdAt: Date;
@@ -8368,6 +8443,7 @@ export declare const cxLogContract: {
8368
8443
  dateValue: Date | null;
8369
8444
  uploads: {
8370
8445
  id: string;
8446
+ status: string | null;
8371
8447
  createdAt: Date;
8372
8448
  updatedAt: Date;
8373
8449
  deletedAt: Date | null;
@@ -8376,7 +8452,6 @@ export declare const cxLogContract: {
8376
8452
  bucketName: string;
8377
8453
  fileSize: number;
8378
8454
  fileUrl: string | null;
8379
- status?: string | undefined;
8380
8455
  }[];
8381
8456
  }[];
8382
8457
  company: {
@@ -8592,6 +8667,7 @@ export declare const cxLogContract: {
8592
8667
  dateValue: Date | null;
8593
8668
  uploads: {
8594
8669
  id: string;
8670
+ status: string | null;
8595
8671
  createdAt: Date;
8596
8672
  updatedAt: Date;
8597
8673
  deletedAt: Date | null;
@@ -8600,7 +8676,6 @@ export declare const cxLogContract: {
8600
8676
  bucketName: string;
8601
8677
  fileSize: number;
8602
8678
  fileUrl: string | null;
8603
- status?: string | undefined;
8604
8679
  }[];
8605
8680
  }[];
8606
8681
  company: {
@@ -8668,6 +8743,7 @@ export declare const cxLogContract: {
8668
8743
  } | null | undefined;
8669
8744
  upload?: {
8670
8745
  id: string;
8746
+ status: string | null;
8671
8747
  createdAt: Date;
8672
8748
  updatedAt: Date;
8673
8749
  deletedAt: Date | null;
@@ -8676,7 +8752,6 @@ export declare const cxLogContract: {
8676
8752
  bucketName: string;
8677
8753
  fileSize: number;
8678
8754
  fileUrl: string | null;
8679
- status?: string | undefined;
8680
8755
  } | null | undefined;
8681
8756
  extension?: {
8682
8757
  id: string;
@@ -8948,17 +9023,11 @@ export declare const cxLogContract: {
8948
9023
  updateSla: {
8949
9024
  body: z.ZodObject<{
8950
9025
  roomId: z.ZodString;
8951
- firstResponseTime: z.ZodNullable<z.ZodNumber>;
8952
- resolutionTime: z.ZodNullable<z.ZodNumber>;
8953
9026
  slaStatus: z.ZodEnum<["meet", "unmeet"]>;
8954
9027
  }, "strip", z.ZodTypeAny, {
8955
- firstResponseTime: number | null;
8956
- resolutionTime: number | null;
8957
9028
  roomId: string;
8958
9029
  slaStatus: "meet" | "unmeet";
8959
9030
  }, {
8960
- firstResponseTime: number | null;
8961
- resolutionTime: number | null;
8962
9031
  roomId: string;
8963
9032
  slaStatus: "meet" | "unmeet";
8964
9033
  }>;