@kl1/contracts 1.2.4-uat → 1.2.6-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.
- package/dist/api-contracts/src/chat/index.d.ts +2660 -6765
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +1951 -5080
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +19 -147
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +114 -111
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +5 -5
- package/dist/api-contracts/src/cx-log/schema.d.ts +3 -3
- package/dist/api-contracts/src/facebook-feed/index.d.ts +16 -16
- package/dist/api-contracts/src/instagram/index.d.ts +16 -16
- package/dist/api-contracts/src/line/index.d.ts +16 -16
- package/dist/api-contracts/src/messenger/index.d.ts +16 -16
- package/dist/api-contracts/src/ticket/index.d.ts +3 -0
- package/dist/api-contracts/src/ticket/index.d.ts.map +1 -1
- package/dist/api-contracts/src/ticket/validation.d.ts +3 -0
- package/dist/api-contracts/src/ticket/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +16 -16
- package/dist/api-contracts/src/webchat/index.d.ts +16 -16
- package/dist/api-contracts/src/workflow-rule/index.d.ts +10 -10
- package/dist/index.js +6 -36
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -35
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -7160,7 +7160,7 @@ export declare const apiContract: {
|
|
|
7160
7160
|
telephonySignature: string | null;
|
|
7161
7161
|
};
|
|
7162
7162
|
}>>;
|
|
7163
|
-
|
|
7163
|
+
recordingFileUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7164
7164
|
}, "strip", import("zod").ZodTypeAny, {
|
|
7165
7165
|
id: string;
|
|
7166
7166
|
channel: string | null;
|
|
@@ -8067,7 +8067,7 @@ export declare const apiContract: {
|
|
|
8067
8067
|
telephonySignature: string | null;
|
|
8068
8068
|
};
|
|
8069
8069
|
} | null;
|
|
8070
|
-
|
|
8070
|
+
recordingFileUrl: string | null;
|
|
8071
8071
|
}, {
|
|
8072
8072
|
id: string;
|
|
8073
8073
|
channel: string | null;
|
|
@@ -8974,7 +8974,7 @@ export declare const apiContract: {
|
|
|
8974
8974
|
telephonySignature: string | null;
|
|
8975
8975
|
};
|
|
8976
8976
|
} | null;
|
|
8977
|
-
|
|
8977
|
+
recordingFileUrl: string | null;
|
|
8978
8978
|
}>, "many">;
|
|
8979
8979
|
}, "strip", import("zod").ZodTypeAny, {
|
|
8980
8980
|
total: number;
|
|
@@ -9887,7 +9887,7 @@ export declare const apiContract: {
|
|
|
9887
9887
|
telephonySignature: string | null;
|
|
9888
9888
|
};
|
|
9889
9889
|
} | null;
|
|
9890
|
-
|
|
9890
|
+
recordingFileUrl: string | null;
|
|
9891
9891
|
}[];
|
|
9892
9892
|
}, {
|
|
9893
9893
|
total: number;
|
|
@@ -10800,7 +10800,7 @@ export declare const apiContract: {
|
|
|
10800
10800
|
telephonySignature: string | null;
|
|
10801
10801
|
};
|
|
10802
10802
|
} | null;
|
|
10803
|
-
|
|
10803
|
+
recordingFileUrl: string | null;
|
|
10804
10804
|
}[];
|
|
10805
10805
|
}>;
|
|
10806
10806
|
401: import("zod").ZodObject<{
|
|
@@ -50241,6 +50241,7 @@ export declare const ticketContract: {
|
|
|
50241
50241
|
page: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, number, string>>;
|
|
50242
50242
|
pageSize: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, number, string>>;
|
|
50243
50243
|
selectedDate: import("zod").ZodOptional<import("zod").ZodString>;
|
|
50244
|
+
ticketNumber: import("zod").ZodOptional<import("zod").ZodString>;
|
|
50244
50245
|
keyword: import("zod").ZodOptional<import("zod").ZodString>;
|
|
50245
50246
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
50246
50247
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -50270,6 +50271,7 @@ export declare const ticketContract: {
|
|
|
50270
50271
|
page?: number | undefined;
|
|
50271
50272
|
pageSize?: number | undefined;
|
|
50272
50273
|
selectedDate?: string | undefined;
|
|
50274
|
+
ticketNumber?: string | undefined;
|
|
50273
50275
|
keyword?: string | undefined;
|
|
50274
50276
|
title?: string | undefined;
|
|
50275
50277
|
description?: string | undefined;
|
|
@@ -50291,6 +50293,7 @@ export declare const ticketContract: {
|
|
|
50291
50293
|
page?: string | undefined;
|
|
50292
50294
|
pageSize?: string | undefined;
|
|
50293
50295
|
selectedDate?: string | undefined;
|
|
50296
|
+
ticketNumber?: string | undefined;
|
|
50294
50297
|
keyword?: string | undefined;
|
|
50295
50298
|
title?: string | undefined;
|
|
50296
50299
|
description?: string | undefined;
|
|
@@ -84793,7 +84796,6 @@ export declare const platformContract: {
|
|
|
84793
84796
|
channelId: string;
|
|
84794
84797
|
socialPlatformId: string;
|
|
84795
84798
|
}>;
|
|
84796
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
84797
84799
|
actor: import("zod").ZodObject<{
|
|
84798
84800
|
id: import("zod").ZodString;
|
|
84799
84801
|
createdAt: import("zod").ZodDate;
|
|
@@ -86082,6 +86084,7 @@ export declare const platformContract: {
|
|
|
86082
86084
|
deletedAt: Date | null;
|
|
86083
86085
|
isActive: boolean;
|
|
86084
86086
|
}>;
|
|
86087
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
86085
86088
|
}, "strip", import("zod").ZodTypeAny, {
|
|
86086
86089
|
id: string;
|
|
86087
86090
|
channel: {
|
|
@@ -86391,7 +86394,6 @@ export declare const platformContract: {
|
|
|
86391
86394
|
closedAt: Date;
|
|
86392
86395
|
lastMessageAt: Date | null;
|
|
86393
86396
|
isBotRoom: boolean;
|
|
86394
|
-
automationQueueId: string | null;
|
|
86395
86397
|
cxlog: {
|
|
86396
86398
|
id: string;
|
|
86397
86399
|
channel: string | null;
|
|
@@ -86470,6 +86472,7 @@ export declare const platformContract: {
|
|
|
86470
86472
|
deletedAt: Date | null;
|
|
86471
86473
|
isActive: boolean;
|
|
86472
86474
|
};
|
|
86475
|
+
automationQueueId: string | null;
|
|
86473
86476
|
}, {
|
|
86474
86477
|
id: string;
|
|
86475
86478
|
channel: {
|
|
@@ -86779,7 +86782,6 @@ export declare const platformContract: {
|
|
|
86779
86782
|
closedAt: Date;
|
|
86780
86783
|
lastMessageAt: Date | null;
|
|
86781
86784
|
isBotRoom: boolean;
|
|
86782
|
-
automationQueueId: string | null;
|
|
86783
86785
|
cxlog: {
|
|
86784
86786
|
id: string;
|
|
86785
86787
|
channel: string | null;
|
|
@@ -86858,6 +86860,7 @@ export declare const platformContract: {
|
|
|
86858
86860
|
deletedAt: Date | null;
|
|
86859
86861
|
isActive: boolean;
|
|
86860
86862
|
};
|
|
86863
|
+
automationQueueId: string | null;
|
|
86861
86864
|
}>;
|
|
86862
86865
|
platformMessageId: import("zod").ZodString;
|
|
86863
86866
|
workflowRule: import("zod").ZodObject<{
|
|
@@ -89165,7 +89168,6 @@ export declare const platformContract: {
|
|
|
89165
89168
|
channelId: string;
|
|
89166
89169
|
socialPlatformId: string;
|
|
89167
89170
|
}>;
|
|
89168
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
89169
89171
|
actor: import("zod").ZodObject<{
|
|
89170
89172
|
id: import("zod").ZodString;
|
|
89171
89173
|
createdAt: import("zod").ZodDate;
|
|
@@ -90454,6 +90456,7 @@ export declare const platformContract: {
|
|
|
90454
90456
|
deletedAt: Date | null;
|
|
90455
90457
|
isActive: boolean;
|
|
90456
90458
|
}>;
|
|
90459
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
90457
90460
|
}, "strip", import("zod").ZodTypeAny, {
|
|
90458
90461
|
id: string;
|
|
90459
90462
|
channel: {
|
|
@@ -90763,7 +90766,6 @@ export declare const platformContract: {
|
|
|
90763
90766
|
closedAt: Date;
|
|
90764
90767
|
lastMessageAt: Date | null;
|
|
90765
90768
|
isBotRoom: boolean;
|
|
90766
|
-
automationQueueId: string | null;
|
|
90767
90769
|
cxlog: {
|
|
90768
90770
|
id: string;
|
|
90769
90771
|
channel: string | null;
|
|
@@ -90842,6 +90844,7 @@ export declare const platformContract: {
|
|
|
90842
90844
|
deletedAt: Date | null;
|
|
90843
90845
|
isActive: boolean;
|
|
90844
90846
|
};
|
|
90847
|
+
automationQueueId: string | null;
|
|
90845
90848
|
}, {
|
|
90846
90849
|
id: string;
|
|
90847
90850
|
channel: {
|
|
@@ -91151,7 +91154,6 @@ export declare const platformContract: {
|
|
|
91151
91154
|
closedAt: Date;
|
|
91152
91155
|
lastMessageAt: Date | null;
|
|
91153
91156
|
isBotRoom: boolean;
|
|
91154
|
-
automationQueueId: string | null;
|
|
91155
91157
|
cxlog: {
|
|
91156
91158
|
id: string;
|
|
91157
91159
|
channel: string | null;
|
|
@@ -91230,6 +91232,7 @@ export declare const platformContract: {
|
|
|
91230
91232
|
deletedAt: Date | null;
|
|
91231
91233
|
isActive: boolean;
|
|
91232
91234
|
};
|
|
91235
|
+
automationQueueId: string | null;
|
|
91233
91236
|
}>;
|
|
91234
91237
|
upload: import("zod").ZodObject<{
|
|
91235
91238
|
id: import("zod").ZodString;
|
|
@@ -93312,7 +93315,6 @@ export declare const platformContract: {
|
|
|
93312
93315
|
closedAt: Date;
|
|
93313
93316
|
lastMessageAt: Date | null;
|
|
93314
93317
|
isBotRoom: boolean;
|
|
93315
|
-
automationQueueId: string | null;
|
|
93316
93318
|
cxlog: {
|
|
93317
93319
|
id: string;
|
|
93318
93320
|
channel: string | null;
|
|
@@ -93391,6 +93393,7 @@ export declare const platformContract: {
|
|
|
93391
93393
|
deletedAt: Date | null;
|
|
93392
93394
|
isActive: boolean;
|
|
93393
93395
|
};
|
|
93396
|
+
automationQueueId: string | null;
|
|
93394
93397
|
};
|
|
93395
93398
|
platformMessageId: string;
|
|
93396
93399
|
workflowRule: {
|
|
@@ -94037,7 +94040,6 @@ export declare const platformContract: {
|
|
|
94037
94040
|
closedAt: Date;
|
|
94038
94041
|
lastMessageAt: Date | null;
|
|
94039
94042
|
isBotRoom: boolean;
|
|
94040
|
-
automationQueueId: string | null;
|
|
94041
94043
|
cxlog: {
|
|
94042
94044
|
id: string;
|
|
94043
94045
|
channel: string | null;
|
|
@@ -94116,6 +94118,7 @@ export declare const platformContract: {
|
|
|
94116
94118
|
deletedAt: Date | null;
|
|
94117
94119
|
isActive: boolean;
|
|
94118
94120
|
};
|
|
94121
|
+
automationQueueId: string | null;
|
|
94119
94122
|
};
|
|
94120
94123
|
platformMessageId: string;
|
|
94121
94124
|
workflowRule: {
|
|
@@ -94763,7 +94766,6 @@ export declare const platformContract: {
|
|
|
94763
94766
|
closedAt: Date;
|
|
94764
94767
|
lastMessageAt: Date | null;
|
|
94765
94768
|
isBotRoom: boolean;
|
|
94766
|
-
automationQueueId: string | null;
|
|
94767
94769
|
cxlog: {
|
|
94768
94770
|
id: string;
|
|
94769
94771
|
channel: string | null;
|
|
@@ -94842,6 +94844,7 @@ export declare const platformContract: {
|
|
|
94842
94844
|
deletedAt: Date | null;
|
|
94843
94845
|
isActive: boolean;
|
|
94844
94846
|
};
|
|
94847
|
+
automationQueueId: string | null;
|
|
94845
94848
|
};
|
|
94846
94849
|
platformMessageId: string;
|
|
94847
94850
|
workflowRule: {
|
|
@@ -95488,7 +95491,6 @@ export declare const platformContract: {
|
|
|
95488
95491
|
closedAt: Date;
|
|
95489
95492
|
lastMessageAt: Date | null;
|
|
95490
95493
|
isBotRoom: boolean;
|
|
95491
|
-
automationQueueId: string | null;
|
|
95492
95494
|
cxlog: {
|
|
95493
95495
|
id: string;
|
|
95494
95496
|
channel: string | null;
|
|
@@ -95567,6 +95569,7 @@ export declare const platformContract: {
|
|
|
95567
95569
|
deletedAt: Date | null;
|
|
95568
95570
|
isActive: boolean;
|
|
95569
95571
|
};
|
|
95572
|
+
automationQueueId: string | null;
|
|
95570
95573
|
};
|
|
95571
95574
|
platformMessageId: string;
|
|
95572
95575
|
workflowRule: {
|
|
@@ -96214,7 +96217,6 @@ export declare const platformContract: {
|
|
|
96214
96217
|
closedAt: Date;
|
|
96215
96218
|
lastMessageAt: Date | null;
|
|
96216
96219
|
isBotRoom: boolean;
|
|
96217
|
-
automationQueueId: string | null;
|
|
96218
96220
|
cxlog: {
|
|
96219
96221
|
id: string;
|
|
96220
96222
|
channel: string | null;
|
|
@@ -96293,6 +96295,7 @@ export declare const platformContract: {
|
|
|
96293
96295
|
deletedAt: Date | null;
|
|
96294
96296
|
isActive: boolean;
|
|
96295
96297
|
};
|
|
96298
|
+
automationQueueId: string | null;
|
|
96296
96299
|
};
|
|
96297
96300
|
platformMessageId: string;
|
|
96298
96301
|
workflowRule: {
|
|
@@ -96939,7 +96942,6 @@ export declare const platformContract: {
|
|
|
96939
96942
|
closedAt: Date;
|
|
96940
96943
|
lastMessageAt: Date | null;
|
|
96941
96944
|
isBotRoom: boolean;
|
|
96942
|
-
automationQueueId: string | null;
|
|
96943
96945
|
cxlog: {
|
|
96944
96946
|
id: string;
|
|
96945
96947
|
channel: string | null;
|
|
@@ -97018,6 +97020,7 @@ export declare const platformContract: {
|
|
|
97018
97020
|
deletedAt: Date | null;
|
|
97019
97021
|
isActive: boolean;
|
|
97020
97022
|
};
|
|
97023
|
+
automationQueueId: string | null;
|
|
97021
97024
|
};
|
|
97022
97025
|
platformMessageId: string;
|
|
97023
97026
|
workflowRule: {
|
|
@@ -97667,7 +97670,6 @@ export declare const platformContract: {
|
|
|
97667
97670
|
closedAt: Date;
|
|
97668
97671
|
lastMessageAt: Date | null;
|
|
97669
97672
|
isBotRoom: boolean;
|
|
97670
|
-
automationQueueId: string | null;
|
|
97671
97673
|
cxlog: {
|
|
97672
97674
|
id: string;
|
|
97673
97675
|
channel: string | null;
|
|
@@ -97746,6 +97748,7 @@ export declare const platformContract: {
|
|
|
97746
97748
|
deletedAt: Date | null;
|
|
97747
97749
|
isActive: boolean;
|
|
97748
97750
|
};
|
|
97751
|
+
automationQueueId: string | null;
|
|
97749
97752
|
};
|
|
97750
97753
|
platformMessageId: string;
|
|
97751
97754
|
workflowRule: {
|
|
@@ -98392,7 +98395,6 @@ export declare const platformContract: {
|
|
|
98392
98395
|
closedAt: Date;
|
|
98393
98396
|
lastMessageAt: Date | null;
|
|
98394
98397
|
isBotRoom: boolean;
|
|
98395
|
-
automationQueueId: string | null;
|
|
98396
98398
|
cxlog: {
|
|
98397
98399
|
id: string;
|
|
98398
98400
|
channel: string | null;
|
|
@@ -98471,6 +98473,7 @@ export declare const platformContract: {
|
|
|
98471
98473
|
deletedAt: Date | null;
|
|
98472
98474
|
isActive: boolean;
|
|
98473
98475
|
};
|
|
98476
|
+
automationQueueId: string | null;
|
|
98474
98477
|
};
|
|
98475
98478
|
platformMessageId: string;
|
|
98476
98479
|
workflowRule: {
|
|
@@ -99121,7 +99124,6 @@ export declare const platformContract: {
|
|
|
99121
99124
|
closedAt: Date;
|
|
99122
99125
|
lastMessageAt: Date | null;
|
|
99123
99126
|
isBotRoom: boolean;
|
|
99124
|
-
automationQueueId: string | null;
|
|
99125
99127
|
cxlog: {
|
|
99126
99128
|
id: string;
|
|
99127
99129
|
channel: string | null;
|
|
@@ -99200,6 +99202,7 @@ export declare const platformContract: {
|
|
|
99200
99202
|
deletedAt: Date | null;
|
|
99201
99203
|
isActive: boolean;
|
|
99202
99204
|
};
|
|
99205
|
+
automationQueueId: string | null;
|
|
99203
99206
|
};
|
|
99204
99207
|
platformMessageId: string;
|
|
99205
99208
|
workflowRule: {
|
|
@@ -99846,7 +99849,6 @@ export declare const platformContract: {
|
|
|
99846
99849
|
closedAt: Date;
|
|
99847
99850
|
lastMessageAt: Date | null;
|
|
99848
99851
|
isBotRoom: boolean;
|
|
99849
|
-
automationQueueId: string | null;
|
|
99850
99852
|
cxlog: {
|
|
99851
99853
|
id: string;
|
|
99852
99854
|
channel: string | null;
|
|
@@ -99925,6 +99927,7 @@ export declare const platformContract: {
|
|
|
99925
99927
|
deletedAt: Date | null;
|
|
99926
99928
|
isActive: boolean;
|
|
99927
99929
|
};
|
|
99930
|
+
automationQueueId: string | null;
|
|
99928
99931
|
};
|
|
99929
99932
|
platformMessageId: string;
|
|
99930
99933
|
workflowRule: {
|
|
@@ -104623,7 +104626,6 @@ export declare const platformContract: {
|
|
|
104623
104626
|
channelId: string;
|
|
104624
104627
|
socialPlatformId: string;
|
|
104625
104628
|
}>;
|
|
104626
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
104627
104629
|
actor: import("zod").ZodObject<{
|
|
104628
104630
|
id: import("zod").ZodString;
|
|
104629
104631
|
createdAt: import("zod").ZodDate;
|
|
@@ -105912,6 +105914,7 @@ export declare const platformContract: {
|
|
|
105912
105914
|
deletedAt: Date | null;
|
|
105913
105915
|
isActive: boolean;
|
|
105914
105916
|
}>;
|
|
105917
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
105915
105918
|
}, "strip", import("zod").ZodTypeAny, {
|
|
105916
105919
|
id: string;
|
|
105917
105920
|
channel: {
|
|
@@ -106221,7 +106224,6 @@ export declare const platformContract: {
|
|
|
106221
106224
|
closedAt: Date;
|
|
106222
106225
|
lastMessageAt: Date | null;
|
|
106223
106226
|
isBotRoom: boolean;
|
|
106224
|
-
automationQueueId: string | null;
|
|
106225
106227
|
cxlog: {
|
|
106226
106228
|
id: string;
|
|
106227
106229
|
channel: string | null;
|
|
@@ -106300,6 +106302,7 @@ export declare const platformContract: {
|
|
|
106300
106302
|
deletedAt: Date | null;
|
|
106301
106303
|
isActive: boolean;
|
|
106302
106304
|
};
|
|
106305
|
+
automationQueueId: string | null;
|
|
106303
106306
|
}, {
|
|
106304
106307
|
id: string;
|
|
106305
106308
|
channel: {
|
|
@@ -106609,7 +106612,6 @@ export declare const platformContract: {
|
|
|
106609
106612
|
closedAt: Date;
|
|
106610
106613
|
lastMessageAt: Date | null;
|
|
106611
106614
|
isBotRoom: boolean;
|
|
106612
|
-
automationQueueId: string | null;
|
|
106613
106615
|
cxlog: {
|
|
106614
106616
|
id: string;
|
|
106615
106617
|
channel: string | null;
|
|
@@ -106688,6 +106690,7 @@ export declare const platformContract: {
|
|
|
106688
106690
|
deletedAt: Date | null;
|
|
106689
106691
|
isActive: boolean;
|
|
106690
106692
|
};
|
|
106693
|
+
automationQueueId: string | null;
|
|
106691
106694
|
}>;
|
|
106692
106695
|
platformMessageId: import("zod").ZodString;
|
|
106693
106696
|
workflowRule: import("zod").ZodObject<{
|
|
@@ -108995,7 +108998,6 @@ export declare const platformContract: {
|
|
|
108995
108998
|
channelId: string;
|
|
108996
108999
|
socialPlatformId: string;
|
|
108997
109000
|
}>;
|
|
108998
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
108999
109001
|
actor: import("zod").ZodObject<{
|
|
109000
109002
|
id: import("zod").ZodString;
|
|
109001
109003
|
createdAt: import("zod").ZodDate;
|
|
@@ -110284,6 +110286,7 @@ export declare const platformContract: {
|
|
|
110284
110286
|
deletedAt: Date | null;
|
|
110285
110287
|
isActive: boolean;
|
|
110286
110288
|
}>;
|
|
110289
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
110287
110290
|
}, "strip", import("zod").ZodTypeAny, {
|
|
110288
110291
|
id: string;
|
|
110289
110292
|
channel: {
|
|
@@ -110593,7 +110596,6 @@ export declare const platformContract: {
|
|
|
110593
110596
|
closedAt: Date;
|
|
110594
110597
|
lastMessageAt: Date | null;
|
|
110595
110598
|
isBotRoom: boolean;
|
|
110596
|
-
automationQueueId: string | null;
|
|
110597
110599
|
cxlog: {
|
|
110598
110600
|
id: string;
|
|
110599
110601
|
channel: string | null;
|
|
@@ -110672,6 +110674,7 @@ export declare const platformContract: {
|
|
|
110672
110674
|
deletedAt: Date | null;
|
|
110673
110675
|
isActive: boolean;
|
|
110674
110676
|
};
|
|
110677
|
+
automationQueueId: string | null;
|
|
110675
110678
|
}, {
|
|
110676
110679
|
id: string;
|
|
110677
110680
|
channel: {
|
|
@@ -110981,7 +110984,6 @@ export declare const platformContract: {
|
|
|
110981
110984
|
closedAt: Date;
|
|
110982
110985
|
lastMessageAt: Date | null;
|
|
110983
110986
|
isBotRoom: boolean;
|
|
110984
|
-
automationQueueId: string | null;
|
|
110985
110987
|
cxlog: {
|
|
110986
110988
|
id: string;
|
|
110987
110989
|
channel: string | null;
|
|
@@ -111060,6 +111062,7 @@ export declare const platformContract: {
|
|
|
111060
111062
|
deletedAt: Date | null;
|
|
111061
111063
|
isActive: boolean;
|
|
111062
111064
|
};
|
|
111065
|
+
automationQueueId: string | null;
|
|
111063
111066
|
}>;
|
|
111064
111067
|
upload: import("zod").ZodObject<{
|
|
111065
111068
|
id: import("zod").ZodString;
|
|
@@ -113142,7 +113145,6 @@ export declare const platformContract: {
|
|
|
113142
113145
|
closedAt: Date;
|
|
113143
113146
|
lastMessageAt: Date | null;
|
|
113144
113147
|
isBotRoom: boolean;
|
|
113145
|
-
automationQueueId: string | null;
|
|
113146
113148
|
cxlog: {
|
|
113147
113149
|
id: string;
|
|
113148
113150
|
channel: string | null;
|
|
@@ -113221,6 +113223,7 @@ export declare const platformContract: {
|
|
|
113221
113223
|
deletedAt: Date | null;
|
|
113222
113224
|
isActive: boolean;
|
|
113223
113225
|
};
|
|
113226
|
+
automationQueueId: string | null;
|
|
113224
113227
|
};
|
|
113225
113228
|
platformMessageId: string;
|
|
113226
113229
|
workflowRule: {
|
|
@@ -113867,7 +113870,6 @@ export declare const platformContract: {
|
|
|
113867
113870
|
closedAt: Date;
|
|
113868
113871
|
lastMessageAt: Date | null;
|
|
113869
113872
|
isBotRoom: boolean;
|
|
113870
|
-
automationQueueId: string | null;
|
|
113871
113873
|
cxlog: {
|
|
113872
113874
|
id: string;
|
|
113873
113875
|
channel: string | null;
|
|
@@ -113946,6 +113948,7 @@ export declare const platformContract: {
|
|
|
113946
113948
|
deletedAt: Date | null;
|
|
113947
113949
|
isActive: boolean;
|
|
113948
113950
|
};
|
|
113951
|
+
automationQueueId: string | null;
|
|
113949
113952
|
};
|
|
113950
113953
|
platformMessageId: string;
|
|
113951
113954
|
workflowRule: {
|
|
@@ -114593,7 +114596,6 @@ export declare const platformContract: {
|
|
|
114593
114596
|
closedAt: Date;
|
|
114594
114597
|
lastMessageAt: Date | null;
|
|
114595
114598
|
isBotRoom: boolean;
|
|
114596
|
-
automationQueueId: string | null;
|
|
114597
114599
|
cxlog: {
|
|
114598
114600
|
id: string;
|
|
114599
114601
|
channel: string | null;
|
|
@@ -114672,6 +114674,7 @@ export declare const platformContract: {
|
|
|
114672
114674
|
deletedAt: Date | null;
|
|
114673
114675
|
isActive: boolean;
|
|
114674
114676
|
};
|
|
114677
|
+
automationQueueId: string | null;
|
|
114675
114678
|
};
|
|
114676
114679
|
platformMessageId: string;
|
|
114677
114680
|
workflowRule: {
|
|
@@ -115318,7 +115321,6 @@ export declare const platformContract: {
|
|
|
115318
115321
|
closedAt: Date;
|
|
115319
115322
|
lastMessageAt: Date | null;
|
|
115320
115323
|
isBotRoom: boolean;
|
|
115321
|
-
automationQueueId: string | null;
|
|
115322
115324
|
cxlog: {
|
|
115323
115325
|
id: string;
|
|
115324
115326
|
channel: string | null;
|
|
@@ -115397,6 +115399,7 @@ export declare const platformContract: {
|
|
|
115397
115399
|
deletedAt: Date | null;
|
|
115398
115400
|
isActive: boolean;
|
|
115399
115401
|
};
|
|
115402
|
+
automationQueueId: string | null;
|
|
115400
115403
|
};
|
|
115401
115404
|
platformMessageId: string;
|
|
115402
115405
|
workflowRule: {
|
|
@@ -116044,7 +116047,6 @@ export declare const platformContract: {
|
|
|
116044
116047
|
closedAt: Date;
|
|
116045
116048
|
lastMessageAt: Date | null;
|
|
116046
116049
|
isBotRoom: boolean;
|
|
116047
|
-
automationQueueId: string | null;
|
|
116048
116050
|
cxlog: {
|
|
116049
116051
|
id: string;
|
|
116050
116052
|
channel: string | null;
|
|
@@ -116123,6 +116125,7 @@ export declare const platformContract: {
|
|
|
116123
116125
|
deletedAt: Date | null;
|
|
116124
116126
|
isActive: boolean;
|
|
116125
116127
|
};
|
|
116128
|
+
automationQueueId: string | null;
|
|
116126
116129
|
};
|
|
116127
116130
|
platformMessageId: string;
|
|
116128
116131
|
workflowRule: {
|
|
@@ -116769,7 +116772,6 @@ export declare const platformContract: {
|
|
|
116769
116772
|
closedAt: Date;
|
|
116770
116773
|
lastMessageAt: Date | null;
|
|
116771
116774
|
isBotRoom: boolean;
|
|
116772
|
-
automationQueueId: string | null;
|
|
116773
116775
|
cxlog: {
|
|
116774
116776
|
id: string;
|
|
116775
116777
|
channel: string | null;
|
|
@@ -116848,6 +116850,7 @@ export declare const platformContract: {
|
|
|
116848
116850
|
deletedAt: Date | null;
|
|
116849
116851
|
isActive: boolean;
|
|
116850
116852
|
};
|
|
116853
|
+
automationQueueId: string | null;
|
|
116851
116854
|
};
|
|
116852
116855
|
platformMessageId: string;
|
|
116853
116856
|
workflowRule: {
|
|
@@ -117497,7 +117500,6 @@ export declare const platformContract: {
|
|
|
117497
117500
|
closedAt: Date;
|
|
117498
117501
|
lastMessageAt: Date | null;
|
|
117499
117502
|
isBotRoom: boolean;
|
|
117500
|
-
automationQueueId: string | null;
|
|
117501
117503
|
cxlog: {
|
|
117502
117504
|
id: string;
|
|
117503
117505
|
channel: string | null;
|
|
@@ -117576,6 +117578,7 @@ export declare const platformContract: {
|
|
|
117576
117578
|
deletedAt: Date | null;
|
|
117577
117579
|
isActive: boolean;
|
|
117578
117580
|
};
|
|
117581
|
+
automationQueueId: string | null;
|
|
117579
117582
|
};
|
|
117580
117583
|
platformMessageId: string;
|
|
117581
117584
|
workflowRule: {
|
|
@@ -118222,7 +118225,6 @@ export declare const platformContract: {
|
|
|
118222
118225
|
closedAt: Date;
|
|
118223
118226
|
lastMessageAt: Date | null;
|
|
118224
118227
|
isBotRoom: boolean;
|
|
118225
|
-
automationQueueId: string | null;
|
|
118226
118228
|
cxlog: {
|
|
118227
118229
|
id: string;
|
|
118228
118230
|
channel: string | null;
|
|
@@ -118301,6 +118303,7 @@ export declare const platformContract: {
|
|
|
118301
118303
|
deletedAt: Date | null;
|
|
118302
118304
|
isActive: boolean;
|
|
118303
118305
|
};
|
|
118306
|
+
automationQueueId: string | null;
|
|
118304
118307
|
};
|
|
118305
118308
|
platformMessageId: string;
|
|
118306
118309
|
workflowRule: {
|
|
@@ -118951,7 +118954,6 @@ export declare const platformContract: {
|
|
|
118951
118954
|
closedAt: Date;
|
|
118952
118955
|
lastMessageAt: Date | null;
|
|
118953
118956
|
isBotRoom: boolean;
|
|
118954
|
-
automationQueueId: string | null;
|
|
118955
118957
|
cxlog: {
|
|
118956
118958
|
id: string;
|
|
118957
118959
|
channel: string | null;
|
|
@@ -119030,6 +119032,7 @@ export declare const platformContract: {
|
|
|
119030
119032
|
deletedAt: Date | null;
|
|
119031
119033
|
isActive: boolean;
|
|
119032
119034
|
};
|
|
119035
|
+
automationQueueId: string | null;
|
|
119033
119036
|
};
|
|
119034
119037
|
platformMessageId: string;
|
|
119035
119038
|
workflowRule: {
|
|
@@ -119676,7 +119679,6 @@ export declare const platformContract: {
|
|
|
119676
119679
|
closedAt: Date;
|
|
119677
119680
|
lastMessageAt: Date | null;
|
|
119678
119681
|
isBotRoom: boolean;
|
|
119679
|
-
automationQueueId: string | null;
|
|
119680
119682
|
cxlog: {
|
|
119681
119683
|
id: string;
|
|
119682
119684
|
channel: string | null;
|
|
@@ -119755,6 +119757,7 @@ export declare const platformContract: {
|
|
|
119755
119757
|
deletedAt: Date | null;
|
|
119756
119758
|
isActive: boolean;
|
|
119757
119759
|
};
|
|
119760
|
+
automationQueueId: string | null;
|
|
119758
119761
|
};
|
|
119759
119762
|
platformMessageId: string;
|
|
119760
119763
|
workflowRule: {
|
|
@@ -123161,7 +123164,6 @@ export declare const platformMessengerContract: {
|
|
|
123161
123164
|
channelId: string;
|
|
123162
123165
|
socialPlatformId: string;
|
|
123163
123166
|
}>;
|
|
123164
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
123165
123167
|
actor: import("zod").ZodObject<{
|
|
123166
123168
|
id: import("zod").ZodString;
|
|
123167
123169
|
createdAt: import("zod").ZodDate;
|
|
@@ -124450,6 +124452,7 @@ export declare const platformMessengerContract: {
|
|
|
124450
124452
|
deletedAt: Date | null;
|
|
124451
124453
|
isActive: boolean;
|
|
124452
124454
|
}>;
|
|
124455
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
124453
124456
|
}, "strip", import("zod").ZodTypeAny, {
|
|
124454
124457
|
id: string;
|
|
124455
124458
|
channel: {
|
|
@@ -124759,7 +124762,6 @@ export declare const platformMessengerContract: {
|
|
|
124759
124762
|
closedAt: Date;
|
|
124760
124763
|
lastMessageAt: Date | null;
|
|
124761
124764
|
isBotRoom: boolean;
|
|
124762
|
-
automationQueueId: string | null;
|
|
124763
124765
|
cxlog: {
|
|
124764
124766
|
id: string;
|
|
124765
124767
|
channel: string | null;
|
|
@@ -124838,6 +124840,7 @@ export declare const platformMessengerContract: {
|
|
|
124838
124840
|
deletedAt: Date | null;
|
|
124839
124841
|
isActive: boolean;
|
|
124840
124842
|
};
|
|
124843
|
+
automationQueueId: string | null;
|
|
124841
124844
|
}, {
|
|
124842
124845
|
id: string;
|
|
124843
124846
|
channel: {
|
|
@@ -125147,7 +125150,6 @@ export declare const platformMessengerContract: {
|
|
|
125147
125150
|
closedAt: Date;
|
|
125148
125151
|
lastMessageAt: Date | null;
|
|
125149
125152
|
isBotRoom: boolean;
|
|
125150
|
-
automationQueueId: string | null;
|
|
125151
125153
|
cxlog: {
|
|
125152
125154
|
id: string;
|
|
125153
125155
|
channel: string | null;
|
|
@@ -125226,6 +125228,7 @@ export declare const platformMessengerContract: {
|
|
|
125226
125228
|
deletedAt: Date | null;
|
|
125227
125229
|
isActive: boolean;
|
|
125228
125230
|
};
|
|
125231
|
+
automationQueueId: string | null;
|
|
125229
125232
|
}>;
|
|
125230
125233
|
platformMessageId: import("zod").ZodString;
|
|
125231
125234
|
workflowRule: import("zod").ZodObject<{
|
|
@@ -127533,7 +127536,6 @@ export declare const platformMessengerContract: {
|
|
|
127533
127536
|
channelId: string;
|
|
127534
127537
|
socialPlatformId: string;
|
|
127535
127538
|
}>;
|
|
127536
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
127537
127539
|
actor: import("zod").ZodObject<{
|
|
127538
127540
|
id: import("zod").ZodString;
|
|
127539
127541
|
createdAt: import("zod").ZodDate;
|
|
@@ -128822,6 +128824,7 @@ export declare const platformMessengerContract: {
|
|
|
128822
128824
|
deletedAt: Date | null;
|
|
128823
128825
|
isActive: boolean;
|
|
128824
128826
|
}>;
|
|
128827
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
128825
128828
|
}, "strip", import("zod").ZodTypeAny, {
|
|
128826
128829
|
id: string;
|
|
128827
128830
|
channel: {
|
|
@@ -129131,7 +129134,6 @@ export declare const platformMessengerContract: {
|
|
|
129131
129134
|
closedAt: Date;
|
|
129132
129135
|
lastMessageAt: Date | null;
|
|
129133
129136
|
isBotRoom: boolean;
|
|
129134
|
-
automationQueueId: string | null;
|
|
129135
129137
|
cxlog: {
|
|
129136
129138
|
id: string;
|
|
129137
129139
|
channel: string | null;
|
|
@@ -129210,6 +129212,7 @@ export declare const platformMessengerContract: {
|
|
|
129210
129212
|
deletedAt: Date | null;
|
|
129211
129213
|
isActive: boolean;
|
|
129212
129214
|
};
|
|
129215
|
+
automationQueueId: string | null;
|
|
129213
129216
|
}, {
|
|
129214
129217
|
id: string;
|
|
129215
129218
|
channel: {
|
|
@@ -129519,7 +129522,6 @@ export declare const platformMessengerContract: {
|
|
|
129519
129522
|
closedAt: Date;
|
|
129520
129523
|
lastMessageAt: Date | null;
|
|
129521
129524
|
isBotRoom: boolean;
|
|
129522
|
-
automationQueueId: string | null;
|
|
129523
129525
|
cxlog: {
|
|
129524
129526
|
id: string;
|
|
129525
129527
|
channel: string | null;
|
|
@@ -129598,6 +129600,7 @@ export declare const platformMessengerContract: {
|
|
|
129598
129600
|
deletedAt: Date | null;
|
|
129599
129601
|
isActive: boolean;
|
|
129600
129602
|
};
|
|
129603
|
+
automationQueueId: string | null;
|
|
129601
129604
|
}>;
|
|
129602
129605
|
upload: import("zod").ZodObject<{
|
|
129603
129606
|
id: import("zod").ZodString;
|
|
@@ -131680,7 +131683,6 @@ export declare const platformMessengerContract: {
|
|
|
131680
131683
|
closedAt: Date;
|
|
131681
131684
|
lastMessageAt: Date | null;
|
|
131682
131685
|
isBotRoom: boolean;
|
|
131683
|
-
automationQueueId: string | null;
|
|
131684
131686
|
cxlog: {
|
|
131685
131687
|
id: string;
|
|
131686
131688
|
channel: string | null;
|
|
@@ -131759,6 +131761,7 @@ export declare const platformMessengerContract: {
|
|
|
131759
131761
|
deletedAt: Date | null;
|
|
131760
131762
|
isActive: boolean;
|
|
131761
131763
|
};
|
|
131764
|
+
automationQueueId: string | null;
|
|
131762
131765
|
};
|
|
131763
131766
|
platformMessageId: string;
|
|
131764
131767
|
workflowRule: {
|
|
@@ -132405,7 +132408,6 @@ export declare const platformMessengerContract: {
|
|
|
132405
132408
|
closedAt: Date;
|
|
132406
132409
|
lastMessageAt: Date | null;
|
|
132407
132410
|
isBotRoom: boolean;
|
|
132408
|
-
automationQueueId: string | null;
|
|
132409
132411
|
cxlog: {
|
|
132410
132412
|
id: string;
|
|
132411
132413
|
channel: string | null;
|
|
@@ -132484,6 +132486,7 @@ export declare const platformMessengerContract: {
|
|
|
132484
132486
|
deletedAt: Date | null;
|
|
132485
132487
|
isActive: boolean;
|
|
132486
132488
|
};
|
|
132489
|
+
automationQueueId: string | null;
|
|
132487
132490
|
};
|
|
132488
132491
|
platformMessageId: string;
|
|
132489
132492
|
workflowRule: {
|
|
@@ -133131,7 +133134,6 @@ export declare const platformMessengerContract: {
|
|
|
133131
133134
|
closedAt: Date;
|
|
133132
133135
|
lastMessageAt: Date | null;
|
|
133133
133136
|
isBotRoom: boolean;
|
|
133134
|
-
automationQueueId: string | null;
|
|
133135
133137
|
cxlog: {
|
|
133136
133138
|
id: string;
|
|
133137
133139
|
channel: string | null;
|
|
@@ -133210,6 +133212,7 @@ export declare const platformMessengerContract: {
|
|
|
133210
133212
|
deletedAt: Date | null;
|
|
133211
133213
|
isActive: boolean;
|
|
133212
133214
|
};
|
|
133215
|
+
automationQueueId: string | null;
|
|
133213
133216
|
};
|
|
133214
133217
|
platformMessageId: string;
|
|
133215
133218
|
workflowRule: {
|
|
@@ -133856,7 +133859,6 @@ export declare const platformMessengerContract: {
|
|
|
133856
133859
|
closedAt: Date;
|
|
133857
133860
|
lastMessageAt: Date | null;
|
|
133858
133861
|
isBotRoom: boolean;
|
|
133859
|
-
automationQueueId: string | null;
|
|
133860
133862
|
cxlog: {
|
|
133861
133863
|
id: string;
|
|
133862
133864
|
channel: string | null;
|
|
@@ -133935,6 +133937,7 @@ export declare const platformMessengerContract: {
|
|
|
133935
133937
|
deletedAt: Date | null;
|
|
133936
133938
|
isActive: boolean;
|
|
133937
133939
|
};
|
|
133940
|
+
automationQueueId: string | null;
|
|
133938
133941
|
};
|
|
133939
133942
|
platformMessageId: string;
|
|
133940
133943
|
workflowRule: {
|
|
@@ -134582,7 +134585,6 @@ export declare const platformMessengerContract: {
|
|
|
134582
134585
|
closedAt: Date;
|
|
134583
134586
|
lastMessageAt: Date | null;
|
|
134584
134587
|
isBotRoom: boolean;
|
|
134585
|
-
automationQueueId: string | null;
|
|
134586
134588
|
cxlog: {
|
|
134587
134589
|
id: string;
|
|
134588
134590
|
channel: string | null;
|
|
@@ -134661,6 +134663,7 @@ export declare const platformMessengerContract: {
|
|
|
134661
134663
|
deletedAt: Date | null;
|
|
134662
134664
|
isActive: boolean;
|
|
134663
134665
|
};
|
|
134666
|
+
automationQueueId: string | null;
|
|
134664
134667
|
};
|
|
134665
134668
|
platformMessageId: string;
|
|
134666
134669
|
workflowRule: {
|
|
@@ -135307,7 +135310,6 @@ export declare const platformMessengerContract: {
|
|
|
135307
135310
|
closedAt: Date;
|
|
135308
135311
|
lastMessageAt: Date | null;
|
|
135309
135312
|
isBotRoom: boolean;
|
|
135310
|
-
automationQueueId: string | null;
|
|
135311
135313
|
cxlog: {
|
|
135312
135314
|
id: string;
|
|
135313
135315
|
channel: string | null;
|
|
@@ -135386,6 +135388,7 @@ export declare const platformMessengerContract: {
|
|
|
135386
135388
|
deletedAt: Date | null;
|
|
135387
135389
|
isActive: boolean;
|
|
135388
135390
|
};
|
|
135391
|
+
automationQueueId: string | null;
|
|
135389
135392
|
};
|
|
135390
135393
|
platformMessageId: string;
|
|
135391
135394
|
workflowRule: {
|
|
@@ -136035,7 +136038,6 @@ export declare const platformMessengerContract: {
|
|
|
136035
136038
|
closedAt: Date;
|
|
136036
136039
|
lastMessageAt: Date | null;
|
|
136037
136040
|
isBotRoom: boolean;
|
|
136038
|
-
automationQueueId: string | null;
|
|
136039
136041
|
cxlog: {
|
|
136040
136042
|
id: string;
|
|
136041
136043
|
channel: string | null;
|
|
@@ -136114,6 +136116,7 @@ export declare const platformMessengerContract: {
|
|
|
136114
136116
|
deletedAt: Date | null;
|
|
136115
136117
|
isActive: boolean;
|
|
136116
136118
|
};
|
|
136119
|
+
automationQueueId: string | null;
|
|
136117
136120
|
};
|
|
136118
136121
|
platformMessageId: string;
|
|
136119
136122
|
workflowRule: {
|
|
@@ -136760,7 +136763,6 @@ export declare const platformMessengerContract: {
|
|
|
136760
136763
|
closedAt: Date;
|
|
136761
136764
|
lastMessageAt: Date | null;
|
|
136762
136765
|
isBotRoom: boolean;
|
|
136763
|
-
automationQueueId: string | null;
|
|
136764
136766
|
cxlog: {
|
|
136765
136767
|
id: string;
|
|
136766
136768
|
channel: string | null;
|
|
@@ -136839,6 +136841,7 @@ export declare const platformMessengerContract: {
|
|
|
136839
136841
|
deletedAt: Date | null;
|
|
136840
136842
|
isActive: boolean;
|
|
136841
136843
|
};
|
|
136844
|
+
automationQueueId: string | null;
|
|
136842
136845
|
};
|
|
136843
136846
|
platformMessageId: string;
|
|
136844
136847
|
workflowRule: {
|
|
@@ -137489,7 +137492,6 @@ export declare const platformMessengerContract: {
|
|
|
137489
137492
|
closedAt: Date;
|
|
137490
137493
|
lastMessageAt: Date | null;
|
|
137491
137494
|
isBotRoom: boolean;
|
|
137492
|
-
automationQueueId: string | null;
|
|
137493
137495
|
cxlog: {
|
|
137494
137496
|
id: string;
|
|
137495
137497
|
channel: string | null;
|
|
@@ -137568,6 +137570,7 @@ export declare const platformMessengerContract: {
|
|
|
137568
137570
|
deletedAt: Date | null;
|
|
137569
137571
|
isActive: boolean;
|
|
137570
137572
|
};
|
|
137573
|
+
automationQueueId: string | null;
|
|
137571
137574
|
};
|
|
137572
137575
|
platformMessageId: string;
|
|
137573
137576
|
workflowRule: {
|
|
@@ -138214,7 +138217,6 @@ export declare const platformMessengerContract: {
|
|
|
138214
138217
|
closedAt: Date;
|
|
138215
138218
|
lastMessageAt: Date | null;
|
|
138216
138219
|
isBotRoom: boolean;
|
|
138217
|
-
automationQueueId: string | null;
|
|
138218
138220
|
cxlog: {
|
|
138219
138221
|
id: string;
|
|
138220
138222
|
channel: string | null;
|
|
@@ -138293,6 +138295,7 @@ export declare const platformMessengerContract: {
|
|
|
138293
138295
|
deletedAt: Date | null;
|
|
138294
138296
|
isActive: boolean;
|
|
138295
138297
|
};
|
|
138298
|
+
automationQueueId: string | null;
|
|
138296
138299
|
};
|
|
138297
138300
|
platformMessageId: string;
|
|
138298
138301
|
workflowRule: {
|
|
@@ -142576,7 +142579,6 @@ export declare const platformInstagramContract: {
|
|
|
142576
142579
|
channelId: string;
|
|
142577
142580
|
socialPlatformId: string;
|
|
142578
142581
|
}>;
|
|
142579
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
142580
142582
|
actor: import("zod").ZodObject<{
|
|
142581
142583
|
id: import("zod").ZodString;
|
|
142582
142584
|
createdAt: import("zod").ZodDate;
|
|
@@ -143865,6 +143867,7 @@ export declare const platformInstagramContract: {
|
|
|
143865
143867
|
deletedAt: Date | null;
|
|
143866
143868
|
isActive: boolean;
|
|
143867
143869
|
}>;
|
|
143870
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
143868
143871
|
}, "strip", import("zod").ZodTypeAny, {
|
|
143869
143872
|
id: string;
|
|
143870
143873
|
channel: {
|
|
@@ -144174,7 +144177,6 @@ export declare const platformInstagramContract: {
|
|
|
144174
144177
|
closedAt: Date;
|
|
144175
144178
|
lastMessageAt: Date | null;
|
|
144176
144179
|
isBotRoom: boolean;
|
|
144177
|
-
automationQueueId: string | null;
|
|
144178
144180
|
cxlog: {
|
|
144179
144181
|
id: string;
|
|
144180
144182
|
channel: string | null;
|
|
@@ -144253,6 +144255,7 @@ export declare const platformInstagramContract: {
|
|
|
144253
144255
|
deletedAt: Date | null;
|
|
144254
144256
|
isActive: boolean;
|
|
144255
144257
|
};
|
|
144258
|
+
automationQueueId: string | null;
|
|
144256
144259
|
}, {
|
|
144257
144260
|
id: string;
|
|
144258
144261
|
channel: {
|
|
@@ -144562,7 +144565,6 @@ export declare const platformInstagramContract: {
|
|
|
144562
144565
|
closedAt: Date;
|
|
144563
144566
|
lastMessageAt: Date | null;
|
|
144564
144567
|
isBotRoom: boolean;
|
|
144565
|
-
automationQueueId: string | null;
|
|
144566
144568
|
cxlog: {
|
|
144567
144569
|
id: string;
|
|
144568
144570
|
channel: string | null;
|
|
@@ -144641,6 +144643,7 @@ export declare const platformInstagramContract: {
|
|
|
144641
144643
|
deletedAt: Date | null;
|
|
144642
144644
|
isActive: boolean;
|
|
144643
144645
|
};
|
|
144646
|
+
automationQueueId: string | null;
|
|
144644
144647
|
}>;
|
|
144645
144648
|
platformMessageId: import("zod").ZodString;
|
|
144646
144649
|
workflowRule: import("zod").ZodObject<{
|
|
@@ -146948,7 +146951,6 @@ export declare const platformInstagramContract: {
|
|
|
146948
146951
|
channelId: string;
|
|
146949
146952
|
socialPlatformId: string;
|
|
146950
146953
|
}>;
|
|
146951
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
146952
146954
|
actor: import("zod").ZodObject<{
|
|
146953
146955
|
id: import("zod").ZodString;
|
|
146954
146956
|
createdAt: import("zod").ZodDate;
|
|
@@ -148237,6 +148239,7 @@ export declare const platformInstagramContract: {
|
|
|
148237
148239
|
deletedAt: Date | null;
|
|
148238
148240
|
isActive: boolean;
|
|
148239
148241
|
}>;
|
|
148242
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
148240
148243
|
}, "strip", import("zod").ZodTypeAny, {
|
|
148241
148244
|
id: string;
|
|
148242
148245
|
channel: {
|
|
@@ -148546,7 +148549,6 @@ export declare const platformInstagramContract: {
|
|
|
148546
148549
|
closedAt: Date;
|
|
148547
148550
|
lastMessageAt: Date | null;
|
|
148548
148551
|
isBotRoom: boolean;
|
|
148549
|
-
automationQueueId: string | null;
|
|
148550
148552
|
cxlog: {
|
|
148551
148553
|
id: string;
|
|
148552
148554
|
channel: string | null;
|
|
@@ -148625,6 +148627,7 @@ export declare const platformInstagramContract: {
|
|
|
148625
148627
|
deletedAt: Date | null;
|
|
148626
148628
|
isActive: boolean;
|
|
148627
148629
|
};
|
|
148630
|
+
automationQueueId: string | null;
|
|
148628
148631
|
}, {
|
|
148629
148632
|
id: string;
|
|
148630
148633
|
channel: {
|
|
@@ -148934,7 +148937,6 @@ export declare const platformInstagramContract: {
|
|
|
148934
148937
|
closedAt: Date;
|
|
148935
148938
|
lastMessageAt: Date | null;
|
|
148936
148939
|
isBotRoom: boolean;
|
|
148937
|
-
automationQueueId: string | null;
|
|
148938
148940
|
cxlog: {
|
|
148939
148941
|
id: string;
|
|
148940
148942
|
channel: string | null;
|
|
@@ -149013,6 +149015,7 @@ export declare const platformInstagramContract: {
|
|
|
149013
149015
|
deletedAt: Date | null;
|
|
149014
149016
|
isActive: boolean;
|
|
149015
149017
|
};
|
|
149018
|
+
automationQueueId: string | null;
|
|
149016
149019
|
}>;
|
|
149017
149020
|
upload: import("zod").ZodObject<{
|
|
149018
149021
|
id: import("zod").ZodString;
|
|
@@ -151095,7 +151098,6 @@ export declare const platformInstagramContract: {
|
|
|
151095
151098
|
closedAt: Date;
|
|
151096
151099
|
lastMessageAt: Date | null;
|
|
151097
151100
|
isBotRoom: boolean;
|
|
151098
|
-
automationQueueId: string | null;
|
|
151099
151101
|
cxlog: {
|
|
151100
151102
|
id: string;
|
|
151101
151103
|
channel: string | null;
|
|
@@ -151174,6 +151176,7 @@ export declare const platformInstagramContract: {
|
|
|
151174
151176
|
deletedAt: Date | null;
|
|
151175
151177
|
isActive: boolean;
|
|
151176
151178
|
};
|
|
151179
|
+
automationQueueId: string | null;
|
|
151177
151180
|
};
|
|
151178
151181
|
platformMessageId: string;
|
|
151179
151182
|
workflowRule: {
|
|
@@ -151820,7 +151823,6 @@ export declare const platformInstagramContract: {
|
|
|
151820
151823
|
closedAt: Date;
|
|
151821
151824
|
lastMessageAt: Date | null;
|
|
151822
151825
|
isBotRoom: boolean;
|
|
151823
|
-
automationQueueId: string | null;
|
|
151824
151826
|
cxlog: {
|
|
151825
151827
|
id: string;
|
|
151826
151828
|
channel: string | null;
|
|
@@ -151899,6 +151901,7 @@ export declare const platformInstagramContract: {
|
|
|
151899
151901
|
deletedAt: Date | null;
|
|
151900
151902
|
isActive: boolean;
|
|
151901
151903
|
};
|
|
151904
|
+
automationQueueId: string | null;
|
|
151902
151905
|
};
|
|
151903
151906
|
platformMessageId: string;
|
|
151904
151907
|
workflowRule: {
|
|
@@ -152546,7 +152549,6 @@ export declare const platformInstagramContract: {
|
|
|
152546
152549
|
closedAt: Date;
|
|
152547
152550
|
lastMessageAt: Date | null;
|
|
152548
152551
|
isBotRoom: boolean;
|
|
152549
|
-
automationQueueId: string | null;
|
|
152550
152552
|
cxlog: {
|
|
152551
152553
|
id: string;
|
|
152552
152554
|
channel: string | null;
|
|
@@ -152625,6 +152627,7 @@ export declare const platformInstagramContract: {
|
|
|
152625
152627
|
deletedAt: Date | null;
|
|
152626
152628
|
isActive: boolean;
|
|
152627
152629
|
};
|
|
152630
|
+
automationQueueId: string | null;
|
|
152628
152631
|
};
|
|
152629
152632
|
platformMessageId: string;
|
|
152630
152633
|
workflowRule: {
|
|
@@ -153271,7 +153274,6 @@ export declare const platformInstagramContract: {
|
|
|
153271
153274
|
closedAt: Date;
|
|
153272
153275
|
lastMessageAt: Date | null;
|
|
153273
153276
|
isBotRoom: boolean;
|
|
153274
|
-
automationQueueId: string | null;
|
|
153275
153277
|
cxlog: {
|
|
153276
153278
|
id: string;
|
|
153277
153279
|
channel: string | null;
|
|
@@ -153350,6 +153352,7 @@ export declare const platformInstagramContract: {
|
|
|
153350
153352
|
deletedAt: Date | null;
|
|
153351
153353
|
isActive: boolean;
|
|
153352
153354
|
};
|
|
153355
|
+
automationQueueId: string | null;
|
|
153353
153356
|
};
|
|
153354
153357
|
platformMessageId: string;
|
|
153355
153358
|
workflowRule: {
|
|
@@ -153997,7 +154000,6 @@ export declare const platformInstagramContract: {
|
|
|
153997
154000
|
closedAt: Date;
|
|
153998
154001
|
lastMessageAt: Date | null;
|
|
153999
154002
|
isBotRoom: boolean;
|
|
154000
|
-
automationQueueId: string | null;
|
|
154001
154003
|
cxlog: {
|
|
154002
154004
|
id: string;
|
|
154003
154005
|
channel: string | null;
|
|
@@ -154076,6 +154078,7 @@ export declare const platformInstagramContract: {
|
|
|
154076
154078
|
deletedAt: Date | null;
|
|
154077
154079
|
isActive: boolean;
|
|
154078
154080
|
};
|
|
154081
|
+
automationQueueId: string | null;
|
|
154079
154082
|
};
|
|
154080
154083
|
platformMessageId: string;
|
|
154081
154084
|
workflowRule: {
|
|
@@ -154722,7 +154725,6 @@ export declare const platformInstagramContract: {
|
|
|
154722
154725
|
closedAt: Date;
|
|
154723
154726
|
lastMessageAt: Date | null;
|
|
154724
154727
|
isBotRoom: boolean;
|
|
154725
|
-
automationQueueId: string | null;
|
|
154726
154728
|
cxlog: {
|
|
154727
154729
|
id: string;
|
|
154728
154730
|
channel: string | null;
|
|
@@ -154801,6 +154803,7 @@ export declare const platformInstagramContract: {
|
|
|
154801
154803
|
deletedAt: Date | null;
|
|
154802
154804
|
isActive: boolean;
|
|
154803
154805
|
};
|
|
154806
|
+
automationQueueId: string | null;
|
|
154804
154807
|
};
|
|
154805
154808
|
platformMessageId: string;
|
|
154806
154809
|
workflowRule: {
|
|
@@ -155450,7 +155453,6 @@ export declare const platformInstagramContract: {
|
|
|
155450
155453
|
closedAt: Date;
|
|
155451
155454
|
lastMessageAt: Date | null;
|
|
155452
155455
|
isBotRoom: boolean;
|
|
155453
|
-
automationQueueId: string | null;
|
|
155454
155456
|
cxlog: {
|
|
155455
155457
|
id: string;
|
|
155456
155458
|
channel: string | null;
|
|
@@ -155529,6 +155531,7 @@ export declare const platformInstagramContract: {
|
|
|
155529
155531
|
deletedAt: Date | null;
|
|
155530
155532
|
isActive: boolean;
|
|
155531
155533
|
};
|
|
155534
|
+
automationQueueId: string | null;
|
|
155532
155535
|
};
|
|
155533
155536
|
platformMessageId: string;
|
|
155534
155537
|
workflowRule: {
|
|
@@ -156175,7 +156178,6 @@ export declare const platformInstagramContract: {
|
|
|
156175
156178
|
closedAt: Date;
|
|
156176
156179
|
lastMessageAt: Date | null;
|
|
156177
156180
|
isBotRoom: boolean;
|
|
156178
|
-
automationQueueId: string | null;
|
|
156179
156181
|
cxlog: {
|
|
156180
156182
|
id: string;
|
|
156181
156183
|
channel: string | null;
|
|
@@ -156254,6 +156256,7 @@ export declare const platformInstagramContract: {
|
|
|
156254
156256
|
deletedAt: Date | null;
|
|
156255
156257
|
isActive: boolean;
|
|
156256
156258
|
};
|
|
156259
|
+
automationQueueId: string | null;
|
|
156257
156260
|
};
|
|
156258
156261
|
platformMessageId: string;
|
|
156259
156262
|
workflowRule: {
|
|
@@ -156904,7 +156907,6 @@ export declare const platformInstagramContract: {
|
|
|
156904
156907
|
closedAt: Date;
|
|
156905
156908
|
lastMessageAt: Date | null;
|
|
156906
156909
|
isBotRoom: boolean;
|
|
156907
|
-
automationQueueId: string | null;
|
|
156908
156910
|
cxlog: {
|
|
156909
156911
|
id: string;
|
|
156910
156912
|
channel: string | null;
|
|
@@ -156983,6 +156985,7 @@ export declare const platformInstagramContract: {
|
|
|
156983
156985
|
deletedAt: Date | null;
|
|
156984
156986
|
isActive: boolean;
|
|
156985
156987
|
};
|
|
156988
|
+
automationQueueId: string | null;
|
|
156986
156989
|
};
|
|
156987
156990
|
platformMessageId: string;
|
|
156988
156991
|
workflowRule: {
|
|
@@ -157629,7 +157632,6 @@ export declare const platformInstagramContract: {
|
|
|
157629
157632
|
closedAt: Date;
|
|
157630
157633
|
lastMessageAt: Date | null;
|
|
157631
157634
|
isBotRoom: boolean;
|
|
157632
|
-
automationQueueId: string | null;
|
|
157633
157635
|
cxlog: {
|
|
157634
157636
|
id: string;
|
|
157635
157637
|
channel: string | null;
|
|
@@ -157708,6 +157710,7 @@ export declare const platformInstagramContract: {
|
|
|
157708
157710
|
deletedAt: Date | null;
|
|
157709
157711
|
isActive: boolean;
|
|
157710
157712
|
};
|
|
157713
|
+
automationQueueId: string | null;
|
|
157711
157714
|
};
|
|
157712
157715
|
platformMessageId: string;
|
|
157713
157716
|
workflowRule: {
|
|
@@ -167346,7 +167349,6 @@ export declare const facebookFeedContract: {
|
|
|
167346
167349
|
channelId: string;
|
|
167347
167350
|
socialPlatformId: string;
|
|
167348
167351
|
}>;
|
|
167349
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
167350
167352
|
actor: import("zod").ZodObject<{
|
|
167351
167353
|
id: import("zod").ZodString;
|
|
167352
167354
|
createdAt: import("zod").ZodDate;
|
|
@@ -168635,6 +168637,7 @@ export declare const facebookFeedContract: {
|
|
|
168635
168637
|
deletedAt: Date | null;
|
|
168636
168638
|
isActive: boolean;
|
|
168637
168639
|
}>;
|
|
168640
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
168638
168641
|
}, "strip", import("zod").ZodTypeAny, {
|
|
168639
168642
|
id: string;
|
|
168640
168643
|
channel: {
|
|
@@ -168944,7 +168947,6 @@ export declare const facebookFeedContract: {
|
|
|
168944
168947
|
closedAt: Date;
|
|
168945
168948
|
lastMessageAt: Date | null;
|
|
168946
168949
|
isBotRoom: boolean;
|
|
168947
|
-
automationQueueId: string | null;
|
|
168948
168950
|
cxlog: {
|
|
168949
168951
|
id: string;
|
|
168950
168952
|
channel: string | null;
|
|
@@ -169023,6 +169025,7 @@ export declare const facebookFeedContract: {
|
|
|
169023
169025
|
deletedAt: Date | null;
|
|
169024
169026
|
isActive: boolean;
|
|
169025
169027
|
};
|
|
169028
|
+
automationQueueId: string | null;
|
|
169026
169029
|
}, {
|
|
169027
169030
|
id: string;
|
|
169028
169031
|
channel: {
|
|
@@ -169332,7 +169335,6 @@ export declare const facebookFeedContract: {
|
|
|
169332
169335
|
closedAt: Date;
|
|
169333
169336
|
lastMessageAt: Date | null;
|
|
169334
169337
|
isBotRoom: boolean;
|
|
169335
|
-
automationQueueId: string | null;
|
|
169336
169338
|
cxlog: {
|
|
169337
169339
|
id: string;
|
|
169338
169340
|
channel: string | null;
|
|
@@ -169411,6 +169413,7 @@ export declare const facebookFeedContract: {
|
|
|
169411
169413
|
deletedAt: Date | null;
|
|
169412
169414
|
isActive: boolean;
|
|
169413
169415
|
};
|
|
169416
|
+
automationQueueId: string | null;
|
|
169414
169417
|
}>;
|
|
169415
169418
|
platformMessageId: import("zod").ZodString;
|
|
169416
169419
|
workflowRule: import("zod").ZodObject<{
|
|
@@ -171718,7 +171721,6 @@ export declare const facebookFeedContract: {
|
|
|
171718
171721
|
channelId: string;
|
|
171719
171722
|
socialPlatformId: string;
|
|
171720
171723
|
}>;
|
|
171721
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
171722
171724
|
actor: import("zod").ZodObject<{
|
|
171723
171725
|
id: import("zod").ZodString;
|
|
171724
171726
|
createdAt: import("zod").ZodDate;
|
|
@@ -173007,6 +173009,7 @@ export declare const facebookFeedContract: {
|
|
|
173007
173009
|
deletedAt: Date | null;
|
|
173008
173010
|
isActive: boolean;
|
|
173009
173011
|
}>;
|
|
173012
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
173010
173013
|
}, "strip", import("zod").ZodTypeAny, {
|
|
173011
173014
|
id: string;
|
|
173012
173015
|
channel: {
|
|
@@ -173316,7 +173319,6 @@ export declare const facebookFeedContract: {
|
|
|
173316
173319
|
closedAt: Date;
|
|
173317
173320
|
lastMessageAt: Date | null;
|
|
173318
173321
|
isBotRoom: boolean;
|
|
173319
|
-
automationQueueId: string | null;
|
|
173320
173322
|
cxlog: {
|
|
173321
173323
|
id: string;
|
|
173322
173324
|
channel: string | null;
|
|
@@ -173395,6 +173397,7 @@ export declare const facebookFeedContract: {
|
|
|
173395
173397
|
deletedAt: Date | null;
|
|
173396
173398
|
isActive: boolean;
|
|
173397
173399
|
};
|
|
173400
|
+
automationQueueId: string | null;
|
|
173398
173401
|
}, {
|
|
173399
173402
|
id: string;
|
|
173400
173403
|
channel: {
|
|
@@ -173704,7 +173707,6 @@ export declare const facebookFeedContract: {
|
|
|
173704
173707
|
closedAt: Date;
|
|
173705
173708
|
lastMessageAt: Date | null;
|
|
173706
173709
|
isBotRoom: boolean;
|
|
173707
|
-
automationQueueId: string | null;
|
|
173708
173710
|
cxlog: {
|
|
173709
173711
|
id: string;
|
|
173710
173712
|
channel: string | null;
|
|
@@ -173783,6 +173785,7 @@ export declare const facebookFeedContract: {
|
|
|
173783
173785
|
deletedAt: Date | null;
|
|
173784
173786
|
isActive: boolean;
|
|
173785
173787
|
};
|
|
173788
|
+
automationQueueId: string | null;
|
|
173786
173789
|
}>;
|
|
173787
173790
|
upload: import("zod").ZodObject<{
|
|
173788
173791
|
id: import("zod").ZodString;
|
|
@@ -175865,7 +175868,6 @@ export declare const facebookFeedContract: {
|
|
|
175865
175868
|
closedAt: Date;
|
|
175866
175869
|
lastMessageAt: Date | null;
|
|
175867
175870
|
isBotRoom: boolean;
|
|
175868
|
-
automationQueueId: string | null;
|
|
175869
175871
|
cxlog: {
|
|
175870
175872
|
id: string;
|
|
175871
175873
|
channel: string | null;
|
|
@@ -175944,6 +175946,7 @@ export declare const facebookFeedContract: {
|
|
|
175944
175946
|
deletedAt: Date | null;
|
|
175945
175947
|
isActive: boolean;
|
|
175946
175948
|
};
|
|
175949
|
+
automationQueueId: string | null;
|
|
175947
175950
|
};
|
|
175948
175951
|
platformMessageId: string;
|
|
175949
175952
|
workflowRule: {
|
|
@@ -176590,7 +176593,6 @@ export declare const facebookFeedContract: {
|
|
|
176590
176593
|
closedAt: Date;
|
|
176591
176594
|
lastMessageAt: Date | null;
|
|
176592
176595
|
isBotRoom: boolean;
|
|
176593
|
-
automationQueueId: string | null;
|
|
176594
176596
|
cxlog: {
|
|
176595
176597
|
id: string;
|
|
176596
176598
|
channel: string | null;
|
|
@@ -176669,6 +176671,7 @@ export declare const facebookFeedContract: {
|
|
|
176669
176671
|
deletedAt: Date | null;
|
|
176670
176672
|
isActive: boolean;
|
|
176671
176673
|
};
|
|
176674
|
+
automationQueueId: string | null;
|
|
176672
176675
|
};
|
|
176673
176676
|
platformMessageId: string;
|
|
176674
176677
|
workflowRule: {
|
|
@@ -177316,7 +177319,6 @@ export declare const facebookFeedContract: {
|
|
|
177316
177319
|
closedAt: Date;
|
|
177317
177320
|
lastMessageAt: Date | null;
|
|
177318
177321
|
isBotRoom: boolean;
|
|
177319
|
-
automationQueueId: string | null;
|
|
177320
177322
|
cxlog: {
|
|
177321
177323
|
id: string;
|
|
177322
177324
|
channel: string | null;
|
|
@@ -177395,6 +177397,7 @@ export declare const facebookFeedContract: {
|
|
|
177395
177397
|
deletedAt: Date | null;
|
|
177396
177398
|
isActive: boolean;
|
|
177397
177399
|
};
|
|
177400
|
+
automationQueueId: string | null;
|
|
177398
177401
|
};
|
|
177399
177402
|
platformMessageId: string;
|
|
177400
177403
|
workflowRule: {
|
|
@@ -178041,7 +178044,6 @@ export declare const facebookFeedContract: {
|
|
|
178041
178044
|
closedAt: Date;
|
|
178042
178045
|
lastMessageAt: Date | null;
|
|
178043
178046
|
isBotRoom: boolean;
|
|
178044
|
-
automationQueueId: string | null;
|
|
178045
178047
|
cxlog: {
|
|
178046
178048
|
id: string;
|
|
178047
178049
|
channel: string | null;
|
|
@@ -178120,6 +178122,7 @@ export declare const facebookFeedContract: {
|
|
|
178120
178122
|
deletedAt: Date | null;
|
|
178121
178123
|
isActive: boolean;
|
|
178122
178124
|
};
|
|
178125
|
+
automationQueueId: string | null;
|
|
178123
178126
|
};
|
|
178124
178127
|
platformMessageId: string;
|
|
178125
178128
|
workflowRule: {
|
|
@@ -178767,7 +178770,6 @@ export declare const facebookFeedContract: {
|
|
|
178767
178770
|
closedAt: Date;
|
|
178768
178771
|
lastMessageAt: Date | null;
|
|
178769
178772
|
isBotRoom: boolean;
|
|
178770
|
-
automationQueueId: string | null;
|
|
178771
178773
|
cxlog: {
|
|
178772
178774
|
id: string;
|
|
178773
178775
|
channel: string | null;
|
|
@@ -178846,6 +178848,7 @@ export declare const facebookFeedContract: {
|
|
|
178846
178848
|
deletedAt: Date | null;
|
|
178847
178849
|
isActive: boolean;
|
|
178848
178850
|
};
|
|
178851
|
+
automationQueueId: string | null;
|
|
178849
178852
|
};
|
|
178850
178853
|
platformMessageId: string;
|
|
178851
178854
|
workflowRule: {
|
|
@@ -179492,7 +179495,6 @@ export declare const facebookFeedContract: {
|
|
|
179492
179495
|
closedAt: Date;
|
|
179493
179496
|
lastMessageAt: Date | null;
|
|
179494
179497
|
isBotRoom: boolean;
|
|
179495
|
-
automationQueueId: string | null;
|
|
179496
179498
|
cxlog: {
|
|
179497
179499
|
id: string;
|
|
179498
179500
|
channel: string | null;
|
|
@@ -179571,6 +179573,7 @@ export declare const facebookFeedContract: {
|
|
|
179571
179573
|
deletedAt: Date | null;
|
|
179572
179574
|
isActive: boolean;
|
|
179573
179575
|
};
|
|
179576
|
+
automationQueueId: string | null;
|
|
179574
179577
|
};
|
|
179575
179578
|
platformMessageId: string;
|
|
179576
179579
|
workflowRule: {
|
|
@@ -180220,7 +180223,6 @@ export declare const facebookFeedContract: {
|
|
|
180220
180223
|
closedAt: Date;
|
|
180221
180224
|
lastMessageAt: Date | null;
|
|
180222
180225
|
isBotRoom: boolean;
|
|
180223
|
-
automationQueueId: string | null;
|
|
180224
180226
|
cxlog: {
|
|
180225
180227
|
id: string;
|
|
180226
180228
|
channel: string | null;
|
|
@@ -180299,6 +180301,7 @@ export declare const facebookFeedContract: {
|
|
|
180299
180301
|
deletedAt: Date | null;
|
|
180300
180302
|
isActive: boolean;
|
|
180301
180303
|
};
|
|
180304
|
+
automationQueueId: string | null;
|
|
180302
180305
|
};
|
|
180303
180306
|
platformMessageId: string;
|
|
180304
180307
|
workflowRule: {
|
|
@@ -180945,7 +180948,6 @@ export declare const facebookFeedContract: {
|
|
|
180945
180948
|
closedAt: Date;
|
|
180946
180949
|
lastMessageAt: Date | null;
|
|
180947
180950
|
isBotRoom: boolean;
|
|
180948
|
-
automationQueueId: string | null;
|
|
180949
180951
|
cxlog: {
|
|
180950
180952
|
id: string;
|
|
180951
180953
|
channel: string | null;
|
|
@@ -181024,6 +181026,7 @@ export declare const facebookFeedContract: {
|
|
|
181024
181026
|
deletedAt: Date | null;
|
|
181025
181027
|
isActive: boolean;
|
|
181026
181028
|
};
|
|
181029
|
+
automationQueueId: string | null;
|
|
181027
181030
|
};
|
|
181028
181031
|
platformMessageId: string;
|
|
181029
181032
|
workflowRule: {
|
|
@@ -181674,7 +181677,6 @@ export declare const facebookFeedContract: {
|
|
|
181674
181677
|
closedAt: Date;
|
|
181675
181678
|
lastMessageAt: Date | null;
|
|
181676
181679
|
isBotRoom: boolean;
|
|
181677
|
-
automationQueueId: string | null;
|
|
181678
181680
|
cxlog: {
|
|
181679
181681
|
id: string;
|
|
181680
181682
|
channel: string | null;
|
|
@@ -181753,6 +181755,7 @@ export declare const facebookFeedContract: {
|
|
|
181753
181755
|
deletedAt: Date | null;
|
|
181754
181756
|
isActive: boolean;
|
|
181755
181757
|
};
|
|
181758
|
+
automationQueueId: string | null;
|
|
181756
181759
|
};
|
|
181757
181760
|
platformMessageId: string;
|
|
181758
181761
|
workflowRule: {
|
|
@@ -182399,7 +182402,6 @@ export declare const facebookFeedContract: {
|
|
|
182399
182402
|
closedAt: Date;
|
|
182400
182403
|
lastMessageAt: Date | null;
|
|
182401
182404
|
isBotRoom: boolean;
|
|
182402
|
-
automationQueueId: string | null;
|
|
182403
182405
|
cxlog: {
|
|
182404
182406
|
id: string;
|
|
182405
182407
|
channel: string | null;
|
|
@@ -182478,6 +182480,7 @@ export declare const facebookFeedContract: {
|
|
|
182478
182480
|
deletedAt: Date | null;
|
|
182479
182481
|
isActive: boolean;
|
|
182480
182482
|
};
|
|
182483
|
+
automationQueueId: string | null;
|
|
182481
182484
|
};
|
|
182482
182485
|
platformMessageId: string;
|
|
182483
182486
|
workflowRule: {
|
|
@@ -188020,7 +188023,6 @@ export declare const feedPostContract: {
|
|
|
188020
188023
|
channelId: string;
|
|
188021
188024
|
socialPlatformId: string;
|
|
188022
188025
|
}>;
|
|
188023
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
188024
188026
|
actor: import("zod").ZodObject<{
|
|
188025
188027
|
id: import("zod").ZodString;
|
|
188026
188028
|
createdAt: import("zod").ZodDate;
|
|
@@ -189309,6 +189311,7 @@ export declare const feedPostContract: {
|
|
|
189309
189311
|
deletedAt: Date | null;
|
|
189310
189312
|
isActive: boolean;
|
|
189311
189313
|
}>;
|
|
189314
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
189312
189315
|
}, "strip", import("zod").ZodTypeAny, {
|
|
189313
189316
|
id: string;
|
|
189314
189317
|
channel: {
|
|
@@ -189618,7 +189621,6 @@ export declare const feedPostContract: {
|
|
|
189618
189621
|
closedAt: Date;
|
|
189619
189622
|
lastMessageAt: Date | null;
|
|
189620
189623
|
isBotRoom: boolean;
|
|
189621
|
-
automationQueueId: string | null;
|
|
189622
189624
|
cxlog: {
|
|
189623
189625
|
id: string;
|
|
189624
189626
|
channel: string | null;
|
|
@@ -189697,6 +189699,7 @@ export declare const feedPostContract: {
|
|
|
189697
189699
|
deletedAt: Date | null;
|
|
189698
189700
|
isActive: boolean;
|
|
189699
189701
|
};
|
|
189702
|
+
automationQueueId: string | null;
|
|
189700
189703
|
}, {
|
|
189701
189704
|
id: string;
|
|
189702
189705
|
channel: {
|
|
@@ -190006,7 +190009,6 @@ export declare const feedPostContract: {
|
|
|
190006
190009
|
closedAt: Date;
|
|
190007
190010
|
lastMessageAt: Date | null;
|
|
190008
190011
|
isBotRoom: boolean;
|
|
190009
|
-
automationQueueId: string | null;
|
|
190010
190012
|
cxlog: {
|
|
190011
190013
|
id: string;
|
|
190012
190014
|
channel: string | null;
|
|
@@ -190085,6 +190087,7 @@ export declare const feedPostContract: {
|
|
|
190085
190087
|
deletedAt: Date | null;
|
|
190086
190088
|
isActive: boolean;
|
|
190087
190089
|
};
|
|
190090
|
+
automationQueueId: string | null;
|
|
190088
190091
|
}>;
|
|
190089
190092
|
platformMessageId: import("zod").ZodString;
|
|
190090
190093
|
workflowRule: import("zod").ZodObject<{
|
|
@@ -193439,7 +193442,6 @@ export declare const feedPostContract: {
|
|
|
193439
193442
|
channelId: string;
|
|
193440
193443
|
socialPlatformId: string;
|
|
193441
193444
|
}>;
|
|
193442
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
193443
193445
|
actor: import("zod").ZodObject<{
|
|
193444
193446
|
id: import("zod").ZodString;
|
|
193445
193447
|
createdAt: import("zod").ZodDate;
|
|
@@ -194728,6 +194730,7 @@ export declare const feedPostContract: {
|
|
|
194728
194730
|
deletedAt: Date | null;
|
|
194729
194731
|
isActive: boolean;
|
|
194730
194732
|
}>;
|
|
194733
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
194731
194734
|
}, "strip", import("zod").ZodTypeAny, {
|
|
194732
194735
|
id: string;
|
|
194733
194736
|
channel: {
|
|
@@ -195037,7 +195040,6 @@ export declare const feedPostContract: {
|
|
|
195037
195040
|
closedAt: Date;
|
|
195038
195041
|
lastMessageAt: Date | null;
|
|
195039
195042
|
isBotRoom: boolean;
|
|
195040
|
-
automationQueueId: string | null;
|
|
195041
195043
|
cxlog: {
|
|
195042
195044
|
id: string;
|
|
195043
195045
|
channel: string | null;
|
|
@@ -195116,6 +195118,7 @@ export declare const feedPostContract: {
|
|
|
195116
195118
|
deletedAt: Date | null;
|
|
195117
195119
|
isActive: boolean;
|
|
195118
195120
|
};
|
|
195121
|
+
automationQueueId: string | null;
|
|
195119
195122
|
}, {
|
|
195120
195123
|
id: string;
|
|
195121
195124
|
channel: {
|
|
@@ -195425,7 +195428,6 @@ export declare const feedPostContract: {
|
|
|
195425
195428
|
closedAt: Date;
|
|
195426
195429
|
lastMessageAt: Date | null;
|
|
195427
195430
|
isBotRoom: boolean;
|
|
195428
|
-
automationQueueId: string | null;
|
|
195429
195431
|
cxlog: {
|
|
195430
195432
|
id: string;
|
|
195431
195433
|
channel: string | null;
|
|
@@ -195504,6 +195506,7 @@ export declare const feedPostContract: {
|
|
|
195504
195506
|
deletedAt: Date | null;
|
|
195505
195507
|
isActive: boolean;
|
|
195506
195508
|
};
|
|
195509
|
+
automationQueueId: string | null;
|
|
195507
195510
|
}>;
|
|
195508
195511
|
upload: import("zod").ZodObject<{
|
|
195509
195512
|
id: import("zod").ZodString;
|
|
@@ -197586,7 +197589,6 @@ export declare const feedPostContract: {
|
|
|
197586
197589
|
closedAt: Date;
|
|
197587
197590
|
lastMessageAt: Date | null;
|
|
197588
197591
|
isBotRoom: boolean;
|
|
197589
|
-
automationQueueId: string | null;
|
|
197590
197592
|
cxlog: {
|
|
197591
197593
|
id: string;
|
|
197592
197594
|
channel: string | null;
|
|
@@ -197665,6 +197667,7 @@ export declare const feedPostContract: {
|
|
|
197665
197667
|
deletedAt: Date | null;
|
|
197666
197668
|
isActive: boolean;
|
|
197667
197669
|
};
|
|
197670
|
+
automationQueueId: string | null;
|
|
197668
197671
|
};
|
|
197669
197672
|
platformMessageId: string;
|
|
197670
197673
|
workflowRule: {
|
|
@@ -198311,7 +198314,6 @@ export declare const feedPostContract: {
|
|
|
198311
198314
|
closedAt: Date;
|
|
198312
198315
|
lastMessageAt: Date | null;
|
|
198313
198316
|
isBotRoom: boolean;
|
|
198314
|
-
automationQueueId: string | null;
|
|
198315
198317
|
cxlog: {
|
|
198316
198318
|
id: string;
|
|
198317
198319
|
channel: string | null;
|
|
@@ -198390,6 +198392,7 @@ export declare const feedPostContract: {
|
|
|
198390
198392
|
deletedAt: Date | null;
|
|
198391
198393
|
isActive: boolean;
|
|
198392
198394
|
};
|
|
198395
|
+
automationQueueId: string | null;
|
|
198393
198396
|
};
|
|
198394
198397
|
platformMessageId: string;
|
|
198395
198398
|
workflowRule: {
|
|
@@ -199043,7 +199046,6 @@ export declare const feedPostContract: {
|
|
|
199043
199046
|
closedAt: Date;
|
|
199044
199047
|
lastMessageAt: Date | null;
|
|
199045
199048
|
isBotRoom: boolean;
|
|
199046
|
-
automationQueueId: string | null;
|
|
199047
199049
|
cxlog: {
|
|
199048
199050
|
id: string;
|
|
199049
199051
|
channel: string | null;
|
|
@@ -199122,6 +199124,7 @@ export declare const feedPostContract: {
|
|
|
199122
199124
|
deletedAt: Date | null;
|
|
199123
199125
|
isActive: boolean;
|
|
199124
199126
|
};
|
|
199127
|
+
automationQueueId: string | null;
|
|
199125
199128
|
};
|
|
199126
199129
|
platformMessageId: string;
|
|
199127
199130
|
workflowRule: {
|
|
@@ -199763,7 +199766,6 @@ export declare const feedPostContract: {
|
|
|
199763
199766
|
closedAt: Date;
|
|
199764
199767
|
lastMessageAt: Date | null;
|
|
199765
199768
|
isBotRoom: boolean;
|
|
199766
|
-
automationQueueId: string | null;
|
|
199767
199769
|
cxlog: {
|
|
199768
199770
|
id: string;
|
|
199769
199771
|
channel: string | null;
|
|
@@ -199842,6 +199844,7 @@ export declare const feedPostContract: {
|
|
|
199842
199844
|
deletedAt: Date | null;
|
|
199843
199845
|
isActive: boolean;
|
|
199844
199846
|
};
|
|
199847
|
+
automationQueueId: string | null;
|
|
199845
199848
|
};
|
|
199846
199849
|
platformMessageId: string;
|
|
199847
199850
|
workflowRule: {
|
|
@@ -200621,7 +200624,6 @@ export declare const feedPostContract: {
|
|
|
200621
200624
|
closedAt: Date;
|
|
200622
200625
|
lastMessageAt: Date | null;
|
|
200623
200626
|
isBotRoom: boolean;
|
|
200624
|
-
automationQueueId: string | null;
|
|
200625
200627
|
cxlog: {
|
|
200626
200628
|
id: string;
|
|
200627
200629
|
channel: string | null;
|
|
@@ -200700,6 +200702,7 @@ export declare const feedPostContract: {
|
|
|
200700
200702
|
deletedAt: Date | null;
|
|
200701
200703
|
isActive: boolean;
|
|
200702
200704
|
};
|
|
200705
|
+
automationQueueId: string | null;
|
|
200703
200706
|
};
|
|
200704
200707
|
platformMessageId: string;
|
|
200705
200708
|
workflowRule: {
|
|
@@ -201341,7 +201344,6 @@ export declare const feedPostContract: {
|
|
|
201341
201344
|
closedAt: Date;
|
|
201342
201345
|
lastMessageAt: Date | null;
|
|
201343
201346
|
isBotRoom: boolean;
|
|
201344
|
-
automationQueueId: string | null;
|
|
201345
201347
|
cxlog: {
|
|
201346
201348
|
id: string;
|
|
201347
201349
|
channel: string | null;
|
|
@@ -201420,6 +201422,7 @@ export declare const feedPostContract: {
|
|
|
201420
201422
|
deletedAt: Date | null;
|
|
201421
201423
|
isActive: boolean;
|
|
201422
201424
|
};
|
|
201425
|
+
automationQueueId: string | null;
|
|
201423
201426
|
};
|
|
201424
201427
|
platformMessageId: string;
|
|
201425
201428
|
workflowRule: {
|
|
@@ -202201,7 +202204,6 @@ export declare const feedPostContract: {
|
|
|
202201
202204
|
closedAt: Date;
|
|
202202
202205
|
lastMessageAt: Date | null;
|
|
202203
202206
|
isBotRoom: boolean;
|
|
202204
|
-
automationQueueId: string | null;
|
|
202205
202207
|
cxlog: {
|
|
202206
202208
|
id: string;
|
|
202207
202209
|
channel: string | null;
|
|
@@ -202280,6 +202282,7 @@ export declare const feedPostContract: {
|
|
|
202280
202282
|
deletedAt: Date | null;
|
|
202281
202283
|
isActive: boolean;
|
|
202282
202284
|
};
|
|
202285
|
+
automationQueueId: string | null;
|
|
202283
202286
|
};
|
|
202284
202287
|
platformMessageId: string;
|
|
202285
202288
|
workflowRule: {
|
|
@@ -202921,7 +202924,6 @@ export declare const feedPostContract: {
|
|
|
202921
202924
|
closedAt: Date;
|
|
202922
202925
|
lastMessageAt: Date | null;
|
|
202923
202926
|
isBotRoom: boolean;
|
|
202924
|
-
automationQueueId: string | null;
|
|
202925
202927
|
cxlog: {
|
|
202926
202928
|
id: string;
|
|
202927
202929
|
channel: string | null;
|
|
@@ -203000,6 +203002,7 @@ export declare const feedPostContract: {
|
|
|
203000
203002
|
deletedAt: Date | null;
|
|
203001
203003
|
isActive: boolean;
|
|
203002
203004
|
};
|
|
203005
|
+
automationQueueId: string | null;
|
|
203003
203006
|
};
|
|
203004
203007
|
platformMessageId: string;
|
|
203005
203008
|
workflowRule: {
|
|
@@ -203785,7 +203788,6 @@ export declare const feedPostContract: {
|
|
|
203785
203788
|
closedAt: Date;
|
|
203786
203789
|
lastMessageAt: Date | null;
|
|
203787
203790
|
isBotRoom: boolean;
|
|
203788
|
-
automationQueueId: string | null;
|
|
203789
203791
|
cxlog: {
|
|
203790
203792
|
id: string;
|
|
203791
203793
|
channel: string | null;
|
|
@@ -203864,6 +203866,7 @@ export declare const feedPostContract: {
|
|
|
203864
203866
|
deletedAt: Date | null;
|
|
203865
203867
|
isActive: boolean;
|
|
203866
203868
|
};
|
|
203869
|
+
automationQueueId: string | null;
|
|
203867
203870
|
};
|
|
203868
203871
|
platformMessageId: string;
|
|
203869
203872
|
workflowRule: {
|
|
@@ -204505,7 +204508,6 @@ export declare const feedPostContract: {
|
|
|
204505
204508
|
closedAt: Date;
|
|
204506
204509
|
lastMessageAt: Date | null;
|
|
204507
204510
|
isBotRoom: boolean;
|
|
204508
|
-
automationQueueId: string | null;
|
|
204509
204511
|
cxlog: {
|
|
204510
204512
|
id: string;
|
|
204511
204513
|
channel: string | null;
|
|
@@ -204584,6 +204586,7 @@ export declare const feedPostContract: {
|
|
|
204584
204586
|
deletedAt: Date | null;
|
|
204585
204587
|
isActive: boolean;
|
|
204586
204588
|
};
|
|
204589
|
+
automationQueueId: string | null;
|
|
204587
204590
|
};
|
|
204588
204591
|
platformMessageId: string;
|
|
204589
204592
|
workflowRule: {
|
|
@@ -224695,7 +224698,6 @@ export declare const workflowContract: {
|
|
|
224695
224698
|
channelId: string;
|
|
224696
224699
|
socialPlatformId: string;
|
|
224697
224700
|
}>;
|
|
224698
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
224699
224701
|
actor: import("zod").ZodObject<{
|
|
224700
224702
|
id: import("zod").ZodString;
|
|
224701
224703
|
createdAt: import("zod").ZodDate;
|
|
@@ -225984,6 +225986,7 @@ export declare const workflowContract: {
|
|
|
225984
225986
|
deletedAt: Date | null;
|
|
225985
225987
|
isActive: boolean;
|
|
225986
225988
|
}>;
|
|
225989
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
225987
225990
|
}, "strip", import("zod").ZodTypeAny, {
|
|
225988
225991
|
id: string;
|
|
225989
225992
|
channel: {
|
|
@@ -226293,7 +226296,6 @@ export declare const workflowContract: {
|
|
|
226293
226296
|
closedAt: Date;
|
|
226294
226297
|
lastMessageAt: Date | null;
|
|
226295
226298
|
isBotRoom: boolean;
|
|
226296
|
-
automationQueueId: string | null;
|
|
226297
226299
|
cxlog: {
|
|
226298
226300
|
id: string;
|
|
226299
226301
|
channel: string | null;
|
|
@@ -226372,6 +226374,7 @@ export declare const workflowContract: {
|
|
|
226372
226374
|
deletedAt: Date | null;
|
|
226373
226375
|
isActive: boolean;
|
|
226374
226376
|
};
|
|
226377
|
+
automationQueueId: string | null;
|
|
226375
226378
|
}, {
|
|
226376
226379
|
id: string;
|
|
226377
226380
|
channel: {
|
|
@@ -226681,7 +226684,6 @@ export declare const workflowContract: {
|
|
|
226681
226684
|
closedAt: Date;
|
|
226682
226685
|
lastMessageAt: Date | null;
|
|
226683
226686
|
isBotRoom: boolean;
|
|
226684
|
-
automationQueueId: string | null;
|
|
226685
226687
|
cxlog: {
|
|
226686
226688
|
id: string;
|
|
226687
226689
|
channel: string | null;
|
|
@@ -226760,6 +226762,7 @@ export declare const workflowContract: {
|
|
|
226760
226762
|
deletedAt: Date | null;
|
|
226761
226763
|
isActive: boolean;
|
|
226762
226764
|
};
|
|
226765
|
+
automationQueueId: string | null;
|
|
226763
226766
|
}>;
|
|
226764
226767
|
}, "strip", import("zod").ZodTypeAny, {
|
|
226765
226768
|
data: {
|
|
@@ -227071,7 +227074,6 @@ export declare const workflowContract: {
|
|
|
227071
227074
|
closedAt: Date;
|
|
227072
227075
|
lastMessageAt: Date | null;
|
|
227073
227076
|
isBotRoom: boolean;
|
|
227074
|
-
automationQueueId: string | null;
|
|
227075
227077
|
cxlog: {
|
|
227076
227078
|
id: string;
|
|
227077
227079
|
channel: string | null;
|
|
@@ -227150,6 +227152,7 @@ export declare const workflowContract: {
|
|
|
227150
227152
|
deletedAt: Date | null;
|
|
227151
227153
|
isActive: boolean;
|
|
227152
227154
|
};
|
|
227155
|
+
automationQueueId: string | null;
|
|
227153
227156
|
};
|
|
227154
227157
|
requestId: string;
|
|
227155
227158
|
}, {
|
|
@@ -227462,7 +227465,6 @@ export declare const workflowContract: {
|
|
|
227462
227465
|
closedAt: Date;
|
|
227463
227466
|
lastMessageAt: Date | null;
|
|
227464
227467
|
isBotRoom: boolean;
|
|
227465
|
-
automationQueueId: string | null;
|
|
227466
227468
|
cxlog: {
|
|
227467
227469
|
id: string;
|
|
227468
227470
|
channel: string | null;
|
|
@@ -227541,6 +227543,7 @@ export declare const workflowContract: {
|
|
|
227541
227543
|
deletedAt: Date | null;
|
|
227542
227544
|
isActive: boolean;
|
|
227543
227545
|
};
|
|
227546
|
+
automationQueueId: string | null;
|
|
227544
227547
|
};
|
|
227545
227548
|
requestId: string;
|
|
227546
227549
|
}>;
|
|
@@ -229493,7 +229496,6 @@ export declare const workflowContract: {
|
|
|
229493
229496
|
closedAt: import("zod").ZodDate;
|
|
229494
229497
|
lastMessageAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
229495
229498
|
isBotRoom: import("zod").ZodBoolean;
|
|
229496
|
-
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
229497
229499
|
cxlog: import("zod").ZodObject<{
|
|
229498
229500
|
id: import("zod").ZodString;
|
|
229499
229501
|
createdAt: import("zod").ZodDate;
|
|
@@ -229938,6 +229940,7 @@ export declare const workflowContract: {
|
|
|
229938
229940
|
deletedAt: Date | null;
|
|
229939
229941
|
isActive: boolean;
|
|
229940
229942
|
}>;
|
|
229943
|
+
automationQueueId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
229941
229944
|
solveMessage: import("zod").ZodString;
|
|
229942
229945
|
}, "strip", import("zod").ZodTypeAny, {
|
|
229943
229946
|
id: string;
|
|
@@ -230248,7 +230251,6 @@ export declare const workflowContract: {
|
|
|
230248
230251
|
closedAt: Date;
|
|
230249
230252
|
lastMessageAt: Date | null;
|
|
230250
230253
|
isBotRoom: boolean;
|
|
230251
|
-
automationQueueId: string | null;
|
|
230252
230254
|
cxlog: {
|
|
230253
230255
|
id: string;
|
|
230254
230256
|
channel: string | null;
|
|
@@ -230327,6 +230329,7 @@ export declare const workflowContract: {
|
|
|
230327
230329
|
deletedAt: Date | null;
|
|
230328
230330
|
isActive: boolean;
|
|
230329
230331
|
};
|
|
230332
|
+
automationQueueId: string | null;
|
|
230330
230333
|
solveMessage: string;
|
|
230331
230334
|
}, {
|
|
230332
230335
|
id: string;
|
|
@@ -230637,7 +230640,6 @@ export declare const workflowContract: {
|
|
|
230637
230640
|
closedAt: Date;
|
|
230638
230641
|
lastMessageAt: Date | null;
|
|
230639
230642
|
isBotRoom: boolean;
|
|
230640
|
-
automationQueueId: string | null;
|
|
230641
230643
|
cxlog: {
|
|
230642
230644
|
id: string;
|
|
230643
230645
|
channel: string | null;
|
|
@@ -230716,6 +230718,7 @@ export declare const workflowContract: {
|
|
|
230716
230718
|
deletedAt: Date | null;
|
|
230717
230719
|
isActive: boolean;
|
|
230718
230720
|
};
|
|
230721
|
+
automationQueueId: string | null;
|
|
230719
230722
|
solveMessage: string;
|
|
230720
230723
|
}>;
|
|
230721
230724
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -231028,7 +231031,6 @@ export declare const workflowContract: {
|
|
|
231028
231031
|
closedAt: Date;
|
|
231029
231032
|
lastMessageAt: Date | null;
|
|
231030
231033
|
isBotRoom: boolean;
|
|
231031
|
-
automationQueueId: string | null;
|
|
231032
231034
|
cxlog: {
|
|
231033
231035
|
id: string;
|
|
231034
231036
|
channel: string | null;
|
|
@@ -231107,6 +231109,7 @@ export declare const workflowContract: {
|
|
|
231107
231109
|
deletedAt: Date | null;
|
|
231108
231110
|
isActive: boolean;
|
|
231109
231111
|
};
|
|
231112
|
+
automationQueueId: string | null;
|
|
231110
231113
|
solveMessage: string;
|
|
231111
231114
|
};
|
|
231112
231115
|
requestId: string;
|
|
@@ -231420,7 +231423,6 @@ export declare const workflowContract: {
|
|
|
231420
231423
|
closedAt: Date;
|
|
231421
231424
|
lastMessageAt: Date | null;
|
|
231422
231425
|
isBotRoom: boolean;
|
|
231423
|
-
automationQueueId: string | null;
|
|
231424
231426
|
cxlog: {
|
|
231425
231427
|
id: string;
|
|
231426
231428
|
channel: string | null;
|
|
@@ -231499,6 +231501,7 @@ export declare const workflowContract: {
|
|
|
231499
231501
|
deletedAt: Date | null;
|
|
231500
231502
|
isActive: boolean;
|
|
231501
231503
|
};
|
|
231504
|
+
automationQueueId: string | null;
|
|
231502
231505
|
solveMessage: string;
|
|
231503
231506
|
};
|
|
231504
231507
|
requestId: string;
|