@kl1/contracts 1.1.56-uat → 1.1.57-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -3
- 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 +304 -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 +119 -0
- package/dist/src/subscription/index.d.ts.map +1 -1
- package/dist/src/subscription/schema.d.ts +256 -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;
|
@@ -31173,6 +31248,17 @@ export declare const apiContract: {
|
|
31173
31248
|
productId: string;
|
31174
31249
|
omnichannel: string;
|
31175
31250
|
usageType: string | null;
|
31251
|
+
productPrice: {
|
31252
|
+
id: string;
|
31253
|
+
name: string | null;
|
31254
|
+
currency: string | null;
|
31255
|
+
createdAt: Date;
|
31256
|
+
updatedAt: Date;
|
31257
|
+
deletedAt: Date | null;
|
31258
|
+
priceId: string;
|
31259
|
+
perUnit: number;
|
31260
|
+
price: number;
|
31261
|
+
};
|
31176
31262
|
};
|
31177
31263
|
createdAt: Date;
|
31178
31264
|
updatedAt: Date;
|
@@ -31209,6 +31295,17 @@ export declare const apiContract: {
|
|
31209
31295
|
productId: string;
|
31210
31296
|
omnichannel: string;
|
31211
31297
|
usageType: string | null;
|
31298
|
+
productPrice: {
|
31299
|
+
id: string;
|
31300
|
+
name: string | null;
|
31301
|
+
currency: string | null;
|
31302
|
+
createdAt: Date;
|
31303
|
+
updatedAt: Date;
|
31304
|
+
deletedAt: Date | null;
|
31305
|
+
priceId: string;
|
31306
|
+
perUnit: number;
|
31307
|
+
price: number;
|
31308
|
+
};
|
31212
31309
|
};
|
31213
31310
|
createdAt: Date;
|
31214
31311
|
updatedAt: Date;
|
@@ -31248,6 +31345,17 @@ export declare const apiContract: {
|
|
31248
31345
|
productId: string;
|
31249
31346
|
omnichannel: string;
|
31250
31347
|
usageType: string | null;
|
31348
|
+
productPrice: {
|
31349
|
+
id: string;
|
31350
|
+
name: string | null;
|
31351
|
+
currency: string | null;
|
31352
|
+
createdAt: Date;
|
31353
|
+
updatedAt: Date;
|
31354
|
+
deletedAt: Date | null;
|
31355
|
+
priceId: string;
|
31356
|
+
perUnit: number;
|
31357
|
+
price: number;
|
31358
|
+
};
|
31251
31359
|
};
|
31252
31360
|
createdAt: Date;
|
31253
31361
|
updatedAt: Date;
|
@@ -31287,6 +31395,17 @@ export declare const apiContract: {
|
|
31287
31395
|
productId: string;
|
31288
31396
|
omnichannel: string;
|
31289
31397
|
usageType: string | null;
|
31398
|
+
productPrice: {
|
31399
|
+
id: string;
|
31400
|
+
name: string | null;
|
31401
|
+
currency: string | null;
|
31402
|
+
createdAt: Date;
|
31403
|
+
updatedAt: Date;
|
31404
|
+
deletedAt: Date | null;
|
31405
|
+
priceId: string;
|
31406
|
+
perUnit: number;
|
31407
|
+
price: number;
|
31408
|
+
};
|
31290
31409
|
};
|
31291
31410
|
createdAt: Date;
|
31292
31411
|
updatedAt: Date;
|
@@ -75076,7 +75195,7 @@ export declare const platformContract: {
|
|
75076
75195
|
fileSize: number;
|
75077
75196
|
originalUrl?: string | undefined;
|
75078
75197
|
}>>;
|
75079
|
-
sender: import("zod").ZodObject<{
|
75198
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
75080
75199
|
id: import("zod").ZodString;
|
75081
75200
|
name: import("zod").ZodString;
|
75082
75201
|
email: import("zod").ZodString;
|
@@ -75094,19 +75213,12 @@ export declare const platformContract: {
|
|
75094
75213
|
name: string;
|
75095
75214
|
email: string;
|
75096
75215
|
phone: string | null;
|
75097
|
-
}
|
75216
|
+
}>>;
|
75098
75217
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
75099
75218
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
75100
75219
|
}, "strip", import("zod").ZodTypeAny, {
|
75101
75220
|
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
75221
|
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
75222
|
id?: string | undefined;
|
75111
75223
|
message?: string | undefined;
|
75112
75224
|
readAt?: string | Date | null | undefined;
|
@@ -75126,18 +75238,18 @@ export declare const platformContract: {
|
|
75126
75238
|
fileSize: number;
|
75127
75239
|
originalUrl?: string | undefined;
|
75128
75240
|
} | 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: {
|
75241
|
+
sender?: {
|
75135
75242
|
id: string;
|
75136
75243
|
address: string | null;
|
75137
75244
|
name: string;
|
75138
75245
|
email: string;
|
75139
75246
|
phone: string | null;
|
75140
|
-
};
|
75247
|
+
} | undefined;
|
75248
|
+
parentMessageId?: string | undefined;
|
75249
|
+
feedPostId?: string | undefined;
|
75250
|
+
}, {
|
75251
|
+
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";
|
75252
|
+
direction: "incoming" | "outgoing" | "system";
|
75141
75253
|
id?: string | undefined;
|
75142
75254
|
message?: string | undefined;
|
75143
75255
|
readAt?: string | Date | null | undefined;
|
@@ -75157,6 +75269,13 @@ export declare const platformContract: {
|
|
75157
75269
|
fileSize: number;
|
75158
75270
|
originalUrl?: string | undefined;
|
75159
75271
|
} | undefined;
|
75272
|
+
sender?: {
|
75273
|
+
id: string;
|
75274
|
+
address: string | null;
|
75275
|
+
name: string;
|
75276
|
+
email: string;
|
75277
|
+
phone: string | null;
|
75278
|
+
} | undefined;
|
75160
75279
|
parentMessageId?: string | undefined;
|
75161
75280
|
feedPostId?: string | undefined;
|
75162
75281
|
}>;
|
@@ -75164,13 +75283,6 @@ export declare const platformContract: {
|
|
75164
75283
|
message: {
|
75165
75284
|
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
75285
|
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
75286
|
id?: string | undefined;
|
75175
75287
|
message?: string | undefined;
|
75176
75288
|
readAt?: string | Date | null | undefined;
|
@@ -75190,6 +75302,13 @@ export declare const platformContract: {
|
|
75190
75302
|
fileSize: number;
|
75191
75303
|
originalUrl?: string | undefined;
|
75192
75304
|
} | undefined;
|
75305
|
+
sender?: {
|
75306
|
+
id: string;
|
75307
|
+
address: string | null;
|
75308
|
+
name: string;
|
75309
|
+
email: string;
|
75310
|
+
phone: string | null;
|
75311
|
+
} | undefined;
|
75193
75312
|
parentMessageId?: string | undefined;
|
75194
75313
|
feedPostId?: string | undefined;
|
75195
75314
|
};
|
@@ -75267,13 +75386,6 @@ export declare const platformContract: {
|
|
75267
75386
|
message: {
|
75268
75387
|
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
75388
|
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
75389
|
id?: string | undefined;
|
75278
75390
|
message?: string | undefined;
|
75279
75391
|
readAt?: string | Date | null | undefined;
|
@@ -75293,6 +75405,13 @@ export declare const platformContract: {
|
|
75293
75405
|
fileSize: number;
|
75294
75406
|
originalUrl?: string | undefined;
|
75295
75407
|
} | undefined;
|
75408
|
+
sender?: {
|
75409
|
+
id: string;
|
75410
|
+
address: string | null;
|
75411
|
+
name: string;
|
75412
|
+
email: string;
|
75413
|
+
phone: string | null;
|
75414
|
+
} | undefined;
|
75296
75415
|
parentMessageId?: string | undefined;
|
75297
75416
|
feedPostId?: string | undefined;
|
75298
75417
|
};
|
@@ -93973,7 +94092,7 @@ export declare const platformContract: {
|
|
93973
94092
|
fileSize: number;
|
93974
94093
|
originalUrl?: string | undefined;
|
93975
94094
|
}>>;
|
93976
|
-
sender: import("zod").ZodObject<{
|
94095
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
93977
94096
|
id: import("zod").ZodString;
|
93978
94097
|
name: import("zod").ZodString;
|
93979
94098
|
email: import("zod").ZodString;
|
@@ -93991,19 +94110,12 @@ export declare const platformContract: {
|
|
93991
94110
|
name: string;
|
93992
94111
|
email: string;
|
93993
94112
|
phone: string | null;
|
93994
|
-
}
|
94113
|
+
}>>;
|
93995
94114
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
93996
94115
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
93997
94116
|
}, "strip", import("zod").ZodTypeAny, {
|
93998
94117
|
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
94118
|
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
94119
|
id?: string | undefined;
|
94008
94120
|
message?: string | undefined;
|
94009
94121
|
readAt?: string | Date | null | undefined;
|
@@ -94023,18 +94135,18 @@ export declare const platformContract: {
|
|
94023
94135
|
fileSize: number;
|
94024
94136
|
originalUrl?: string | undefined;
|
94025
94137
|
} | 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: {
|
94138
|
+
sender?: {
|
94032
94139
|
id: string;
|
94033
94140
|
address: string | null;
|
94034
94141
|
name: string;
|
94035
94142
|
email: string;
|
94036
94143
|
phone: string | null;
|
94037
|
-
};
|
94144
|
+
} | undefined;
|
94145
|
+
parentMessageId?: string | undefined;
|
94146
|
+
feedPostId?: string | undefined;
|
94147
|
+
}, {
|
94148
|
+
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";
|
94149
|
+
direction: "incoming" | "outgoing" | "system";
|
94038
94150
|
id?: string | undefined;
|
94039
94151
|
message?: string | undefined;
|
94040
94152
|
readAt?: string | Date | null | undefined;
|
@@ -94054,6 +94166,13 @@ export declare const platformContract: {
|
|
94054
94166
|
fileSize: number;
|
94055
94167
|
originalUrl?: string | undefined;
|
94056
94168
|
} | undefined;
|
94169
|
+
sender?: {
|
94170
|
+
id: string;
|
94171
|
+
address: string | null;
|
94172
|
+
name: string;
|
94173
|
+
email: string;
|
94174
|
+
phone: string | null;
|
94175
|
+
} | undefined;
|
94057
94176
|
parentMessageId?: string | undefined;
|
94058
94177
|
feedPostId?: string | undefined;
|
94059
94178
|
}>;
|
@@ -94061,13 +94180,6 @@ export declare const platformContract: {
|
|
94061
94180
|
message: {
|
94062
94181
|
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
94182
|
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
94183
|
id?: string | undefined;
|
94072
94184
|
message?: string | undefined;
|
94073
94185
|
readAt?: string | Date | null | undefined;
|
@@ -94087,6 +94199,13 @@ export declare const platformContract: {
|
|
94087
94199
|
fileSize: number;
|
94088
94200
|
originalUrl?: string | undefined;
|
94089
94201
|
} | undefined;
|
94202
|
+
sender?: {
|
94203
|
+
id: string;
|
94204
|
+
address: string | null;
|
94205
|
+
name: string;
|
94206
|
+
email: string;
|
94207
|
+
phone: string | null;
|
94208
|
+
} | undefined;
|
94090
94209
|
parentMessageId?: string | undefined;
|
94091
94210
|
feedPostId?: string | undefined;
|
94092
94211
|
};
|
@@ -94164,13 +94283,6 @@ export declare const platformContract: {
|
|
94164
94283
|
message: {
|
94165
94284
|
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
94285
|
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
94286
|
id?: string | undefined;
|
94175
94287
|
message?: string | undefined;
|
94176
94288
|
readAt?: string | Date | null | undefined;
|
@@ -94190,6 +94302,13 @@ export declare const platformContract: {
|
|
94190
94302
|
fileSize: number;
|
94191
94303
|
originalUrl?: string | undefined;
|
94192
94304
|
} | undefined;
|
94305
|
+
sender?: {
|
94306
|
+
id: string;
|
94307
|
+
address: string | null;
|
94308
|
+
name: string;
|
94309
|
+
email: string;
|
94310
|
+
phone: string | null;
|
94311
|
+
} | undefined;
|
94193
94312
|
parentMessageId?: string | undefined;
|
94194
94313
|
feedPostId?: string | undefined;
|
94195
94314
|
};
|
@@ -111740,7 +111859,7 @@ export declare const platformMessengerContract: {
|
|
111740
111859
|
fileSize: number;
|
111741
111860
|
originalUrl?: string | undefined;
|
111742
111861
|
}>>;
|
111743
|
-
sender: import("zod").ZodObject<{
|
111862
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
111744
111863
|
id: import("zod").ZodString;
|
111745
111864
|
name: import("zod").ZodString;
|
111746
111865
|
email: import("zod").ZodString;
|
@@ -111758,19 +111877,12 @@ export declare const platformMessengerContract: {
|
|
111758
111877
|
name: string;
|
111759
111878
|
email: string;
|
111760
111879
|
phone: string | null;
|
111761
|
-
}
|
111880
|
+
}>>;
|
111762
111881
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
111763
111882
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
111764
111883
|
}, "strip", import("zod").ZodTypeAny, {
|
111765
111884
|
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
111885
|
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
111886
|
id?: string | undefined;
|
111775
111887
|
message?: string | undefined;
|
111776
111888
|
readAt?: string | Date | null | undefined;
|
@@ -111790,18 +111902,18 @@ export declare const platformMessengerContract: {
|
|
111790
111902
|
fileSize: number;
|
111791
111903
|
originalUrl?: string | undefined;
|
111792
111904
|
} | 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: {
|
111905
|
+
sender?: {
|
111799
111906
|
id: string;
|
111800
111907
|
address: string | null;
|
111801
111908
|
name: string;
|
111802
111909
|
email: string;
|
111803
111910
|
phone: string | null;
|
111804
|
-
};
|
111911
|
+
} | undefined;
|
111912
|
+
parentMessageId?: string | undefined;
|
111913
|
+
feedPostId?: string | undefined;
|
111914
|
+
}, {
|
111915
|
+
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";
|
111916
|
+
direction: "incoming" | "outgoing" | "system";
|
111805
111917
|
id?: string | undefined;
|
111806
111918
|
message?: string | undefined;
|
111807
111919
|
readAt?: string | Date | null | undefined;
|
@@ -111821,6 +111933,13 @@ export declare const platformMessengerContract: {
|
|
111821
111933
|
fileSize: number;
|
111822
111934
|
originalUrl?: string | undefined;
|
111823
111935
|
} | undefined;
|
111936
|
+
sender?: {
|
111937
|
+
id: string;
|
111938
|
+
address: string | null;
|
111939
|
+
name: string;
|
111940
|
+
email: string;
|
111941
|
+
phone: string | null;
|
111942
|
+
} | undefined;
|
111824
111943
|
parentMessageId?: string | undefined;
|
111825
111944
|
feedPostId?: string | undefined;
|
111826
111945
|
}>;
|
@@ -111828,13 +111947,6 @@ export declare const platformMessengerContract: {
|
|
111828
111947
|
message: {
|
111829
111948
|
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
111949
|
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
111950
|
id?: string | undefined;
|
111839
111951
|
message?: string | undefined;
|
111840
111952
|
readAt?: string | Date | null | undefined;
|
@@ -111854,6 +111966,13 @@ export declare const platformMessengerContract: {
|
|
111854
111966
|
fileSize: number;
|
111855
111967
|
originalUrl?: string | undefined;
|
111856
111968
|
} | undefined;
|
111969
|
+
sender?: {
|
111970
|
+
id: string;
|
111971
|
+
address: string | null;
|
111972
|
+
name: string;
|
111973
|
+
email: string;
|
111974
|
+
phone: string | null;
|
111975
|
+
} | undefined;
|
111857
111976
|
parentMessageId?: string | undefined;
|
111858
111977
|
feedPostId?: string | undefined;
|
111859
111978
|
};
|
@@ -111931,13 +112050,6 @@ export declare const platformMessengerContract: {
|
|
111931
112050
|
message: {
|
111932
112051
|
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
112052
|
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
112053
|
id?: string | undefined;
|
111942
112054
|
message?: string | undefined;
|
111943
112055
|
readAt?: string | Date | null | undefined;
|
@@ -111957,6 +112069,13 @@ export declare const platformMessengerContract: {
|
|
111957
112069
|
fileSize: number;
|
111958
112070
|
originalUrl?: string | undefined;
|
111959
112071
|
} | undefined;
|
112072
|
+
sender?: {
|
112073
|
+
id: string;
|
112074
|
+
address: string | null;
|
112075
|
+
name: string;
|
112076
|
+
email: string;
|
112077
|
+
phone: string | null;
|
112078
|
+
} | undefined;
|
111960
112079
|
parentMessageId?: string | undefined;
|
111961
112080
|
feedPostId?: string | undefined;
|
111962
112081
|
};
|
@@ -130156,7 +130275,7 @@ export declare const platformInstagramContract: {
|
|
130156
130275
|
fileSize: number;
|
130157
130276
|
originalUrl?: string | undefined;
|
130158
130277
|
}>>;
|
130159
|
-
sender: import("zod").ZodObject<{
|
130278
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
130160
130279
|
id: import("zod").ZodString;
|
130161
130280
|
name: import("zod").ZodString;
|
130162
130281
|
email: import("zod").ZodString;
|
@@ -130174,19 +130293,12 @@ export declare const platformInstagramContract: {
|
|
130174
130293
|
name: string;
|
130175
130294
|
email: string;
|
130176
130295
|
phone: string | null;
|
130177
|
-
}
|
130296
|
+
}>>;
|
130178
130297
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
130179
130298
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
130180
130299
|
}, "strip", import("zod").ZodTypeAny, {
|
130181
130300
|
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
130301
|
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
130302
|
id?: string | undefined;
|
130191
130303
|
message?: string | undefined;
|
130192
130304
|
readAt?: string | Date | null | undefined;
|
@@ -130206,18 +130318,18 @@ export declare const platformInstagramContract: {
|
|
130206
130318
|
fileSize: number;
|
130207
130319
|
originalUrl?: string | undefined;
|
130208
130320
|
} | 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: {
|
130321
|
+
sender?: {
|
130215
130322
|
id: string;
|
130216
130323
|
address: string | null;
|
130217
130324
|
name: string;
|
130218
130325
|
email: string;
|
130219
130326
|
phone: string | null;
|
130220
|
-
};
|
130327
|
+
} | undefined;
|
130328
|
+
parentMessageId?: string | undefined;
|
130329
|
+
feedPostId?: string | undefined;
|
130330
|
+
}, {
|
130331
|
+
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";
|
130332
|
+
direction: "incoming" | "outgoing" | "system";
|
130221
130333
|
id?: string | undefined;
|
130222
130334
|
message?: string | undefined;
|
130223
130335
|
readAt?: string | Date | null | undefined;
|
@@ -130237,6 +130349,13 @@ export declare const platformInstagramContract: {
|
|
130237
130349
|
fileSize: number;
|
130238
130350
|
originalUrl?: string | undefined;
|
130239
130351
|
} | undefined;
|
130352
|
+
sender?: {
|
130353
|
+
id: string;
|
130354
|
+
address: string | null;
|
130355
|
+
name: string;
|
130356
|
+
email: string;
|
130357
|
+
phone: string | null;
|
130358
|
+
} | undefined;
|
130240
130359
|
parentMessageId?: string | undefined;
|
130241
130360
|
feedPostId?: string | undefined;
|
130242
130361
|
}>;
|
@@ -130244,13 +130363,6 @@ export declare const platformInstagramContract: {
|
|
130244
130363
|
message: {
|
130245
130364
|
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
130365
|
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
130366
|
id?: string | undefined;
|
130255
130367
|
message?: string | undefined;
|
130256
130368
|
readAt?: string | Date | null | undefined;
|
@@ -130270,6 +130382,13 @@ export declare const platformInstagramContract: {
|
|
130270
130382
|
fileSize: number;
|
130271
130383
|
originalUrl?: string | undefined;
|
130272
130384
|
} | undefined;
|
130385
|
+
sender?: {
|
130386
|
+
id: string;
|
130387
|
+
address: string | null;
|
130388
|
+
name: string;
|
130389
|
+
email: string;
|
130390
|
+
phone: string | null;
|
130391
|
+
} | undefined;
|
130273
130392
|
parentMessageId?: string | undefined;
|
130274
130393
|
feedPostId?: string | undefined;
|
130275
130394
|
};
|
@@ -130347,13 +130466,6 @@ export declare const platformInstagramContract: {
|
|
130347
130466
|
message: {
|
130348
130467
|
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
130468
|
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
130469
|
id?: string | undefined;
|
130358
130470
|
message?: string | undefined;
|
130359
130471
|
readAt?: string | Date | null | undefined;
|
@@ -130373,6 +130485,13 @@ export declare const platformInstagramContract: {
|
|
130373
130485
|
fileSize: number;
|
130374
130486
|
originalUrl?: string | undefined;
|
130375
130487
|
} | undefined;
|
130488
|
+
sender?: {
|
130489
|
+
id: string;
|
130490
|
+
address: string | null;
|
130491
|
+
name: string;
|
130492
|
+
email: string;
|
130493
|
+
phone: string | null;
|
130494
|
+
} | undefined;
|
130376
130495
|
parentMessageId?: string | undefined;
|
130377
130496
|
feedPostId?: string | undefined;
|
130378
130497
|
};
|
@@ -151542,7 +151661,7 @@ export declare const facebookFeedContract: {
|
|
151542
151661
|
fileSize: number;
|
151543
151662
|
originalUrl?: string | undefined;
|
151544
151663
|
}>>;
|
151545
|
-
sender: import("zod").ZodObject<{
|
151664
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
151546
151665
|
id: import("zod").ZodString;
|
151547
151666
|
name: import("zod").ZodString;
|
151548
151667
|
email: import("zod").ZodString;
|
@@ -151560,19 +151679,12 @@ export declare const facebookFeedContract: {
|
|
151560
151679
|
name: string;
|
151561
151680
|
email: string;
|
151562
151681
|
phone: string | null;
|
151563
|
-
}
|
151682
|
+
}>>;
|
151564
151683
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
151565
151684
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
151566
151685
|
}, "strip", import("zod").ZodTypeAny, {
|
151567
151686
|
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
151687
|
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
151688
|
id?: string | undefined;
|
151577
151689
|
message?: string | undefined;
|
151578
151690
|
readAt?: string | Date | null | undefined;
|
@@ -151592,18 +151704,18 @@ export declare const facebookFeedContract: {
|
|
151592
151704
|
fileSize: number;
|
151593
151705
|
originalUrl?: string | undefined;
|
151594
151706
|
} | 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: {
|
151707
|
+
sender?: {
|
151601
151708
|
id: string;
|
151602
151709
|
address: string | null;
|
151603
151710
|
name: string;
|
151604
151711
|
email: string;
|
151605
151712
|
phone: string | null;
|
151606
|
-
};
|
151713
|
+
} | undefined;
|
151714
|
+
parentMessageId?: string | undefined;
|
151715
|
+
feedPostId?: string | undefined;
|
151716
|
+
}, {
|
151717
|
+
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";
|
151718
|
+
direction: "incoming" | "outgoing" | "system";
|
151607
151719
|
id?: string | undefined;
|
151608
151720
|
message?: string | undefined;
|
151609
151721
|
readAt?: string | Date | null | undefined;
|
@@ -151623,6 +151735,13 @@ export declare const facebookFeedContract: {
|
|
151623
151735
|
fileSize: number;
|
151624
151736
|
originalUrl?: string | undefined;
|
151625
151737
|
} | undefined;
|
151738
|
+
sender?: {
|
151739
|
+
id: string;
|
151740
|
+
address: string | null;
|
151741
|
+
name: string;
|
151742
|
+
email: string;
|
151743
|
+
phone: string | null;
|
151744
|
+
} | undefined;
|
151626
151745
|
parentMessageId?: string | undefined;
|
151627
151746
|
feedPostId?: string | undefined;
|
151628
151747
|
}>;
|
@@ -151991,26 +152110,19 @@ export declare const facebookFeedContract: {
|
|
151991
152110
|
}>;
|
151992
152111
|
isBot: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
151993
152112
|
params: import("zod").ZodOptional<import("zod").ZodObject<{
|
151994
|
-
actionType: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodEnum<["create", "edit", "like", "private_reply"]>>>;
|
152113
|
+
actionType: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodEnum<["create", "edit", "like", "unlike", "private_reply"]>>>;
|
151995
152114
|
mentions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
151996
152115
|
}, "strip", import("zod").ZodTypeAny, {
|
151997
|
-
actionType?: "create" | "edit" | "like" | "private_reply" | undefined;
|
152116
|
+
actionType?: "create" | "edit" | "like" | "unlike" | "private_reply" | undefined;
|
151998
152117
|
mentions?: string[] | undefined;
|
151999
152118
|
}, {
|
152000
|
-
actionType?: "create" | "edit" | "like" | "private_reply" | undefined;
|
152119
|
+
actionType?: "create" | "edit" | "like" | "unlike" | "private_reply" | undefined;
|
152001
152120
|
mentions?: string[] | undefined;
|
152002
152121
|
}>>;
|
152003
152122
|
}, "strip", import("zod").ZodTypeAny, {
|
152004
152123
|
message: {
|
152005
152124
|
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
152125
|
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
152126
|
id?: string | undefined;
|
152015
152127
|
message?: string | undefined;
|
152016
152128
|
readAt?: string | Date | null | undefined;
|
@@ -152030,6 +152142,13 @@ export declare const facebookFeedContract: {
|
|
152030
152142
|
fileSize: number;
|
152031
152143
|
originalUrl?: string | undefined;
|
152032
152144
|
} | undefined;
|
152145
|
+
sender?: {
|
152146
|
+
id: string;
|
152147
|
+
address: string | null;
|
152148
|
+
name: string;
|
152149
|
+
email: string;
|
152150
|
+
phone: string | null;
|
152151
|
+
} | undefined;
|
152033
152152
|
parentMessageId?: string | undefined;
|
152034
152153
|
feedPostId?: string | undefined;
|
152035
152154
|
};
|
@@ -152104,20 +152223,13 @@ export declare const facebookFeedContract: {
|
|
152104
152223
|
};
|
152105
152224
|
isBot: boolean | null;
|
152106
152225
|
params?: {
|
152107
|
-
actionType?: "create" | "edit" | "like" | "private_reply" | undefined;
|
152226
|
+
actionType?: "create" | "edit" | "like" | "unlike" | "private_reply" | undefined;
|
152108
152227
|
mentions?: string[] | undefined;
|
152109
152228
|
} | undefined;
|
152110
152229
|
}, {
|
152111
152230
|
message: {
|
152112
152231
|
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
152232
|
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
152233
|
id?: string | undefined;
|
152122
152234
|
message?: string | undefined;
|
152123
152235
|
readAt?: string | Date | null | undefined;
|
@@ -152137,6 +152249,13 @@ export declare const facebookFeedContract: {
|
|
152137
152249
|
fileSize: number;
|
152138
152250
|
originalUrl?: string | undefined;
|
152139
152251
|
} | undefined;
|
152252
|
+
sender?: {
|
152253
|
+
id: string;
|
152254
|
+
address: string | null;
|
152255
|
+
name: string;
|
152256
|
+
email: string;
|
152257
|
+
phone: string | null;
|
152258
|
+
} | undefined;
|
152140
152259
|
parentMessageId?: string | undefined;
|
152141
152260
|
feedPostId?: string | undefined;
|
152142
152261
|
};
|
@@ -152211,7 +152330,7 @@ export declare const facebookFeedContract: {
|
|
152211
152330
|
};
|
152212
152331
|
isBot?: boolean | null | undefined;
|
152213
152332
|
params?: {
|
152214
|
-
actionType?: "create" | "edit" | "like" | "private_reply" | undefined;
|
152333
|
+
actionType?: "create" | "edit" | "like" | "unlike" | "private_reply" | undefined;
|
152215
152334
|
mentions?: string[] | undefined;
|
152216
152335
|
} | undefined;
|
152217
152336
|
}>;
|
@@ -168911,7 +169030,7 @@ export declare const facebookFeedContract: {
|
|
168911
169030
|
fileSize: number;
|
168912
169031
|
originalUrl?: string | undefined;
|
168913
169032
|
}>>;
|
168914
|
-
sender: import("zod").ZodObject<{
|
169033
|
+
sender: import("zod").ZodOptional<import("zod").ZodObject<{
|
168915
169034
|
id: import("zod").ZodString;
|
168916
169035
|
name: import("zod").ZodString;
|
168917
169036
|
email: import("zod").ZodString;
|
@@ -168929,19 +169048,12 @@ export declare const facebookFeedContract: {
|
|
168929
169048
|
name: string;
|
168930
169049
|
email: string;
|
168931
169050
|
phone: string | null;
|
168932
|
-
}
|
169051
|
+
}>>;
|
168933
169052
|
parentMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
168934
169053
|
feedPostId: import("zod").ZodOptional<import("zod").ZodString>;
|
168935
169054
|
}, "strip", import("zod").ZodTypeAny, {
|
168936
169055
|
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
169056
|
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
169057
|
id?: string | undefined;
|
168946
169058
|
message?: string | undefined;
|
168947
169059
|
readAt?: string | Date | null | undefined;
|
@@ -168961,18 +169073,18 @@ export declare const facebookFeedContract: {
|
|
168961
169073
|
fileSize: number;
|
168962
169074
|
originalUrl?: string | undefined;
|
168963
169075
|
} | 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: {
|
169076
|
+
sender?: {
|
168970
169077
|
id: string;
|
168971
169078
|
address: string | null;
|
168972
169079
|
name: string;
|
168973
169080
|
email: string;
|
168974
169081
|
phone: string | null;
|
168975
|
-
};
|
169082
|
+
} | undefined;
|
169083
|
+
parentMessageId?: string | undefined;
|
169084
|
+
feedPostId?: string | undefined;
|
169085
|
+
}, {
|
169086
|
+
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";
|
169087
|
+
direction: "incoming" | "outgoing" | "system";
|
168976
169088
|
id?: string | undefined;
|
168977
169089
|
message?: string | undefined;
|
168978
169090
|
readAt?: string | Date | null | undefined;
|
@@ -168992,6 +169104,13 @@ export declare const facebookFeedContract: {
|
|
168992
169104
|
fileSize: number;
|
168993
169105
|
originalUrl?: string | undefined;
|
168994
169106
|
} | undefined;
|
169107
|
+
sender?: {
|
169108
|
+
id: string;
|
169109
|
+
address: string | null;
|
169110
|
+
name: string;
|
169111
|
+
email: string;
|
169112
|
+
phone: string | null;
|
169113
|
+
} | undefined;
|
168995
169114
|
parentMessageId?: string | undefined;
|
168996
169115
|
feedPostId?: string | undefined;
|
168997
169116
|
}>;
|
@@ -168999,13 +169118,6 @@ export declare const facebookFeedContract: {
|
|
168999
169118
|
message: {
|
169000
169119
|
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
169120
|
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
169121
|
id?: string | undefined;
|
169010
169122
|
message?: string | undefined;
|
169011
169123
|
readAt?: string | Date | null | undefined;
|
@@ -169025,6 +169137,13 @@ export declare const facebookFeedContract: {
|
|
169025
169137
|
fileSize: number;
|
169026
169138
|
originalUrl?: string | undefined;
|
169027
169139
|
} | undefined;
|
169140
|
+
sender?: {
|
169141
|
+
id: string;
|
169142
|
+
address: string | null;
|
169143
|
+
name: string;
|
169144
|
+
email: string;
|
169145
|
+
phone: string | null;
|
169146
|
+
} | undefined;
|
169028
169147
|
parentMessageId?: string | undefined;
|
169029
169148
|
feedPostId?: string | undefined;
|
169030
169149
|
};
|
@@ -169102,13 +169221,6 @@ export declare const facebookFeedContract: {
|
|
169102
169221
|
message: {
|
169103
169222
|
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
169223
|
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
169224
|
id?: string | undefined;
|
169113
169225
|
message?: string | undefined;
|
169114
169226
|
readAt?: string | Date | null | undefined;
|
@@ -169128,6 +169240,13 @@ export declare const facebookFeedContract: {
|
|
169128
169240
|
fileSize: number;
|
169129
169241
|
originalUrl?: string | undefined;
|
169130
169242
|
} | undefined;
|
169243
|
+
sender?: {
|
169244
|
+
id: string;
|
169245
|
+
address: string | null;
|
169246
|
+
name: string;
|
169247
|
+
email: string;
|
169248
|
+
phone: string | null;
|
169249
|
+
} | undefined;
|
169131
169250
|
parentMessageId?: string | undefined;
|
169132
169251
|
feedPostId?: string | undefined;
|
169133
169252
|
};
|