@kl1/contracts 1.1.97-uat → 1.1.99-uat

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. package/dist/api-contracts/src/chat/index.d.ts +111 -0
  2. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  3. package/dist/api-contracts/src/chat/schema.d.ts +25 -0
  4. package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
  5. package/dist/api-contracts/src/chat/validation.d.ts +16 -0
  6. package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
  7. package/dist/api-contracts/src/contract.d.ts +168 -0
  8. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  9. package/dist/api-contracts/src/dashboard/index.d.ts +64 -1
  10. package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
  11. package/dist/api-contracts/src/dashboard/schema.d.ts +19 -0
  12. package/dist/api-contracts/src/dashboard/schema.d.ts.map +1 -1
  13. package/dist/api-contracts/src/dashboard/validation.d.ts +16 -0
  14. package/dist/api-contracts/src/dashboard/validation.d.ts.map +1 -1
  15. package/dist/api-contracts/src/facebook-feed/index.d.ts +16 -0
  16. package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/instagram/index.d.ts +16 -0
  18. package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
  19. package/dist/api-contracts/src/line/index.d.ts +16 -0
  20. package/dist/api-contracts/src/line/index.d.ts.map +1 -1
  21. package/dist/api-contracts/src/messenger/index.d.ts +16 -0
  22. package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/viber/index.d.ts +16 -0
  24. package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
  25. package/dist/api-contracts/src/webchat/index.d.ts +16 -0
  26. package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
  27. package/dist/api-contracts/src/workflow-rule/index.d.ts +10 -0
  28. package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
  29. package/dist/index.js +24 -0
  30. package/dist/index.js.map +1 -1
  31. package/dist/index.mjs +24 -0
  32. package/dist/index.mjs.map +1 -1
  33. package/package.json +1 -1
@@ -13007,6 +13007,68 @@ export declare const apiContract: {
13007
13007
  'x-client-timezone'?: string | undefined;
13008
13008
  }>>>;
13009
13009
  };
13010
+ getCallCounts: {
13011
+ method: "GET";
13012
+ query: import("zod").ZodObject<{
13013
+ agentIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
13014
+ userId: import("zod").ZodOptional<import("zod").ZodString>;
13015
+ types: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
13016
+ selectedDate: import("zod").ZodOptional<import("zod").ZodString>;
13017
+ }, "strip", import("zod").ZodTypeAny, {
13018
+ agentIds?: string[] | undefined;
13019
+ userId?: string | undefined;
13020
+ types?: string[] | undefined;
13021
+ selectedDate?: string | undefined;
13022
+ }, {
13023
+ agentIds?: string[] | undefined;
13024
+ userId?: string | undefined;
13025
+ types?: string[] | undefined;
13026
+ selectedDate?: string | undefined;
13027
+ }>;
13028
+ responses: {
13029
+ 200: import("zod").ZodObject<{
13030
+ requestId: import("zod").ZodString;
13031
+ callCounts: import("zod").ZodObject<{
13032
+ answeredCallCount: import("zod").ZodNumber;
13033
+ noAnswerCallCount: import("zod").ZodNumber;
13034
+ busyCallCount: import("zod").ZodNumber;
13035
+ failedCallCount: import("zod").ZodNumber;
13036
+ totalCallCount: import("zod").ZodNumber;
13037
+ }, "strip", import("zod").ZodTypeAny, {
13038
+ totalCallCount: number;
13039
+ answeredCallCount: number;
13040
+ noAnswerCallCount: number;
13041
+ busyCallCount: number;
13042
+ failedCallCount: number;
13043
+ }, {
13044
+ totalCallCount: number;
13045
+ answeredCallCount: number;
13046
+ noAnswerCallCount: number;
13047
+ busyCallCount: number;
13048
+ failedCallCount: number;
13049
+ }>;
13050
+ }, "strip", import("zod").ZodTypeAny, {
13051
+ requestId: string;
13052
+ callCounts: {
13053
+ totalCallCount: number;
13054
+ answeredCallCount: number;
13055
+ noAnswerCallCount: number;
13056
+ busyCallCount: number;
13057
+ failedCallCount: number;
13058
+ };
13059
+ }, {
13060
+ requestId: string;
13061
+ callCounts: {
13062
+ totalCallCount: number;
13063
+ answeredCallCount: number;
13064
+ noAnswerCallCount: number;
13065
+ busyCallCount: number;
13066
+ failedCallCount: number;
13067
+ };
13068
+ }>;
13069
+ };
13070
+ path: "dashboard/call-counts";
13071
+ };
13010
13072
  };
13011
13073
  permission: {
13012
13074
  getPermissions: {
@@ -84731,6 +84793,7 @@ export declare const platformContract: {
84731
84793
  channelId: string;
84732
84794
  socialPlatformId: string;
84733
84795
  }>;
84796
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
84734
84797
  actor: import("zod").ZodObject<{
84735
84798
  id: import("zod").ZodString;
84736
84799
  createdAt: import("zod").ZodDate;
@@ -86328,6 +86391,7 @@ export declare const platformContract: {
86328
86391
  closedAt: Date;
86329
86392
  lastMessageAt: Date | null;
86330
86393
  isBotRoom: boolean;
86394
+ automationQueueId: string | null;
86331
86395
  cxlog: {
86332
86396
  id: string;
86333
86397
  channel: string | null;
@@ -86715,6 +86779,7 @@ export declare const platformContract: {
86715
86779
  closedAt: Date;
86716
86780
  lastMessageAt: Date | null;
86717
86781
  isBotRoom: boolean;
86782
+ automationQueueId: string | null;
86718
86783
  cxlog: {
86719
86784
  id: string;
86720
86785
  channel: string | null;
@@ -89100,6 +89165,7 @@ export declare const platformContract: {
89100
89165
  channelId: string;
89101
89166
  socialPlatformId: string;
89102
89167
  }>;
89168
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
89103
89169
  actor: import("zod").ZodObject<{
89104
89170
  id: import("zod").ZodString;
89105
89171
  createdAt: import("zod").ZodDate;
@@ -90697,6 +90763,7 @@ export declare const platformContract: {
90697
90763
  closedAt: Date;
90698
90764
  lastMessageAt: Date | null;
90699
90765
  isBotRoom: boolean;
90766
+ automationQueueId: string | null;
90700
90767
  cxlog: {
90701
90768
  id: string;
90702
90769
  channel: string | null;
@@ -91084,6 +91151,7 @@ export declare const platformContract: {
91084
91151
  closedAt: Date;
91085
91152
  lastMessageAt: Date | null;
91086
91153
  isBotRoom: boolean;
91154
+ automationQueueId: string | null;
91087
91155
  cxlog: {
91088
91156
  id: string;
91089
91157
  channel: string | null;
@@ -93244,6 +93312,7 @@ export declare const platformContract: {
93244
93312
  closedAt: Date;
93245
93313
  lastMessageAt: Date | null;
93246
93314
  isBotRoom: boolean;
93315
+ automationQueueId: string | null;
93247
93316
  cxlog: {
93248
93317
  id: string;
93249
93318
  channel: string | null;
@@ -93968,6 +94037,7 @@ export declare const platformContract: {
93968
94037
  closedAt: Date;
93969
94038
  lastMessageAt: Date | null;
93970
94039
  isBotRoom: boolean;
94040
+ automationQueueId: string | null;
93971
94041
  cxlog: {
93972
94042
  id: string;
93973
94043
  channel: string | null;
@@ -94693,6 +94763,7 @@ export declare const platformContract: {
94693
94763
  closedAt: Date;
94694
94764
  lastMessageAt: Date | null;
94695
94765
  isBotRoom: boolean;
94766
+ automationQueueId: string | null;
94696
94767
  cxlog: {
94697
94768
  id: string;
94698
94769
  channel: string | null;
@@ -95417,6 +95488,7 @@ export declare const platformContract: {
95417
95488
  closedAt: Date;
95418
95489
  lastMessageAt: Date | null;
95419
95490
  isBotRoom: boolean;
95491
+ automationQueueId: string | null;
95420
95492
  cxlog: {
95421
95493
  id: string;
95422
95494
  channel: string | null;
@@ -96142,6 +96214,7 @@ export declare const platformContract: {
96142
96214
  closedAt: Date;
96143
96215
  lastMessageAt: Date | null;
96144
96216
  isBotRoom: boolean;
96217
+ automationQueueId: string | null;
96145
96218
  cxlog: {
96146
96219
  id: string;
96147
96220
  channel: string | null;
@@ -96866,6 +96939,7 @@ export declare const platformContract: {
96866
96939
  closedAt: Date;
96867
96940
  lastMessageAt: Date | null;
96868
96941
  isBotRoom: boolean;
96942
+ automationQueueId: string | null;
96869
96943
  cxlog: {
96870
96944
  id: string;
96871
96945
  channel: string | null;
@@ -97593,6 +97667,7 @@ export declare const platformContract: {
97593
97667
  closedAt: Date;
97594
97668
  lastMessageAt: Date | null;
97595
97669
  isBotRoom: boolean;
97670
+ automationQueueId: string | null;
97596
97671
  cxlog: {
97597
97672
  id: string;
97598
97673
  channel: string | null;
@@ -98317,6 +98392,7 @@ export declare const platformContract: {
98317
98392
  closedAt: Date;
98318
98393
  lastMessageAt: Date | null;
98319
98394
  isBotRoom: boolean;
98395
+ automationQueueId: string | null;
98320
98396
  cxlog: {
98321
98397
  id: string;
98322
98398
  channel: string | null;
@@ -99045,6 +99121,7 @@ export declare const platformContract: {
99045
99121
  closedAt: Date;
99046
99122
  lastMessageAt: Date | null;
99047
99123
  isBotRoom: boolean;
99124
+ automationQueueId: string | null;
99048
99125
  cxlog: {
99049
99126
  id: string;
99050
99127
  channel: string | null;
@@ -99769,6 +99846,7 @@ export declare const platformContract: {
99769
99846
  closedAt: Date;
99770
99847
  lastMessageAt: Date | null;
99771
99848
  isBotRoom: boolean;
99849
+ automationQueueId: string | null;
99772
99850
  cxlog: {
99773
99851
  id: string;
99774
99852
  channel: string | null;
@@ -104545,6 +104623,7 @@ export declare const platformContract: {
104545
104623
  channelId: string;
104546
104624
  socialPlatformId: string;
104547
104625
  }>;
104626
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
104548
104627
  actor: import("zod").ZodObject<{
104549
104628
  id: import("zod").ZodString;
104550
104629
  createdAt: import("zod").ZodDate;
@@ -106142,6 +106221,7 @@ export declare const platformContract: {
106142
106221
  closedAt: Date;
106143
106222
  lastMessageAt: Date | null;
106144
106223
  isBotRoom: boolean;
106224
+ automationQueueId: string | null;
106145
106225
  cxlog: {
106146
106226
  id: string;
106147
106227
  channel: string | null;
@@ -106529,6 +106609,7 @@ export declare const platformContract: {
106529
106609
  closedAt: Date;
106530
106610
  lastMessageAt: Date | null;
106531
106611
  isBotRoom: boolean;
106612
+ automationQueueId: string | null;
106532
106613
  cxlog: {
106533
106614
  id: string;
106534
106615
  channel: string | null;
@@ -108914,6 +108995,7 @@ export declare const platformContract: {
108914
108995
  channelId: string;
108915
108996
  socialPlatformId: string;
108916
108997
  }>;
108998
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
108917
108999
  actor: import("zod").ZodObject<{
108918
109000
  id: import("zod").ZodString;
108919
109001
  createdAt: import("zod").ZodDate;
@@ -110511,6 +110593,7 @@ export declare const platformContract: {
110511
110593
  closedAt: Date;
110512
110594
  lastMessageAt: Date | null;
110513
110595
  isBotRoom: boolean;
110596
+ automationQueueId: string | null;
110514
110597
  cxlog: {
110515
110598
  id: string;
110516
110599
  channel: string | null;
@@ -110898,6 +110981,7 @@ export declare const platformContract: {
110898
110981
  closedAt: Date;
110899
110982
  lastMessageAt: Date | null;
110900
110983
  isBotRoom: boolean;
110984
+ automationQueueId: string | null;
110901
110985
  cxlog: {
110902
110986
  id: string;
110903
110987
  channel: string | null;
@@ -113058,6 +113142,7 @@ export declare const platformContract: {
113058
113142
  closedAt: Date;
113059
113143
  lastMessageAt: Date | null;
113060
113144
  isBotRoom: boolean;
113145
+ automationQueueId: string | null;
113061
113146
  cxlog: {
113062
113147
  id: string;
113063
113148
  channel: string | null;
@@ -113782,6 +113867,7 @@ export declare const platformContract: {
113782
113867
  closedAt: Date;
113783
113868
  lastMessageAt: Date | null;
113784
113869
  isBotRoom: boolean;
113870
+ automationQueueId: string | null;
113785
113871
  cxlog: {
113786
113872
  id: string;
113787
113873
  channel: string | null;
@@ -114507,6 +114593,7 @@ export declare const platformContract: {
114507
114593
  closedAt: Date;
114508
114594
  lastMessageAt: Date | null;
114509
114595
  isBotRoom: boolean;
114596
+ automationQueueId: string | null;
114510
114597
  cxlog: {
114511
114598
  id: string;
114512
114599
  channel: string | null;
@@ -115231,6 +115318,7 @@ export declare const platformContract: {
115231
115318
  closedAt: Date;
115232
115319
  lastMessageAt: Date | null;
115233
115320
  isBotRoom: boolean;
115321
+ automationQueueId: string | null;
115234
115322
  cxlog: {
115235
115323
  id: string;
115236
115324
  channel: string | null;
@@ -115956,6 +116044,7 @@ export declare const platformContract: {
115956
116044
  closedAt: Date;
115957
116045
  lastMessageAt: Date | null;
115958
116046
  isBotRoom: boolean;
116047
+ automationQueueId: string | null;
115959
116048
  cxlog: {
115960
116049
  id: string;
115961
116050
  channel: string | null;
@@ -116680,6 +116769,7 @@ export declare const platformContract: {
116680
116769
  closedAt: Date;
116681
116770
  lastMessageAt: Date | null;
116682
116771
  isBotRoom: boolean;
116772
+ automationQueueId: string | null;
116683
116773
  cxlog: {
116684
116774
  id: string;
116685
116775
  channel: string | null;
@@ -117407,6 +117497,7 @@ export declare const platformContract: {
117407
117497
  closedAt: Date;
117408
117498
  lastMessageAt: Date | null;
117409
117499
  isBotRoom: boolean;
117500
+ automationQueueId: string | null;
117410
117501
  cxlog: {
117411
117502
  id: string;
117412
117503
  channel: string | null;
@@ -118131,6 +118222,7 @@ export declare const platformContract: {
118131
118222
  closedAt: Date;
118132
118223
  lastMessageAt: Date | null;
118133
118224
  isBotRoom: boolean;
118225
+ automationQueueId: string | null;
118134
118226
  cxlog: {
118135
118227
  id: string;
118136
118228
  channel: string | null;
@@ -118859,6 +118951,7 @@ export declare const platformContract: {
118859
118951
  closedAt: Date;
118860
118952
  lastMessageAt: Date | null;
118861
118953
  isBotRoom: boolean;
118954
+ automationQueueId: string | null;
118862
118955
  cxlog: {
118863
118956
  id: string;
118864
118957
  channel: string | null;
@@ -119583,6 +119676,7 @@ export declare const platformContract: {
119583
119676
  closedAt: Date;
119584
119677
  lastMessageAt: Date | null;
119585
119678
  isBotRoom: boolean;
119679
+ automationQueueId: string | null;
119586
119680
  cxlog: {
119587
119681
  id: string;
119588
119682
  channel: string | null;
@@ -123067,6 +123161,7 @@ export declare const platformMessengerContract: {
123067
123161
  channelId: string;
123068
123162
  socialPlatformId: string;
123069
123163
  }>;
123164
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
123070
123165
  actor: import("zod").ZodObject<{
123071
123166
  id: import("zod").ZodString;
123072
123167
  createdAt: import("zod").ZodDate;
@@ -124664,6 +124759,7 @@ export declare const platformMessengerContract: {
124664
124759
  closedAt: Date;
124665
124760
  lastMessageAt: Date | null;
124666
124761
  isBotRoom: boolean;
124762
+ automationQueueId: string | null;
124667
124763
  cxlog: {
124668
124764
  id: string;
124669
124765
  channel: string | null;
@@ -125051,6 +125147,7 @@ export declare const platformMessengerContract: {
125051
125147
  closedAt: Date;
125052
125148
  lastMessageAt: Date | null;
125053
125149
  isBotRoom: boolean;
125150
+ automationQueueId: string | null;
125054
125151
  cxlog: {
125055
125152
  id: string;
125056
125153
  channel: string | null;
@@ -127436,6 +127533,7 @@ export declare const platformMessengerContract: {
127436
127533
  channelId: string;
127437
127534
  socialPlatformId: string;
127438
127535
  }>;
127536
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
127439
127537
  actor: import("zod").ZodObject<{
127440
127538
  id: import("zod").ZodString;
127441
127539
  createdAt: import("zod").ZodDate;
@@ -129033,6 +129131,7 @@ export declare const platformMessengerContract: {
129033
129131
  closedAt: Date;
129034
129132
  lastMessageAt: Date | null;
129035
129133
  isBotRoom: boolean;
129134
+ automationQueueId: string | null;
129036
129135
  cxlog: {
129037
129136
  id: string;
129038
129137
  channel: string | null;
@@ -129420,6 +129519,7 @@ export declare const platformMessengerContract: {
129420
129519
  closedAt: Date;
129421
129520
  lastMessageAt: Date | null;
129422
129521
  isBotRoom: boolean;
129522
+ automationQueueId: string | null;
129423
129523
  cxlog: {
129424
129524
  id: string;
129425
129525
  channel: string | null;
@@ -131580,6 +131680,7 @@ export declare const platformMessengerContract: {
131580
131680
  closedAt: Date;
131581
131681
  lastMessageAt: Date | null;
131582
131682
  isBotRoom: boolean;
131683
+ automationQueueId: string | null;
131583
131684
  cxlog: {
131584
131685
  id: string;
131585
131686
  channel: string | null;
@@ -132304,6 +132405,7 @@ export declare const platformMessengerContract: {
132304
132405
  closedAt: Date;
132305
132406
  lastMessageAt: Date | null;
132306
132407
  isBotRoom: boolean;
132408
+ automationQueueId: string | null;
132307
132409
  cxlog: {
132308
132410
  id: string;
132309
132411
  channel: string | null;
@@ -133029,6 +133131,7 @@ export declare const platformMessengerContract: {
133029
133131
  closedAt: Date;
133030
133132
  lastMessageAt: Date | null;
133031
133133
  isBotRoom: boolean;
133134
+ automationQueueId: string | null;
133032
133135
  cxlog: {
133033
133136
  id: string;
133034
133137
  channel: string | null;
@@ -133753,6 +133856,7 @@ export declare const platformMessengerContract: {
133753
133856
  closedAt: Date;
133754
133857
  lastMessageAt: Date | null;
133755
133858
  isBotRoom: boolean;
133859
+ automationQueueId: string | null;
133756
133860
  cxlog: {
133757
133861
  id: string;
133758
133862
  channel: string | null;
@@ -134478,6 +134582,7 @@ export declare const platformMessengerContract: {
134478
134582
  closedAt: Date;
134479
134583
  lastMessageAt: Date | null;
134480
134584
  isBotRoom: boolean;
134585
+ automationQueueId: string | null;
134481
134586
  cxlog: {
134482
134587
  id: string;
134483
134588
  channel: string | null;
@@ -135202,6 +135307,7 @@ export declare const platformMessengerContract: {
135202
135307
  closedAt: Date;
135203
135308
  lastMessageAt: Date | null;
135204
135309
  isBotRoom: boolean;
135310
+ automationQueueId: string | null;
135205
135311
  cxlog: {
135206
135312
  id: string;
135207
135313
  channel: string | null;
@@ -135929,6 +136035,7 @@ export declare const platformMessengerContract: {
135929
136035
  closedAt: Date;
135930
136036
  lastMessageAt: Date | null;
135931
136037
  isBotRoom: boolean;
136038
+ automationQueueId: string | null;
135932
136039
  cxlog: {
135933
136040
  id: string;
135934
136041
  channel: string | null;
@@ -136653,6 +136760,7 @@ export declare const platformMessengerContract: {
136653
136760
  closedAt: Date;
136654
136761
  lastMessageAt: Date | null;
136655
136762
  isBotRoom: boolean;
136763
+ automationQueueId: string | null;
136656
136764
  cxlog: {
136657
136765
  id: string;
136658
136766
  channel: string | null;
@@ -137381,6 +137489,7 @@ export declare const platformMessengerContract: {
137381
137489
  closedAt: Date;
137382
137490
  lastMessageAt: Date | null;
137383
137491
  isBotRoom: boolean;
137492
+ automationQueueId: string | null;
137384
137493
  cxlog: {
137385
137494
  id: string;
137386
137495
  channel: string | null;
@@ -138105,6 +138214,7 @@ export declare const platformMessengerContract: {
138105
138214
  closedAt: Date;
138106
138215
  lastMessageAt: Date | null;
138107
138216
  isBotRoom: boolean;
138217
+ automationQueueId: string | null;
138108
138218
  cxlog: {
138109
138219
  id: string;
138110
138220
  channel: string | null;
@@ -142466,6 +142576,7 @@ export declare const platformInstagramContract: {
142466
142576
  channelId: string;
142467
142577
  socialPlatformId: string;
142468
142578
  }>;
142579
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
142469
142580
  actor: import("zod").ZodObject<{
142470
142581
  id: import("zod").ZodString;
142471
142582
  createdAt: import("zod").ZodDate;
@@ -144063,6 +144174,7 @@ export declare const platformInstagramContract: {
144063
144174
  closedAt: Date;
144064
144175
  lastMessageAt: Date | null;
144065
144176
  isBotRoom: boolean;
144177
+ automationQueueId: string | null;
144066
144178
  cxlog: {
144067
144179
  id: string;
144068
144180
  channel: string | null;
@@ -144450,6 +144562,7 @@ export declare const platformInstagramContract: {
144450
144562
  closedAt: Date;
144451
144563
  lastMessageAt: Date | null;
144452
144564
  isBotRoom: boolean;
144565
+ automationQueueId: string | null;
144453
144566
  cxlog: {
144454
144567
  id: string;
144455
144568
  channel: string | null;
@@ -146835,6 +146948,7 @@ export declare const platformInstagramContract: {
146835
146948
  channelId: string;
146836
146949
  socialPlatformId: string;
146837
146950
  }>;
146951
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
146838
146952
  actor: import("zod").ZodObject<{
146839
146953
  id: import("zod").ZodString;
146840
146954
  createdAt: import("zod").ZodDate;
@@ -148432,6 +148546,7 @@ export declare const platformInstagramContract: {
148432
148546
  closedAt: Date;
148433
148547
  lastMessageAt: Date | null;
148434
148548
  isBotRoom: boolean;
148549
+ automationQueueId: string | null;
148435
148550
  cxlog: {
148436
148551
  id: string;
148437
148552
  channel: string | null;
@@ -148819,6 +148934,7 @@ export declare const platformInstagramContract: {
148819
148934
  closedAt: Date;
148820
148935
  lastMessageAt: Date | null;
148821
148936
  isBotRoom: boolean;
148937
+ automationQueueId: string | null;
148822
148938
  cxlog: {
148823
148939
  id: string;
148824
148940
  channel: string | null;
@@ -150979,6 +151095,7 @@ export declare const platformInstagramContract: {
150979
151095
  closedAt: Date;
150980
151096
  lastMessageAt: Date | null;
150981
151097
  isBotRoom: boolean;
151098
+ automationQueueId: string | null;
150982
151099
  cxlog: {
150983
151100
  id: string;
150984
151101
  channel: string | null;
@@ -151703,6 +151820,7 @@ export declare const platformInstagramContract: {
151703
151820
  closedAt: Date;
151704
151821
  lastMessageAt: Date | null;
151705
151822
  isBotRoom: boolean;
151823
+ automationQueueId: string | null;
151706
151824
  cxlog: {
151707
151825
  id: string;
151708
151826
  channel: string | null;
@@ -152428,6 +152546,7 @@ export declare const platformInstagramContract: {
152428
152546
  closedAt: Date;
152429
152547
  lastMessageAt: Date | null;
152430
152548
  isBotRoom: boolean;
152549
+ automationQueueId: string | null;
152431
152550
  cxlog: {
152432
152551
  id: string;
152433
152552
  channel: string | null;
@@ -153152,6 +153271,7 @@ export declare const platformInstagramContract: {
153152
153271
  closedAt: Date;
153153
153272
  lastMessageAt: Date | null;
153154
153273
  isBotRoom: boolean;
153274
+ automationQueueId: string | null;
153155
153275
  cxlog: {
153156
153276
  id: string;
153157
153277
  channel: string | null;
@@ -153877,6 +153997,7 @@ export declare const platformInstagramContract: {
153877
153997
  closedAt: Date;
153878
153998
  lastMessageAt: Date | null;
153879
153999
  isBotRoom: boolean;
154000
+ automationQueueId: string | null;
153880
154001
  cxlog: {
153881
154002
  id: string;
153882
154003
  channel: string | null;
@@ -154601,6 +154722,7 @@ export declare const platformInstagramContract: {
154601
154722
  closedAt: Date;
154602
154723
  lastMessageAt: Date | null;
154603
154724
  isBotRoom: boolean;
154725
+ automationQueueId: string | null;
154604
154726
  cxlog: {
154605
154727
  id: string;
154606
154728
  channel: string | null;
@@ -155328,6 +155450,7 @@ export declare const platformInstagramContract: {
155328
155450
  closedAt: Date;
155329
155451
  lastMessageAt: Date | null;
155330
155452
  isBotRoom: boolean;
155453
+ automationQueueId: string | null;
155331
155454
  cxlog: {
155332
155455
  id: string;
155333
155456
  channel: string | null;
@@ -156052,6 +156175,7 @@ export declare const platformInstagramContract: {
156052
156175
  closedAt: Date;
156053
156176
  lastMessageAt: Date | null;
156054
156177
  isBotRoom: boolean;
156178
+ automationQueueId: string | null;
156055
156179
  cxlog: {
156056
156180
  id: string;
156057
156181
  channel: string | null;
@@ -156780,6 +156904,7 @@ export declare const platformInstagramContract: {
156780
156904
  closedAt: Date;
156781
156905
  lastMessageAt: Date | null;
156782
156906
  isBotRoom: boolean;
156907
+ automationQueueId: string | null;
156783
156908
  cxlog: {
156784
156909
  id: string;
156785
156910
  channel: string | null;
@@ -157504,6 +157629,7 @@ export declare const platformInstagramContract: {
157504
157629
  closedAt: Date;
157505
157630
  lastMessageAt: Date | null;
157506
157631
  isBotRoom: boolean;
157632
+ automationQueueId: string | null;
157507
157633
  cxlog: {
157508
157634
  id: string;
157509
157635
  channel: string | null;
@@ -167220,6 +167346,7 @@ export declare const facebookFeedContract: {
167220
167346
  channelId: string;
167221
167347
  socialPlatformId: string;
167222
167348
  }>;
167349
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
167223
167350
  actor: import("zod").ZodObject<{
167224
167351
  id: import("zod").ZodString;
167225
167352
  createdAt: import("zod").ZodDate;
@@ -168817,6 +168944,7 @@ export declare const facebookFeedContract: {
168817
168944
  closedAt: Date;
168818
168945
  lastMessageAt: Date | null;
168819
168946
  isBotRoom: boolean;
168947
+ automationQueueId: string | null;
168820
168948
  cxlog: {
168821
168949
  id: string;
168822
168950
  channel: string | null;
@@ -169204,6 +169332,7 @@ export declare const facebookFeedContract: {
169204
169332
  closedAt: Date;
169205
169333
  lastMessageAt: Date | null;
169206
169334
  isBotRoom: boolean;
169335
+ automationQueueId: string | null;
169207
169336
  cxlog: {
169208
169337
  id: string;
169209
169338
  channel: string | null;
@@ -171589,6 +171718,7 @@ export declare const facebookFeedContract: {
171589
171718
  channelId: string;
171590
171719
  socialPlatformId: string;
171591
171720
  }>;
171721
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
171592
171722
  actor: import("zod").ZodObject<{
171593
171723
  id: import("zod").ZodString;
171594
171724
  createdAt: import("zod").ZodDate;
@@ -173186,6 +173316,7 @@ export declare const facebookFeedContract: {
173186
173316
  closedAt: Date;
173187
173317
  lastMessageAt: Date | null;
173188
173318
  isBotRoom: boolean;
173319
+ automationQueueId: string | null;
173189
173320
  cxlog: {
173190
173321
  id: string;
173191
173322
  channel: string | null;
@@ -173573,6 +173704,7 @@ export declare const facebookFeedContract: {
173573
173704
  closedAt: Date;
173574
173705
  lastMessageAt: Date | null;
173575
173706
  isBotRoom: boolean;
173707
+ automationQueueId: string | null;
173576
173708
  cxlog: {
173577
173709
  id: string;
173578
173710
  channel: string | null;
@@ -175733,6 +175865,7 @@ export declare const facebookFeedContract: {
175733
175865
  closedAt: Date;
175734
175866
  lastMessageAt: Date | null;
175735
175867
  isBotRoom: boolean;
175868
+ automationQueueId: string | null;
175736
175869
  cxlog: {
175737
175870
  id: string;
175738
175871
  channel: string | null;
@@ -176457,6 +176590,7 @@ export declare const facebookFeedContract: {
176457
176590
  closedAt: Date;
176458
176591
  lastMessageAt: Date | null;
176459
176592
  isBotRoom: boolean;
176593
+ automationQueueId: string | null;
176460
176594
  cxlog: {
176461
176595
  id: string;
176462
176596
  channel: string | null;
@@ -177182,6 +177316,7 @@ export declare const facebookFeedContract: {
177182
177316
  closedAt: Date;
177183
177317
  lastMessageAt: Date | null;
177184
177318
  isBotRoom: boolean;
177319
+ automationQueueId: string | null;
177185
177320
  cxlog: {
177186
177321
  id: string;
177187
177322
  channel: string | null;
@@ -177906,6 +178041,7 @@ export declare const facebookFeedContract: {
177906
178041
  closedAt: Date;
177907
178042
  lastMessageAt: Date | null;
177908
178043
  isBotRoom: boolean;
178044
+ automationQueueId: string | null;
177909
178045
  cxlog: {
177910
178046
  id: string;
177911
178047
  channel: string | null;
@@ -178631,6 +178767,7 @@ export declare const facebookFeedContract: {
178631
178767
  closedAt: Date;
178632
178768
  lastMessageAt: Date | null;
178633
178769
  isBotRoom: boolean;
178770
+ automationQueueId: string | null;
178634
178771
  cxlog: {
178635
178772
  id: string;
178636
178773
  channel: string | null;
@@ -179355,6 +179492,7 @@ export declare const facebookFeedContract: {
179355
179492
  closedAt: Date;
179356
179493
  lastMessageAt: Date | null;
179357
179494
  isBotRoom: boolean;
179495
+ automationQueueId: string | null;
179358
179496
  cxlog: {
179359
179497
  id: string;
179360
179498
  channel: string | null;
@@ -180082,6 +180220,7 @@ export declare const facebookFeedContract: {
180082
180220
  closedAt: Date;
180083
180221
  lastMessageAt: Date | null;
180084
180222
  isBotRoom: boolean;
180223
+ automationQueueId: string | null;
180085
180224
  cxlog: {
180086
180225
  id: string;
180087
180226
  channel: string | null;
@@ -180806,6 +180945,7 @@ export declare const facebookFeedContract: {
180806
180945
  closedAt: Date;
180807
180946
  lastMessageAt: Date | null;
180808
180947
  isBotRoom: boolean;
180948
+ automationQueueId: string | null;
180809
180949
  cxlog: {
180810
180950
  id: string;
180811
180951
  channel: string | null;
@@ -181534,6 +181674,7 @@ export declare const facebookFeedContract: {
181534
181674
  closedAt: Date;
181535
181675
  lastMessageAt: Date | null;
181536
181676
  isBotRoom: boolean;
181677
+ automationQueueId: string | null;
181537
181678
  cxlog: {
181538
181679
  id: string;
181539
181680
  channel: string | null;
@@ -182258,6 +182399,7 @@ export declare const facebookFeedContract: {
182258
182399
  closedAt: Date;
182259
182400
  lastMessageAt: Date | null;
182260
182401
  isBotRoom: boolean;
182402
+ automationQueueId: string | null;
182261
182403
  cxlog: {
182262
182404
  id: string;
182263
182405
  channel: string | null;
@@ -187878,6 +188020,7 @@ export declare const feedPostContract: {
187878
188020
  channelId: string;
187879
188021
  socialPlatformId: string;
187880
188022
  }>;
188023
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
187881
188024
  actor: import("zod").ZodObject<{
187882
188025
  id: import("zod").ZodString;
187883
188026
  createdAt: import("zod").ZodDate;
@@ -189475,6 +189618,7 @@ export declare const feedPostContract: {
189475
189618
  closedAt: Date;
189476
189619
  lastMessageAt: Date | null;
189477
189620
  isBotRoom: boolean;
189621
+ automationQueueId: string | null;
189478
189622
  cxlog: {
189479
189623
  id: string;
189480
189624
  channel: string | null;
@@ -189862,6 +190006,7 @@ export declare const feedPostContract: {
189862
190006
  closedAt: Date;
189863
190007
  lastMessageAt: Date | null;
189864
190008
  isBotRoom: boolean;
190009
+ automationQueueId: string | null;
189865
190010
  cxlog: {
189866
190011
  id: string;
189867
190012
  channel: string | null;
@@ -193294,6 +193439,7 @@ export declare const feedPostContract: {
193294
193439
  channelId: string;
193295
193440
  socialPlatformId: string;
193296
193441
  }>;
193442
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
193297
193443
  actor: import("zod").ZodObject<{
193298
193444
  id: import("zod").ZodString;
193299
193445
  createdAt: import("zod").ZodDate;
@@ -194891,6 +195037,7 @@ export declare const feedPostContract: {
194891
195037
  closedAt: Date;
194892
195038
  lastMessageAt: Date | null;
194893
195039
  isBotRoom: boolean;
195040
+ automationQueueId: string | null;
194894
195041
  cxlog: {
194895
195042
  id: string;
194896
195043
  channel: string | null;
@@ -195278,6 +195425,7 @@ export declare const feedPostContract: {
195278
195425
  closedAt: Date;
195279
195426
  lastMessageAt: Date | null;
195280
195427
  isBotRoom: boolean;
195428
+ automationQueueId: string | null;
195281
195429
  cxlog: {
195282
195430
  id: string;
195283
195431
  channel: string | null;
@@ -197438,6 +197586,7 @@ export declare const feedPostContract: {
197438
197586
  closedAt: Date;
197439
197587
  lastMessageAt: Date | null;
197440
197588
  isBotRoom: boolean;
197589
+ automationQueueId: string | null;
197441
197590
  cxlog: {
197442
197591
  id: string;
197443
197592
  channel: string | null;
@@ -198162,6 +198311,7 @@ export declare const feedPostContract: {
198162
198311
  closedAt: Date;
198163
198312
  lastMessageAt: Date | null;
198164
198313
  isBotRoom: boolean;
198314
+ automationQueueId: string | null;
198165
198315
  cxlog: {
198166
198316
  id: string;
198167
198317
  channel: string | null;
@@ -198893,6 +199043,7 @@ export declare const feedPostContract: {
198893
199043
  closedAt: Date;
198894
199044
  lastMessageAt: Date | null;
198895
199045
  isBotRoom: boolean;
199046
+ automationQueueId: string | null;
198896
199047
  cxlog: {
198897
199048
  id: string;
198898
199049
  channel: string | null;
@@ -199612,6 +199763,7 @@ export declare const feedPostContract: {
199612
199763
  closedAt: Date;
199613
199764
  lastMessageAt: Date | null;
199614
199765
  isBotRoom: boolean;
199766
+ automationQueueId: string | null;
199615
199767
  cxlog: {
199616
199768
  id: string;
199617
199769
  channel: string | null;
@@ -200469,6 +200621,7 @@ export declare const feedPostContract: {
200469
200621
  closedAt: Date;
200470
200622
  lastMessageAt: Date | null;
200471
200623
  isBotRoom: boolean;
200624
+ automationQueueId: string | null;
200472
200625
  cxlog: {
200473
200626
  id: string;
200474
200627
  channel: string | null;
@@ -201188,6 +201341,7 @@ export declare const feedPostContract: {
201188
201341
  closedAt: Date;
201189
201342
  lastMessageAt: Date | null;
201190
201343
  isBotRoom: boolean;
201344
+ automationQueueId: string | null;
201191
201345
  cxlog: {
201192
201346
  id: string;
201193
201347
  channel: string | null;
@@ -202047,6 +202201,7 @@ export declare const feedPostContract: {
202047
202201
  closedAt: Date;
202048
202202
  lastMessageAt: Date | null;
202049
202203
  isBotRoom: boolean;
202204
+ automationQueueId: string | null;
202050
202205
  cxlog: {
202051
202206
  id: string;
202052
202207
  channel: string | null;
@@ -202766,6 +202921,7 @@ export declare const feedPostContract: {
202766
202921
  closedAt: Date;
202767
202922
  lastMessageAt: Date | null;
202768
202923
  isBotRoom: boolean;
202924
+ automationQueueId: string | null;
202769
202925
  cxlog: {
202770
202926
  id: string;
202771
202927
  channel: string | null;
@@ -203629,6 +203785,7 @@ export declare const feedPostContract: {
203629
203785
  closedAt: Date;
203630
203786
  lastMessageAt: Date | null;
203631
203787
  isBotRoom: boolean;
203788
+ automationQueueId: string | null;
203632
203789
  cxlog: {
203633
203790
  id: string;
203634
203791
  channel: string | null;
@@ -204348,6 +204505,7 @@ export declare const feedPostContract: {
204348
204505
  closedAt: Date;
204349
204506
  lastMessageAt: Date | null;
204350
204507
  isBotRoom: boolean;
204508
+ automationQueueId: string | null;
204351
204509
  cxlog: {
204352
204510
  id: string;
204353
204511
  channel: string | null;
@@ -224421,6 +224579,7 @@ export declare const workflowContract: {
224421
224579
  channelId: string;
224422
224580
  socialPlatformId: string;
224423
224581
  }>;
224582
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
224424
224583
  actor: import("zod").ZodObject<{
224425
224584
  id: import("zod").ZodString;
224426
224585
  createdAt: import("zod").ZodDate;
@@ -226018,6 +226177,7 @@ export declare const workflowContract: {
226018
226177
  closedAt: Date;
226019
226178
  lastMessageAt: Date | null;
226020
226179
  isBotRoom: boolean;
226180
+ automationQueueId: string | null;
226021
226181
  cxlog: {
226022
226182
  id: string;
226023
226183
  channel: string | null;
@@ -226405,6 +226565,7 @@ export declare const workflowContract: {
226405
226565
  closedAt: Date;
226406
226566
  lastMessageAt: Date | null;
226407
226567
  isBotRoom: boolean;
226568
+ automationQueueId: string | null;
226408
226569
  cxlog: {
226409
226570
  id: string;
226410
226571
  channel: string | null;
@@ -226794,6 +226955,7 @@ export declare const workflowContract: {
226794
226955
  closedAt: Date;
226795
226956
  lastMessageAt: Date | null;
226796
226957
  isBotRoom: boolean;
226958
+ automationQueueId: string | null;
226797
226959
  cxlog: {
226798
226960
  id: string;
226799
226961
  channel: string | null;
@@ -227184,6 +227346,7 @@ export declare const workflowContract: {
227184
227346
  closedAt: Date;
227185
227347
  lastMessageAt: Date | null;
227186
227348
  isBotRoom: boolean;
227349
+ automationQueueId: string | null;
227187
227350
  cxlog: {
227188
227351
  id: string;
227189
227352
  channel: string | null;
@@ -229214,6 +229377,7 @@ export declare const workflowContract: {
229214
229377
  closedAt: import("zod").ZodDate;
229215
229378
  lastMessageAt: import("zod").ZodNullable<import("zod").ZodDate>;
229216
229379
  isBotRoom: import("zod").ZodBoolean;
229380
+ automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
229217
229381
  cxlog: import("zod").ZodObject<{
229218
229382
  id: import("zod").ZodString;
229219
229383
  createdAt: import("zod").ZodDate;
@@ -229968,6 +230132,7 @@ export declare const workflowContract: {
229968
230132
  closedAt: Date;
229969
230133
  lastMessageAt: Date | null;
229970
230134
  isBotRoom: boolean;
230135
+ automationQueueId: string | null;
229971
230136
  cxlog: {
229972
230137
  id: string;
229973
230138
  channel: string | null;
@@ -230356,6 +230521,7 @@ export declare const workflowContract: {
230356
230521
  closedAt: Date;
230357
230522
  lastMessageAt: Date | null;
230358
230523
  isBotRoom: boolean;
230524
+ automationQueueId: string | null;
230359
230525
  cxlog: {
230360
230526
  id: string;
230361
230527
  channel: string | null;
@@ -230746,6 +230912,7 @@ export declare const workflowContract: {
230746
230912
  closedAt: Date;
230747
230913
  lastMessageAt: Date | null;
230748
230914
  isBotRoom: boolean;
230915
+ automationQueueId: string | null;
230749
230916
  cxlog: {
230750
230917
  id: string;
230751
230918
  channel: string | null;
@@ -231137,6 +231304,7 @@ export declare const workflowContract: {
231137
231304
  closedAt: Date;
231138
231305
  lastMessageAt: Date | null;
231139
231306
  isBotRoom: boolean;
231307
+ automationQueueId: string | null;
231140
231308
  cxlog: {
231141
231309
  id: string;
231142
231310
  channel: string | null;