@kl1/contracts 1.2.29-uat → 1.2.30-uat

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. package/dist/api-contracts/src/chat/index.d.ts +1979 -1780
  2. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/chat/schema.d.ts +350 -350
  4. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/validation.d.ts +417 -218
  6. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/contract.d.ts +2062 -2062
  8. package/dist/api-contracts/src/cx-log/schema.d.ts +97 -0
  9. package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
  10. package/dist/api-contracts/src/facebook-feed/index.d.ts +218 -218
  11. package/dist/api-contracts/src/hold-label/index.d.ts +108 -0
  12. package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
  13. package/dist/api-contracts/src/hold-label/schema.d.ts +38 -0
  14. package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
  15. package/dist/api-contracts/src/index.d.ts +0 -1
  16. package/dist/api-contracts/src/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/instagram/index.d.ts +218 -218
  18. package/dist/api-contracts/src/line/index.d.ts +218 -218
  19. package/dist/api-contracts/src/mail/mail-contract.d.ts +495 -0
  20. package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
  21. package/dist/api-contracts/src/mail/room-contract.d.ts +495 -0
  22. package/dist/api-contracts/src/mail/room-contract.d.ts.map +1 -1
  23. package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +165 -0
  24. package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  25. package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +131 -0
  26. package/dist/api-contracts/src/mail/schemas/room.schema.d.ts.map +1 -1
  27. package/dist/api-contracts/src/messenger/index.d.ts +218 -218
  28. package/dist/api-contracts/src/telegram/index.d.ts +218 -218
  29. package/dist/api-contracts/src/viber/index.d.ts +218 -218
  30. package/dist/api-contracts/src/webchat/index.d.ts +218 -218
  31. package/dist/api-contracts/src/whatsapp/index.d.ts +218 -218
  32. package/dist/api-contracts/src/workflow-rule/index.d.ts +144 -144
  33. package/dist/index.js +326 -352
  34. package/dist/index.js.map +1 -1
  35. package/dist/index.mjs +326 -351
  36. package/dist/index.mjs.map +1 -1
  37. package/package.json +1 -1
@@ -4873,19 +4873,19 @@ export declare const viberContract: {
4873
4873
  integrationId: string;
4874
4874
  } | null;
4875
4875
  }>;
4876
- cxlog: z.ZodObject<{
4876
+ cxlog: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4877
4877
  id: z.ZodString;
4878
- channel: z.ZodNullable<z.ZodString>;
4879
- direction: z.ZodNullable<z.ZodString>;
4880
4878
  createdAt: z.ZodDate;
4881
4879
  updatedAt: z.ZodDate;
4882
4880
  deletedAt: z.ZodNullable<z.ZodDate>;
4883
- entityId: z.ZodString;
4884
- queueId: z.ZodNullable<z.ZodString>;
4885
- contactId: z.ZodNullable<z.ZodString>;
4886
4881
  caseId: z.ZodNumber;
4882
+ entityId: z.ZodString;
4887
4883
  entityName: z.ZodString;
4884
+ contactId: z.ZodNullable<z.ZodString>;
4885
+ channel: z.ZodNullable<z.ZodString>;
4886
+ queueId: z.ZodNullable<z.ZodString>;
4888
4887
  agentId: z.ZodNullable<z.ZodString>;
4888
+ direction: z.ZodNullable<z.ZodString>;
4889
4889
  startedDate: z.ZodNullable<z.ZodDate>;
4890
4890
  handledTime: z.ZodNullable<z.ZodNumber>;
4891
4891
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -5155,7 +5155,7 @@ export declare const viberContract: {
5155
5155
  dateValue: Date | null;
5156
5156
  }[] | null | undefined;
5157
5157
  }>>;
5158
- holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
5158
+ holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
5159
5159
  id: z.ZodString;
5160
5160
  createdAt: z.ZodDate;
5161
5161
  updatedAt: z.ZodDate;
@@ -5163,7 +5163,7 @@ export declare const viberContract: {
5163
5163
  startedAt: z.ZodString;
5164
5164
  endedAt: z.ZodNullable<z.ZodString>;
5165
5165
  duration: z.ZodNullable<z.ZodNumber>;
5166
- holdLabel: z.ZodObject<{
5166
+ holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5167
5167
  id: z.ZodString;
5168
5168
  createdAt: z.ZodDate;
5169
5169
  updatedAt: z.ZodDate;
@@ -5184,7 +5184,7 @@ export declare const viberContract: {
5184
5184
  createdAt: Date;
5185
5185
  updatedAt: Date;
5186
5186
  deletedAt: Date | null;
5187
- }>;
5187
+ }>>>;
5188
5188
  }, "strip", z.ZodTypeAny, {
5189
5189
  id: string;
5190
5190
  createdAt: Date;
@@ -5193,14 +5193,14 @@ export declare const viberContract: {
5193
5193
  startedAt: string;
5194
5194
  endedAt: string | null;
5195
5195
  duration: number | null;
5196
- holdLabel: {
5196
+ holdLabel?: {
5197
5197
  id: string;
5198
5198
  name: string;
5199
5199
  position: number;
5200
5200
  createdAt: Date;
5201
5201
  updatedAt: Date;
5202
5202
  deletedAt: Date | null;
5203
- };
5203
+ } | null | undefined;
5204
5204
  }, {
5205
5205
  id: string;
5206
5206
  createdAt: Date;
@@ -5209,14 +5209,14 @@ export declare const viberContract: {
5209
5209
  startedAt: string;
5210
5210
  endedAt: string | null;
5211
5211
  duration: number | null;
5212
- holdLabel: {
5212
+ holdLabel?: {
5213
5213
  id: string;
5214
5214
  name: string;
5215
5215
  position: number;
5216
5216
  createdAt: Date;
5217
5217
  updatedAt: Date;
5218
5218
  deletedAt: Date | null;
5219
- };
5219
+ } | null | undefined;
5220
5220
  }>, "many">>>;
5221
5221
  }, "strip", z.ZodTypeAny, {
5222
5222
  id: string;
@@ -5294,14 +5294,14 @@ export declare const viberContract: {
5294
5294
  startedAt: string;
5295
5295
  endedAt: string | null;
5296
5296
  duration: number | null;
5297
- holdLabel: {
5297
+ holdLabel?: {
5298
5298
  id: string;
5299
5299
  name: string;
5300
5300
  position: number;
5301
5301
  createdAt: Date;
5302
5302
  updatedAt: Date;
5303
5303
  deletedAt: Date | null;
5304
- };
5304
+ } | null | undefined;
5305
5305
  }[] | null | undefined;
5306
5306
  }, {
5307
5307
  id: string;
@@ -5379,16 +5379,16 @@ export declare const viberContract: {
5379
5379
  startedAt: string;
5380
5380
  endedAt: string | null;
5381
5381
  duration: number | null;
5382
- holdLabel: {
5382
+ holdLabel?: {
5383
5383
  id: string;
5384
5384
  name: string;
5385
5385
  position: number;
5386
5386
  createdAt: Date;
5387
5387
  updatedAt: Date;
5388
5388
  deletedAt: Date | null;
5389
- };
5389
+ } | null | undefined;
5390
5390
  }[] | null | undefined;
5391
- }>;
5391
+ }>>>;
5392
5392
  workflowRule: z.ZodObject<{
5393
5393
  id: z.ZodString;
5394
5394
  createdAt: z.ZodDate;
@@ -5737,7 +5737,16 @@ export declare const viberContract: {
5737
5737
  closedAt: Date;
5738
5738
  lastMessageAt: Date | null;
5739
5739
  isBotRoom: boolean;
5740
- cxlog: {
5740
+ workflowRule: {
5741
+ type: string;
5742
+ id: string;
5743
+ name: string;
5744
+ createdAt: Date;
5745
+ updatedAt: Date;
5746
+ deletedAt: Date | null;
5747
+ isActive: boolean;
5748
+ };
5749
+ cxlog?: {
5741
5750
  id: string;
5742
5751
  channel: string | null;
5743
5752
  direction: string | null;
@@ -5813,25 +5822,16 @@ export declare const viberContract: {
5813
5822
  startedAt: string;
5814
5823
  endedAt: string | null;
5815
5824
  duration: number | null;
5816
- holdLabel: {
5825
+ holdLabel?: {
5817
5826
  id: string;
5818
5827
  name: string;
5819
5828
  position: number;
5820
5829
  createdAt: Date;
5821
5830
  updatedAt: Date;
5822
5831
  deletedAt: Date | null;
5823
- };
5832
+ } | null | undefined;
5824
5833
  }[] | null | undefined;
5825
- };
5826
- workflowRule: {
5827
- type: string;
5828
- id: string;
5829
- name: string;
5830
- createdAt: Date;
5831
- updatedAt: Date;
5832
- deletedAt: Date | null;
5833
- isActive: boolean;
5834
- };
5834
+ } | null | undefined;
5835
5835
  automationQueueId?: string | null | undefined;
5836
5836
  }, {
5837
5837
  id: string;
@@ -6155,7 +6155,16 @@ export declare const viberContract: {
6155
6155
  closedAt: Date;
6156
6156
  lastMessageAt: Date | null;
6157
6157
  isBotRoom: boolean;
6158
- cxlog: {
6158
+ workflowRule: {
6159
+ type: string;
6160
+ id: string;
6161
+ name: string;
6162
+ createdAt: Date;
6163
+ updatedAt: Date;
6164
+ deletedAt: Date | null;
6165
+ isActive: boolean;
6166
+ };
6167
+ cxlog?: {
6159
6168
  id: string;
6160
6169
  channel: string | null;
6161
6170
  direction: string | null;
@@ -6231,25 +6240,16 @@ export declare const viberContract: {
6231
6240
  startedAt: string;
6232
6241
  endedAt: string | null;
6233
6242
  duration: number | null;
6234
- holdLabel: {
6243
+ holdLabel?: {
6235
6244
  id: string;
6236
6245
  name: string;
6237
6246
  position: number;
6238
6247
  createdAt: Date;
6239
6248
  updatedAt: Date;
6240
6249
  deletedAt: Date | null;
6241
- };
6250
+ } | null | undefined;
6242
6251
  }[] | null | undefined;
6243
- };
6244
- workflowRule: {
6245
- type: string;
6246
- id: string;
6247
- name: string;
6248
- createdAt: Date;
6249
- updatedAt: Date;
6250
- deletedAt: Date | null;
6251
- isActive: boolean;
6252
- };
6252
+ } | null | undefined;
6253
6253
  automationQueueId?: string | null | undefined;
6254
6254
  }>;
6255
6255
  platformMessageId: z.ZodString;
@@ -9487,19 +9487,19 @@ export declare const viberContract: {
9487
9487
  integrationId: string;
9488
9488
  } | null;
9489
9489
  }>;
9490
- cxlog: z.ZodObject<{
9490
+ cxlog: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9491
9491
  id: z.ZodString;
9492
- channel: z.ZodNullable<z.ZodString>;
9493
- direction: z.ZodNullable<z.ZodString>;
9494
9492
  createdAt: z.ZodDate;
9495
9493
  updatedAt: z.ZodDate;
9496
9494
  deletedAt: z.ZodNullable<z.ZodDate>;
9497
- entityId: z.ZodString;
9498
- queueId: z.ZodNullable<z.ZodString>;
9499
- contactId: z.ZodNullable<z.ZodString>;
9500
9495
  caseId: z.ZodNumber;
9496
+ entityId: z.ZodString;
9501
9497
  entityName: z.ZodString;
9498
+ contactId: z.ZodNullable<z.ZodString>;
9499
+ channel: z.ZodNullable<z.ZodString>;
9500
+ queueId: z.ZodNullable<z.ZodString>;
9502
9501
  agentId: z.ZodNullable<z.ZodString>;
9502
+ direction: z.ZodNullable<z.ZodString>;
9503
9503
  startedDate: z.ZodNullable<z.ZodDate>;
9504
9504
  handledTime: z.ZodNullable<z.ZodNumber>;
9505
9505
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
@@ -9769,7 +9769,7 @@ export declare const viberContract: {
9769
9769
  dateValue: Date | null;
9770
9770
  }[] | null | undefined;
9771
9771
  }>>;
9772
- holdLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
9772
+ holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9773
9773
  id: z.ZodString;
9774
9774
  createdAt: z.ZodDate;
9775
9775
  updatedAt: z.ZodDate;
@@ -9777,7 +9777,7 @@ export declare const viberContract: {
9777
9777
  startedAt: z.ZodString;
9778
9778
  endedAt: z.ZodNullable<z.ZodString>;
9779
9779
  duration: z.ZodNullable<z.ZodNumber>;
9780
- holdLabel: z.ZodObject<{
9780
+ holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9781
9781
  id: z.ZodString;
9782
9782
  createdAt: z.ZodDate;
9783
9783
  updatedAt: z.ZodDate;
@@ -9798,7 +9798,7 @@ export declare const viberContract: {
9798
9798
  createdAt: Date;
9799
9799
  updatedAt: Date;
9800
9800
  deletedAt: Date | null;
9801
- }>;
9801
+ }>>>;
9802
9802
  }, "strip", z.ZodTypeAny, {
9803
9803
  id: string;
9804
9804
  createdAt: Date;
@@ -9807,14 +9807,14 @@ export declare const viberContract: {
9807
9807
  startedAt: string;
9808
9808
  endedAt: string | null;
9809
9809
  duration: number | null;
9810
- holdLabel: {
9810
+ holdLabel?: {
9811
9811
  id: string;
9812
9812
  name: string;
9813
9813
  position: number;
9814
9814
  createdAt: Date;
9815
9815
  updatedAt: Date;
9816
9816
  deletedAt: Date | null;
9817
- };
9817
+ } | null | undefined;
9818
9818
  }, {
9819
9819
  id: string;
9820
9820
  createdAt: Date;
@@ -9823,14 +9823,14 @@ export declare const viberContract: {
9823
9823
  startedAt: string;
9824
9824
  endedAt: string | null;
9825
9825
  duration: number | null;
9826
- holdLabel: {
9826
+ holdLabel?: {
9827
9827
  id: string;
9828
9828
  name: string;
9829
9829
  position: number;
9830
9830
  createdAt: Date;
9831
9831
  updatedAt: Date;
9832
9832
  deletedAt: Date | null;
9833
- };
9833
+ } | null | undefined;
9834
9834
  }>, "many">>>;
9835
9835
  }, "strip", z.ZodTypeAny, {
9836
9836
  id: string;
@@ -9908,14 +9908,14 @@ export declare const viberContract: {
9908
9908
  startedAt: string;
9909
9909
  endedAt: string | null;
9910
9910
  duration: number | null;
9911
- holdLabel: {
9911
+ holdLabel?: {
9912
9912
  id: string;
9913
9913
  name: string;
9914
9914
  position: number;
9915
9915
  createdAt: Date;
9916
9916
  updatedAt: Date;
9917
9917
  deletedAt: Date | null;
9918
- };
9918
+ } | null | undefined;
9919
9919
  }[] | null | undefined;
9920
9920
  }, {
9921
9921
  id: string;
@@ -9993,16 +9993,16 @@ export declare const viberContract: {
9993
9993
  startedAt: string;
9994
9994
  endedAt: string | null;
9995
9995
  duration: number | null;
9996
- holdLabel: {
9996
+ holdLabel?: {
9997
9997
  id: string;
9998
9998
  name: string;
9999
9999
  position: number;
10000
10000
  createdAt: Date;
10001
10001
  updatedAt: Date;
10002
10002
  deletedAt: Date | null;
10003
- };
10003
+ } | null | undefined;
10004
10004
  }[] | null | undefined;
10005
- }>;
10005
+ }>>>;
10006
10006
  workflowRule: z.ZodObject<{
10007
10007
  id: z.ZodString;
10008
10008
  createdAt: z.ZodDate;
@@ -10351,7 +10351,16 @@ export declare const viberContract: {
10351
10351
  closedAt: Date;
10352
10352
  lastMessageAt: Date | null;
10353
10353
  isBotRoom: boolean;
10354
- cxlog: {
10354
+ workflowRule: {
10355
+ type: string;
10356
+ id: string;
10357
+ name: string;
10358
+ createdAt: Date;
10359
+ updatedAt: Date;
10360
+ deletedAt: Date | null;
10361
+ isActive: boolean;
10362
+ };
10363
+ cxlog?: {
10355
10364
  id: string;
10356
10365
  channel: string | null;
10357
10366
  direction: string | null;
@@ -10427,25 +10436,16 @@ export declare const viberContract: {
10427
10436
  startedAt: string;
10428
10437
  endedAt: string | null;
10429
10438
  duration: number | null;
10430
- holdLabel: {
10439
+ holdLabel?: {
10431
10440
  id: string;
10432
10441
  name: string;
10433
10442
  position: number;
10434
10443
  createdAt: Date;
10435
10444
  updatedAt: Date;
10436
10445
  deletedAt: Date | null;
10437
- };
10446
+ } | null | undefined;
10438
10447
  }[] | null | undefined;
10439
- };
10440
- workflowRule: {
10441
- type: string;
10442
- id: string;
10443
- name: string;
10444
- createdAt: Date;
10445
- updatedAt: Date;
10446
- deletedAt: Date | null;
10447
- isActive: boolean;
10448
- };
10448
+ } | null | undefined;
10449
10449
  automationQueueId?: string | null | undefined;
10450
10450
  }, {
10451
10451
  id: string;
@@ -10769,7 +10769,16 @@ export declare const viberContract: {
10769
10769
  closedAt: Date;
10770
10770
  lastMessageAt: Date | null;
10771
10771
  isBotRoom: boolean;
10772
- cxlog: {
10772
+ workflowRule: {
10773
+ type: string;
10774
+ id: string;
10775
+ name: string;
10776
+ createdAt: Date;
10777
+ updatedAt: Date;
10778
+ deletedAt: Date | null;
10779
+ isActive: boolean;
10780
+ };
10781
+ cxlog?: {
10773
10782
  id: string;
10774
10783
  channel: string | null;
10775
10784
  direction: string | null;
@@ -10845,25 +10854,16 @@ export declare const viberContract: {
10845
10854
  startedAt: string;
10846
10855
  endedAt: string | null;
10847
10856
  duration: number | null;
10848
- holdLabel: {
10857
+ holdLabel?: {
10849
10858
  id: string;
10850
10859
  name: string;
10851
10860
  position: number;
10852
10861
  createdAt: Date;
10853
10862
  updatedAt: Date;
10854
10863
  deletedAt: Date | null;
10855
- };
10864
+ } | null | undefined;
10856
10865
  }[] | null | undefined;
10857
- };
10858
- workflowRule: {
10859
- type: string;
10860
- id: string;
10861
- name: string;
10862
- createdAt: Date;
10863
- updatedAt: Date;
10864
- deletedAt: Date | null;
10865
- isActive: boolean;
10866
- };
10866
+ } | null | undefined;
10867
10867
  automationQueueId?: string | null | undefined;
10868
10868
  }>;
10869
10869
  upload: z.ZodObject<{
@@ -12960,7 +12960,16 @@ export declare const viberContract: {
12960
12960
  closedAt: Date;
12961
12961
  lastMessageAt: Date | null;
12962
12962
  isBotRoom: boolean;
12963
- cxlog: {
12963
+ workflowRule: {
12964
+ type: string;
12965
+ id: string;
12966
+ name: string;
12967
+ createdAt: Date;
12968
+ updatedAt: Date;
12969
+ deletedAt: Date | null;
12970
+ isActive: boolean;
12971
+ };
12972
+ cxlog?: {
12964
12973
  id: string;
12965
12974
  channel: string | null;
12966
12975
  direction: string | null;
@@ -13036,25 +13045,16 @@ export declare const viberContract: {
13036
13045
  startedAt: string;
13037
13046
  endedAt: string | null;
13038
13047
  duration: number | null;
13039
- holdLabel: {
13048
+ holdLabel?: {
13040
13049
  id: string;
13041
13050
  name: string;
13042
13051
  position: number;
13043
13052
  createdAt: Date;
13044
13053
  updatedAt: Date;
13045
13054
  deletedAt: Date | null;
13046
- };
13055
+ } | null | undefined;
13047
13056
  }[] | null | undefined;
13048
- };
13049
- workflowRule: {
13050
- type: string;
13051
- id: string;
13052
- name: string;
13053
- createdAt: Date;
13054
- updatedAt: Date;
13055
- deletedAt: Date | null;
13056
- isActive: boolean;
13057
- };
13057
+ } | null | undefined;
13058
13058
  automationQueueId?: string | null | undefined;
13059
13059
  };
13060
13060
  platformMessageId: string;
@@ -13715,7 +13715,16 @@ export declare const viberContract: {
13715
13715
  closedAt: Date;
13716
13716
  lastMessageAt: Date | null;
13717
13717
  isBotRoom: boolean;
13718
- cxlog: {
13718
+ workflowRule: {
13719
+ type: string;
13720
+ id: string;
13721
+ name: string;
13722
+ createdAt: Date;
13723
+ updatedAt: Date;
13724
+ deletedAt: Date | null;
13725
+ isActive: boolean;
13726
+ };
13727
+ cxlog?: {
13719
13728
  id: string;
13720
13729
  channel: string | null;
13721
13730
  direction: string | null;
@@ -13791,25 +13800,16 @@ export declare const viberContract: {
13791
13800
  startedAt: string;
13792
13801
  endedAt: string | null;
13793
13802
  duration: number | null;
13794
- holdLabel: {
13803
+ holdLabel?: {
13795
13804
  id: string;
13796
13805
  name: string;
13797
13806
  position: number;
13798
13807
  createdAt: Date;
13799
13808
  updatedAt: Date;
13800
13809
  deletedAt: Date | null;
13801
- };
13810
+ } | null | undefined;
13802
13811
  }[] | null | undefined;
13803
- };
13804
- workflowRule: {
13805
- type: string;
13806
- id: string;
13807
- name: string;
13808
- createdAt: Date;
13809
- updatedAt: Date;
13810
- deletedAt: Date | null;
13811
- isActive: boolean;
13812
- };
13812
+ } | null | undefined;
13813
13813
  automationQueueId?: string | null | undefined;
13814
13814
  };
13815
13815
  platformMessageId: string;
@@ -14471,7 +14471,16 @@ export declare const viberContract: {
14471
14471
  closedAt: Date;
14472
14472
  lastMessageAt: Date | null;
14473
14473
  isBotRoom: boolean;
14474
- cxlog: {
14474
+ workflowRule: {
14475
+ type: string;
14476
+ id: string;
14477
+ name: string;
14478
+ createdAt: Date;
14479
+ updatedAt: Date;
14480
+ deletedAt: Date | null;
14481
+ isActive: boolean;
14482
+ };
14483
+ cxlog?: {
14475
14484
  id: string;
14476
14485
  channel: string | null;
14477
14486
  direction: string | null;
@@ -14547,25 +14556,16 @@ export declare const viberContract: {
14547
14556
  startedAt: string;
14548
14557
  endedAt: string | null;
14549
14558
  duration: number | null;
14550
- holdLabel: {
14559
+ holdLabel?: {
14551
14560
  id: string;
14552
14561
  name: string;
14553
14562
  position: number;
14554
14563
  createdAt: Date;
14555
14564
  updatedAt: Date;
14556
14565
  deletedAt: Date | null;
14557
- };
14566
+ } | null | undefined;
14558
14567
  }[] | null | undefined;
14559
- };
14560
- workflowRule: {
14561
- type: string;
14562
- id: string;
14563
- name: string;
14564
- createdAt: Date;
14565
- updatedAt: Date;
14566
- deletedAt: Date | null;
14567
- isActive: boolean;
14568
- };
14568
+ } | null | undefined;
14569
14569
  automationQueueId?: string | null | undefined;
14570
14570
  };
14571
14571
  platformMessageId: string;
@@ -15226,7 +15226,16 @@ export declare const viberContract: {
15226
15226
  closedAt: Date;
15227
15227
  lastMessageAt: Date | null;
15228
15228
  isBotRoom: boolean;
15229
- cxlog: {
15229
+ workflowRule: {
15230
+ type: string;
15231
+ id: string;
15232
+ name: string;
15233
+ createdAt: Date;
15234
+ updatedAt: Date;
15235
+ deletedAt: Date | null;
15236
+ isActive: boolean;
15237
+ };
15238
+ cxlog?: {
15230
15239
  id: string;
15231
15240
  channel: string | null;
15232
15241
  direction: string | null;
@@ -15302,25 +15311,16 @@ export declare const viberContract: {
15302
15311
  startedAt: string;
15303
15312
  endedAt: string | null;
15304
15313
  duration: number | null;
15305
- holdLabel: {
15314
+ holdLabel?: {
15306
15315
  id: string;
15307
15316
  name: string;
15308
15317
  position: number;
15309
15318
  createdAt: Date;
15310
15319
  updatedAt: Date;
15311
15320
  deletedAt: Date | null;
15312
- };
15321
+ } | null | undefined;
15313
15322
  }[] | null | undefined;
15314
- };
15315
- workflowRule: {
15316
- type: string;
15317
- id: string;
15318
- name: string;
15319
- createdAt: Date;
15320
- updatedAt: Date;
15321
- deletedAt: Date | null;
15322
- isActive: boolean;
15323
- };
15323
+ } | null | undefined;
15324
15324
  automationQueueId?: string | null | undefined;
15325
15325
  };
15326
15326
  platformMessageId: string;
@@ -15982,7 +15982,16 @@ export declare const viberContract: {
15982
15982
  closedAt: Date;
15983
15983
  lastMessageAt: Date | null;
15984
15984
  isBotRoom: boolean;
15985
- cxlog: {
15985
+ workflowRule: {
15986
+ type: string;
15987
+ id: string;
15988
+ name: string;
15989
+ createdAt: Date;
15990
+ updatedAt: Date;
15991
+ deletedAt: Date | null;
15992
+ isActive: boolean;
15993
+ };
15994
+ cxlog?: {
15986
15995
  id: string;
15987
15996
  channel: string | null;
15988
15997
  direction: string | null;
@@ -16058,25 +16067,16 @@ export declare const viberContract: {
16058
16067
  startedAt: string;
16059
16068
  endedAt: string | null;
16060
16069
  duration: number | null;
16061
- holdLabel: {
16070
+ holdLabel?: {
16062
16071
  id: string;
16063
16072
  name: string;
16064
16073
  position: number;
16065
16074
  createdAt: Date;
16066
16075
  updatedAt: Date;
16067
16076
  deletedAt: Date | null;
16068
- };
16077
+ } | null | undefined;
16069
16078
  }[] | null | undefined;
16070
- };
16071
- workflowRule: {
16072
- type: string;
16073
- id: string;
16074
- name: string;
16075
- createdAt: Date;
16076
- updatedAt: Date;
16077
- deletedAt: Date | null;
16078
- isActive: boolean;
16079
- };
16079
+ } | null | undefined;
16080
16080
  automationQueueId?: string | null | undefined;
16081
16081
  };
16082
16082
  platformMessageId: string;
@@ -16737,7 +16737,16 @@ export declare const viberContract: {
16737
16737
  closedAt: Date;
16738
16738
  lastMessageAt: Date | null;
16739
16739
  isBotRoom: boolean;
16740
- cxlog: {
16740
+ workflowRule: {
16741
+ type: string;
16742
+ id: string;
16743
+ name: string;
16744
+ createdAt: Date;
16745
+ updatedAt: Date;
16746
+ deletedAt: Date | null;
16747
+ isActive: boolean;
16748
+ };
16749
+ cxlog?: {
16741
16750
  id: string;
16742
16751
  channel: string | null;
16743
16752
  direction: string | null;
@@ -16813,25 +16822,16 @@ export declare const viberContract: {
16813
16822
  startedAt: string;
16814
16823
  endedAt: string | null;
16815
16824
  duration: number | null;
16816
- holdLabel: {
16825
+ holdLabel?: {
16817
16826
  id: string;
16818
16827
  name: string;
16819
16828
  position: number;
16820
16829
  createdAt: Date;
16821
16830
  updatedAt: Date;
16822
16831
  deletedAt: Date | null;
16823
- };
16832
+ } | null | undefined;
16824
16833
  }[] | null | undefined;
16825
- };
16826
- workflowRule: {
16827
- type: string;
16828
- id: string;
16829
- name: string;
16830
- createdAt: Date;
16831
- updatedAt: Date;
16832
- deletedAt: Date | null;
16833
- isActive: boolean;
16834
- };
16834
+ } | null | undefined;
16835
16835
  automationQueueId?: string | null | undefined;
16836
16836
  };
16837
16837
  platformMessageId: string;
@@ -17495,7 +17495,16 @@ export declare const viberContract: {
17495
17495
  closedAt: Date;
17496
17496
  lastMessageAt: Date | null;
17497
17497
  isBotRoom: boolean;
17498
- cxlog: {
17498
+ workflowRule: {
17499
+ type: string;
17500
+ id: string;
17501
+ name: string;
17502
+ createdAt: Date;
17503
+ updatedAt: Date;
17504
+ deletedAt: Date | null;
17505
+ isActive: boolean;
17506
+ };
17507
+ cxlog?: {
17499
17508
  id: string;
17500
17509
  channel: string | null;
17501
17510
  direction: string | null;
@@ -17571,25 +17580,16 @@ export declare const viberContract: {
17571
17580
  startedAt: string;
17572
17581
  endedAt: string | null;
17573
17582
  duration: number | null;
17574
- holdLabel: {
17583
+ holdLabel?: {
17575
17584
  id: string;
17576
17585
  name: string;
17577
17586
  position: number;
17578
17587
  createdAt: Date;
17579
17588
  updatedAt: Date;
17580
17589
  deletedAt: Date | null;
17581
- };
17590
+ } | null | undefined;
17582
17591
  }[] | null | undefined;
17583
- };
17584
- workflowRule: {
17585
- type: string;
17586
- id: string;
17587
- name: string;
17588
- createdAt: Date;
17589
- updatedAt: Date;
17590
- deletedAt: Date | null;
17591
- isActive: boolean;
17592
- };
17592
+ } | null | undefined;
17593
17593
  automationQueueId?: string | null | undefined;
17594
17594
  };
17595
17595
  platformMessageId: string;
@@ -18250,7 +18250,16 @@ export declare const viberContract: {
18250
18250
  closedAt: Date;
18251
18251
  lastMessageAt: Date | null;
18252
18252
  isBotRoom: boolean;
18253
- cxlog: {
18253
+ workflowRule: {
18254
+ type: string;
18255
+ id: string;
18256
+ name: string;
18257
+ createdAt: Date;
18258
+ updatedAt: Date;
18259
+ deletedAt: Date | null;
18260
+ isActive: boolean;
18261
+ };
18262
+ cxlog?: {
18254
18263
  id: string;
18255
18264
  channel: string | null;
18256
18265
  direction: string | null;
@@ -18326,25 +18335,16 @@ export declare const viberContract: {
18326
18335
  startedAt: string;
18327
18336
  endedAt: string | null;
18328
18337
  duration: number | null;
18329
- holdLabel: {
18338
+ holdLabel?: {
18330
18339
  id: string;
18331
18340
  name: string;
18332
18341
  position: number;
18333
18342
  createdAt: Date;
18334
18343
  updatedAt: Date;
18335
18344
  deletedAt: Date | null;
18336
- };
18345
+ } | null | undefined;
18337
18346
  }[] | null | undefined;
18338
- };
18339
- workflowRule: {
18340
- type: string;
18341
- id: string;
18342
- name: string;
18343
- createdAt: Date;
18344
- updatedAt: Date;
18345
- deletedAt: Date | null;
18346
- isActive: boolean;
18347
- };
18347
+ } | null | undefined;
18348
18348
  automationQueueId?: string | null | undefined;
18349
18349
  };
18350
18350
  platformMessageId: string;
@@ -19009,7 +19009,16 @@ export declare const viberContract: {
19009
19009
  closedAt: Date;
19010
19010
  lastMessageAt: Date | null;
19011
19011
  isBotRoom: boolean;
19012
- cxlog: {
19012
+ workflowRule: {
19013
+ type: string;
19014
+ id: string;
19015
+ name: string;
19016
+ createdAt: Date;
19017
+ updatedAt: Date;
19018
+ deletedAt: Date | null;
19019
+ isActive: boolean;
19020
+ };
19021
+ cxlog?: {
19013
19022
  id: string;
19014
19023
  channel: string | null;
19015
19024
  direction: string | null;
@@ -19085,25 +19094,16 @@ export declare const viberContract: {
19085
19094
  startedAt: string;
19086
19095
  endedAt: string | null;
19087
19096
  duration: number | null;
19088
- holdLabel: {
19097
+ holdLabel?: {
19089
19098
  id: string;
19090
19099
  name: string;
19091
19100
  position: number;
19092
19101
  createdAt: Date;
19093
19102
  updatedAt: Date;
19094
19103
  deletedAt: Date | null;
19095
- };
19104
+ } | null | undefined;
19096
19105
  }[] | null | undefined;
19097
- };
19098
- workflowRule: {
19099
- type: string;
19100
- id: string;
19101
- name: string;
19102
- createdAt: Date;
19103
- updatedAt: Date;
19104
- deletedAt: Date | null;
19105
- isActive: boolean;
19106
- };
19106
+ } | null | undefined;
19107
19107
  automationQueueId?: string | null | undefined;
19108
19108
  };
19109
19109
  platformMessageId: string;
@@ -19764,7 +19764,16 @@ export declare const viberContract: {
19764
19764
  closedAt: Date;
19765
19765
  lastMessageAt: Date | null;
19766
19766
  isBotRoom: boolean;
19767
- cxlog: {
19767
+ workflowRule: {
19768
+ type: string;
19769
+ id: string;
19770
+ name: string;
19771
+ createdAt: Date;
19772
+ updatedAt: Date;
19773
+ deletedAt: Date | null;
19774
+ isActive: boolean;
19775
+ };
19776
+ cxlog?: {
19768
19777
  id: string;
19769
19778
  channel: string | null;
19770
19779
  direction: string | null;
@@ -19840,25 +19849,16 @@ export declare const viberContract: {
19840
19849
  startedAt: string;
19841
19850
  endedAt: string | null;
19842
19851
  duration: number | null;
19843
- holdLabel: {
19852
+ holdLabel?: {
19844
19853
  id: string;
19845
19854
  name: string;
19846
19855
  position: number;
19847
19856
  createdAt: Date;
19848
19857
  updatedAt: Date;
19849
19858
  deletedAt: Date | null;
19850
- };
19859
+ } | null | undefined;
19851
19860
  }[] | null | undefined;
19852
- };
19853
- workflowRule: {
19854
- type: string;
19855
- id: string;
19856
- name: string;
19857
- createdAt: Date;
19858
- updatedAt: Date;
19859
- deletedAt: Date | null;
19860
- isActive: boolean;
19861
- };
19861
+ } | null | undefined;
19862
19862
  automationQueueId?: string | null | undefined;
19863
19863
  };
19864
19864
  platformMessageId: string;