@kl1/contracts 1.3.57 → 1.3.60
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 +116 -0
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +25 -0
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +16 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +249 -0
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +16 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +1 -0
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +16 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/invoice/index.d.ts +106 -0
- package/dist/api-contracts/src/invoice/index.d.ts.map +1 -0
- package/dist/api-contracts/src/invoice/schema.d.ts +48 -0
- package/dist/api-contracts/src/invoice/schema.d.ts.map +1 -0
- package/dist/api-contracts/src/line/index.d.ts +16 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +6 -6
- package/dist/api-contracts/src/mail/mail-server-contract.d.ts +6 -6
- package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +2 -2
- package/dist/api-contracts/src/messenger/index.d.ts +16 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +16 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/user/index.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +16 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +16 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +16 -0
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +17 -0
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/index.js +682 -627
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +681 -627
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -41402,6 +41402,110 @@ export declare const apiContract: {
|
|
|
41402
41402
|
path: "ms/bots/";
|
|
41403
41403
|
};
|
|
41404
41404
|
};
|
|
41405
|
+
invoice: {
|
|
41406
|
+
getInvoices: {
|
|
41407
|
+
method: "GET";
|
|
41408
|
+
query: null;
|
|
41409
|
+
responses: {
|
|
41410
|
+
200: import("zod").ZodObject<{
|
|
41411
|
+
requestId: import("zod").ZodString;
|
|
41412
|
+
invoices: import("zod").ZodArray<import("zod").ZodObject<{
|
|
41413
|
+
id: import("zod").ZodString;
|
|
41414
|
+
createdAt: import("zod").ZodDate;
|
|
41415
|
+
updatedAt: import("zod").ZodDate;
|
|
41416
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
|
41417
|
+
invoiceId: import("zod").ZodString;
|
|
41418
|
+
amountPaid: import("zod").ZodNumber;
|
|
41419
|
+
billingReason: import("zod").ZodString;
|
|
41420
|
+
collectionMethod: import("zod").ZodString;
|
|
41421
|
+
created: import("zod").ZodNumber;
|
|
41422
|
+
currency: import("zod").ZodString;
|
|
41423
|
+
hostedInvoiceUrl: import("zod").ZodString;
|
|
41424
|
+
invoicePdf: import("zod").ZodString;
|
|
41425
|
+
number: import("zod").ZodString;
|
|
41426
|
+
paid: import("zod").ZodBoolean;
|
|
41427
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
41428
|
+
number: string;
|
|
41429
|
+
currency: string;
|
|
41430
|
+
id: string;
|
|
41431
|
+
createdAt: Date;
|
|
41432
|
+
updatedAt: Date;
|
|
41433
|
+
deletedAt: Date | null;
|
|
41434
|
+
invoiceId: string;
|
|
41435
|
+
amountPaid: number;
|
|
41436
|
+
billingReason: string;
|
|
41437
|
+
collectionMethod: string;
|
|
41438
|
+
created: number;
|
|
41439
|
+
hostedInvoiceUrl: string;
|
|
41440
|
+
invoicePdf: string;
|
|
41441
|
+
paid: boolean;
|
|
41442
|
+
}, {
|
|
41443
|
+
number: string;
|
|
41444
|
+
currency: string;
|
|
41445
|
+
id: string;
|
|
41446
|
+
createdAt: Date;
|
|
41447
|
+
updatedAt: Date;
|
|
41448
|
+
deletedAt: Date | null;
|
|
41449
|
+
invoiceId: string;
|
|
41450
|
+
amountPaid: number;
|
|
41451
|
+
billingReason: string;
|
|
41452
|
+
collectionMethod: string;
|
|
41453
|
+
created: number;
|
|
41454
|
+
hostedInvoiceUrl: string;
|
|
41455
|
+
invoicePdf: string;
|
|
41456
|
+
paid: boolean;
|
|
41457
|
+
}>, "many">;
|
|
41458
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
41459
|
+
requestId: string;
|
|
41460
|
+
invoices: {
|
|
41461
|
+
number: string;
|
|
41462
|
+
currency: string;
|
|
41463
|
+
id: string;
|
|
41464
|
+
createdAt: Date;
|
|
41465
|
+
updatedAt: Date;
|
|
41466
|
+
deletedAt: Date | null;
|
|
41467
|
+
invoiceId: string;
|
|
41468
|
+
amountPaid: number;
|
|
41469
|
+
billingReason: string;
|
|
41470
|
+
collectionMethod: string;
|
|
41471
|
+
created: number;
|
|
41472
|
+
hostedInvoiceUrl: string;
|
|
41473
|
+
invoicePdf: string;
|
|
41474
|
+
paid: boolean;
|
|
41475
|
+
}[];
|
|
41476
|
+
}, {
|
|
41477
|
+
requestId: string;
|
|
41478
|
+
invoices: {
|
|
41479
|
+
number: string;
|
|
41480
|
+
currency: string;
|
|
41481
|
+
id: string;
|
|
41482
|
+
createdAt: Date;
|
|
41483
|
+
updatedAt: Date;
|
|
41484
|
+
deletedAt: Date | null;
|
|
41485
|
+
invoiceId: string;
|
|
41486
|
+
amountPaid: number;
|
|
41487
|
+
billingReason: string;
|
|
41488
|
+
collectionMethod: string;
|
|
41489
|
+
created: number;
|
|
41490
|
+
hostedInvoiceUrl: string;
|
|
41491
|
+
invoicePdf: string;
|
|
41492
|
+
paid: boolean;
|
|
41493
|
+
}[];
|
|
41494
|
+
}>;
|
|
41495
|
+
500: import("zod").ZodObject<{
|
|
41496
|
+
message: import("zod").ZodString;
|
|
41497
|
+
error: import("zod").ZodAny;
|
|
41498
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
41499
|
+
message: string;
|
|
41500
|
+
error?: any;
|
|
41501
|
+
}, {
|
|
41502
|
+
message: string;
|
|
41503
|
+
error?: any;
|
|
41504
|
+
}>;
|
|
41505
|
+
};
|
|
41506
|
+
path: "ms/invoices/";
|
|
41507
|
+
};
|
|
41508
|
+
};
|
|
41405
41509
|
};
|
|
41406
41510
|
export declare const contactContract: {
|
|
41407
41511
|
contact: {
|
|
@@ -91333,6 +91437,7 @@ export declare const platformContract: {
|
|
|
91333
91437
|
firstResponseTime: import("zod").ZodNumber;
|
|
91334
91438
|
isLatest: import("zod").ZodBoolean;
|
|
91335
91439
|
isBotRoom: import("zod").ZodBoolean;
|
|
91440
|
+
metadata: import("zod").ZodAny;
|
|
91336
91441
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
91337
91442
|
platformContact: import("zod").ZodObject<{
|
|
91338
91443
|
id: import("zod").ZodString;
|
|
@@ -94371,6 +94476,7 @@ export declare const platformContract: {
|
|
|
94371
94476
|
resumeLabel: {
|
|
94372
94477
|
name: string;
|
|
94373
94478
|
};
|
|
94479
|
+
metadata?: any;
|
|
94374
94480
|
automationQueueId?: string | null | undefined;
|
|
94375
94481
|
}, {
|
|
94376
94482
|
id: string;
|
|
@@ -94807,6 +94913,7 @@ export declare const platformContract: {
|
|
|
94807
94913
|
resumeLabel: {
|
|
94808
94914
|
name: string;
|
|
94809
94915
|
};
|
|
94916
|
+
metadata?: any;
|
|
94810
94917
|
automationQueueId?: string | null | undefined;
|
|
94811
94918
|
}>;
|
|
94812
94919
|
platformMessageId: import("zod").ZodString;
|
|
@@ -96067,6 +96174,7 @@ export declare const platformContract: {
|
|
|
96067
96174
|
firstResponseTime: import("zod").ZodNumber;
|
|
96068
96175
|
isLatest: import("zod").ZodBoolean;
|
|
96069
96176
|
isBotRoom: import("zod").ZodBoolean;
|
|
96177
|
+
metadata: import("zod").ZodAny;
|
|
96070
96178
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
96071
96179
|
platformContact: import("zod").ZodObject<{
|
|
96072
96180
|
id: import("zod").ZodString;
|
|
@@ -99105,6 +99213,7 @@ export declare const platformContract: {
|
|
|
99105
99213
|
resumeLabel: {
|
|
99106
99214
|
name: string;
|
|
99107
99215
|
};
|
|
99216
|
+
metadata?: any;
|
|
99108
99217
|
automationQueueId?: string | null | undefined;
|
|
99109
99218
|
}, {
|
|
99110
99219
|
id: string;
|
|
@@ -99541,6 +99650,7 @@ export declare const platformContract: {
|
|
|
99541
99650
|
resumeLabel: {
|
|
99542
99651
|
name: string;
|
|
99543
99652
|
};
|
|
99653
|
+
metadata?: any;
|
|
99544
99654
|
automationQueueId?: string | null | undefined;
|
|
99545
99655
|
}>;
|
|
99546
99656
|
upload: import("zod").ZodObject<{
|
|
@@ -101750,6 +101860,7 @@ export declare const platformContract: {
|
|
|
101750
101860
|
resumeLabel: {
|
|
101751
101861
|
name: string;
|
|
101752
101862
|
};
|
|
101863
|
+
metadata?: any;
|
|
101753
101864
|
automationQueueId?: string | null | undefined;
|
|
101754
101865
|
};
|
|
101755
101866
|
platformMessageId: string;
|
|
@@ -102523,6 +102634,7 @@ export declare const platformContract: {
|
|
|
102523
102634
|
resumeLabel: {
|
|
102524
102635
|
name: string;
|
|
102525
102636
|
};
|
|
102637
|
+
metadata?: any;
|
|
102526
102638
|
automationQueueId?: string | null | undefined;
|
|
102527
102639
|
};
|
|
102528
102640
|
platformMessageId: string;
|
|
@@ -103297,6 +103409,7 @@ export declare const platformContract: {
|
|
|
103297
103409
|
resumeLabel: {
|
|
103298
103410
|
name: string;
|
|
103299
103411
|
};
|
|
103412
|
+
metadata?: any;
|
|
103300
103413
|
automationQueueId?: string | null | undefined;
|
|
103301
103414
|
};
|
|
103302
103415
|
platformMessageId: string;
|
|
@@ -104070,6 +104183,7 @@ export declare const platformContract: {
|
|
|
104070
104183
|
resumeLabel: {
|
|
104071
104184
|
name: string;
|
|
104072
104185
|
};
|
|
104186
|
+
metadata?: any;
|
|
104073
104187
|
automationQueueId?: string | null | undefined;
|
|
104074
104188
|
};
|
|
104075
104189
|
platformMessageId: string;
|
|
@@ -104844,6 +104958,7 @@ export declare const platformContract: {
|
|
|
104844
104958
|
resumeLabel: {
|
|
104845
104959
|
name: string;
|
|
104846
104960
|
};
|
|
104961
|
+
metadata?: any;
|
|
104847
104962
|
automationQueueId?: string | null | undefined;
|
|
104848
104963
|
};
|
|
104849
104964
|
platformMessageId: string;
|
|
@@ -105617,6 +105732,7 @@ export declare const platformContract: {
|
|
|
105617
105732
|
resumeLabel: {
|
|
105618
105733
|
name: string;
|
|
105619
105734
|
};
|
|
105735
|
+
metadata?: any;
|
|
105620
105736
|
automationQueueId?: string | null | undefined;
|
|
105621
105737
|
};
|
|
105622
105738
|
platformMessageId: string;
|
|
@@ -106393,6 +106509,7 @@ export declare const platformContract: {
|
|
|
106393
106509
|
resumeLabel: {
|
|
106394
106510
|
name: string;
|
|
106395
106511
|
};
|
|
106512
|
+
metadata?: any;
|
|
106396
106513
|
automationQueueId?: string | null | undefined;
|
|
106397
106514
|
};
|
|
106398
106515
|
platformMessageId: string;
|
|
@@ -107166,6 +107283,7 @@ export declare const platformContract: {
|
|
|
107166
107283
|
resumeLabel: {
|
|
107167
107284
|
name: string;
|
|
107168
107285
|
};
|
|
107286
|
+
metadata?: any;
|
|
107169
107287
|
automationQueueId?: string | null | undefined;
|
|
107170
107288
|
};
|
|
107171
107289
|
platformMessageId: string;
|
|
@@ -107943,6 +108061,7 @@ export declare const platformContract: {
|
|
|
107943
108061
|
resumeLabel: {
|
|
107944
108062
|
name: string;
|
|
107945
108063
|
};
|
|
108064
|
+
metadata?: any;
|
|
107946
108065
|
automationQueueId?: string | null | undefined;
|
|
107947
108066
|
};
|
|
107948
108067
|
platformMessageId: string;
|
|
@@ -108716,6 +108835,7 @@ export declare const platformContract: {
|
|
|
108716
108835
|
resumeLabel: {
|
|
108717
108836
|
name: string;
|
|
108718
108837
|
};
|
|
108838
|
+
metadata?: any;
|
|
108719
108839
|
automationQueueId?: string | null | undefined;
|
|
108720
108840
|
};
|
|
108721
108841
|
platformMessageId: string;
|
|
@@ -113063,6 +113183,7 @@ export declare const platformLineContract: {
|
|
|
113063
113183
|
firstResponseTime: import("zod").ZodNumber;
|
|
113064
113184
|
isLatest: import("zod").ZodBoolean;
|
|
113065
113185
|
isBotRoom: import("zod").ZodBoolean;
|
|
113186
|
+
metadata: import("zod").ZodAny;
|
|
113066
113187
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
113067
113188
|
platformContact: import("zod").ZodObject<{
|
|
113068
113189
|
id: import("zod").ZodString;
|
|
@@ -116101,6 +116222,7 @@ export declare const platformLineContract: {
|
|
|
116101
116222
|
resumeLabel: {
|
|
116102
116223
|
name: string;
|
|
116103
116224
|
};
|
|
116225
|
+
metadata?: any;
|
|
116104
116226
|
automationQueueId?: string | null | undefined;
|
|
116105
116227
|
}, {
|
|
116106
116228
|
id: string;
|
|
@@ -116537,6 +116659,7 @@ export declare const platformLineContract: {
|
|
|
116537
116659
|
resumeLabel: {
|
|
116538
116660
|
name: string;
|
|
116539
116661
|
};
|
|
116662
|
+
metadata?: any;
|
|
116540
116663
|
automationQueueId?: string | null | undefined;
|
|
116541
116664
|
}>;
|
|
116542
116665
|
platformMessageId: import("zod").ZodString;
|
|
@@ -117797,6 +117920,7 @@ export declare const platformLineContract: {
|
|
|
117797
117920
|
firstResponseTime: import("zod").ZodNumber;
|
|
117798
117921
|
isLatest: import("zod").ZodBoolean;
|
|
117799
117922
|
isBotRoom: import("zod").ZodBoolean;
|
|
117923
|
+
metadata: import("zod").ZodAny;
|
|
117800
117924
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
117801
117925
|
platformContact: import("zod").ZodObject<{
|
|
117802
117926
|
id: import("zod").ZodString;
|
|
@@ -120835,6 +120959,7 @@ export declare const platformLineContract: {
|
|
|
120835
120959
|
resumeLabel: {
|
|
120836
120960
|
name: string;
|
|
120837
120961
|
};
|
|
120962
|
+
metadata?: any;
|
|
120838
120963
|
automationQueueId?: string | null | undefined;
|
|
120839
120964
|
}, {
|
|
120840
120965
|
id: string;
|
|
@@ -121271,6 +121396,7 @@ export declare const platformLineContract: {
|
|
|
121271
121396
|
resumeLabel: {
|
|
121272
121397
|
name: string;
|
|
121273
121398
|
};
|
|
121399
|
+
metadata?: any;
|
|
121274
121400
|
automationQueueId?: string | null | undefined;
|
|
121275
121401
|
}>;
|
|
121276
121402
|
upload: import("zod").ZodObject<{
|
|
@@ -123480,6 +123606,7 @@ export declare const platformLineContract: {
|
|
|
123480
123606
|
resumeLabel: {
|
|
123481
123607
|
name: string;
|
|
123482
123608
|
};
|
|
123609
|
+
metadata?: any;
|
|
123483
123610
|
automationQueueId?: string | null | undefined;
|
|
123484
123611
|
};
|
|
123485
123612
|
platformMessageId: string;
|
|
@@ -124253,6 +124380,7 @@ export declare const platformLineContract: {
|
|
|
124253
124380
|
resumeLabel: {
|
|
124254
124381
|
name: string;
|
|
124255
124382
|
};
|
|
124383
|
+
metadata?: any;
|
|
124256
124384
|
automationQueueId?: string | null | undefined;
|
|
124257
124385
|
};
|
|
124258
124386
|
platformMessageId: string;
|
|
@@ -125027,6 +125155,7 @@ export declare const platformLineContract: {
|
|
|
125027
125155
|
resumeLabel: {
|
|
125028
125156
|
name: string;
|
|
125029
125157
|
};
|
|
125158
|
+
metadata?: any;
|
|
125030
125159
|
automationQueueId?: string | null | undefined;
|
|
125031
125160
|
};
|
|
125032
125161
|
platformMessageId: string;
|
|
@@ -125800,6 +125929,7 @@ export declare const platformLineContract: {
|
|
|
125800
125929
|
resumeLabel: {
|
|
125801
125930
|
name: string;
|
|
125802
125931
|
};
|
|
125932
|
+
metadata?: any;
|
|
125803
125933
|
automationQueueId?: string | null | undefined;
|
|
125804
125934
|
};
|
|
125805
125935
|
platformMessageId: string;
|
|
@@ -126574,6 +126704,7 @@ export declare const platformLineContract: {
|
|
|
126574
126704
|
resumeLabel: {
|
|
126575
126705
|
name: string;
|
|
126576
126706
|
};
|
|
126707
|
+
metadata?: any;
|
|
126577
126708
|
automationQueueId?: string | null | undefined;
|
|
126578
126709
|
};
|
|
126579
126710
|
platformMessageId: string;
|
|
@@ -127347,6 +127478,7 @@ export declare const platformLineContract: {
|
|
|
127347
127478
|
resumeLabel: {
|
|
127348
127479
|
name: string;
|
|
127349
127480
|
};
|
|
127481
|
+
metadata?: any;
|
|
127350
127482
|
automationQueueId?: string | null | undefined;
|
|
127351
127483
|
};
|
|
127352
127484
|
platformMessageId: string;
|
|
@@ -128123,6 +128255,7 @@ export declare const platformLineContract: {
|
|
|
128123
128255
|
resumeLabel: {
|
|
128124
128256
|
name: string;
|
|
128125
128257
|
};
|
|
128258
|
+
metadata?: any;
|
|
128126
128259
|
automationQueueId?: string | null | undefined;
|
|
128127
128260
|
};
|
|
128128
128261
|
platformMessageId: string;
|
|
@@ -128896,6 +129029,7 @@ export declare const platformLineContract: {
|
|
|
128896
129029
|
resumeLabel: {
|
|
128897
129030
|
name: string;
|
|
128898
129031
|
};
|
|
129032
|
+
metadata?: any;
|
|
128899
129033
|
automationQueueId?: string | null | undefined;
|
|
128900
129034
|
};
|
|
128901
129035
|
platformMessageId: string;
|
|
@@ -129673,6 +129807,7 @@ export declare const platformLineContract: {
|
|
|
129673
129807
|
resumeLabel: {
|
|
129674
129808
|
name: string;
|
|
129675
129809
|
};
|
|
129810
|
+
metadata?: any;
|
|
129676
129811
|
automationQueueId?: string | null | undefined;
|
|
129677
129812
|
};
|
|
129678
129813
|
platformMessageId: string;
|
|
@@ -130446,6 +130581,7 @@ export declare const platformLineContract: {
|
|
|
130446
130581
|
resumeLabel: {
|
|
130447
130582
|
name: string;
|
|
130448
130583
|
};
|
|
130584
|
+
metadata?: any;
|
|
130449
130585
|
automationQueueId?: string | null | undefined;
|
|
130450
130586
|
};
|
|
130451
130587
|
platformMessageId: string;
|
|
@@ -135026,6 +135162,7 @@ export declare const platformTelegramContract: {
|
|
|
135026
135162
|
firstResponseTime: import("zod").ZodNumber;
|
|
135027
135163
|
isLatest: import("zod").ZodBoolean;
|
|
135028
135164
|
isBotRoom: import("zod").ZodBoolean;
|
|
135165
|
+
metadata: import("zod").ZodAny;
|
|
135029
135166
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
135030
135167
|
platformContact: import("zod").ZodObject<{
|
|
135031
135168
|
id: import("zod").ZodString;
|
|
@@ -138064,6 +138201,7 @@ export declare const platformTelegramContract: {
|
|
|
138064
138201
|
resumeLabel: {
|
|
138065
138202
|
name: string;
|
|
138066
138203
|
};
|
|
138204
|
+
metadata?: any;
|
|
138067
138205
|
automationQueueId?: string | null | undefined;
|
|
138068
138206
|
}, {
|
|
138069
138207
|
id: string;
|
|
@@ -138500,6 +138638,7 @@ export declare const platformTelegramContract: {
|
|
|
138500
138638
|
resumeLabel: {
|
|
138501
138639
|
name: string;
|
|
138502
138640
|
};
|
|
138641
|
+
metadata?: any;
|
|
138503
138642
|
automationQueueId?: string | null | undefined;
|
|
138504
138643
|
}>;
|
|
138505
138644
|
platformMessageId: import("zod").ZodString;
|
|
@@ -139760,6 +139899,7 @@ export declare const platformTelegramContract: {
|
|
|
139760
139899
|
firstResponseTime: import("zod").ZodNumber;
|
|
139761
139900
|
isLatest: import("zod").ZodBoolean;
|
|
139762
139901
|
isBotRoom: import("zod").ZodBoolean;
|
|
139902
|
+
metadata: import("zod").ZodAny;
|
|
139763
139903
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
139764
139904
|
platformContact: import("zod").ZodObject<{
|
|
139765
139905
|
id: import("zod").ZodString;
|
|
@@ -142798,6 +142938,7 @@ export declare const platformTelegramContract: {
|
|
|
142798
142938
|
resumeLabel: {
|
|
142799
142939
|
name: string;
|
|
142800
142940
|
};
|
|
142941
|
+
metadata?: any;
|
|
142801
142942
|
automationQueueId?: string | null | undefined;
|
|
142802
142943
|
}, {
|
|
142803
142944
|
id: string;
|
|
@@ -143234,6 +143375,7 @@ export declare const platformTelegramContract: {
|
|
|
143234
143375
|
resumeLabel: {
|
|
143235
143376
|
name: string;
|
|
143236
143377
|
};
|
|
143378
|
+
metadata?: any;
|
|
143237
143379
|
automationQueueId?: string | null | undefined;
|
|
143238
143380
|
}>;
|
|
143239
143381
|
upload: import("zod").ZodObject<{
|
|
@@ -145443,6 +145585,7 @@ export declare const platformTelegramContract: {
|
|
|
145443
145585
|
resumeLabel: {
|
|
145444
145586
|
name: string;
|
|
145445
145587
|
};
|
|
145588
|
+
metadata?: any;
|
|
145446
145589
|
automationQueueId?: string | null | undefined;
|
|
145447
145590
|
};
|
|
145448
145591
|
platformMessageId: string;
|
|
@@ -146216,6 +146359,7 @@ export declare const platformTelegramContract: {
|
|
|
146216
146359
|
resumeLabel: {
|
|
146217
146360
|
name: string;
|
|
146218
146361
|
};
|
|
146362
|
+
metadata?: any;
|
|
146219
146363
|
automationQueueId?: string | null | undefined;
|
|
146220
146364
|
};
|
|
146221
146365
|
platformMessageId: string;
|
|
@@ -146990,6 +147134,7 @@ export declare const platformTelegramContract: {
|
|
|
146990
147134
|
resumeLabel: {
|
|
146991
147135
|
name: string;
|
|
146992
147136
|
};
|
|
147137
|
+
metadata?: any;
|
|
146993
147138
|
automationQueueId?: string | null | undefined;
|
|
146994
147139
|
};
|
|
146995
147140
|
platformMessageId: string;
|
|
@@ -147763,6 +147908,7 @@ export declare const platformTelegramContract: {
|
|
|
147763
147908
|
resumeLabel: {
|
|
147764
147909
|
name: string;
|
|
147765
147910
|
};
|
|
147911
|
+
metadata?: any;
|
|
147766
147912
|
automationQueueId?: string | null | undefined;
|
|
147767
147913
|
};
|
|
147768
147914
|
platformMessageId: string;
|
|
@@ -148537,6 +148683,7 @@ export declare const platformTelegramContract: {
|
|
|
148537
148683
|
resumeLabel: {
|
|
148538
148684
|
name: string;
|
|
148539
148685
|
};
|
|
148686
|
+
metadata?: any;
|
|
148540
148687
|
automationQueueId?: string | null | undefined;
|
|
148541
148688
|
};
|
|
148542
148689
|
platformMessageId: string;
|
|
@@ -149310,6 +149457,7 @@ export declare const platformTelegramContract: {
|
|
|
149310
149457
|
resumeLabel: {
|
|
149311
149458
|
name: string;
|
|
149312
149459
|
};
|
|
149460
|
+
metadata?: any;
|
|
149313
149461
|
automationQueueId?: string | null | undefined;
|
|
149314
149462
|
};
|
|
149315
149463
|
platformMessageId: string;
|
|
@@ -150086,6 +150234,7 @@ export declare const platformTelegramContract: {
|
|
|
150086
150234
|
resumeLabel: {
|
|
150087
150235
|
name: string;
|
|
150088
150236
|
};
|
|
150237
|
+
metadata?: any;
|
|
150089
150238
|
automationQueueId?: string | null | undefined;
|
|
150090
150239
|
};
|
|
150091
150240
|
platformMessageId: string;
|
|
@@ -150859,6 +151008,7 @@ export declare const platformTelegramContract: {
|
|
|
150859
151008
|
resumeLabel: {
|
|
150860
151009
|
name: string;
|
|
150861
151010
|
};
|
|
151011
|
+
metadata?: any;
|
|
150862
151012
|
automationQueueId?: string | null | undefined;
|
|
150863
151013
|
};
|
|
150864
151014
|
platformMessageId: string;
|
|
@@ -151636,6 +151786,7 @@ export declare const platformTelegramContract: {
|
|
|
151636
151786
|
resumeLabel: {
|
|
151637
151787
|
name: string;
|
|
151638
151788
|
};
|
|
151789
|
+
metadata?: any;
|
|
151639
151790
|
automationQueueId?: string | null | undefined;
|
|
151640
151791
|
};
|
|
151641
151792
|
platformMessageId: string;
|
|
@@ -152409,6 +152560,7 @@ export declare const platformTelegramContract: {
|
|
|
152409
152560
|
resumeLabel: {
|
|
152410
152561
|
name: string;
|
|
152411
152562
|
};
|
|
152563
|
+
metadata?: any;
|
|
152412
152564
|
automationQueueId?: string | null | undefined;
|
|
152413
152565
|
};
|
|
152414
152566
|
platformMessageId: string;
|
|
@@ -154986,6 +155138,7 @@ export declare const platformMessengerContract: {
|
|
|
154986
155138
|
firstResponseTime: import("zod").ZodNumber;
|
|
154987
155139
|
isLatest: import("zod").ZodBoolean;
|
|
154988
155140
|
isBotRoom: import("zod").ZodBoolean;
|
|
155141
|
+
metadata: import("zod").ZodAny;
|
|
154989
155142
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
154990
155143
|
platformContact: import("zod").ZodObject<{
|
|
154991
155144
|
id: import("zod").ZodString;
|
|
@@ -158024,6 +158177,7 @@ export declare const platformMessengerContract: {
|
|
|
158024
158177
|
resumeLabel: {
|
|
158025
158178
|
name: string;
|
|
158026
158179
|
};
|
|
158180
|
+
metadata?: any;
|
|
158027
158181
|
automationQueueId?: string | null | undefined;
|
|
158028
158182
|
}, {
|
|
158029
158183
|
id: string;
|
|
@@ -158460,6 +158614,7 @@ export declare const platformMessengerContract: {
|
|
|
158460
158614
|
resumeLabel: {
|
|
158461
158615
|
name: string;
|
|
158462
158616
|
};
|
|
158617
|
+
metadata?: any;
|
|
158463
158618
|
automationQueueId?: string | null | undefined;
|
|
158464
158619
|
}>;
|
|
158465
158620
|
platformMessageId: import("zod").ZodString;
|
|
@@ -159720,6 +159875,7 @@ export declare const platformMessengerContract: {
|
|
|
159720
159875
|
firstResponseTime: import("zod").ZodNumber;
|
|
159721
159876
|
isLatest: import("zod").ZodBoolean;
|
|
159722
159877
|
isBotRoom: import("zod").ZodBoolean;
|
|
159878
|
+
metadata: import("zod").ZodAny;
|
|
159723
159879
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
159724
159880
|
platformContact: import("zod").ZodObject<{
|
|
159725
159881
|
id: import("zod").ZodString;
|
|
@@ -162758,6 +162914,7 @@ export declare const platformMessengerContract: {
|
|
|
162758
162914
|
resumeLabel: {
|
|
162759
162915
|
name: string;
|
|
162760
162916
|
};
|
|
162917
|
+
metadata?: any;
|
|
162761
162918
|
automationQueueId?: string | null | undefined;
|
|
162762
162919
|
}, {
|
|
162763
162920
|
id: string;
|
|
@@ -163194,6 +163351,7 @@ export declare const platformMessengerContract: {
|
|
|
163194
163351
|
resumeLabel: {
|
|
163195
163352
|
name: string;
|
|
163196
163353
|
};
|
|
163354
|
+
metadata?: any;
|
|
163197
163355
|
automationQueueId?: string | null | undefined;
|
|
163198
163356
|
}>;
|
|
163199
163357
|
upload: import("zod").ZodObject<{
|
|
@@ -165403,6 +165561,7 @@ export declare const platformMessengerContract: {
|
|
|
165403
165561
|
resumeLabel: {
|
|
165404
165562
|
name: string;
|
|
165405
165563
|
};
|
|
165564
|
+
metadata?: any;
|
|
165406
165565
|
automationQueueId?: string | null | undefined;
|
|
165407
165566
|
};
|
|
165408
165567
|
platformMessageId: string;
|
|
@@ -166176,6 +166335,7 @@ export declare const platformMessengerContract: {
|
|
|
166176
166335
|
resumeLabel: {
|
|
166177
166336
|
name: string;
|
|
166178
166337
|
};
|
|
166338
|
+
metadata?: any;
|
|
166179
166339
|
automationQueueId?: string | null | undefined;
|
|
166180
166340
|
};
|
|
166181
166341
|
platformMessageId: string;
|
|
@@ -166950,6 +167110,7 @@ export declare const platformMessengerContract: {
|
|
|
166950
167110
|
resumeLabel: {
|
|
166951
167111
|
name: string;
|
|
166952
167112
|
};
|
|
167113
|
+
metadata?: any;
|
|
166953
167114
|
automationQueueId?: string | null | undefined;
|
|
166954
167115
|
};
|
|
166955
167116
|
platformMessageId: string;
|
|
@@ -167723,6 +167884,7 @@ export declare const platformMessengerContract: {
|
|
|
167723
167884
|
resumeLabel: {
|
|
167724
167885
|
name: string;
|
|
167725
167886
|
};
|
|
167887
|
+
metadata?: any;
|
|
167726
167888
|
automationQueueId?: string | null | undefined;
|
|
167727
167889
|
};
|
|
167728
167890
|
platformMessageId: string;
|
|
@@ -168497,6 +168659,7 @@ export declare const platformMessengerContract: {
|
|
|
168497
168659
|
resumeLabel: {
|
|
168498
168660
|
name: string;
|
|
168499
168661
|
};
|
|
168662
|
+
metadata?: any;
|
|
168500
168663
|
automationQueueId?: string | null | undefined;
|
|
168501
168664
|
};
|
|
168502
168665
|
platformMessageId: string;
|
|
@@ -169270,6 +169433,7 @@ export declare const platformMessengerContract: {
|
|
|
169270
169433
|
resumeLabel: {
|
|
169271
169434
|
name: string;
|
|
169272
169435
|
};
|
|
169436
|
+
metadata?: any;
|
|
169273
169437
|
automationQueueId?: string | null | undefined;
|
|
169274
169438
|
};
|
|
169275
169439
|
platformMessageId: string;
|
|
@@ -170046,6 +170210,7 @@ export declare const platformMessengerContract: {
|
|
|
170046
170210
|
resumeLabel: {
|
|
170047
170211
|
name: string;
|
|
170048
170212
|
};
|
|
170213
|
+
metadata?: any;
|
|
170049
170214
|
automationQueueId?: string | null | undefined;
|
|
170050
170215
|
};
|
|
170051
170216
|
platformMessageId: string;
|
|
@@ -170819,6 +170984,7 @@ export declare const platformMessengerContract: {
|
|
|
170819
170984
|
resumeLabel: {
|
|
170820
170985
|
name: string;
|
|
170821
170986
|
};
|
|
170987
|
+
metadata?: any;
|
|
170822
170988
|
automationQueueId?: string | null | undefined;
|
|
170823
170989
|
};
|
|
170824
170990
|
platformMessageId: string;
|
|
@@ -171596,6 +171762,7 @@ export declare const platformMessengerContract: {
|
|
|
171596
171762
|
resumeLabel: {
|
|
171597
171763
|
name: string;
|
|
171598
171764
|
};
|
|
171765
|
+
metadata?: any;
|
|
171599
171766
|
automationQueueId?: string | null | undefined;
|
|
171600
171767
|
};
|
|
171601
171768
|
platformMessageId: string;
|
|
@@ -172369,6 +172536,7 @@ export declare const platformMessengerContract: {
|
|
|
172369
172536
|
resumeLabel: {
|
|
172370
172537
|
name: string;
|
|
172371
172538
|
};
|
|
172539
|
+
metadata?: any;
|
|
172372
172540
|
automationQueueId?: string | null | undefined;
|
|
172373
172541
|
};
|
|
172374
172542
|
platformMessageId: string;
|
|
@@ -177304,6 +177472,7 @@ export declare const platformInstagramContract: {
|
|
|
177304
177472
|
firstResponseTime: import("zod").ZodNumber;
|
|
177305
177473
|
isLatest: import("zod").ZodBoolean;
|
|
177306
177474
|
isBotRoom: import("zod").ZodBoolean;
|
|
177475
|
+
metadata: import("zod").ZodAny;
|
|
177307
177476
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
177308
177477
|
platformContact: import("zod").ZodObject<{
|
|
177309
177478
|
id: import("zod").ZodString;
|
|
@@ -180342,6 +180511,7 @@ export declare const platformInstagramContract: {
|
|
|
180342
180511
|
resumeLabel: {
|
|
180343
180512
|
name: string;
|
|
180344
180513
|
};
|
|
180514
|
+
metadata?: any;
|
|
180345
180515
|
automationQueueId?: string | null | undefined;
|
|
180346
180516
|
}, {
|
|
180347
180517
|
id: string;
|
|
@@ -180778,6 +180948,7 @@ export declare const platformInstagramContract: {
|
|
|
180778
180948
|
resumeLabel: {
|
|
180779
180949
|
name: string;
|
|
180780
180950
|
};
|
|
180951
|
+
metadata?: any;
|
|
180781
180952
|
automationQueueId?: string | null | undefined;
|
|
180782
180953
|
}>;
|
|
180783
180954
|
platformMessageId: import("zod").ZodString;
|
|
@@ -182038,6 +182209,7 @@ export declare const platformInstagramContract: {
|
|
|
182038
182209
|
firstResponseTime: import("zod").ZodNumber;
|
|
182039
182210
|
isLatest: import("zod").ZodBoolean;
|
|
182040
182211
|
isBotRoom: import("zod").ZodBoolean;
|
|
182212
|
+
metadata: import("zod").ZodAny;
|
|
182041
182213
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
182042
182214
|
platformContact: import("zod").ZodObject<{
|
|
182043
182215
|
id: import("zod").ZodString;
|
|
@@ -185076,6 +185248,7 @@ export declare const platformInstagramContract: {
|
|
|
185076
185248
|
resumeLabel: {
|
|
185077
185249
|
name: string;
|
|
185078
185250
|
};
|
|
185251
|
+
metadata?: any;
|
|
185079
185252
|
automationQueueId?: string | null | undefined;
|
|
185080
185253
|
}, {
|
|
185081
185254
|
id: string;
|
|
@@ -185512,6 +185685,7 @@ export declare const platformInstagramContract: {
|
|
|
185512
185685
|
resumeLabel: {
|
|
185513
185686
|
name: string;
|
|
185514
185687
|
};
|
|
185688
|
+
metadata?: any;
|
|
185515
185689
|
automationQueueId?: string | null | undefined;
|
|
185516
185690
|
}>;
|
|
185517
185691
|
upload: import("zod").ZodObject<{
|
|
@@ -187721,6 +187895,7 @@ export declare const platformInstagramContract: {
|
|
|
187721
187895
|
resumeLabel: {
|
|
187722
187896
|
name: string;
|
|
187723
187897
|
};
|
|
187898
|
+
metadata?: any;
|
|
187724
187899
|
automationQueueId?: string | null | undefined;
|
|
187725
187900
|
};
|
|
187726
187901
|
platformMessageId: string;
|
|
@@ -188494,6 +188669,7 @@ export declare const platformInstagramContract: {
|
|
|
188494
188669
|
resumeLabel: {
|
|
188495
188670
|
name: string;
|
|
188496
188671
|
};
|
|
188672
|
+
metadata?: any;
|
|
188497
188673
|
automationQueueId?: string | null | undefined;
|
|
188498
188674
|
};
|
|
188499
188675
|
platformMessageId: string;
|
|
@@ -189268,6 +189444,7 @@ export declare const platformInstagramContract: {
|
|
|
189268
189444
|
resumeLabel: {
|
|
189269
189445
|
name: string;
|
|
189270
189446
|
};
|
|
189447
|
+
metadata?: any;
|
|
189271
189448
|
automationQueueId?: string | null | undefined;
|
|
189272
189449
|
};
|
|
189273
189450
|
platformMessageId: string;
|
|
@@ -190041,6 +190218,7 @@ export declare const platformInstagramContract: {
|
|
|
190041
190218
|
resumeLabel: {
|
|
190042
190219
|
name: string;
|
|
190043
190220
|
};
|
|
190221
|
+
metadata?: any;
|
|
190044
190222
|
automationQueueId?: string | null | undefined;
|
|
190045
190223
|
};
|
|
190046
190224
|
platformMessageId: string;
|
|
@@ -190815,6 +190993,7 @@ export declare const platformInstagramContract: {
|
|
|
190815
190993
|
resumeLabel: {
|
|
190816
190994
|
name: string;
|
|
190817
190995
|
};
|
|
190996
|
+
metadata?: any;
|
|
190818
190997
|
automationQueueId?: string | null | undefined;
|
|
190819
190998
|
};
|
|
190820
190999
|
platformMessageId: string;
|
|
@@ -191588,6 +191767,7 @@ export declare const platformInstagramContract: {
|
|
|
191588
191767
|
resumeLabel: {
|
|
191589
191768
|
name: string;
|
|
191590
191769
|
};
|
|
191770
|
+
metadata?: any;
|
|
191591
191771
|
automationQueueId?: string | null | undefined;
|
|
191592
191772
|
};
|
|
191593
191773
|
platformMessageId: string;
|
|
@@ -192364,6 +192544,7 @@ export declare const platformInstagramContract: {
|
|
|
192364
192544
|
resumeLabel: {
|
|
192365
192545
|
name: string;
|
|
192366
192546
|
};
|
|
192547
|
+
metadata?: any;
|
|
192367
192548
|
automationQueueId?: string | null | undefined;
|
|
192368
192549
|
};
|
|
192369
192550
|
platformMessageId: string;
|
|
@@ -193137,6 +193318,7 @@ export declare const platformInstagramContract: {
|
|
|
193137
193318
|
resumeLabel: {
|
|
193138
193319
|
name: string;
|
|
193139
193320
|
};
|
|
193321
|
+
metadata?: any;
|
|
193140
193322
|
automationQueueId?: string | null | undefined;
|
|
193141
193323
|
};
|
|
193142
193324
|
platformMessageId: string;
|
|
@@ -193914,6 +194096,7 @@ export declare const platformInstagramContract: {
|
|
|
193914
194096
|
resumeLabel: {
|
|
193915
194097
|
name: string;
|
|
193916
194098
|
};
|
|
194099
|
+
metadata?: any;
|
|
193917
194100
|
automationQueueId?: string | null | undefined;
|
|
193918
194101
|
};
|
|
193919
194102
|
platformMessageId: string;
|
|
@@ -194687,6 +194870,7 @@ export declare const platformInstagramContract: {
|
|
|
194687
194870
|
resumeLabel: {
|
|
194688
194871
|
name: string;
|
|
194689
194872
|
};
|
|
194873
|
+
metadata?: any;
|
|
194690
194874
|
automationQueueId?: string | null | undefined;
|
|
194691
194875
|
};
|
|
194692
194876
|
platformMessageId: string;
|
|
@@ -204304,6 +204488,7 @@ export declare const platformWhatsappContract: {
|
|
|
204304
204488
|
firstResponseTime: import("zod").ZodNumber;
|
|
204305
204489
|
isLatest: import("zod").ZodBoolean;
|
|
204306
204490
|
isBotRoom: import("zod").ZodBoolean;
|
|
204491
|
+
metadata: import("zod").ZodAny;
|
|
204307
204492
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
204308
204493
|
platformContact: import("zod").ZodObject<{
|
|
204309
204494
|
id: import("zod").ZodString;
|
|
@@ -207342,6 +207527,7 @@ export declare const platformWhatsappContract: {
|
|
|
207342
207527
|
resumeLabel: {
|
|
207343
207528
|
name: string;
|
|
207344
207529
|
};
|
|
207530
|
+
metadata?: any;
|
|
207345
207531
|
automationQueueId?: string | null | undefined;
|
|
207346
207532
|
}, {
|
|
207347
207533
|
id: string;
|
|
@@ -207778,6 +207964,7 @@ export declare const platformWhatsappContract: {
|
|
|
207778
207964
|
resumeLabel: {
|
|
207779
207965
|
name: string;
|
|
207780
207966
|
};
|
|
207967
|
+
metadata?: any;
|
|
207781
207968
|
automationQueueId?: string | null | undefined;
|
|
207782
207969
|
}>;
|
|
207783
207970
|
platformMessageId: import("zod").ZodString;
|
|
@@ -209038,6 +209225,7 @@ export declare const platformWhatsappContract: {
|
|
|
209038
209225
|
firstResponseTime: import("zod").ZodNumber;
|
|
209039
209226
|
isLatest: import("zod").ZodBoolean;
|
|
209040
209227
|
isBotRoom: import("zod").ZodBoolean;
|
|
209228
|
+
metadata: import("zod").ZodAny;
|
|
209041
209229
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
209042
209230
|
platformContact: import("zod").ZodObject<{
|
|
209043
209231
|
id: import("zod").ZodString;
|
|
@@ -212076,6 +212264,7 @@ export declare const platformWhatsappContract: {
|
|
|
212076
212264
|
resumeLabel: {
|
|
212077
212265
|
name: string;
|
|
212078
212266
|
};
|
|
212267
|
+
metadata?: any;
|
|
212079
212268
|
automationQueueId?: string | null | undefined;
|
|
212080
212269
|
}, {
|
|
212081
212270
|
id: string;
|
|
@@ -212512,6 +212701,7 @@ export declare const platformWhatsappContract: {
|
|
|
212512
212701
|
resumeLabel: {
|
|
212513
212702
|
name: string;
|
|
212514
212703
|
};
|
|
212704
|
+
metadata?: any;
|
|
212515
212705
|
automationQueueId?: string | null | undefined;
|
|
212516
212706
|
}>;
|
|
212517
212707
|
upload: import("zod").ZodObject<{
|
|
@@ -214721,6 +214911,7 @@ export declare const platformWhatsappContract: {
|
|
|
214721
214911
|
resumeLabel: {
|
|
214722
214912
|
name: string;
|
|
214723
214913
|
};
|
|
214914
|
+
metadata?: any;
|
|
214724
214915
|
automationQueueId?: string | null | undefined;
|
|
214725
214916
|
};
|
|
214726
214917
|
platformMessageId: string;
|
|
@@ -215494,6 +215685,7 @@ export declare const platformWhatsappContract: {
|
|
|
215494
215685
|
resumeLabel: {
|
|
215495
215686
|
name: string;
|
|
215496
215687
|
};
|
|
215688
|
+
metadata?: any;
|
|
215497
215689
|
automationQueueId?: string | null | undefined;
|
|
215498
215690
|
};
|
|
215499
215691
|
platformMessageId: string;
|
|
@@ -216268,6 +216460,7 @@ export declare const platformWhatsappContract: {
|
|
|
216268
216460
|
resumeLabel: {
|
|
216269
216461
|
name: string;
|
|
216270
216462
|
};
|
|
216463
|
+
metadata?: any;
|
|
216271
216464
|
automationQueueId?: string | null | undefined;
|
|
216272
216465
|
};
|
|
216273
216466
|
platformMessageId: string;
|
|
@@ -217041,6 +217234,7 @@ export declare const platformWhatsappContract: {
|
|
|
217041
217234
|
resumeLabel: {
|
|
217042
217235
|
name: string;
|
|
217043
217236
|
};
|
|
217237
|
+
metadata?: any;
|
|
217044
217238
|
automationQueueId?: string | null | undefined;
|
|
217045
217239
|
};
|
|
217046
217240
|
platformMessageId: string;
|
|
@@ -217815,6 +218009,7 @@ export declare const platformWhatsappContract: {
|
|
|
217815
218009
|
resumeLabel: {
|
|
217816
218010
|
name: string;
|
|
217817
218011
|
};
|
|
218012
|
+
metadata?: any;
|
|
217818
218013
|
automationQueueId?: string | null | undefined;
|
|
217819
218014
|
};
|
|
217820
218015
|
platformMessageId: string;
|
|
@@ -218588,6 +218783,7 @@ export declare const platformWhatsappContract: {
|
|
|
218588
218783
|
resumeLabel: {
|
|
218589
218784
|
name: string;
|
|
218590
218785
|
};
|
|
218786
|
+
metadata?: any;
|
|
218591
218787
|
automationQueueId?: string | null | undefined;
|
|
218592
218788
|
};
|
|
218593
218789
|
platformMessageId: string;
|
|
@@ -219364,6 +219560,7 @@ export declare const platformWhatsappContract: {
|
|
|
219364
219560
|
resumeLabel: {
|
|
219365
219561
|
name: string;
|
|
219366
219562
|
};
|
|
219563
|
+
metadata?: any;
|
|
219367
219564
|
automationQueueId?: string | null | undefined;
|
|
219368
219565
|
};
|
|
219369
219566
|
platformMessageId: string;
|
|
@@ -220137,6 +220334,7 @@ export declare const platformWhatsappContract: {
|
|
|
220137
220334
|
resumeLabel: {
|
|
220138
220335
|
name: string;
|
|
220139
220336
|
};
|
|
220337
|
+
metadata?: any;
|
|
220140
220338
|
automationQueueId?: string | null | undefined;
|
|
220141
220339
|
};
|
|
220142
220340
|
platformMessageId: string;
|
|
@@ -220914,6 +221112,7 @@ export declare const platformWhatsappContract: {
|
|
|
220914
221112
|
resumeLabel: {
|
|
220915
221113
|
name: string;
|
|
220916
221114
|
};
|
|
221115
|
+
metadata?: any;
|
|
220917
221116
|
automationQueueId?: string | null | undefined;
|
|
220918
221117
|
};
|
|
220919
221118
|
platformMessageId: string;
|
|
@@ -221687,6 +221886,7 @@ export declare const platformWhatsappContract: {
|
|
|
221687
221886
|
resumeLabel: {
|
|
221688
221887
|
name: string;
|
|
221689
221888
|
};
|
|
221889
|
+
metadata?: any;
|
|
221690
221890
|
automationQueueId?: string | null | undefined;
|
|
221691
221891
|
};
|
|
221692
221892
|
platformMessageId: string;
|
|
@@ -230899,6 +231099,7 @@ export declare const facebookFeedContract: {
|
|
|
230899
231099
|
firstResponseTime: import("zod").ZodNumber;
|
|
230900
231100
|
isLatest: import("zod").ZodBoolean;
|
|
230901
231101
|
isBotRoom: import("zod").ZodBoolean;
|
|
231102
|
+
metadata: import("zod").ZodAny;
|
|
230902
231103
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
230903
231104
|
platformContact: import("zod").ZodObject<{
|
|
230904
231105
|
id: import("zod").ZodString;
|
|
@@ -233937,6 +234138,7 @@ export declare const facebookFeedContract: {
|
|
|
233937
234138
|
resumeLabel: {
|
|
233938
234139
|
name: string;
|
|
233939
234140
|
};
|
|
234141
|
+
metadata?: any;
|
|
233940
234142
|
automationQueueId?: string | null | undefined;
|
|
233941
234143
|
}, {
|
|
233942
234144
|
id: string;
|
|
@@ -234373,6 +234575,7 @@ export declare const facebookFeedContract: {
|
|
|
234373
234575
|
resumeLabel: {
|
|
234374
234576
|
name: string;
|
|
234375
234577
|
};
|
|
234578
|
+
metadata?: any;
|
|
234376
234579
|
automationQueueId?: string | null | undefined;
|
|
234377
234580
|
}>;
|
|
234378
234581
|
platformMessageId: import("zod").ZodString;
|
|
@@ -235633,6 +235836,7 @@ export declare const facebookFeedContract: {
|
|
|
235633
235836
|
firstResponseTime: import("zod").ZodNumber;
|
|
235634
235837
|
isLatest: import("zod").ZodBoolean;
|
|
235635
235838
|
isBotRoom: import("zod").ZodBoolean;
|
|
235839
|
+
metadata: import("zod").ZodAny;
|
|
235636
235840
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
235637
235841
|
platformContact: import("zod").ZodObject<{
|
|
235638
235842
|
id: import("zod").ZodString;
|
|
@@ -238671,6 +238875,7 @@ export declare const facebookFeedContract: {
|
|
|
238671
238875
|
resumeLabel: {
|
|
238672
238876
|
name: string;
|
|
238673
238877
|
};
|
|
238878
|
+
metadata?: any;
|
|
238674
238879
|
automationQueueId?: string | null | undefined;
|
|
238675
238880
|
}, {
|
|
238676
238881
|
id: string;
|
|
@@ -239107,6 +239312,7 @@ export declare const facebookFeedContract: {
|
|
|
239107
239312
|
resumeLabel: {
|
|
239108
239313
|
name: string;
|
|
239109
239314
|
};
|
|
239315
|
+
metadata?: any;
|
|
239110
239316
|
automationQueueId?: string | null | undefined;
|
|
239111
239317
|
}>;
|
|
239112
239318
|
upload: import("zod").ZodObject<{
|
|
@@ -241316,6 +241522,7 @@ export declare const facebookFeedContract: {
|
|
|
241316
241522
|
resumeLabel: {
|
|
241317
241523
|
name: string;
|
|
241318
241524
|
};
|
|
241525
|
+
metadata?: any;
|
|
241319
241526
|
automationQueueId?: string | null | undefined;
|
|
241320
241527
|
};
|
|
241321
241528
|
platformMessageId: string;
|
|
@@ -242089,6 +242296,7 @@ export declare const facebookFeedContract: {
|
|
|
242089
242296
|
resumeLabel: {
|
|
242090
242297
|
name: string;
|
|
242091
242298
|
};
|
|
242299
|
+
metadata?: any;
|
|
242092
242300
|
automationQueueId?: string | null | undefined;
|
|
242093
242301
|
};
|
|
242094
242302
|
platformMessageId: string;
|
|
@@ -242863,6 +243071,7 @@ export declare const facebookFeedContract: {
|
|
|
242863
243071
|
resumeLabel: {
|
|
242864
243072
|
name: string;
|
|
242865
243073
|
};
|
|
243074
|
+
metadata?: any;
|
|
242866
243075
|
automationQueueId?: string | null | undefined;
|
|
242867
243076
|
};
|
|
242868
243077
|
platformMessageId: string;
|
|
@@ -243636,6 +243845,7 @@ export declare const facebookFeedContract: {
|
|
|
243636
243845
|
resumeLabel: {
|
|
243637
243846
|
name: string;
|
|
243638
243847
|
};
|
|
243848
|
+
metadata?: any;
|
|
243639
243849
|
automationQueueId?: string | null | undefined;
|
|
243640
243850
|
};
|
|
243641
243851
|
platformMessageId: string;
|
|
@@ -244410,6 +244620,7 @@ export declare const facebookFeedContract: {
|
|
|
244410
244620
|
resumeLabel: {
|
|
244411
244621
|
name: string;
|
|
244412
244622
|
};
|
|
244623
|
+
metadata?: any;
|
|
244413
244624
|
automationQueueId?: string | null | undefined;
|
|
244414
244625
|
};
|
|
244415
244626
|
platformMessageId: string;
|
|
@@ -245183,6 +245394,7 @@ export declare const facebookFeedContract: {
|
|
|
245183
245394
|
resumeLabel: {
|
|
245184
245395
|
name: string;
|
|
245185
245396
|
};
|
|
245397
|
+
metadata?: any;
|
|
245186
245398
|
automationQueueId?: string | null | undefined;
|
|
245187
245399
|
};
|
|
245188
245400
|
platformMessageId: string;
|
|
@@ -245959,6 +246171,7 @@ export declare const facebookFeedContract: {
|
|
|
245959
246171
|
resumeLabel: {
|
|
245960
246172
|
name: string;
|
|
245961
246173
|
};
|
|
246174
|
+
metadata?: any;
|
|
245962
246175
|
automationQueueId?: string | null | undefined;
|
|
245963
246176
|
};
|
|
245964
246177
|
platformMessageId: string;
|
|
@@ -246732,6 +246945,7 @@ export declare const facebookFeedContract: {
|
|
|
246732
246945
|
resumeLabel: {
|
|
246733
246946
|
name: string;
|
|
246734
246947
|
};
|
|
246948
|
+
metadata?: any;
|
|
246735
246949
|
automationQueueId?: string | null | undefined;
|
|
246736
246950
|
};
|
|
246737
246951
|
platformMessageId: string;
|
|
@@ -247509,6 +247723,7 @@ export declare const facebookFeedContract: {
|
|
|
247509
247723
|
resumeLabel: {
|
|
247510
247724
|
name: string;
|
|
247511
247725
|
};
|
|
247726
|
+
metadata?: any;
|
|
247512
247727
|
automationQueueId?: string | null | undefined;
|
|
247513
247728
|
};
|
|
247514
247729
|
platformMessageId: string;
|
|
@@ -248282,6 +248497,7 @@ export declare const facebookFeedContract: {
|
|
|
248282
248497
|
resumeLabel: {
|
|
248283
248498
|
name: string;
|
|
248284
248499
|
};
|
|
248500
|
+
metadata?: any;
|
|
248285
248501
|
automationQueueId?: string | null | undefined;
|
|
248286
248502
|
};
|
|
248287
248503
|
platformMessageId: string;
|
|
@@ -253467,6 +253683,7 @@ export declare const feedPostContract: {
|
|
|
253467
253683
|
firstResponseTime: import("zod").ZodNumber;
|
|
253468
253684
|
isLatest: import("zod").ZodBoolean;
|
|
253469
253685
|
isBotRoom: import("zod").ZodBoolean;
|
|
253686
|
+
metadata: import("zod").ZodAny;
|
|
253470
253687
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
253471
253688
|
platformContact: import("zod").ZodObject<{
|
|
253472
253689
|
id: import("zod").ZodString;
|
|
@@ -256505,6 +256722,7 @@ export declare const feedPostContract: {
|
|
|
256505
256722
|
resumeLabel: {
|
|
256506
256723
|
name: string;
|
|
256507
256724
|
};
|
|
256725
|
+
metadata?: any;
|
|
256508
256726
|
automationQueueId?: string | null | undefined;
|
|
256509
256727
|
}, {
|
|
256510
256728
|
id: string;
|
|
@@ -256941,6 +257159,7 @@ export declare const feedPostContract: {
|
|
|
256941
257159
|
resumeLabel: {
|
|
256942
257160
|
name: string;
|
|
256943
257161
|
};
|
|
257162
|
+
metadata?: any;
|
|
256944
257163
|
automationQueueId?: string | null | undefined;
|
|
256945
257164
|
}>;
|
|
256946
257165
|
platformMessageId: import("zod").ZodString;
|
|
@@ -259248,6 +259467,7 @@ export declare const feedPostContract: {
|
|
|
259248
259467
|
firstResponseTime: import("zod").ZodNumber;
|
|
259249
259468
|
isLatest: import("zod").ZodBoolean;
|
|
259250
259469
|
isBotRoom: import("zod").ZodBoolean;
|
|
259470
|
+
metadata: import("zod").ZodAny;
|
|
259251
259471
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
259252
259472
|
platformContact: import("zod").ZodObject<{
|
|
259253
259473
|
id: import("zod").ZodString;
|
|
@@ -262286,6 +262506,7 @@ export declare const feedPostContract: {
|
|
|
262286
262506
|
resumeLabel: {
|
|
262287
262507
|
name: string;
|
|
262288
262508
|
};
|
|
262509
|
+
metadata?: any;
|
|
262289
262510
|
automationQueueId?: string | null | undefined;
|
|
262290
262511
|
}, {
|
|
262291
262512
|
id: string;
|
|
@@ -262722,6 +262943,7 @@ export declare const feedPostContract: {
|
|
|
262722
262943
|
resumeLabel: {
|
|
262723
262944
|
name: string;
|
|
262724
262945
|
};
|
|
262946
|
+
metadata?: any;
|
|
262725
262947
|
automationQueueId?: string | null | undefined;
|
|
262726
262948
|
}>;
|
|
262727
262949
|
upload: import("zod").ZodObject<{
|
|
@@ -264931,6 +265153,7 @@ export declare const feedPostContract: {
|
|
|
264931
265153
|
resumeLabel: {
|
|
264932
265154
|
name: string;
|
|
264933
265155
|
};
|
|
265156
|
+
metadata?: any;
|
|
264934
265157
|
automationQueueId?: string | null | undefined;
|
|
264935
265158
|
};
|
|
264936
265159
|
platformMessageId: string;
|
|
@@ -265704,6 +265927,7 @@ export declare const feedPostContract: {
|
|
|
265704
265927
|
resumeLabel: {
|
|
265705
265928
|
name: string;
|
|
265706
265929
|
};
|
|
265930
|
+
metadata?: any;
|
|
265707
265931
|
automationQueueId?: string | null | undefined;
|
|
265708
265932
|
};
|
|
265709
265933
|
platformMessageId: string;
|
|
@@ -266484,6 +266708,7 @@ export declare const feedPostContract: {
|
|
|
266484
266708
|
resumeLabel: {
|
|
266485
266709
|
name: string;
|
|
266486
266710
|
};
|
|
266711
|
+
metadata?: any;
|
|
266487
266712
|
automationQueueId?: string | null | undefined;
|
|
266488
266713
|
};
|
|
266489
266714
|
platformMessageId: string;
|
|
@@ -267252,6 +267477,7 @@ export declare const feedPostContract: {
|
|
|
267252
267477
|
resumeLabel: {
|
|
267253
267478
|
name: string;
|
|
267254
267479
|
};
|
|
267480
|
+
metadata?: any;
|
|
267255
267481
|
automationQueueId?: string | null | undefined;
|
|
267256
267482
|
};
|
|
267257
267483
|
platformMessageId: string;
|
|
@@ -268158,6 +268384,7 @@ export declare const feedPostContract: {
|
|
|
268158
268384
|
resumeLabel: {
|
|
268159
268385
|
name: string;
|
|
268160
268386
|
};
|
|
268387
|
+
metadata?: any;
|
|
268161
268388
|
automationQueueId?: string | null | undefined;
|
|
268162
268389
|
};
|
|
268163
268390
|
platformMessageId: string;
|
|
@@ -268926,6 +269153,7 @@ export declare const feedPostContract: {
|
|
|
268926
269153
|
resumeLabel: {
|
|
268927
269154
|
name: string;
|
|
268928
269155
|
};
|
|
269156
|
+
metadata?: any;
|
|
268929
269157
|
automationQueueId?: string | null | undefined;
|
|
268930
269158
|
};
|
|
268931
269159
|
platformMessageId: string;
|
|
@@ -269834,6 +270062,7 @@ export declare const feedPostContract: {
|
|
|
269834
270062
|
resumeLabel: {
|
|
269835
270063
|
name: string;
|
|
269836
270064
|
};
|
|
270065
|
+
metadata?: any;
|
|
269837
270066
|
automationQueueId?: string | null | undefined;
|
|
269838
270067
|
};
|
|
269839
270068
|
platformMessageId: string;
|
|
@@ -270602,6 +270831,7 @@ export declare const feedPostContract: {
|
|
|
270602
270831
|
resumeLabel: {
|
|
270603
270832
|
name: string;
|
|
270604
270833
|
};
|
|
270834
|
+
metadata?: any;
|
|
270605
270835
|
automationQueueId?: string | null | undefined;
|
|
270606
270836
|
};
|
|
270607
270837
|
platformMessageId: string;
|
|
@@ -271514,6 +271744,7 @@ export declare const feedPostContract: {
|
|
|
271514
271744
|
resumeLabel: {
|
|
271515
271745
|
name: string;
|
|
271516
271746
|
};
|
|
271747
|
+
metadata?: any;
|
|
271517
271748
|
automationQueueId?: string | null | undefined;
|
|
271518
271749
|
};
|
|
271519
271750
|
platformMessageId: string;
|
|
@@ -272282,6 +272513,7 @@ export declare const feedPostContract: {
|
|
|
272282
272513
|
resumeLabel: {
|
|
272283
272514
|
name: string;
|
|
272284
272515
|
};
|
|
272516
|
+
metadata?: any;
|
|
272285
272517
|
automationQueueId?: string | null | undefined;
|
|
272286
272518
|
};
|
|
272287
272519
|
platformMessageId: string;
|
|
@@ -291349,6 +291581,7 @@ export declare const workflowContract: {
|
|
|
291349
291581
|
firstResponseTime: import("zod").ZodNumber;
|
|
291350
291582
|
isLatest: import("zod").ZodBoolean;
|
|
291351
291583
|
isBotRoom: import("zod").ZodBoolean;
|
|
291584
|
+
metadata: import("zod").ZodAny;
|
|
291352
291585
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
291353
291586
|
platformContact: import("zod").ZodObject<{
|
|
291354
291587
|
id: import("zod").ZodString;
|
|
@@ -294387,6 +294620,7 @@ export declare const workflowContract: {
|
|
|
294387
294620
|
resumeLabel: {
|
|
294388
294621
|
name: string;
|
|
294389
294622
|
};
|
|
294623
|
+
metadata?: any;
|
|
294390
294624
|
automationQueueId?: string | null | undefined;
|
|
294391
294625
|
}, {
|
|
294392
294626
|
id: string;
|
|
@@ -294823,6 +295057,7 @@ export declare const workflowContract: {
|
|
|
294823
295057
|
resumeLabel: {
|
|
294824
295058
|
name: string;
|
|
294825
295059
|
};
|
|
295060
|
+
metadata?: any;
|
|
294826
295061
|
automationQueueId?: string | null | undefined;
|
|
294827
295062
|
}>;
|
|
294828
295063
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -295261,6 +295496,7 @@ export declare const workflowContract: {
|
|
|
295261
295496
|
resumeLabel: {
|
|
295262
295497
|
name: string;
|
|
295263
295498
|
};
|
|
295499
|
+
metadata?: any;
|
|
295264
295500
|
automationQueueId?: string | null | undefined;
|
|
295265
295501
|
};
|
|
295266
295502
|
requestId: string;
|
|
@@ -295700,6 +295936,7 @@ export declare const workflowContract: {
|
|
|
295700
295936
|
resumeLabel: {
|
|
295701
295937
|
name: string;
|
|
295702
295938
|
};
|
|
295939
|
+
metadata?: any;
|
|
295703
295940
|
automationQueueId?: string | null | undefined;
|
|
295704
295941
|
};
|
|
295705
295942
|
requestId: string;
|
|
@@ -295779,6 +296016,7 @@ export declare const workflowContract: {
|
|
|
295779
296016
|
firstResponseTime: import("zod").ZodNumber;
|
|
295780
296017
|
isLatest: import("zod").ZodBoolean;
|
|
295781
296018
|
isBotRoom: import("zod").ZodBoolean;
|
|
296019
|
+
metadata: import("zod").ZodAny;
|
|
295782
296020
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
295783
296021
|
platformContact: import("zod").ZodObject<{
|
|
295784
296022
|
id: import("zod").ZodString;
|
|
@@ -298817,6 +299055,7 @@ export declare const workflowContract: {
|
|
|
298817
299055
|
resumeLabel: {
|
|
298818
299056
|
name: string;
|
|
298819
299057
|
};
|
|
299058
|
+
metadata?: any;
|
|
298820
299059
|
automationQueueId?: string | null | undefined;
|
|
298821
299060
|
}, {
|
|
298822
299061
|
id: string;
|
|
@@ -299253,6 +299492,7 @@ export declare const workflowContract: {
|
|
|
299253
299492
|
resumeLabel: {
|
|
299254
299493
|
name: string;
|
|
299255
299494
|
};
|
|
299495
|
+
metadata?: any;
|
|
299256
299496
|
automationQueueId?: string | null | undefined;
|
|
299257
299497
|
}>;
|
|
299258
299498
|
upload: import("zod").ZodObject<{
|
|
@@ -301462,6 +301702,7 @@ export declare const workflowContract: {
|
|
|
301462
301702
|
resumeLabel: {
|
|
301463
301703
|
name: string;
|
|
301464
301704
|
};
|
|
301705
|
+
metadata?: any;
|
|
301465
301706
|
automationQueueId?: string | null | undefined;
|
|
301466
301707
|
};
|
|
301467
301708
|
platformMessageId: string;
|
|
@@ -302235,6 +302476,7 @@ export declare const workflowContract: {
|
|
|
302235
302476
|
resumeLabel: {
|
|
302236
302477
|
name: string;
|
|
302237
302478
|
};
|
|
302479
|
+
metadata?: any;
|
|
302238
302480
|
automationQueueId?: string | null | undefined;
|
|
302239
302481
|
};
|
|
302240
302482
|
platformMessageId: string;
|
|
@@ -303010,6 +303252,7 @@ export declare const workflowContract: {
|
|
|
303010
303252
|
resumeLabel: {
|
|
303011
303253
|
name: string;
|
|
303012
303254
|
};
|
|
303255
|
+
metadata?: any;
|
|
303013
303256
|
automationQueueId?: string | null | undefined;
|
|
303014
303257
|
};
|
|
303015
303258
|
platformMessageId: string;
|
|
@@ -303786,6 +304029,7 @@ export declare const workflowContract: {
|
|
|
303786
304029
|
resumeLabel: {
|
|
303787
304030
|
name: string;
|
|
303788
304031
|
};
|
|
304032
|
+
metadata?: any;
|
|
303789
304033
|
automationQueueId?: string | null | undefined;
|
|
303790
304034
|
};
|
|
303791
304035
|
platformMessageId: string;
|
|
@@ -304640,6 +304884,7 @@ export declare const workflowContract: {
|
|
|
304640
304884
|
} | null;
|
|
304641
304885
|
}>;
|
|
304642
304886
|
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
|
304887
|
+
metadata: import("zod").ZodAny;
|
|
304643
304888
|
status: import("zod").ZodNumber;
|
|
304644
304889
|
createdAt: import("zod").ZodDate;
|
|
304645
304890
|
updatedAt: import("zod").ZodDate;
|
|
@@ -307114,6 +307359,7 @@ export declare const workflowContract: {
|
|
|
307114
307359
|
name: string;
|
|
307115
307360
|
};
|
|
307116
307361
|
solveMessage: string;
|
|
307362
|
+
metadata?: any;
|
|
307117
307363
|
automationQueueId?: string | null | undefined;
|
|
307118
307364
|
}, {
|
|
307119
307365
|
id: string;
|
|
@@ -307551,6 +307797,7 @@ export declare const workflowContract: {
|
|
|
307551
307797
|
name: string;
|
|
307552
307798
|
};
|
|
307553
307799
|
solveMessage: string;
|
|
307800
|
+
metadata?: any;
|
|
307554
307801
|
automationQueueId?: string | null | undefined;
|
|
307555
307802
|
}>;
|
|
307556
307803
|
}, "strip", import("zod").ZodTypeAny, {
|
|
@@ -307990,6 +308237,7 @@ export declare const workflowContract: {
|
|
|
307990
308237
|
name: string;
|
|
307991
308238
|
};
|
|
307992
308239
|
solveMessage: string;
|
|
308240
|
+
metadata?: any;
|
|
307993
308241
|
automationQueueId?: string | null | undefined;
|
|
307994
308242
|
};
|
|
307995
308243
|
requestId: string;
|
|
@@ -308430,6 +308678,7 @@ export declare const workflowContract: {
|
|
|
308430
308678
|
name: string;
|
|
308431
308679
|
};
|
|
308432
308680
|
solveMessage: string;
|
|
308681
|
+
metadata?: any;
|
|
308433
308682
|
automationQueueId?: string | null | undefined;
|
|
308434
308683
|
};
|
|
308435
308684
|
requestId: string;
|