@kl1/contracts 1.1.39-uat → 1.1.41-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 (61) hide show
  1. package/dist/index.js +2215 -2197
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +2214 -2196
  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/business-calendar/index.d.ts +21 -0
  12. package/dist/src/business-calendar/index.d.ts.map +1 -1
  13. package/dist/src/business-calendar/schema.d.ts +8 -0
  14. package/dist/src/business-calendar/schema.d.ts.map +1 -1
  15. package/dist/src/chat/index.d.ts +34445 -34443
  16. package/dist/src/chat/index.d.ts.map +1 -1
  17. package/dist/src/chat/schema.d.ts +50 -50
  18. package/dist/src/chat/validation.d.ts +46 -46
  19. package/dist/src/comment/index.d.ts +68 -68
  20. package/dist/src/comment/schema.d.ts +20 -20
  21. package/dist/src/contact/index.d.ts +79 -79
  22. package/dist/src/contact/schema.d.ts +12 -12
  23. package/dist/src/contact/validation.d.ts +49 -49
  24. package/dist/src/contract.d.ts +1238 -57196
  25. package/dist/src/contract.d.ts.map +1 -1
  26. package/dist/src/contract2.d.ts +2 -0
  27. package/dist/src/contract2.d.ts.map +1 -0
  28. package/dist/src/cx-log/index.d.ts +106 -49
  29. package/dist/src/cx-log/index.d.ts.map +1 -1
  30. package/dist/src/cx-log/schema.d.ts +40 -40
  31. package/dist/src/index.d.ts +1 -0
  32. package/dist/src/index.d.ts.map +1 -1
  33. package/dist/src/instagram/index.d.ts +31 -31
  34. package/dist/src/line/index.d.ts +31 -31
  35. package/dist/src/mail/mail-contract.d.ts +7 -7
  36. package/dist/src/mail/room-contract.d.ts +7 -7
  37. package/dist/src/mail/schemas/room.schema.d.ts +5 -5
  38. package/dist/src/messenger/index.d.ts +31 -31
  39. package/dist/src/messenger/validation.d.ts +11 -11
  40. package/dist/src/public-api/index.d.ts +59 -59
  41. package/dist/src/public-api/schema.d.ts +12 -12
  42. package/dist/src/public-api/validation.d.ts +19 -19
  43. package/dist/src/snippet/index.d.ts +105 -105
  44. package/dist/src/snippet/schema.d.ts +40 -40
  45. package/dist/src/telephony-cdr/call-report.schema.d.ts +36 -10
  46. package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
  47. package/dist/src/telephony-cdr/index.d.ts +54 -54
  48. package/dist/src/telephony-cdr/schema.d.ts +14 -14
  49. package/dist/src/ticket/index.d.ts +111 -111
  50. package/dist/src/ticket/schema.d.ts +21 -21
  51. package/dist/src/upload/schema.d.ts +3 -3
  52. package/dist/src/viber/index.d.ts +31 -31
  53. package/dist/src/webchat/index.d.ts +32 -34
  54. package/dist/src/webchat/index.d.ts.map +1 -1
  55. package/dist/src/workflow-rule/index.d.ts +36 -26
  56. package/dist/src/workflow-rule/index.d.ts.map +1 -1
  57. package/dist/src/wrap-up-form/index.d.ts +3 -0
  58. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  59. package/dist/src/wrap-up-form/validation.d.ts +3 -0
  60. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  61. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
1
  import z from 'zod';
2
- import { GetAllCxLogQueryParamsSchema } from './validation';
3
2
  import { CxLogSchemaWithRelations } from './schema';
3
+ import { GetAllCxLogQueryParamsSchema } from './validation';
4
4
  export type CXLog = z.infer<typeof CxLogSchemaWithRelations>;
5
5
  export type GetAllCxLogRequest = z.infer<typeof GetAllCxLogQueryParamsSchema>;
6
6
  export declare const cxLogContract: {
@@ -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: {
@@ -2307,6 +2307,7 @@ export declare const cxLogContract: {
2307
2307
  dateValue: Date | null;
2308
2308
  uploads: {
2309
2309
  id: string;
2310
+ status: string | null;
2310
2311
  createdAt: Date;
2311
2312
  updatedAt: Date;
2312
2313
  deletedAt: Date | null;
@@ -2315,7 +2316,6 @@ export declare const cxLogContract: {
2315
2316
  bucketName: string;
2316
2317
  fileSize: number;
2317
2318
  fileUrl: string | null;
2318
- status?: string | undefined;
2319
2319
  }[];
2320
2320
  }[];
2321
2321
  company: {
@@ -2585,6 +2585,7 @@ export declare const cxLogContract: {
2585
2585
  dateValue: Date | null;
2586
2586
  uploads: {
2587
2587
  id: string;
2588
+ status: string | null;
2588
2589
  createdAt: Date;
2589
2590
  updatedAt: Date;
2590
2591
  deletedAt: Date | null;
@@ -2593,7 +2594,6 @@ export declare const cxLogContract: {
2593
2594
  bucketName: string;
2594
2595
  fileSize: number;
2595
2596
  fileUrl: string | null;
2596
- status?: string | undefined;
2597
2597
  }[];
2598
2598
  }[];
2599
2599
  company: {
@@ -3005,9 +3005,10 @@ export declare const cxLogContract: {
3005
3005
  fileSize: z.ZodNumber;
3006
3006
  fileKey: z.ZodString;
3007
3007
  fileUrl: z.ZodNullable<z.ZodString>;
3008
- status: z.ZodOptional<z.ZodString>;
3008
+ status: z.ZodNullable<z.ZodString>;
3009
3009
  }, "strip", z.ZodTypeAny, {
3010
3010
  id: string;
3011
+ status: string | null;
3011
3012
  createdAt: Date;
3012
3013
  updatedAt: Date;
3013
3014
  deletedAt: Date | null;
@@ -3016,9 +3017,9 @@ export declare const cxLogContract: {
3016
3017
  bucketName: string;
3017
3018
  fileSize: number;
3018
3019
  fileUrl: string | null;
3019
- status?: string | undefined;
3020
3020
  }, {
3021
3021
  id: string;
3022
+ status: string | null;
3022
3023
  createdAt: Date;
3023
3024
  updatedAt: Date;
3024
3025
  deletedAt: Date | null;
@@ -3027,7 +3028,6 @@ export declare const cxLogContract: {
3027
3028
  bucketName: string;
3028
3029
  fileSize: number;
3029
3030
  fileUrl: string | null;
3030
- status?: string | undefined;
3031
3031
  }>, "many">;
3032
3032
  }, "strip", z.ZodTypeAny, {
3033
3033
  id: string;
@@ -3054,6 +3054,7 @@ export declare const cxLogContract: {
3054
3054
  dateValue: Date | null;
3055
3055
  uploads: {
3056
3056
  id: string;
3057
+ status: string | null;
3057
3058
  createdAt: Date;
3058
3059
  updatedAt: Date;
3059
3060
  deletedAt: Date | null;
@@ -3062,7 +3063,6 @@ export declare const cxLogContract: {
3062
3063
  bucketName: string;
3063
3064
  fileSize: number;
3064
3065
  fileUrl: string | null;
3065
- status?: string | undefined;
3066
3066
  }[];
3067
3067
  }, {
3068
3068
  id: string;
@@ -3089,6 +3089,7 @@ export declare const cxLogContract: {
3089
3089
  dateValue: Date | null;
3090
3090
  uploads: {
3091
3091
  id: string;
3092
+ status: string | null;
3092
3093
  createdAt: Date;
3093
3094
  updatedAt: Date;
3094
3095
  deletedAt: Date | null;
@@ -3097,7 +3098,6 @@ export declare const cxLogContract: {
3097
3098
  bucketName: string;
3098
3099
  fileSize: number;
3099
3100
  fileUrl: string | null;
3100
- status?: string | undefined;
3101
3101
  }[];
3102
3102
  }>, "many">;
3103
3103
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -3237,6 +3237,7 @@ export declare const cxLogContract: {
3237
3237
  dateValue: Date | null;
3238
3238
  uploads: {
3239
3239
  id: string;
3240
+ status: string | null;
3240
3241
  createdAt: Date;
3241
3242
  updatedAt: Date;
3242
3243
  deletedAt: Date | null;
@@ -3245,7 +3246,6 @@ export declare const cxLogContract: {
3245
3246
  bucketName: string;
3246
3247
  fileSize: number;
3247
3248
  fileUrl: string | null;
3248
- status?: string | undefined;
3249
3249
  }[];
3250
3250
  }[];
3251
3251
  company: {
@@ -3333,6 +3333,7 @@ export declare const cxLogContract: {
3333
3333
  dateValue: Date | null;
3334
3334
  uploads: {
3335
3335
  id: string;
3336
+ status: string | null;
3336
3337
  createdAt: Date;
3337
3338
  updatedAt: Date;
3338
3339
  deletedAt: Date | null;
@@ -3341,7 +3342,6 @@ export declare const cxLogContract: {
3341
3342
  bucketName: string;
3342
3343
  fileSize: number;
3343
3344
  fileUrl: string | null;
3344
- status?: string | undefined;
3345
3345
  }[];
3346
3346
  }[];
3347
3347
  company: {
@@ -3443,9 +3443,10 @@ export declare const cxLogContract: {
3443
3443
  fileSize: z.ZodNumber;
3444
3444
  fileKey: z.ZodString;
3445
3445
  fileUrl: z.ZodNullable<z.ZodString>;
3446
- status: z.ZodOptional<z.ZodString>;
3446
+ status: z.ZodNullable<z.ZodString>;
3447
3447
  }, "strip", z.ZodTypeAny, {
3448
3448
  id: string;
3449
+ status: string | null;
3449
3450
  createdAt: Date;
3450
3451
  updatedAt: Date;
3451
3452
  deletedAt: Date | null;
@@ -3454,9 +3455,9 @@ export declare const cxLogContract: {
3454
3455
  bucketName: string;
3455
3456
  fileSize: number;
3456
3457
  fileUrl: string | null;
3457
- status?: string | undefined;
3458
3458
  }, {
3459
3459
  id: string;
3460
+ status: string | null;
3460
3461
  createdAt: Date;
3461
3462
  updatedAt: Date;
3462
3463
  deletedAt: Date | null;
@@ -3465,7 +3466,6 @@ export declare const cxLogContract: {
3465
3466
  bucketName: string;
3466
3467
  fileSize: number;
3467
3468
  fileUrl: string | null;
3468
- status?: string | undefined;
3469
3469
  }>>>;
3470
3470
  callParticipants: z.ZodNullable<z.ZodObject<{
3471
3471
  callTo: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4430,6 +4430,7 @@ export declare const cxLogContract: {
4430
4430
  dateValue: Date | null;
4431
4431
  uploads: {
4432
4432
  id: string;
4433
+ status: string | null;
4433
4434
  createdAt: Date;
4434
4435
  updatedAt: Date;
4435
4436
  deletedAt: Date | null;
@@ -4438,7 +4439,6 @@ export declare const cxLogContract: {
4438
4439
  bucketName: string;
4439
4440
  fileSize: number;
4440
4441
  fileUrl: string | null;
4441
- status?: string | undefined;
4442
4442
  }[];
4443
4443
  }[];
4444
4444
  company: {
@@ -4506,6 +4506,7 @@ export declare const cxLogContract: {
4506
4506
  } | null | undefined;
4507
4507
  upload?: {
4508
4508
  id: string;
4509
+ status: string | null;
4509
4510
  createdAt: Date;
4510
4511
  updatedAt: Date;
4511
4512
  deletedAt: Date | null;
@@ -4514,7 +4515,6 @@ export declare const cxLogContract: {
4514
4515
  bucketName: string;
4515
4516
  fileSize: number;
4516
4517
  fileUrl: string | null;
4517
- status?: string | undefined;
4518
4518
  } | null | undefined;
4519
4519
  extension?: {
4520
4520
  id: string;
@@ -4685,6 +4685,7 @@ export declare const cxLogContract: {
4685
4685
  dateValue: Date | null;
4686
4686
  uploads: {
4687
4687
  id: string;
4688
+ status: string | null;
4688
4689
  createdAt: Date;
4689
4690
  updatedAt: Date;
4690
4691
  deletedAt: Date | null;
@@ -4693,7 +4694,6 @@ export declare const cxLogContract: {
4693
4694
  bucketName: string;
4694
4695
  fileSize: number;
4695
4696
  fileUrl: string | null;
4696
- status?: string | undefined;
4697
4697
  }[];
4698
4698
  }[];
4699
4699
  company: {
@@ -4761,6 +4761,7 @@ export declare const cxLogContract: {
4761
4761
  } | null | undefined;
4762
4762
  upload?: {
4763
4763
  id: string;
4764
+ status: string | null;
4764
4765
  createdAt: Date;
4765
4766
  updatedAt: Date;
4766
4767
  deletedAt: Date | null;
@@ -4769,7 +4770,6 @@ export declare const cxLogContract: {
4769
4770
  bucketName: string;
4770
4771
  fileSize: number;
4771
4772
  fileUrl: string | null;
4772
- status?: string | undefined;
4773
4773
  } | null | undefined;
4774
4774
  extension?: {
4775
4775
  id: string;
@@ -5131,9 +5131,10 @@ export declare const cxLogContract: {
5131
5131
  fileSize: z.ZodNumber;
5132
5132
  fileKey: z.ZodString;
5133
5133
  fileUrl: z.ZodNullable<z.ZodString>;
5134
- status: z.ZodOptional<z.ZodString>;
5134
+ status: z.ZodNullable<z.ZodString>;
5135
5135
  }, "strip", z.ZodTypeAny, {
5136
5136
  id: string;
5137
+ status: string | null;
5137
5138
  createdAt: Date;
5138
5139
  updatedAt: Date;
5139
5140
  deletedAt: Date | null;
@@ -5142,9 +5143,9 @@ export declare const cxLogContract: {
5142
5143
  bucketName: string;
5143
5144
  fileSize: number;
5144
5145
  fileUrl: string | null;
5145
- status?: string | undefined;
5146
5146
  }, {
5147
5147
  id: string;
5148
+ status: string | null;
5148
5149
  createdAt: Date;
5149
5150
  updatedAt: Date;
5150
5151
  deletedAt: Date | null;
@@ -5153,7 +5154,6 @@ export declare const cxLogContract: {
5153
5154
  bucketName: string;
5154
5155
  fileSize: number;
5155
5156
  fileUrl: string | null;
5156
- status?: string | undefined;
5157
5157
  }>, "many">;
5158
5158
  }, "strip", z.ZodTypeAny, {
5159
5159
  id: string;
@@ -5180,6 +5180,7 @@ export declare const cxLogContract: {
5180
5180
  dateValue: Date | null;
5181
5181
  uploads: {
5182
5182
  id: string;
5183
+ status: string | null;
5183
5184
  createdAt: Date;
5184
5185
  updatedAt: Date;
5185
5186
  deletedAt: Date | null;
@@ -5188,7 +5189,6 @@ export declare const cxLogContract: {
5188
5189
  bucketName: string;
5189
5190
  fileSize: number;
5190
5191
  fileUrl: string | null;
5191
- status?: string | undefined;
5192
5192
  }[];
5193
5193
  }, {
5194
5194
  id: string;
@@ -5215,6 +5215,7 @@ export declare const cxLogContract: {
5215
5215
  dateValue: Date | null;
5216
5216
  uploads: {
5217
5217
  id: string;
5218
+ status: string | null;
5218
5219
  createdAt: Date;
5219
5220
  updatedAt: Date;
5220
5221
  deletedAt: Date | null;
@@ -5223,7 +5224,6 @@ export declare const cxLogContract: {
5223
5224
  bucketName: string;
5224
5225
  fileSize: number;
5225
5226
  fileUrl: string | null;
5226
- status?: string | undefined;
5227
5227
  }[];
5228
5228
  }>, "many">;
5229
5229
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -5363,6 +5363,7 @@ export declare const cxLogContract: {
5363
5363
  dateValue: Date | null;
5364
5364
  uploads: {
5365
5365
  id: string;
5366
+ status: string | null;
5366
5367
  createdAt: Date;
5367
5368
  updatedAt: Date;
5368
5369
  deletedAt: Date | null;
@@ -5371,7 +5372,6 @@ export declare const cxLogContract: {
5371
5372
  bucketName: string;
5372
5373
  fileSize: number;
5373
5374
  fileUrl: string | null;
5374
- status?: string | undefined;
5375
5375
  }[];
5376
5376
  }[];
5377
5377
  company: {
@@ -5459,6 +5459,7 @@ export declare const cxLogContract: {
5459
5459
  dateValue: Date | null;
5460
5460
  uploads: {
5461
5461
  id: string;
5462
+ status: string | null;
5462
5463
  createdAt: Date;
5463
5464
  updatedAt: Date;
5464
5465
  deletedAt: Date | null;
@@ -5467,7 +5468,6 @@ export declare const cxLogContract: {
5467
5468
  bucketName: string;
5468
5469
  fileSize: number;
5469
5470
  fileUrl: string | null;
5470
- status?: string | undefined;
5471
5471
  }[];
5472
5472
  }[];
5473
5473
  company: {
@@ -5769,6 +5769,7 @@ export declare const cxLogContract: {
5769
5769
  dateValue: Date | null;
5770
5770
  uploads: {
5771
5771
  id: string;
5772
+ status: string | null;
5772
5773
  createdAt: Date;
5773
5774
  updatedAt: Date;
5774
5775
  deletedAt: Date | null;
@@ -5777,7 +5778,6 @@ export declare const cxLogContract: {
5777
5778
  bucketName: string;
5778
5779
  fileSize: number;
5779
5780
  fileUrl: string | null;
5780
- status?: string | undefined;
5781
5781
  }[];
5782
5782
  }[];
5783
5783
  company: {
@@ -6073,6 +6073,7 @@ export declare const cxLogContract: {
6073
6073
  dateValue: Date | null;
6074
6074
  uploads: {
6075
6075
  id: string;
6076
+ status: string | null;
6076
6077
  createdAt: Date;
6077
6078
  updatedAt: Date;
6078
6079
  deletedAt: Date | null;
@@ -6081,7 +6082,6 @@ export declare const cxLogContract: {
6081
6082
  bucketName: string;
6082
6083
  fileSize: number;
6083
6084
  fileUrl: string | null;
6084
- status?: string | undefined;
6085
6085
  }[];
6086
6086
  }[];
6087
6087
  company: {
@@ -6297,6 +6297,7 @@ export declare const cxLogContract: {
6297
6297
  dateValue: Date | null;
6298
6298
  uploads: {
6299
6299
  id: string;
6300
+ status: string | null;
6300
6301
  createdAt: Date;
6301
6302
  updatedAt: Date;
6302
6303
  deletedAt: Date | null;
@@ -6305,7 +6306,6 @@ export declare const cxLogContract: {
6305
6306
  bucketName: string;
6306
6307
  fileSize: number;
6307
6308
  fileUrl: string | null;
6308
- status?: string | undefined;
6309
6309
  }[];
6310
6310
  }[];
6311
6311
  company: {
@@ -6373,6 +6373,7 @@ export declare const cxLogContract: {
6373
6373
  } | null | undefined;
6374
6374
  upload?: {
6375
6375
  id: string;
6376
+ status: string | null;
6376
6377
  createdAt: Date;
6377
6378
  updatedAt: Date;
6378
6379
  deletedAt: Date | null;
@@ -6381,7 +6382,6 @@ export declare const cxLogContract: {
6381
6382
  bucketName: string;
6382
6383
  fileSize: number;
6383
6384
  fileUrl: string | null;
6384
- status?: string | undefined;
6385
6385
  } | null | undefined;
6386
6386
  extension?: {
6387
6387
  id: string;
@@ -6530,6 +6530,7 @@ export declare const cxLogContract: {
6530
6530
  dateValue: Date | null;
6531
6531
  uploads: {
6532
6532
  id: string;
6533
+ status: string | null;
6533
6534
  createdAt: Date;
6534
6535
  updatedAt: Date;
6535
6536
  deletedAt: Date | null;
@@ -6538,7 +6539,6 @@ export declare const cxLogContract: {
6538
6539
  bucketName: string;
6539
6540
  fileSize: number;
6540
6541
  fileUrl: string | null;
6541
- status?: string | undefined;
6542
6542
  }[];
6543
6543
  }[];
6544
6544
  company: {
@@ -6834,6 +6834,7 @@ export declare const cxLogContract: {
6834
6834
  dateValue: Date | null;
6835
6835
  uploads: {
6836
6836
  id: string;
6837
+ status: string | null;
6837
6838
  createdAt: Date;
6838
6839
  updatedAt: Date;
6839
6840
  deletedAt: Date | null;
@@ -6842,7 +6843,6 @@ export declare const cxLogContract: {
6842
6843
  bucketName: string;
6843
6844
  fileSize: number;
6844
6845
  fileUrl: string | null;
6845
- status?: string | undefined;
6846
6846
  }[];
6847
6847
  }[];
6848
6848
  company: {
@@ -7058,6 +7058,7 @@ export declare const cxLogContract: {
7058
7058
  dateValue: Date | null;
7059
7059
  uploads: {
7060
7060
  id: string;
7061
+ status: string | null;
7061
7062
  createdAt: Date;
7062
7063
  updatedAt: Date;
7063
7064
  deletedAt: Date | null;
@@ -7066,7 +7067,6 @@ export declare const cxLogContract: {
7066
7067
  bucketName: string;
7067
7068
  fileSize: number;
7068
7069
  fileUrl: string | null;
7069
- status?: string | undefined;
7070
7070
  }[];
7071
7071
  }[];
7072
7072
  company: {
@@ -7134,6 +7134,7 @@ export declare const cxLogContract: {
7134
7134
  } | null | undefined;
7135
7135
  upload?: {
7136
7136
  id: string;
7137
+ status: string | null;
7137
7138
  createdAt: Date;
7138
7139
  updatedAt: Date;
7139
7140
  deletedAt: Date | null;
@@ -7142,7 +7143,6 @@ export declare const cxLogContract: {
7142
7143
  bucketName: string;
7143
7144
  fileSize: number;
7144
7145
  fileUrl: string | null;
7145
- status?: string | undefined;
7146
7146
  } | null | undefined;
7147
7147
  extension?: {
7148
7148
  id: string;
@@ -7297,6 +7297,7 @@ export declare const cxLogContract: {
7297
7297
  dateValue: Date | null;
7298
7298
  uploads: {
7299
7299
  id: string;
7300
+ status: string | null;
7300
7301
  createdAt: Date;
7301
7302
  updatedAt: Date;
7302
7303
  deletedAt: Date | null;
@@ -7305,7 +7306,6 @@ export declare const cxLogContract: {
7305
7306
  bucketName: string;
7306
7307
  fileSize: number;
7307
7308
  fileUrl: string | null;
7308
- status?: string | undefined;
7309
7309
  }[];
7310
7310
  }[];
7311
7311
  company: {
@@ -7601,6 +7601,7 @@ export declare const cxLogContract: {
7601
7601
  dateValue: Date | null;
7602
7602
  uploads: {
7603
7603
  id: string;
7604
+ status: string | null;
7604
7605
  createdAt: Date;
7605
7606
  updatedAt: Date;
7606
7607
  deletedAt: Date | null;
@@ -7609,7 +7610,6 @@ export declare const cxLogContract: {
7609
7610
  bucketName: string;
7610
7611
  fileSize: number;
7611
7612
  fileUrl: string | null;
7612
- status?: string | undefined;
7613
7613
  }[];
7614
7614
  }[];
7615
7615
  company: {
@@ -7825,6 +7825,7 @@ export declare const cxLogContract: {
7825
7825
  dateValue: Date | null;
7826
7826
  uploads: {
7827
7827
  id: string;
7828
+ status: string | null;
7828
7829
  createdAt: Date;
7829
7830
  updatedAt: Date;
7830
7831
  deletedAt: Date | null;
@@ -7833,7 +7834,6 @@ export declare const cxLogContract: {
7833
7834
  bucketName: string;
7834
7835
  fileSize: number;
7835
7836
  fileUrl: string | null;
7836
- status?: string | undefined;
7837
7837
  }[];
7838
7838
  }[];
7839
7839
  company: {
@@ -7901,6 +7901,7 @@ export declare const cxLogContract: {
7901
7901
  } | null | undefined;
7902
7902
  upload?: {
7903
7903
  id: string;
7904
+ status: string | null;
7904
7905
  createdAt: Date;
7905
7906
  updatedAt: Date;
7906
7907
  deletedAt: Date | null;
@@ -7909,7 +7910,6 @@ export declare const cxLogContract: {
7909
7910
  bucketName: string;
7910
7911
  fileSize: number;
7911
7912
  fileUrl: string | null;
7912
- status?: string | undefined;
7913
7913
  } | null | undefined;
7914
7914
  extension?: {
7915
7915
  id: string;
@@ -8064,6 +8064,7 @@ export declare const cxLogContract: {
8064
8064
  dateValue: Date | null;
8065
8065
  uploads: {
8066
8066
  id: string;
8067
+ status: string | null;
8067
8068
  createdAt: Date;
8068
8069
  updatedAt: Date;
8069
8070
  deletedAt: Date | null;
@@ -8072,7 +8073,6 @@ export declare const cxLogContract: {
8072
8073
  bucketName: string;
8073
8074
  fileSize: number;
8074
8075
  fileUrl: string | null;
8075
- status?: string | undefined;
8076
8076
  }[];
8077
8077
  }[];
8078
8078
  company: {
@@ -8368,6 +8368,7 @@ export declare const cxLogContract: {
8368
8368
  dateValue: Date | null;
8369
8369
  uploads: {
8370
8370
  id: string;
8371
+ status: string | null;
8371
8372
  createdAt: Date;
8372
8373
  updatedAt: Date;
8373
8374
  deletedAt: Date | null;
@@ -8376,7 +8377,6 @@ export declare const cxLogContract: {
8376
8377
  bucketName: string;
8377
8378
  fileSize: number;
8378
8379
  fileUrl: string | null;
8379
- status?: string | undefined;
8380
8380
  }[];
8381
8381
  }[];
8382
8382
  company: {
@@ -8592,6 +8592,7 @@ export declare const cxLogContract: {
8592
8592
  dateValue: Date | null;
8593
8593
  uploads: {
8594
8594
  id: string;
8595
+ status: string | null;
8595
8596
  createdAt: Date;
8596
8597
  updatedAt: Date;
8597
8598
  deletedAt: Date | null;
@@ -8600,7 +8601,6 @@ export declare const cxLogContract: {
8600
8601
  bucketName: string;
8601
8602
  fileSize: number;
8602
8603
  fileUrl: string | null;
8603
- status?: string | undefined;
8604
8604
  }[];
8605
8605
  }[];
8606
8606
  company: {
@@ -8668,6 +8668,7 @@ export declare const cxLogContract: {
8668
8668
  } | null | undefined;
8669
8669
  upload?: {
8670
8670
  id: string;
8671
+ status: string | null;
8671
8672
  createdAt: Date;
8672
8673
  updatedAt: Date;
8673
8674
  deletedAt: Date | null;
@@ -8676,7 +8677,6 @@ export declare const cxLogContract: {
8676
8677
  bucketName: string;
8677
8678
  fileSize: number;
8678
8679
  fileUrl: string | null;
8679
- status?: string | undefined;
8680
8680
  } | null | undefined;
8681
8681
  extension?: {
8682
8682
  id: string;
@@ -8945,5 +8945,62 @@ export declare const cxLogContract: {
8945
8945
  'x-client-timezone'?: string | undefined;
8946
8946
  }>>>;
8947
8947
  };
8948
+ updateSla: {
8949
+ body: z.ZodObject<{
8950
+ roomId: z.ZodString;
8951
+ slaStatus: z.ZodEnum<["meet", "unmeet"]>;
8952
+ }, "strip", z.ZodTypeAny, {
8953
+ roomId: string;
8954
+ slaStatus: "meet" | "unmeet";
8955
+ }, {
8956
+ roomId: string;
8957
+ slaStatus: "meet" | "unmeet";
8958
+ }>;
8959
+ method: "POST";
8960
+ responses: {
8961
+ 200: null;
8962
+ 403: z.ZodObject<{
8963
+ message: z.ZodString;
8964
+ error: z.ZodAny;
8965
+ }, "strip", z.ZodTypeAny, {
8966
+ message: string;
8967
+ error?: any;
8968
+ }, {
8969
+ message: string;
8970
+ error?: any;
8971
+ }>;
8972
+ 404: z.ZodObject<{
8973
+ message: z.ZodString;
8974
+ error: z.ZodAny;
8975
+ }, "strip", z.ZodTypeAny, {
8976
+ message: string;
8977
+ error?: any;
8978
+ }, {
8979
+ message: string;
8980
+ error?: any;
8981
+ }>;
8982
+ 500: z.ZodObject<{
8983
+ message: z.ZodString;
8984
+ error: z.ZodAny;
8985
+ }, "strip", z.ZodTypeAny, {
8986
+ message: string;
8987
+ error?: any;
8988
+ }, {
8989
+ message: string;
8990
+ error?: any;
8991
+ }>;
8992
+ };
8993
+ path: "/cx-logs";
8994
+ headers: z.ZodObject<{
8995
+ 'x-tenant': z.ZodString;
8996
+ 'x-code': z.ZodOptional<z.ZodString>;
8997
+ }, "strip", z.ZodTypeAny, {
8998
+ 'x-tenant': string;
8999
+ 'x-code'?: string | undefined;
9000
+ }, {
9001
+ 'x-tenant': string;
9002
+ 'x-code'?: string | undefined;
9003
+ }>;
9004
+ };
8948
9005
  };
8949
9006
  //# sourceMappingURL=index.d.ts.map