@kl1/contracts 1.1.56-uat → 1.1.58-uat
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +13 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -4
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +10 -10
- package/dist/src/chat/validation.d.ts +71 -71
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +379 -185
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/contract2.d.ts +2 -0
- package/dist/src/contract2.d.ts.map +1 -0
- package/dist/src/facebook-feed/index.d.ts +65 -65
- package/dist/src/instagram/index.d.ts +30 -30
- package/dist/src/line/index.d.ts +30 -30
- package/dist/src/messenger/index.d.ts +30 -30
- package/dist/src/presence-status/index.d.ts +556 -0
- package/dist/src/presence-status/index.d.ts.map +1 -0
- package/dist/src/presence-status/schema.d.ts +31 -0
- package/dist/src/presence-status/schema.d.ts.map +1 -0
- package/dist/src/presence-status/validation.d.ts +28 -0
- package/dist/src/presence-status/validation.d.ts.map +1 -0
- package/dist/src/subscription/index.d.ts +194 -0
- package/dist/src/subscription/index.d.ts.map +1 -1
- package/dist/src/subscription/schema.d.ts +309 -0
- package/dist/src/subscription/schema.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +30 -30
- package/dist/src/webchat/index.d.ts +30 -30
- package/package.json +1 -1
package/dist/src/contract.d.ts
CHANGED
@@ -31081,6 +31081,37 @@ export declare const apiContract: {
|
|
31081
31081
|
type: import("zod").ZodString;
|
31082
31082
|
omnichannel: import("zod").ZodString;
|
31083
31083
|
usageType: import("zod").ZodNullable<import("zod").ZodString>;
|
31084
|
+
productPrice: import("zod").ZodObject<{
|
31085
|
+
id: import("zod").ZodString;
|
31086
|
+
createdAt: import("zod").ZodDate;
|
31087
|
+
updatedAt: import("zod").ZodDate;
|
31088
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
31089
|
+
priceId: import("zod").ZodString;
|
31090
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
31091
|
+
perUnit: import("zod").ZodNumber;
|
31092
|
+
price: import("zod").ZodNumber;
|
31093
|
+
currency: import("zod").ZodNullable<import("zod").ZodString>;
|
31094
|
+
}, "strip", import("zod").ZodTypeAny, {
|
31095
|
+
id: string;
|
31096
|
+
name: string | null;
|
31097
|
+
currency: string | null;
|
31098
|
+
createdAt: Date;
|
31099
|
+
updatedAt: Date;
|
31100
|
+
deletedAt: Date | null;
|
31101
|
+
priceId: string;
|
31102
|
+
perUnit: number;
|
31103
|
+
price: number;
|
31104
|
+
}, {
|
31105
|
+
id: string;
|
31106
|
+
name: string | null;
|
31107
|
+
currency: string | null;
|
31108
|
+
createdAt: Date;
|
31109
|
+
updatedAt: Date;
|
31110
|
+
deletedAt: Date | null;
|
31111
|
+
priceId: string;
|
31112
|
+
perUnit: number;
|
31113
|
+
price: number;
|
31114
|
+
}>;
|
31084
31115
|
}, "strip", import("zod").ZodTypeAny, {
|
31085
31116
|
type: string;
|
31086
31117
|
id: string;
|
@@ -31092,6 +31123,17 @@ export declare const apiContract: {
|
|
31092
31123
|
productId: string;
|
31093
31124
|
omnichannel: string;
|
31094
31125
|
usageType: string | null;
|
31126
|
+
productPrice: {
|
31127
|
+
id: string;
|
31128
|
+
name: string | null;
|
31129
|
+
currency: string | null;
|
31130
|
+
createdAt: Date;
|
31131
|
+
updatedAt: Date;
|
31132
|
+
deletedAt: Date | null;
|
31133
|
+
priceId: string;
|
31134
|
+
perUnit: number;
|
31135
|
+
price: number;
|
31136
|
+
};
|
31095
31137
|
}, {
|
31096
31138
|
type: string;
|
31097
31139
|
id: string;
|
@@ -31103,6 +31145,17 @@ export declare const apiContract: {
|
|
31103
31145
|
productId: string;
|
31104
31146
|
omnichannel: string;
|
31105
31147
|
usageType: string | null;
|
31148
|
+
productPrice: {
|
31149
|
+
id: string;
|
31150
|
+
name: string | null;
|
31151
|
+
currency: string | null;
|
31152
|
+
createdAt: Date;
|
31153
|
+
updatedAt: Date;
|
31154
|
+
deletedAt: Date | null;
|
31155
|
+
priceId: string;
|
31156
|
+
perUnit: number;
|
31157
|
+
price: number;
|
31158
|
+
};
|
31106
31159
|
}>;
|
31107
31160
|
}, "strip", import("zod").ZodTypeAny, {
|
31108
31161
|
id: string;
|
@@ -31117,6 +31170,17 @@ export declare const apiContract: {
|
|
31117
31170
|
productId: string;
|
31118
31171
|
omnichannel: string;
|
31119
31172
|
usageType: string | null;
|
31173
|
+
productPrice: {
|
31174
|
+
id: string;
|
31175
|
+
name: string | null;
|
31176
|
+
currency: string | null;
|
31177
|
+
createdAt: Date;
|
31178
|
+
updatedAt: Date;
|
31179
|
+
deletedAt: Date | null;
|
31180
|
+
priceId: string;
|
31181
|
+
perUnit: number;
|
31182
|
+
price: number;
|
31183
|
+
};
|
31120
31184
|
};
|
31121
31185
|
createdAt: Date;
|
31122
31186
|
updatedAt: Date;
|
@@ -31137,6 +31201,17 @@ export declare const apiContract: {
|
|
31137
31201
|
productId: string;
|
31138
31202
|
omnichannel: string;
|
31139
31203
|
usageType: string | null;
|
31204
|
+
productPrice: {
|
31205
|
+
id: string;
|
31206
|
+
name: string | null;
|
31207
|
+
currency: string | null;
|
31208
|
+
createdAt: Date;
|
31209
|
+
updatedAt: Date;
|
31210
|
+
deletedAt: Date | null;
|
31211
|
+
priceId: string;
|
31212
|
+
perUnit: number;
|
31213
|
+
price: number;
|
31214
|
+
};
|
31140
31215
|
};
|
31141
31216
|
createdAt: Date;
|
31142
31217
|
updatedAt: Date;
|
@@ -31145,6 +31220,37 @@ export declare const apiContract: {
|
|
31145
31220
|
subscriptionItemId: string;
|
31146
31221
|
usage: number | null;
|
31147
31222
|
}>, "many">;
|
31223
|
+
productPrice: import("zod").ZodObject<{
|
31224
|
+
id: import("zod").ZodString;
|
31225
|
+
createdAt: import("zod").ZodDate;
|
31226
|
+
updatedAt: import("zod").ZodDate;
|
31227
|
+
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
31228
|
+
priceId: import("zod").ZodString;
|
31229
|
+
name: import("zod").ZodNullable<import("zod").ZodString>;
|
31230
|
+
perUnit: import("zod").ZodNumber;
|
31231
|
+
price: import("zod").ZodNumber;
|
31232
|
+
currency: import("zod").ZodNullable<import("zod").ZodString>;
|
31233
|
+
}, "strip", import("zod").ZodTypeAny, {
|
31234
|
+
id: string;
|
31235
|
+
name: string | null;
|
31236
|
+
currency: string | null;
|
31237
|
+
createdAt: Date;
|
31238
|
+
updatedAt: Date;
|
31239
|
+
deletedAt: Date | null;
|
31240
|
+
priceId: string;
|
31241
|
+
perUnit: number;
|
31242
|
+
price: number;
|
31243
|
+
}, {
|
31244
|
+
id: string;
|
31245
|
+
name: string | null;
|
31246
|
+
currency: string | null;
|
31247
|
+
createdAt: Date;
|
31248
|
+
updatedAt: Date;
|
31249
|
+
deletedAt: Date | null;
|
31250
|
+
priceId: string;
|
31251
|
+
perUnit: number;
|
31252
|
+
price: number;
|
31253
|
+
}>;
|
31148
31254
|
}, "strip", import("zod").ZodTypeAny, {
|
31149
31255
|
type: string;
|
31150
31256
|
interval: string;
|
@@ -31155,6 +31261,17 @@ export declare const apiContract: {
|
|
31155
31261
|
updatedAt: Date;
|
31156
31262
|
deletedAt: Date | null;
|
31157
31263
|
provider: string;
|
31264
|
+
productPrice: {
|
31265
|
+
id: string;
|
31266
|
+
name: string | null;
|
31267
|
+
currency: string | null;
|
31268
|
+
createdAt: Date;
|
31269
|
+
updatedAt: Date;
|
31270
|
+
deletedAt: Date | null;
|
31271
|
+
priceId: string;
|
31272
|
+
perUnit: number;
|
31273
|
+
price: number;
|
31274
|
+
};
|
31158
31275
|
subscriptionId: string;
|
31159
31276
|
quantity: number;
|
31160
31277
|
amount: number;
|
@@ -31173,6 +31290,17 @@ export declare const apiContract: {
|
|
31173
31290
|
productId: string;
|
31174
31291
|
omnichannel: string;
|
31175
31292
|
usageType: string | null;
|
31293
|
+
productPrice: {
|
31294
|
+
id: string;
|
31295
|
+
name: string | null;
|
31296
|
+
currency: string | null;
|
31297
|
+
createdAt: Date;
|
31298
|
+
updatedAt: Date;
|
31299
|
+
deletedAt: Date | null;
|
31300
|
+
priceId: string;
|
31301
|
+
perUnit: number;
|
31302
|
+
price: number;
|
31303
|
+
};
|
31176
31304
|
};
|
31177
31305
|
createdAt: Date;
|
31178
31306
|
updatedAt: Date;
|
@@ -31191,6 +31319,17 @@ export declare const apiContract: {
|
|
31191
31319
|
updatedAt: Date;
|
31192
31320
|
deletedAt: Date | null;
|
31193
31321
|
provider: string;
|
31322
|
+
productPrice: {
|
31323
|
+
id: string;
|
31324
|
+
name: string | null;
|
31325
|
+
currency: string | null;
|
31326
|
+
createdAt: Date;
|
31327
|
+
updatedAt: Date;
|
31328
|
+
deletedAt: Date | null;
|
31329
|
+
priceId: string;
|
31330
|
+
perUnit: number;
|
31331
|
+
price: number;
|
31332
|
+
};
|
31194
31333
|
subscriptionId: string;
|
31195
31334
|
quantity: number;
|
31196
31335
|
amount: number;
|
@@ -31209,6 +31348,17 @@ export declare const apiContract: {
|
|
31209
31348
|
productId: string;
|
31210
31349
|
omnichannel: string;
|
31211
31350
|
usageType: string | null;
|
31351
|
+
productPrice: {
|
31352
|
+
id: string;
|
31353
|
+
name: string | null;
|
31354
|
+
currency: string | null;
|
31355
|
+
createdAt: Date;
|
31356
|
+
updatedAt: Date;
|
31357
|
+
deletedAt: Date | null;
|
31358
|
+
priceId: string;
|
31359
|
+
perUnit: number;
|
31360
|
+
price: number;
|
31361
|
+
};
|
31212
31362
|
};
|
31213
31363
|
createdAt: Date;
|
31214
31364
|
updatedAt: Date;
|
@@ -31230,6 +31380,17 @@ export declare const apiContract: {
|
|
31230
31380
|
updatedAt: Date;
|
31231
31381
|
deletedAt: Date | null;
|
31232
31382
|
provider: string;
|
31383
|
+
productPrice: {
|
31384
|
+
id: string;
|
31385
|
+
name: string | null;
|
31386
|
+
currency: string | null;
|
31387
|
+
createdAt: Date;
|
31388
|
+
updatedAt: Date;
|
31389
|
+
deletedAt: Date | null;
|
31390
|
+
priceId: string;
|
31391
|
+
perUnit: number;
|
31392
|
+
price: number;
|
31393
|
+
};
|
31233
31394
|
subscriptionId: string;
|
31234
31395
|
quantity: number;
|
31235
31396
|
amount: number;
|
@@ -31248,6 +31409,17 @@ export declare const apiContract: {
|
|
31248
31409
|
productId: string;
|
31249
31410
|
omnichannel: string;
|
31250
31411
|
usageType: string | null;
|
31412
|
+
productPrice: {
|
31413
|
+
id: string;
|
31414
|
+
name: string | null;
|
31415
|
+
currency: string | null;
|
31416
|
+
createdAt: Date;
|
31417
|
+
updatedAt: Date;
|
31418
|
+
deletedAt: Date | null;
|
31419
|
+
priceId: string;
|
31420
|
+
perUnit: number;
|
31421
|
+
price: number;
|
31422
|
+
};
|
31251
31423
|
};
|
31252
31424
|
createdAt: Date;
|
31253
31425
|
updatedAt: Date;
|
@@ -31269,6 +31441,17 @@ export declare const apiContract: {
|
|
31269
31441
|
updatedAt: Date;
|
31270
31442
|
deletedAt: Date | null;
|
31271
31443
|
provider: string;
|
31444
|
+
productPrice: {
|
31445
|
+
id: string;
|
31446
|
+
name: string | null;
|
31447
|
+
currency: string | null;
|
31448
|
+
createdAt: Date;
|
31449
|
+
updatedAt: Date;
|
31450
|
+
deletedAt: Date | null;
|
31451
|
+
priceId: string;
|
31452
|
+
perUnit: number;
|
31453
|
+
price: number;
|
31454
|
+
};
|
31272
31455
|
subscriptionId: string;
|
31273
31456
|
quantity: number;
|
31274
31457
|
amount: number;
|
@@ -31287,6 +31470,17 @@ export declare const apiContract: {
|
|
31287
31470
|
productId: string;
|
31288
31471
|
omnichannel: string;
|
31289
31472
|
usageType: string | null;
|
31473
|
+
productPrice: {
|
31474
|
+
id: string;
|
31475
|
+
name: string | null;
|
31476
|
+
currency: string | null;
|
31477
|
+
createdAt: Date;
|
31478
|
+
updatedAt: Date;
|
31479
|
+
deletedAt: Date | null;
|
31480
|
+
priceId: string;
|
31481
|
+
perUnit: number;
|
31482
|
+
price: number;
|
31483
|
+
};
|
31290
31484
|
};
|
31291
31485
|
createdAt: Date;
|
31292
31486
|
updatedAt: Date;
|
@@ -75076,7 +75270,7 @@ export declare const platformContract: {
|
|
75076
75270
|
fileSize: number;
|
75077
75271
|
originalUrl?: string | undefined;
|
75078
75272
|
}>>;
|
75079
|
-
sender: import("zod").ZodObject<{
|
75273
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
75080
75274
|
id: import("zod").ZodString;
|
75081
75275
|
name: import("zod").ZodString;
|
75082
75276
|
email: import("zod").ZodString;
|
@@ -75094,19 +75288,12 @@ export declare const platformContract: {
|
|
75094
75288
|
name: string;
|
75095
75289
|
email: string;
|
75096
75290
|
phone: string | null;
|
75097
|
-
}
|
75291
|
+
}>>;
|
75098
75292
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
75099
75293
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
75100
75294
|
}, "strip", import("zod").ZodTypeAny, {
|
75101
75295
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
75102
75296
|
direction: "incoming" | "outgoing" | "system";
|
75103
|
-
sender: {
|
75104
|
-
id: string;
|
75105
|
-
address: string | null;
|
75106
|
-
name: string;
|
75107
|
-
email: string;
|
75108
|
-
phone: string | null;
|
75109
|
-
};
|
75110
75297
|
id?: string | undefined;
|
75111
75298
|
message?: string | undefined;
|
75112
75299
|
readAt?: string | Date | null | undefined;
|
@@ -75126,18 +75313,18 @@ export declare const platformContract: {
|
|
75126
75313
|
fileSize: number;
|
75127
75314
|
originalUrl?: string | undefined;
|
75128
75315
|
} | undefined;
|
75129
|
-
|
75130
|
-
feedPostId?: string | undefined;
|
75131
|
-
}, {
|
75132
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
75133
|
-
direction: "incoming" | "outgoing" | "system";
|
75134
|
-
sender: {
|
75316
|
+
sender?: {
|
75135
75317
|
id: string;
|
75136
75318
|
address: string | null;
|
75137
75319
|
name: string;
|
75138
75320
|
email: string;
|
75139
75321
|
phone: string | null;
|
75140
|
-
};
|
75322
|
+
} | undefined;
|
75323
|
+
parentMessageId?: string | undefined;
|
75324
|
+
feedPostId?: string | undefined;
|
75325
|
+
}, {
|
75326
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
75327
|
+
direction: "incoming" | "outgoing" | "system";
|
75141
75328
|
id?: string | undefined;
|
75142
75329
|
message?: string | undefined;
|
75143
75330
|
readAt?: string | Date | null | undefined;
|
@@ -75157,6 +75344,13 @@ export declare const platformContract: {
|
|
75157
75344
|
fileSize: number;
|
75158
75345
|
originalUrl?: string | undefined;
|
75159
75346
|
} | undefined;
|
75347
|
+
sender?: {
|
75348
|
+
id: string;
|
75349
|
+
address: string | null;
|
75350
|
+
name: string;
|
75351
|
+
email: string;
|
75352
|
+
phone: string | null;
|
75353
|
+
} | undefined;
|
75160
75354
|
parentMessageId?: string | undefined;
|
75161
75355
|
feedPostId?: string | undefined;
|
75162
75356
|
}>;
|
@@ -75164,13 +75358,6 @@ export declare const platformContract: {
|
|
75164
75358
|
message: {
|
75165
75359
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
75166
75360
|
direction: "incoming" | "outgoing" | "system";
|
75167
|
-
sender: {
|
75168
|
-
id: string;
|
75169
|
-
address: string | null;
|
75170
|
-
name: string;
|
75171
|
-
email: string;
|
75172
|
-
phone: string | null;
|
75173
|
-
};
|
75174
75361
|
id?: string | undefined;
|
75175
75362
|
message?: string | undefined;
|
75176
75363
|
readAt?: string | Date | null | undefined;
|
@@ -75190,6 +75377,13 @@ export declare const platformContract: {
|
|
75190
75377
|
fileSize: number;
|
75191
75378
|
originalUrl?: string | undefined;
|
75192
75379
|
} | undefined;
|
75380
|
+
sender?: {
|
75381
|
+
id: string;
|
75382
|
+
address: string | null;
|
75383
|
+
name: string;
|
75384
|
+
email: string;
|
75385
|
+
phone: string | null;
|
75386
|
+
} | undefined;
|
75193
75387
|
parentMessageId?: string | undefined;
|
75194
75388
|
feedPostId?: string | undefined;
|
75195
75389
|
};
|
@@ -75267,13 +75461,6 @@ export declare const platformContract: {
|
|
75267
75461
|
message: {
|
75268
75462
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
75269
75463
|
direction: "incoming" | "outgoing" | "system";
|
75270
|
-
sender: {
|
75271
|
-
id: string;
|
75272
|
-
address: string | null;
|
75273
|
-
name: string;
|
75274
|
-
email: string;
|
75275
|
-
phone: string | null;
|
75276
|
-
};
|
75277
75464
|
id?: string | undefined;
|
75278
75465
|
message?: string | undefined;
|
75279
75466
|
readAt?: string | Date | null | undefined;
|
@@ -75293,6 +75480,13 @@ export declare const platformContract: {
|
|
75293
75480
|
fileSize: number;
|
75294
75481
|
originalUrl?: string | undefined;
|
75295
75482
|
} | undefined;
|
75483
|
+
sender?: {
|
75484
|
+
id: string;
|
75485
|
+
address: string | null;
|
75486
|
+
name: string;
|
75487
|
+
email: string;
|
75488
|
+
phone: string | null;
|
75489
|
+
} | undefined;
|
75296
75490
|
parentMessageId?: string | undefined;
|
75297
75491
|
feedPostId?: string | undefined;
|
75298
75492
|
};
|
@@ -93973,7 +94167,7 @@ export declare const platformContract: {
|
|
93973
94167
|
fileSize: number;
|
93974
94168
|
originalUrl?: string | undefined;
|
93975
94169
|
}>>;
|
93976
|
-
sender: import("zod").ZodObject<{
|
94170
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
93977
94171
|
id: import("zod").ZodString;
|
93978
94172
|
name: import("zod").ZodString;
|
93979
94173
|
email: import("zod").ZodString;
|
@@ -93991,19 +94185,12 @@ export declare const platformContract: {
|
|
93991
94185
|
name: string;
|
93992
94186
|
email: string;
|
93993
94187
|
phone: string | null;
|
93994
|
-
}
|
94188
|
+
}>>;
|
93995
94189
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
93996
94190
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
93997
94191
|
}, "strip", import("zod").ZodTypeAny, {
|
93998
94192
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
93999
94193
|
direction: "incoming" | "outgoing" | "system";
|
94000
|
-
sender: {
|
94001
|
-
id: string;
|
94002
|
-
address: string | null;
|
94003
|
-
name: string;
|
94004
|
-
email: string;
|
94005
|
-
phone: string | null;
|
94006
|
-
};
|
94007
94194
|
id?: string | undefined;
|
94008
94195
|
message?: string | undefined;
|
94009
94196
|
readAt?: string | Date | null | undefined;
|
@@ -94023,18 +94210,18 @@ export declare const platformContract: {
|
|
94023
94210
|
fileSize: number;
|
94024
94211
|
originalUrl?: string | undefined;
|
94025
94212
|
} | undefined;
|
94026
|
-
|
94027
|
-
feedPostId?: string | undefined;
|
94028
|
-
}, {
|
94029
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94030
|
-
direction: "incoming" | "outgoing" | "system";
|
94031
|
-
sender: {
|
94213
|
+
sender?: {
|
94032
94214
|
id: string;
|
94033
94215
|
address: string | null;
|
94034
94216
|
name: string;
|
94035
94217
|
email: string;
|
94036
94218
|
phone: string | null;
|
94037
|
-
};
|
94219
|
+
} | undefined;
|
94220
|
+
parentMessageId?: string | undefined;
|
94221
|
+
feedPostId?: string | undefined;
|
94222
|
+
}, {
|
94223
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94224
|
+
direction: "incoming" | "outgoing" | "system";
|
94038
94225
|
id?: string | undefined;
|
94039
94226
|
message?: string | undefined;
|
94040
94227
|
readAt?: string | Date | null | undefined;
|
@@ -94054,6 +94241,13 @@ export declare const platformContract: {
|
|
94054
94241
|
fileSize: number;
|
94055
94242
|
originalUrl?: string | undefined;
|
94056
94243
|
} | undefined;
|
94244
|
+
sender?: {
|
94245
|
+
id: string;
|
94246
|
+
address: string | null;
|
94247
|
+
name: string;
|
94248
|
+
email: string;
|
94249
|
+
phone: string | null;
|
94250
|
+
} | undefined;
|
94057
94251
|
parentMessageId?: string | undefined;
|
94058
94252
|
feedPostId?: string | undefined;
|
94059
94253
|
}>;
|
@@ -94061,13 +94255,6 @@ export declare const platformContract: {
|
|
94061
94255
|
message: {
|
94062
94256
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94063
94257
|
direction: "incoming" | "outgoing" | "system";
|
94064
|
-
sender: {
|
94065
|
-
id: string;
|
94066
|
-
address: string | null;
|
94067
|
-
name: string;
|
94068
|
-
email: string;
|
94069
|
-
phone: string | null;
|
94070
|
-
};
|
94071
94258
|
id?: string | undefined;
|
94072
94259
|
message?: string | undefined;
|
94073
94260
|
readAt?: string | Date | null | undefined;
|
@@ -94087,6 +94274,13 @@ export declare const platformContract: {
|
|
94087
94274
|
fileSize: number;
|
94088
94275
|
originalUrl?: string | undefined;
|
94089
94276
|
} | undefined;
|
94277
|
+
sender?: {
|
94278
|
+
id: string;
|
94279
|
+
address: string | null;
|
94280
|
+
name: string;
|
94281
|
+
email: string;
|
94282
|
+
phone: string | null;
|
94283
|
+
} | undefined;
|
94090
94284
|
parentMessageId?: string | undefined;
|
94091
94285
|
feedPostId?: string | undefined;
|
94092
94286
|
};
|
@@ -94164,13 +94358,6 @@ export declare const platformContract: {
|
|
94164
94358
|
message: {
|
94165
94359
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
94166
94360
|
direction: "incoming" | "outgoing" | "system";
|
94167
|
-
sender: {
|
94168
|
-
id: string;
|
94169
|
-
address: string | null;
|
94170
|
-
name: string;
|
94171
|
-
email: string;
|
94172
|
-
phone: string | null;
|
94173
|
-
};
|
94174
94361
|
id?: string | undefined;
|
94175
94362
|
message?: string | undefined;
|
94176
94363
|
readAt?: string | Date | null | undefined;
|
@@ -94190,6 +94377,13 @@ export declare const platformContract: {
|
|
94190
94377
|
fileSize: number;
|
94191
94378
|
originalUrl?: string | undefined;
|
94192
94379
|
} | undefined;
|
94380
|
+
sender?: {
|
94381
|
+
id: string;
|
94382
|
+
address: string | null;
|
94383
|
+
name: string;
|
94384
|
+
email: string;
|
94385
|
+
phone: string | null;
|
94386
|
+
} | undefined;
|
94193
94387
|
parentMessageId?: string | undefined;
|
94194
94388
|
feedPostId?: string | undefined;
|
94195
94389
|
};
|
@@ -111740,7 +111934,7 @@ export declare const platformMessengerContract: {
|
|
111740
111934
|
fileSize: number;
|
111741
111935
|
originalUrl?: string | undefined;
|
111742
111936
|
}>>;
|
111743
|
-
sender: import("zod").ZodObject<{
|
111937
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
111744
111938
|
id: import("zod").ZodString;
|
111745
111939
|
name: import("zod").ZodString;
|
111746
111940
|
email: import("zod").ZodString;
|
@@ -111758,19 +111952,12 @@ export declare const platformMessengerContract: {
|
|
111758
111952
|
name: string;
|
111759
111953
|
email: string;
|
111760
111954
|
phone: string | null;
|
111761
|
-
}
|
111955
|
+
}>>;
|
111762
111956
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
111763
111957
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
111764
111958
|
}, "strip", import("zod").ZodTypeAny, {
|
111765
111959
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
111766
111960
|
direction: "incoming" | "outgoing" | "system";
|
111767
|
-
sender: {
|
111768
|
-
id: string;
|
111769
|
-
address: string | null;
|
111770
|
-
name: string;
|
111771
|
-
email: string;
|
111772
|
-
phone: string | null;
|
111773
|
-
};
|
111774
111961
|
id?: string | undefined;
|
111775
111962
|
message?: string | undefined;
|
111776
111963
|
readAt?: string | Date | null | undefined;
|
@@ -111790,18 +111977,18 @@ export declare const platformMessengerContract: {
|
|
111790
111977
|
fileSize: number;
|
111791
111978
|
originalUrl?: string | undefined;
|
111792
111979
|
} | undefined;
|
111793
|
-
|
111794
|
-
feedPostId?: string | undefined;
|
111795
|
-
}, {
|
111796
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
111797
|
-
direction: "incoming" | "outgoing" | "system";
|
111798
|
-
sender: {
|
111980
|
+
sender?: {
|
111799
111981
|
id: string;
|
111800
111982
|
address: string | null;
|
111801
111983
|
name: string;
|
111802
111984
|
email: string;
|
111803
111985
|
phone: string | null;
|
111804
|
-
};
|
111986
|
+
} | undefined;
|
111987
|
+
parentMessageId?: string | undefined;
|
111988
|
+
feedPostId?: string | undefined;
|
111989
|
+
}, {
|
111990
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
111991
|
+
direction: "incoming" | "outgoing" | "system";
|
111805
111992
|
id?: string | undefined;
|
111806
111993
|
message?: string | undefined;
|
111807
111994
|
readAt?: string | Date | null | undefined;
|
@@ -111821,6 +112008,13 @@ export declare const platformMessengerContract: {
|
|
111821
112008
|
fileSize: number;
|
111822
112009
|
originalUrl?: string | undefined;
|
111823
112010
|
} | undefined;
|
112011
|
+
sender?: {
|
112012
|
+
id: string;
|
112013
|
+
address: string | null;
|
112014
|
+
name: string;
|
112015
|
+
email: string;
|
112016
|
+
phone: string | null;
|
112017
|
+
} | undefined;
|
111824
112018
|
parentMessageId?: string | undefined;
|
111825
112019
|
feedPostId?: string | undefined;
|
111826
112020
|
}>;
|
@@ -111828,13 +112022,6 @@ export declare const platformMessengerContract: {
|
|
111828
112022
|
message: {
|
111829
112023
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
111830
112024
|
direction: "incoming" | "outgoing" | "system";
|
111831
|
-
sender: {
|
111832
|
-
id: string;
|
111833
|
-
address: string | null;
|
111834
|
-
name: string;
|
111835
|
-
email: string;
|
111836
|
-
phone: string | null;
|
111837
|
-
};
|
111838
112025
|
id?: string | undefined;
|
111839
112026
|
message?: string | undefined;
|
111840
112027
|
readAt?: string | Date | null | undefined;
|
@@ -111854,6 +112041,13 @@ export declare const platformMessengerContract: {
|
|
111854
112041
|
fileSize: number;
|
111855
112042
|
originalUrl?: string | undefined;
|
111856
112043
|
} | undefined;
|
112044
|
+
sender?: {
|
112045
|
+
id: string;
|
112046
|
+
address: string | null;
|
112047
|
+
name: string;
|
112048
|
+
email: string;
|
112049
|
+
phone: string | null;
|
112050
|
+
} | undefined;
|
111857
112051
|
parentMessageId?: string | undefined;
|
111858
112052
|
feedPostId?: string | undefined;
|
111859
112053
|
};
|
@@ -111931,13 +112125,6 @@ export declare const platformMessengerContract: {
|
|
111931
112125
|
message: {
|
111932
112126
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
111933
112127
|
direction: "incoming" | "outgoing" | "system";
|
111934
|
-
sender: {
|
111935
|
-
id: string;
|
111936
|
-
address: string | null;
|
111937
|
-
name: string;
|
111938
|
-
email: string;
|
111939
|
-
phone: string | null;
|
111940
|
-
};
|
111941
112128
|
id?: string | undefined;
|
111942
112129
|
message?: string | undefined;
|
111943
112130
|
readAt?: string | Date | null | undefined;
|
@@ -111957,6 +112144,13 @@ export declare const platformMessengerContract: {
|
|
111957
112144
|
fileSize: number;
|
111958
112145
|
originalUrl?: string | undefined;
|
111959
112146
|
} | undefined;
|
112147
|
+
sender?: {
|
112148
|
+
id: string;
|
112149
|
+
address: string | null;
|
112150
|
+
name: string;
|
112151
|
+
email: string;
|
112152
|
+
phone: string | null;
|
112153
|
+
} | undefined;
|
111960
112154
|
parentMessageId?: string | undefined;
|
111961
112155
|
feedPostId?: string | undefined;
|
111962
112156
|
};
|
@@ -130156,7 +130350,7 @@ export declare const platformInstagramContract: {
|
|
130156
130350
|
fileSize: number;
|
130157
130351
|
originalUrl?: string | undefined;
|
130158
130352
|
}>>;
|
130159
|
-
sender: import("zod").ZodObject<{
|
130353
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
130160
130354
|
id: import("zod").ZodString;
|
130161
130355
|
name: import("zod").ZodString;
|
130162
130356
|
email: import("zod").ZodString;
|
@@ -130174,19 +130368,12 @@ export declare const platformInstagramContract: {
|
|
130174
130368
|
name: string;
|
130175
130369
|
email: string;
|
130176
130370
|
phone: string | null;
|
130177
|
-
}
|
130371
|
+
}>>;
|
130178
130372
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
130179
130373
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
130180
130374
|
}, "strip", import("zod").ZodTypeAny, {
|
130181
130375
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130182
130376
|
direction: "incoming" | "outgoing" | "system";
|
130183
|
-
sender: {
|
130184
|
-
id: string;
|
130185
|
-
address: string | null;
|
130186
|
-
name: string;
|
130187
|
-
email: string;
|
130188
|
-
phone: string | null;
|
130189
|
-
};
|
130190
130377
|
id?: string | undefined;
|
130191
130378
|
message?: string | undefined;
|
130192
130379
|
readAt?: string | Date | null | undefined;
|
@@ -130206,18 +130393,18 @@ export declare const platformInstagramContract: {
|
|
130206
130393
|
fileSize: number;
|
130207
130394
|
originalUrl?: string | undefined;
|
130208
130395
|
} | undefined;
|
130209
|
-
|
130210
|
-
feedPostId?: string | undefined;
|
130211
|
-
}, {
|
130212
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130213
|
-
direction: "incoming" | "outgoing" | "system";
|
130214
|
-
sender: {
|
130396
|
+
sender?: {
|
130215
130397
|
id: string;
|
130216
130398
|
address: string | null;
|
130217
130399
|
name: string;
|
130218
130400
|
email: string;
|
130219
130401
|
phone: string | null;
|
130220
|
-
};
|
130402
|
+
} | undefined;
|
130403
|
+
parentMessageId?: string | undefined;
|
130404
|
+
feedPostId?: string | undefined;
|
130405
|
+
}, {
|
130406
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130407
|
+
direction: "incoming" | "outgoing" | "system";
|
130221
130408
|
id?: string | undefined;
|
130222
130409
|
message?: string | undefined;
|
130223
130410
|
readAt?: string | Date | null | undefined;
|
@@ -130237,6 +130424,13 @@ export declare const platformInstagramContract: {
|
|
130237
130424
|
fileSize: number;
|
130238
130425
|
originalUrl?: string | undefined;
|
130239
130426
|
} | undefined;
|
130427
|
+
sender?: {
|
130428
|
+
id: string;
|
130429
|
+
address: string | null;
|
130430
|
+
name: string;
|
130431
|
+
email: string;
|
130432
|
+
phone: string | null;
|
130433
|
+
} | undefined;
|
130240
130434
|
parentMessageId?: string | undefined;
|
130241
130435
|
feedPostId?: string | undefined;
|
130242
130436
|
}>;
|
@@ -130244,13 +130438,6 @@ export declare const platformInstagramContract: {
|
|
130244
130438
|
message: {
|
130245
130439
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130246
130440
|
direction: "incoming" | "outgoing" | "system";
|
130247
|
-
sender: {
|
130248
|
-
id: string;
|
130249
|
-
address: string | null;
|
130250
|
-
name: string;
|
130251
|
-
email: string;
|
130252
|
-
phone: string | null;
|
130253
|
-
};
|
130254
130441
|
id?: string | undefined;
|
130255
130442
|
message?: string | undefined;
|
130256
130443
|
readAt?: string | Date | null | undefined;
|
@@ -130270,6 +130457,13 @@ export declare const platformInstagramContract: {
|
|
130270
130457
|
fileSize: number;
|
130271
130458
|
originalUrl?: string | undefined;
|
130272
130459
|
} | undefined;
|
130460
|
+
sender?: {
|
130461
|
+
id: string;
|
130462
|
+
address: string | null;
|
130463
|
+
name: string;
|
130464
|
+
email: string;
|
130465
|
+
phone: string | null;
|
130466
|
+
} | undefined;
|
130273
130467
|
parentMessageId?: string | undefined;
|
130274
130468
|
feedPostId?: string | undefined;
|
130275
130469
|
};
|
@@ -130347,13 +130541,6 @@ export declare const platformInstagramContract: {
|
|
130347
130541
|
message: {
|
130348
130542
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
130349
130543
|
direction: "incoming" | "outgoing" | "system";
|
130350
|
-
sender: {
|
130351
|
-
id: string;
|
130352
|
-
address: string | null;
|
130353
|
-
name: string;
|
130354
|
-
email: string;
|
130355
|
-
phone: string | null;
|
130356
|
-
};
|
130357
130544
|
id?: string | undefined;
|
130358
130545
|
message?: string | undefined;
|
130359
130546
|
readAt?: string | Date | null | undefined;
|
@@ -130373,6 +130560,13 @@ export declare const platformInstagramContract: {
|
|
130373
130560
|
fileSize: number;
|
130374
130561
|
originalUrl?: string | undefined;
|
130375
130562
|
} | undefined;
|
130563
|
+
sender?: {
|
130564
|
+
id: string;
|
130565
|
+
address: string | null;
|
130566
|
+
name: string;
|
130567
|
+
email: string;
|
130568
|
+
phone: string | null;
|
130569
|
+
} | undefined;
|
130376
130570
|
parentMessageId?: string | undefined;
|
130377
130571
|
feedPostId?: string | undefined;
|
130378
130572
|
};
|
@@ -151542,7 +151736,7 @@ export declare const facebookFeedContract: {
|
|
151542
151736
|
fileSize: number;
|
151543
151737
|
originalUrl?: string | undefined;
|
151544
151738
|
}>>;
|
151545
|
-
sender: import("zod").ZodObject<{
|
151739
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
151546
151740
|
id: import("zod").ZodString;
|
151547
151741
|
name: import("zod").ZodString;
|
151548
151742
|
email: import("zod").ZodString;
|
@@ -151560,19 +151754,12 @@ export declare const facebookFeedContract: {
|
|
151560
151754
|
name: string;
|
151561
151755
|
email: string;
|
151562
151756
|
phone: string | null;
|
151563
|
-
}
|
151757
|
+
}>>;
|
151564
151758
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
151565
151759
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
151566
151760
|
}, "strip", import("zod").ZodTypeAny, {
|
151567
151761
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
151568
151762
|
direction: "incoming" | "outgoing" | "system";
|
151569
|
-
sender: {
|
151570
|
-
id: string;
|
151571
|
-
address: string | null;
|
151572
|
-
name: string;
|
151573
|
-
email: string;
|
151574
|
-
phone: string | null;
|
151575
|
-
};
|
151576
151763
|
id?: string | undefined;
|
151577
151764
|
message?: string | undefined;
|
151578
151765
|
readAt?: string | Date | null | undefined;
|
@@ -151592,18 +151779,18 @@ export declare const facebookFeedContract: {
|
|
151592
151779
|
fileSize: number;
|
151593
151780
|
originalUrl?: string | undefined;
|
151594
151781
|
} | undefined;
|
151595
|
-
|
151596
|
-
feedPostId?: string | undefined;
|
151597
|
-
}, {
|
151598
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
151599
|
-
direction: "incoming" | "outgoing" | "system";
|
151600
|
-
sender: {
|
151782
|
+
sender?: {
|
151601
151783
|
id: string;
|
151602
151784
|
address: string | null;
|
151603
151785
|
name: string;
|
151604
151786
|
email: string;
|
151605
151787
|
phone: string | null;
|
151606
|
-
};
|
151788
|
+
} | undefined;
|
151789
|
+
parentMessageId?: string | undefined;
|
151790
|
+
feedPostId?: string | undefined;
|
151791
|
+
}, {
|
151792
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
151793
|
+
direction: "incoming" | "outgoing" | "system";
|
151607
151794
|
id?: string | undefined;
|
151608
151795
|
message?: string | undefined;
|
151609
151796
|
readAt?: string | Date | null | undefined;
|
@@ -151623,6 +151810,13 @@ export declare const facebookFeedContract: {
|
|
151623
151810
|
fileSize: number;
|
151624
151811
|
originalUrl?: string | undefined;
|
151625
151812
|
} | undefined;
|
151813
|
+
sender?: {
|
151814
|
+
id: string;
|
151815
|
+
address: string | null;
|
151816
|
+
name: string;
|
151817
|
+
email: string;
|
151818
|
+
phone: string | null;
|
151819
|
+
} | undefined;
|
151626
151820
|
parentMessageId?: string | undefined;
|
151627
151821
|
feedPostId?: string | undefined;
|
151628
151822
|
}>;
|
@@ -151991,26 +152185,19 @@ export declare const facebookFeedContract: {
|
|
151991
152185
|
}>;
|
151992
152186
|
isBot: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
151993
152187
|
params: import("zod").ZodOptional<import("zod").ZodObject<{
|
151994
|
-
actionType: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodEnum<["create", "edit", "like", "private_reply"]>>>;
|
152188
|
+
actionType: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodEnum<["create", "edit", "like", "unlike", "private_reply"]>>>;
|
151995
152189
|
mentions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
151996
152190
|
}, "strip", import("zod").ZodTypeAny, {
|
151997
|
-
actionType?: "create" | "edit" | "like" | "private_reply" | undefined;
|
152191
|
+
actionType?: "create" | "edit" | "like" | "unlike" | "private_reply" | undefined;
|
151998
152192
|
mentions?: string[] | undefined;
|
151999
152193
|
}, {
|
152000
|
-
actionType?: "create" | "edit" | "like" | "private_reply" | undefined;
|
152194
|
+
actionType?: "create" | "edit" | "like" | "unlike" | "private_reply" | undefined;
|
152001
152195
|
mentions?: string[] | undefined;
|
152002
152196
|
}>>;
|
152003
152197
|
}, "strip", import("zod").ZodTypeAny, {
|
152004
152198
|
message: {
|
152005
152199
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
152006
152200
|
direction: "incoming" | "outgoing" | "system";
|
152007
|
-
sender: {
|
152008
|
-
id: string;
|
152009
|
-
address: string | null;
|
152010
|
-
name: string;
|
152011
|
-
email: string;
|
152012
|
-
phone: string | null;
|
152013
|
-
};
|
152014
152201
|
id?: string | undefined;
|
152015
152202
|
message?: string | undefined;
|
152016
152203
|
readAt?: string | Date | null | undefined;
|
@@ -152030,6 +152217,13 @@ export declare const facebookFeedContract: {
|
|
152030
152217
|
fileSize: number;
|
152031
152218
|
originalUrl?: string | undefined;
|
152032
152219
|
} | undefined;
|
152220
|
+
sender?: {
|
152221
|
+
id: string;
|
152222
|
+
address: string | null;
|
152223
|
+
name: string;
|
152224
|
+
email: string;
|
152225
|
+
phone: string | null;
|
152226
|
+
} | undefined;
|
152033
152227
|
parentMessageId?: string | undefined;
|
152034
152228
|
feedPostId?: string | undefined;
|
152035
152229
|
};
|
@@ -152104,20 +152298,13 @@ export declare const facebookFeedContract: {
|
|
152104
152298
|
};
|
152105
152299
|
isBot: boolean | null;
|
152106
152300
|
params?: {
|
152107
|
-
actionType?: "create" | "edit" | "like" | "private_reply" | undefined;
|
152301
|
+
actionType?: "create" | "edit" | "like" | "unlike" | "private_reply" | undefined;
|
152108
152302
|
mentions?: string[] | undefined;
|
152109
152303
|
} | undefined;
|
152110
152304
|
}, {
|
152111
152305
|
message: {
|
152112
152306
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
152113
152307
|
direction: "incoming" | "outgoing" | "system";
|
152114
|
-
sender: {
|
152115
|
-
id: string;
|
152116
|
-
address: string | null;
|
152117
|
-
name: string;
|
152118
|
-
email: string;
|
152119
|
-
phone: string | null;
|
152120
|
-
};
|
152121
152308
|
id?: string | undefined;
|
152122
152309
|
message?: string | undefined;
|
152123
152310
|
readAt?: string | Date | null | undefined;
|
@@ -152137,6 +152324,13 @@ export declare const facebookFeedContract: {
|
|
152137
152324
|
fileSize: number;
|
152138
152325
|
originalUrl?: string | undefined;
|
152139
152326
|
} | undefined;
|
152327
|
+
sender?: {
|
152328
|
+
id: string;
|
152329
|
+
address: string | null;
|
152330
|
+
name: string;
|
152331
|
+
email: string;
|
152332
|
+
phone: string | null;
|
152333
|
+
} | undefined;
|
152140
152334
|
parentMessageId?: string | undefined;
|
152141
152335
|
feedPostId?: string | undefined;
|
152142
152336
|
};
|
@@ -152211,7 +152405,7 @@ export declare const facebookFeedContract: {
|
|
152211
152405
|
};
|
152212
152406
|
isBot?: boolean | null | undefined;
|
152213
152407
|
params?: {
|
152214
|
-
actionType?: "create" | "edit" | "like" | "private_reply" | undefined;
|
152408
|
+
actionType?: "create" | "edit" | "like" | "unlike" | "private_reply" | undefined;
|
152215
152409
|
mentions?: string[] | undefined;
|
152216
152410
|
} | undefined;
|
152217
152411
|
}>;
|
@@ -168911,7 +169105,7 @@ export declare const facebookFeedContract: {
|
|
168911
169105
|
fileSize: number;
|
168912
169106
|
originalUrl?: string | undefined;
|
168913
169107
|
}>>;
|
168914
|
-
sender: import("zod").ZodObject<{
|
169108
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
168915
169109
|
id: import("zod").ZodString;
|
168916
169110
|
name: import("zod").ZodString;
|
168917
169111
|
email: import("zod").ZodString;
|
@@ -168929,19 +169123,12 @@ export declare const facebookFeedContract: {
|
|
168929
169123
|
name: string;
|
168930
169124
|
email: string;
|
168931
169125
|
phone: string | null;
|
168932
|
-
}
|
169126
|
+
}>>;
|
168933
169127
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
168934
169128
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
168935
169129
|
}, "strip", import("zod").ZodTypeAny, {
|
168936
169130
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
168937
169131
|
direction: "incoming" | "outgoing" | "system";
|
168938
|
-
sender: {
|
168939
|
-
id: string;
|
168940
|
-
address: string | null;
|
168941
|
-
name: string;
|
168942
|
-
email: string;
|
168943
|
-
phone: string | null;
|
168944
|
-
};
|
168945
169132
|
id?: string | undefined;
|
168946
169133
|
message?: string | undefined;
|
168947
169134
|
readAt?: string | Date | null | undefined;
|
@@ -168961,18 +169148,18 @@ export declare const facebookFeedContract: {
|
|
168961
169148
|
fileSize: number;
|
168962
169149
|
originalUrl?: string | undefined;
|
168963
169150
|
} | undefined;
|
168964
|
-
|
168965
|
-
feedPostId?: string | undefined;
|
168966
|
-
}, {
|
168967
|
-
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
168968
|
-
direction: "incoming" | "outgoing" | "system";
|
168969
|
-
sender: {
|
169151
|
+
sender?: {
|
168970
169152
|
id: string;
|
168971
169153
|
address: string | null;
|
168972
169154
|
name: string;
|
168973
169155
|
email: string;
|
168974
169156
|
phone: string | null;
|
168975
|
-
};
|
169157
|
+
} | undefined;
|
169158
|
+
parentMessageId?: string | undefined;
|
169159
|
+
feedPostId?: string | undefined;
|
169160
|
+
}, {
|
169161
|
+
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
169162
|
+
direction: "incoming" | "outgoing" | "system";
|
168976
169163
|
id?: string | undefined;
|
168977
169164
|
message?: string | undefined;
|
168978
169165
|
readAt?: string | Date | null | undefined;
|
@@ -168992,6 +169179,13 @@ export declare const facebookFeedContract: {
|
|
168992
169179
|
fileSize: number;
|
168993
169180
|
originalUrl?: string | undefined;
|
168994
169181
|
} | undefined;
|
169182
|
+
sender?: {
|
169183
|
+
id: string;
|
169184
|
+
address: string | null;
|
169185
|
+
name: string;
|
169186
|
+
email: string;
|
169187
|
+
phone: string | null;
|
169188
|
+
} | undefined;
|
168995
169189
|
parentMessageId?: string | undefined;
|
168996
169190
|
feedPostId?: string | undefined;
|
168997
169191
|
}>;
|
@@ -168999,13 +169193,6 @@ export declare const facebookFeedContract: {
|
|
168999
169193
|
message: {
|
169000
169194
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
169001
169195
|
direction: "incoming" | "outgoing" | "system";
|
169002
|
-
sender: {
|
169003
|
-
id: string;
|
169004
|
-
address: string | null;
|
169005
|
-
name: string;
|
169006
|
-
email: string;
|
169007
|
-
phone: string | null;
|
169008
|
-
};
|
169009
169196
|
id?: string | undefined;
|
169010
169197
|
message?: string | undefined;
|
169011
169198
|
readAt?: string | Date | null | undefined;
|
@@ -169025,6 +169212,13 @@ export declare const facebookFeedContract: {
|
|
169025
169212
|
fileSize: number;
|
169026
169213
|
originalUrl?: string | undefined;
|
169027
169214
|
} | undefined;
|
169215
|
+
sender?: {
|
169216
|
+
id: string;
|
169217
|
+
address: string | null;
|
169218
|
+
name: string;
|
169219
|
+
email: string;
|
169220
|
+
phone: string | null;
|
169221
|
+
} | undefined;
|
169028
169222
|
parentMessageId?: string | undefined;
|
169029
169223
|
feedPostId?: string | undefined;
|
169030
169224
|
};
|
@@ -169102,13 +169296,6 @@ export declare const facebookFeedContract: {
|
|
169102
169296
|
message: {
|
169103
169297
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "text_with_image" | "carousel" | "card" | "choice" | "dropdown" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
169104
169298
|
direction: "incoming" | "outgoing" | "system";
|
169105
|
-
sender: {
|
169106
|
-
id: string;
|
169107
|
-
address: string | null;
|
169108
|
-
name: string;
|
169109
|
-
email: string;
|
169110
|
-
phone: string | null;
|
169111
|
-
};
|
169112
169299
|
id?: string | undefined;
|
169113
169300
|
message?: string | undefined;
|
169114
169301
|
readAt?: string | Date | null | undefined;
|
@@ -169128,6 +169315,13 @@ export declare const facebookFeedContract: {
|
|
169128
169315
|
fileSize: number;
|
169129
169316
|
originalUrl?: string | undefined;
|
169130
169317
|
} | undefined;
|
169318
|
+
sender?: {
|
169319
|
+
id: string;
|
169320
|
+
address: string | null;
|
169321
|
+
name: string;
|
169322
|
+
email: string;
|
169323
|
+
phone: string | null;
|
169324
|
+
} | undefined;
|
169131
169325
|
parentMessageId?: string | undefined;
|
169132
169326
|
feedPostId?: string | undefined;
|
169133
169327
|
};
|