@kl1/contracts 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/chat/index.d.ts +299 -298
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +81 -78
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +91 -91
- package/dist/api-contracts/src/contract.d.ts +537 -537
- package/dist/api-contracts/src/cx-log/index.d.ts +7 -7
- package/dist/api-contracts/src/cx-log/schema.d.ts +5 -5
- package/dist/api-contracts/src/facebook-feed/index.d.ts +71 -71
- package/dist/api-contracts/src/facebook-feed/schema.d.ts +1 -1
- package/dist/api-contracts/src/index.d.ts +2 -0
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +59 -59
- package/dist/api-contracts/src/line/index.d.ts +70 -70
- package/dist/api-contracts/src/line/validation.d.ts +11 -11
- package/dist/api-contracts/src/messenger/index.d.ts +59 -59
- package/dist/api-contracts/src/sms/index.d.ts +11 -11
- package/dist/api-contracts/src/telegram/index.d.ts +59 -59
- package/dist/api-contracts/src/viber/index.d.ts +59 -59
- package/dist/api-contracts/src/webchat/index.d.ts +59 -59
- package/dist/api-contracts/src/whatsapp/index.d.ts +59 -59
- package/dist/api-contracts/src/workflow-rule/index.d.ts +34 -34
- package/dist/index.js +50 -56
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +49 -56
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -13909,7 +13909,7 @@ export declare const apiContract: {
|
|
13909
13909
|
firstResponseAt: import("zod").ZodDate;
|
13910
13910
|
firstResponseTime: import("zod").ZodNumber;
|
13911
13911
|
isLatest: import("zod").ZodBoolean;
|
13912
|
-
direction: import("zod").
|
13912
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
13913
13913
|
platformContact: import("zod").ZodObject<{
|
13914
13914
|
id: import("zod").ZodString;
|
13915
13915
|
createdAt: import("zod").ZodDate;
|
@@ -16027,7 +16027,7 @@ export declare const apiContract: {
|
|
16027
16027
|
integrationId: string;
|
16028
16028
|
} | null;
|
16029
16029
|
};
|
16030
|
-
direction:
|
16030
|
+
direction: "incoming" | "outgoing" | "system";
|
16031
16031
|
createdAt: Date;
|
16032
16032
|
updatedAt: Date;
|
16033
16033
|
deletedAt: Date | null;
|
@@ -16351,7 +16351,7 @@ export declare const apiContract: {
|
|
16351
16351
|
integrationId: string;
|
16352
16352
|
} | null;
|
16353
16353
|
};
|
16354
|
-
direction:
|
16354
|
+
direction: "incoming" | "outgoing" | "system";
|
16355
16355
|
createdAt: Date;
|
16356
16356
|
updatedAt: Date;
|
16357
16357
|
deletedAt: Date | null;
|
@@ -20565,7 +20565,7 @@ export declare const apiContract: {
|
|
20565
20565
|
integrationId: string;
|
20566
20566
|
} | null;
|
20567
20567
|
};
|
20568
|
-
direction:
|
20568
|
+
direction: "incoming" | "outgoing" | "system";
|
20569
20569
|
createdAt: Date;
|
20570
20570
|
updatedAt: Date;
|
20571
20571
|
deletedAt: Date | null;
|
@@ -21503,7 +21503,7 @@ export declare const apiContract: {
|
|
21503
21503
|
integrationId: string;
|
21504
21504
|
} | null;
|
21505
21505
|
};
|
21506
|
-
direction:
|
21506
|
+
direction: "incoming" | "outgoing" | "system";
|
21507
21507
|
createdAt: Date;
|
21508
21508
|
updatedAt: Date;
|
21509
21509
|
deletedAt: Date | null;
|
@@ -22447,7 +22447,7 @@ export declare const apiContract: {
|
|
22447
22447
|
integrationId: string;
|
22448
22448
|
} | null;
|
22449
22449
|
};
|
22450
|
-
direction:
|
22450
|
+
direction: "incoming" | "outgoing" | "system";
|
22451
22451
|
createdAt: Date;
|
22452
22452
|
updatedAt: Date;
|
22453
22453
|
deletedAt: Date | null;
|
@@ -23391,7 +23391,7 @@ export declare const apiContract: {
|
|
23391
23391
|
integrationId: string;
|
23392
23392
|
} | null;
|
23393
23393
|
};
|
23394
|
-
direction:
|
23394
|
+
direction: "incoming" | "outgoing" | "system";
|
23395
23395
|
createdAt: Date;
|
23396
23396
|
updatedAt: Date;
|
23397
23397
|
deletedAt: Date | null;
|
@@ -87458,7 +87458,7 @@ export declare const platformContract: {
|
|
87458
87458
|
lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
|
87459
87459
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
87460
87460
|
isLatest: import("zod").ZodBoolean;
|
87461
|
-
direction: import("zod").
|
87461
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
87462
87462
|
platformContact: import("zod").ZodObject<{
|
87463
87463
|
channelId: import("zod").ZodString;
|
87464
87464
|
socialPlatformId: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -87856,7 +87856,7 @@ export declare const platformContract: {
|
|
87856
87856
|
connectedUserName?: string | null | undefined;
|
87857
87857
|
connectedUserId?: string | null | undefined;
|
87858
87858
|
};
|
87859
|
-
direction:
|
87859
|
+
direction: "incoming" | "outgoing" | "system";
|
87860
87860
|
actor: {
|
87861
87861
|
name: string;
|
87862
87862
|
address: string | null;
|
@@ -87936,7 +87936,7 @@ export declare const platformContract: {
|
|
87936
87936
|
connectedUserName?: string | null | undefined;
|
87937
87937
|
connectedUserId?: string | null | undefined;
|
87938
87938
|
};
|
87939
|
-
direction:
|
87939
|
+
direction: "incoming" | "outgoing" | "system";
|
87940
87940
|
actor: {
|
87941
87941
|
name: string;
|
87942
87942
|
address: string | null;
|
@@ -87968,8 +87968,8 @@ export declare const platformContract: {
|
|
87968
87968
|
}>;
|
87969
87969
|
message: import("zod").ZodObject<{
|
87970
87970
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
87971
|
-
direction: import("zod").
|
87972
|
-
type: import("zod").
|
87971
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
87972
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
87973
87973
|
readAt: import("zod").ZodOptional<import("zod").ZodDate>;
|
87974
87974
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
87975
87975
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -88014,7 +88014,7 @@ export declare const platformContract: {
|
|
88014
88014
|
}>;
|
88015
88015
|
}, "strip", import("zod").ZodTypeAny, {
|
88016
88016
|
type: string;
|
88017
|
-
direction:
|
88017
|
+
direction: "incoming" | "outgoing" | "system";
|
88018
88018
|
sender: {
|
88019
88019
|
name: string;
|
88020
88020
|
address: string | null;
|
@@ -88040,7 +88040,7 @@ export declare const platformContract: {
|
|
88040
88040
|
imageSetId?: string | undefined;
|
88041
88041
|
}, {
|
88042
88042
|
type: string;
|
88043
|
-
direction:
|
88043
|
+
direction: "incoming" | "outgoing" | "system";
|
88044
88044
|
sender: {
|
88045
88045
|
name: string;
|
88046
88046
|
address: string | null;
|
@@ -88068,7 +88068,7 @@ export declare const platformContract: {
|
|
88068
88068
|
}, "strip", import("zod").ZodTypeAny, {
|
88069
88069
|
message: {
|
88070
88070
|
type: string;
|
88071
|
-
direction:
|
88071
|
+
direction: "incoming" | "outgoing" | "system";
|
88072
88072
|
sender: {
|
88073
88073
|
name: string;
|
88074
88074
|
address: string | null;
|
@@ -88144,7 +88144,7 @@ export declare const platformContract: {
|
|
88144
88144
|
connectedUserName?: string | null | undefined;
|
88145
88145
|
connectedUserId?: string | null | undefined;
|
88146
88146
|
};
|
88147
|
-
direction:
|
88147
|
+
direction: "incoming" | "outgoing" | "system";
|
88148
88148
|
actor: {
|
88149
88149
|
name: string;
|
88150
88150
|
address: string | null;
|
@@ -88179,7 +88179,7 @@ export declare const platformContract: {
|
|
88179
88179
|
}, {
|
88180
88180
|
message: {
|
88181
88181
|
type: string;
|
88182
|
-
direction:
|
88182
|
+
direction: "incoming" | "outgoing" | "system";
|
88183
88183
|
sender: {
|
88184
88184
|
name: string;
|
88185
88185
|
address: string | null;
|
@@ -88255,7 +88255,7 @@ export declare const platformContract: {
|
|
88255
88255
|
connectedUserName?: string | null | undefined;
|
88256
88256
|
connectedUserId?: string | null | undefined;
|
88257
88257
|
};
|
88258
|
-
direction:
|
88258
|
+
direction: "incoming" | "outgoing" | "system";
|
88259
88259
|
actor: {
|
88260
88260
|
name: string;
|
88261
88261
|
address: string | null;
|
@@ -88760,7 +88760,7 @@ export declare const platformContract: {
|
|
88760
88760
|
lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
|
88761
88761
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
88762
88762
|
isLatest: import("zod").ZodBoolean;
|
88763
|
-
direction: import("zod").
|
88763
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
88764
88764
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
88765
88765
|
createdAt: import("zod").ZodString;
|
88766
88766
|
updatedAt: import("zod").ZodString;
|
@@ -89182,7 +89182,7 @@ export declare const platformContract: {
|
|
89182
89182
|
connectedUserName?: string | null | undefined;
|
89183
89183
|
connectedUserId?: string | null | undefined;
|
89184
89184
|
};
|
89185
|
-
direction:
|
89185
|
+
direction: "incoming" | "outgoing" | "system";
|
89186
89186
|
createdAt: string;
|
89187
89187
|
updatedAt: string;
|
89188
89188
|
actor: {
|
@@ -89274,7 +89274,7 @@ export declare const platformContract: {
|
|
89274
89274
|
connectedUserName?: string | null | undefined;
|
89275
89275
|
connectedUserId?: string | null | undefined;
|
89276
89276
|
};
|
89277
|
-
direction:
|
89277
|
+
direction: "incoming" | "outgoing" | "system";
|
89278
89278
|
createdAt: string;
|
89279
89279
|
updatedAt: string;
|
89280
89280
|
actor: {
|
@@ -89319,8 +89319,8 @@ export declare const platformContract: {
|
|
89319
89319
|
message: import("zod").ZodObject<{
|
89320
89320
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
89321
89321
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
89322
|
-
direction: import("zod").
|
89323
|
-
type: import("zod").
|
89322
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
89323
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
89324
89324
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
89325
89325
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
89326
89326
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -89377,7 +89377,7 @@ export declare const platformContract: {
|
|
89377
89377
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
89378
89378
|
}, "strip", import("zod").ZodTypeAny, {
|
89379
89379
|
type: string;
|
89380
|
-
direction:
|
89380
|
+
direction: "incoming" | "outgoing" | "system";
|
89381
89381
|
message?: string | undefined;
|
89382
89382
|
id?: string | undefined;
|
89383
89383
|
url?: string | undefined;
|
@@ -89412,7 +89412,7 @@ export declare const platformContract: {
|
|
89412
89412
|
editedAt?: string | Date | null | undefined;
|
89413
89413
|
}, {
|
89414
89414
|
type: string;
|
89415
|
-
direction:
|
89415
|
+
direction: "incoming" | "outgoing" | "system";
|
89416
89416
|
message?: string | undefined;
|
89417
89417
|
id?: string | undefined;
|
89418
89418
|
url?: string | undefined;
|
@@ -89449,7 +89449,7 @@ export declare const platformContract: {
|
|
89449
89449
|
}, "strip", import("zod").ZodTypeAny, {
|
89450
89450
|
message: {
|
89451
89451
|
type: string;
|
89452
|
-
direction:
|
89452
|
+
direction: "incoming" | "outgoing" | "system";
|
89453
89453
|
message?: string | undefined;
|
89454
89454
|
id?: string | undefined;
|
89455
89455
|
url?: string | undefined;
|
@@ -89534,7 +89534,7 @@ export declare const platformContract: {
|
|
89534
89534
|
connectedUserName?: string | null | undefined;
|
89535
89535
|
connectedUserId?: string | null | undefined;
|
89536
89536
|
};
|
89537
|
-
direction:
|
89537
|
+
direction: "incoming" | "outgoing" | "system";
|
89538
89538
|
createdAt: string;
|
89539
89539
|
updatedAt: string;
|
89540
89540
|
actor: {
|
@@ -89580,7 +89580,7 @@ export declare const platformContract: {
|
|
89580
89580
|
}, {
|
89581
89581
|
message: {
|
89582
89582
|
type: string;
|
89583
|
-
direction:
|
89583
|
+
direction: "incoming" | "outgoing" | "system";
|
89584
89584
|
message?: string | undefined;
|
89585
89585
|
id?: string | undefined;
|
89586
89586
|
url?: string | undefined;
|
@@ -89665,7 +89665,7 @@ export declare const platformContract: {
|
|
89665
89665
|
connectedUserName?: string | null | undefined;
|
89666
89666
|
connectedUserId?: string | null | undefined;
|
89667
89667
|
};
|
89668
|
-
direction:
|
89668
|
+
direction: "incoming" | "outgoing" | "system";
|
89669
89669
|
createdAt: string;
|
89670
89670
|
updatedAt: string;
|
89671
89671
|
actor: {
|
@@ -89722,8 +89722,8 @@ export declare const platformContract: {
|
|
89722
89722
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
89723
89723
|
}, {
|
89724
89724
|
message: import("zod").ZodString;
|
89725
|
-
direction: import("zod").
|
89726
|
-
type: import("zod").
|
89725
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
89726
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
89727
89727
|
readAt: import("zod").ZodDate;
|
89728
89728
|
metadata: import("zod").ZodAny;
|
89729
89729
|
platformId: import("zod").ZodString;
|
@@ -89750,7 +89750,7 @@ export declare const platformContract: {
|
|
89750
89750
|
firstResponseTime: import("zod").ZodNumber;
|
89751
89751
|
isLatest: import("zod").ZodBoolean;
|
89752
89752
|
isBotRoom: import("zod").ZodBoolean;
|
89753
|
-
direction: import("zod").
|
89753
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
89754
89754
|
platformContact: import("zod").ZodObject<{
|
89755
89755
|
id: import("zod").ZodString;
|
89756
89756
|
createdAt: import("zod").ZodDate;
|
@@ -92435,7 +92435,7 @@ export declare const platformContract: {
|
|
92435
92435
|
integrationId: string;
|
92436
92436
|
} | null;
|
92437
92437
|
};
|
92438
|
-
direction:
|
92438
|
+
direction: "incoming" | "outgoing" | "system";
|
92439
92439
|
status: number;
|
92440
92440
|
createdAt: Date;
|
92441
92441
|
updatedAt: Date;
|
@@ -92864,7 +92864,7 @@ export declare const platformContract: {
|
|
92864
92864
|
integrationId: string;
|
92865
92865
|
} | null;
|
92866
92866
|
};
|
92867
|
-
direction:
|
92867
|
+
direction: "incoming" | "outgoing" | "system";
|
92868
92868
|
status: number;
|
92869
92869
|
createdAt: Date;
|
92870
92870
|
updatedAt: Date;
|
@@ -93238,8 +93238,8 @@ export declare const platformContract: {
|
|
93238
93238
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
93239
93239
|
}, {
|
93240
93240
|
message: import("zod").ZodString;
|
93241
|
-
direction: import("zod").
|
93242
|
-
type: import("zod").
|
93241
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
93242
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
93243
93243
|
readAt: import("zod").ZodDate;
|
93244
93244
|
metadata: import("zod").ZodAny;
|
93245
93245
|
platformId: import("zod").ZodString;
|
@@ -93905,7 +93905,7 @@ export declare const platformContract: {
|
|
93905
93905
|
message: string;
|
93906
93906
|
id: string;
|
93907
93907
|
url: string;
|
93908
|
-
direction:
|
93908
|
+
direction: "incoming" | "outgoing" | "system";
|
93909
93909
|
createdAt: Date;
|
93910
93910
|
updatedAt: Date;
|
93911
93911
|
deletedAt: Date | null;
|
@@ -94067,7 +94067,7 @@ export declare const platformContract: {
|
|
94067
94067
|
message: string;
|
94068
94068
|
id: string;
|
94069
94069
|
url: string;
|
94070
|
-
direction:
|
94070
|
+
direction: "incoming" | "outgoing" | "system";
|
94071
94071
|
createdAt: Date;
|
94072
94072
|
updatedAt: Date;
|
94073
94073
|
deletedAt: Date | null;
|
@@ -94873,8 +94873,8 @@ export declare const platformContract: {
|
|
94873
94873
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
94874
94874
|
}, {
|
94875
94875
|
message: import("zod").ZodString;
|
94876
|
-
direction: import("zod").
|
94877
|
-
type: import("zod").
|
94876
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
94877
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
94878
94878
|
readAt: import("zod").ZodDate;
|
94879
94879
|
metadata: import("zod").ZodAny;
|
94880
94880
|
platformId: import("zod").ZodString;
|
@@ -94901,7 +94901,7 @@ export declare const platformContract: {
|
|
94901
94901
|
firstResponseTime: import("zod").ZodNumber;
|
94902
94902
|
isLatest: import("zod").ZodBoolean;
|
94903
94903
|
isBotRoom: import("zod").ZodBoolean;
|
94904
|
-
direction: import("zod").
|
94904
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
94905
94905
|
platformContact: import("zod").ZodObject<{
|
94906
94906
|
id: import("zod").ZodString;
|
94907
94907
|
createdAt: import("zod").ZodDate;
|
@@ -97586,7 +97586,7 @@ export declare const platformContract: {
|
|
97586
97586
|
integrationId: string;
|
97587
97587
|
} | null;
|
97588
97588
|
};
|
97589
|
-
direction:
|
97589
|
+
direction: "incoming" | "outgoing" | "system";
|
97590
97590
|
status: number;
|
97591
97591
|
createdAt: Date;
|
97592
97592
|
updatedAt: Date;
|
@@ -98015,7 +98015,7 @@ export declare const platformContract: {
|
|
98015
98015
|
integrationId: string;
|
98016
98016
|
} | null;
|
98017
98017
|
};
|
98018
|
-
direction:
|
98018
|
+
direction: "incoming" | "outgoing" | "system";
|
98019
98019
|
status: number;
|
98020
98020
|
createdAt: Date;
|
98021
98021
|
updatedAt: Date;
|
@@ -98389,8 +98389,8 @@ export declare const platformContract: {
|
|
98389
98389
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
98390
98390
|
}, {
|
98391
98391
|
message: import("zod").ZodString;
|
98392
|
-
direction: import("zod").
|
98393
|
-
type: import("zod").
|
98392
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
98393
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
98394
98394
|
readAt: import("zod").ZodDate;
|
98395
98395
|
metadata: import("zod").ZodAny;
|
98396
98396
|
platformId: import("zod").ZodString;
|
@@ -99056,7 +99056,7 @@ export declare const platformContract: {
|
|
99056
99056
|
message: string;
|
99057
99057
|
id: string;
|
99058
99058
|
url: string;
|
99059
|
-
direction:
|
99059
|
+
direction: "incoming" | "outgoing" | "system";
|
99060
99060
|
createdAt: Date;
|
99061
99061
|
updatedAt: Date;
|
99062
99062
|
deletedAt: Date | null;
|
@@ -99218,7 +99218,7 @@ export declare const platformContract: {
|
|
99218
99218
|
message: string;
|
99219
99219
|
id: string;
|
99220
99220
|
url: string;
|
99221
|
-
direction:
|
99221
|
+
direction: "incoming" | "outgoing" | "system";
|
99222
99222
|
createdAt: Date;
|
99223
99223
|
updatedAt: Date;
|
99224
99224
|
deletedAt: Date | null;
|
@@ -100021,7 +100021,7 @@ export declare const platformContract: {
|
|
100021
100021
|
message: string;
|
100022
100022
|
id: string;
|
100023
100023
|
url: string;
|
100024
|
-
direction:
|
100024
|
+
direction: "incoming" | "outgoing" | "system";
|
100025
100025
|
createdAt: Date;
|
100026
100026
|
updatedAt: Date;
|
100027
100027
|
deletedAt: Date | null;
|
@@ -100224,7 +100224,7 @@ export declare const platformContract: {
|
|
100224
100224
|
integrationId: string;
|
100225
100225
|
} | null;
|
100226
100226
|
};
|
100227
|
-
direction:
|
100227
|
+
direction: "incoming" | "outgoing" | "system";
|
100228
100228
|
status: number;
|
100229
100229
|
createdAt: Date;
|
100230
100230
|
updatedAt: Date;
|
@@ -100576,7 +100576,7 @@ export declare const platformContract: {
|
|
100576
100576
|
message: string;
|
100577
100577
|
id: string;
|
100578
100578
|
url: string;
|
100579
|
-
direction:
|
100579
|
+
direction: "incoming" | "outgoing" | "system";
|
100580
100580
|
createdAt: Date;
|
100581
100581
|
updatedAt: Date;
|
100582
100582
|
deletedAt: Date | null;
|
@@ -100787,7 +100787,7 @@ export declare const platformContract: {
|
|
100787
100787
|
message: string;
|
100788
100788
|
id: string;
|
100789
100789
|
url: string;
|
100790
|
-
direction:
|
100790
|
+
direction: "incoming" | "outgoing" | "system";
|
100791
100791
|
createdAt: Date;
|
100792
100792
|
updatedAt: Date;
|
100793
100793
|
deletedAt: Date | null;
|
@@ -100990,7 +100990,7 @@ export declare const platformContract: {
|
|
100990
100990
|
integrationId: string;
|
100991
100991
|
} | null;
|
100992
100992
|
};
|
100993
|
-
direction:
|
100993
|
+
direction: "incoming" | "outgoing" | "system";
|
100994
100994
|
status: number;
|
100995
100995
|
createdAt: Date;
|
100996
100996
|
updatedAt: Date;
|
@@ -101342,7 +101342,7 @@ export declare const platformContract: {
|
|
101342
101342
|
message: string;
|
101343
101343
|
id: string;
|
101344
101344
|
url: string;
|
101345
|
-
direction:
|
101345
|
+
direction: "incoming" | "outgoing" | "system";
|
101346
101346
|
createdAt: Date;
|
101347
101347
|
updatedAt: Date;
|
101348
101348
|
deletedAt: Date | null;
|
@@ -101554,7 +101554,7 @@ export declare const platformContract: {
|
|
101554
101554
|
message: string;
|
101555
101555
|
id: string;
|
101556
101556
|
url: string;
|
101557
|
-
direction:
|
101557
|
+
direction: "incoming" | "outgoing" | "system";
|
101558
101558
|
createdAt: Date;
|
101559
101559
|
updatedAt: Date;
|
101560
101560
|
deletedAt: Date | null;
|
@@ -101757,7 +101757,7 @@ export declare const platformContract: {
|
|
101757
101757
|
integrationId: string;
|
101758
101758
|
} | null;
|
101759
101759
|
};
|
101760
|
-
direction:
|
101760
|
+
direction: "incoming" | "outgoing" | "system";
|
101761
101761
|
status: number;
|
101762
101762
|
createdAt: Date;
|
101763
101763
|
updatedAt: Date;
|
@@ -102109,7 +102109,7 @@ export declare const platformContract: {
|
|
102109
102109
|
message: string;
|
102110
102110
|
id: string;
|
102111
102111
|
url: string;
|
102112
|
-
direction:
|
102112
|
+
direction: "incoming" | "outgoing" | "system";
|
102113
102113
|
createdAt: Date;
|
102114
102114
|
updatedAt: Date;
|
102115
102115
|
deletedAt: Date | null;
|
@@ -102320,7 +102320,7 @@ export declare const platformContract: {
|
|
102320
102320
|
message: string;
|
102321
102321
|
id: string;
|
102322
102322
|
url: string;
|
102323
|
-
direction:
|
102323
|
+
direction: "incoming" | "outgoing" | "system";
|
102324
102324
|
createdAt: Date;
|
102325
102325
|
updatedAt: Date;
|
102326
102326
|
deletedAt: Date | null;
|
@@ -102523,7 +102523,7 @@ export declare const platformContract: {
|
|
102523
102523
|
integrationId: string;
|
102524
102524
|
} | null;
|
102525
102525
|
};
|
102526
|
-
direction:
|
102526
|
+
direction: "incoming" | "outgoing" | "system";
|
102527
102527
|
status: number;
|
102528
102528
|
createdAt: Date;
|
102529
102529
|
updatedAt: Date;
|
@@ -102875,7 +102875,7 @@ export declare const platformContract: {
|
|
102875
102875
|
message: string;
|
102876
102876
|
id: string;
|
102877
102877
|
url: string;
|
102878
|
-
direction:
|
102878
|
+
direction: "incoming" | "outgoing" | "system";
|
102879
102879
|
createdAt: Date;
|
102880
102880
|
updatedAt: Date;
|
102881
102881
|
deletedAt: Date | null;
|
@@ -103087,7 +103087,7 @@ export declare const platformContract: {
|
|
103087
103087
|
message: string;
|
103088
103088
|
id: string;
|
103089
103089
|
url: string;
|
103090
|
-
direction:
|
103090
|
+
direction: "incoming" | "outgoing" | "system";
|
103091
103091
|
createdAt: Date;
|
103092
103092
|
updatedAt: Date;
|
103093
103093
|
deletedAt: Date | null;
|
@@ -103290,7 +103290,7 @@ export declare const platformContract: {
|
|
103290
103290
|
integrationId: string;
|
103291
103291
|
} | null;
|
103292
103292
|
};
|
103293
|
-
direction:
|
103293
|
+
direction: "incoming" | "outgoing" | "system";
|
103294
103294
|
status: number;
|
103295
103295
|
createdAt: Date;
|
103296
103296
|
updatedAt: Date;
|
@@ -103642,7 +103642,7 @@ export declare const platformContract: {
|
|
103642
103642
|
message: string;
|
103643
103643
|
id: string;
|
103644
103644
|
url: string;
|
103645
|
-
direction:
|
103645
|
+
direction: "incoming" | "outgoing" | "system";
|
103646
103646
|
createdAt: Date;
|
103647
103647
|
updatedAt: Date;
|
103648
103648
|
deletedAt: Date | null;
|
@@ -103853,7 +103853,7 @@ export declare const platformContract: {
|
|
103853
103853
|
message: string;
|
103854
103854
|
id: string;
|
103855
103855
|
url: string;
|
103856
|
-
direction:
|
103856
|
+
direction: "incoming" | "outgoing" | "system";
|
103857
103857
|
createdAt: Date;
|
103858
103858
|
updatedAt: Date;
|
103859
103859
|
deletedAt: Date | null;
|
@@ -104056,7 +104056,7 @@ export declare const platformContract: {
|
|
104056
104056
|
integrationId: string;
|
104057
104057
|
} | null;
|
104058
104058
|
};
|
104059
|
-
direction:
|
104059
|
+
direction: "incoming" | "outgoing" | "system";
|
104060
104060
|
status: number;
|
104061
104061
|
createdAt: Date;
|
104062
104062
|
updatedAt: Date;
|
@@ -104408,7 +104408,7 @@ export declare const platformContract: {
|
|
104408
104408
|
message: string;
|
104409
104409
|
id: string;
|
104410
104410
|
url: string;
|
104411
|
-
direction:
|
104411
|
+
direction: "incoming" | "outgoing" | "system";
|
104412
104412
|
createdAt: Date;
|
104413
104413
|
updatedAt: Date;
|
104414
104414
|
deletedAt: Date | null;
|
@@ -104622,7 +104622,7 @@ export declare const platformContract: {
|
|
104622
104622
|
message: string;
|
104623
104623
|
id: string;
|
104624
104624
|
url: string;
|
104625
|
-
direction:
|
104625
|
+
direction: "incoming" | "outgoing" | "system";
|
104626
104626
|
createdAt: Date;
|
104627
104627
|
updatedAt: Date;
|
104628
104628
|
deletedAt: Date | null;
|
@@ -104825,7 +104825,7 @@ export declare const platformContract: {
|
|
104825
104825
|
integrationId: string;
|
104826
104826
|
} | null;
|
104827
104827
|
};
|
104828
|
-
direction:
|
104828
|
+
direction: "incoming" | "outgoing" | "system";
|
104829
104829
|
status: number;
|
104830
104830
|
createdAt: Date;
|
104831
104831
|
updatedAt: Date;
|
@@ -105177,7 +105177,7 @@ export declare const platformContract: {
|
|
105177
105177
|
message: string;
|
105178
105178
|
id: string;
|
105179
105179
|
url: string;
|
105180
|
-
direction:
|
105180
|
+
direction: "incoming" | "outgoing" | "system";
|
105181
105181
|
createdAt: Date;
|
105182
105182
|
updatedAt: Date;
|
105183
105183
|
deletedAt: Date | null;
|
@@ -105388,7 +105388,7 @@ export declare const platformContract: {
|
|
105388
105388
|
message: string;
|
105389
105389
|
id: string;
|
105390
105390
|
url: string;
|
105391
|
-
direction:
|
105391
|
+
direction: "incoming" | "outgoing" | "system";
|
105392
105392
|
createdAt: Date;
|
105393
105393
|
updatedAt: Date;
|
105394
105394
|
deletedAt: Date | null;
|
@@ -105591,7 +105591,7 @@ export declare const platformContract: {
|
|
105591
105591
|
integrationId: string;
|
105592
105592
|
} | null;
|
105593
105593
|
};
|
105594
|
-
direction:
|
105594
|
+
direction: "incoming" | "outgoing" | "system";
|
105595
105595
|
status: number;
|
105596
105596
|
createdAt: Date;
|
105597
105597
|
updatedAt: Date;
|
@@ -105943,7 +105943,7 @@ export declare const platformContract: {
|
|
105943
105943
|
message: string;
|
105944
105944
|
id: string;
|
105945
105945
|
url: string;
|
105946
|
-
direction:
|
105946
|
+
direction: "incoming" | "outgoing" | "system";
|
105947
105947
|
createdAt: Date;
|
105948
105948
|
updatedAt: Date;
|
105949
105949
|
deletedAt: Date | null;
|
@@ -106158,7 +106158,7 @@ export declare const platformContract: {
|
|
106158
106158
|
message: string;
|
106159
106159
|
id: string;
|
106160
106160
|
url: string;
|
106161
|
-
direction:
|
106161
|
+
direction: "incoming" | "outgoing" | "system";
|
106162
106162
|
createdAt: Date;
|
106163
106163
|
updatedAt: Date;
|
106164
106164
|
deletedAt: Date | null;
|
@@ -106361,7 +106361,7 @@ export declare const platformContract: {
|
|
106361
106361
|
integrationId: string;
|
106362
106362
|
} | null;
|
106363
106363
|
};
|
106364
|
-
direction:
|
106364
|
+
direction: "incoming" | "outgoing" | "system";
|
106365
106365
|
status: number;
|
106366
106366
|
createdAt: Date;
|
106367
106367
|
updatedAt: Date;
|
@@ -106713,7 +106713,7 @@ export declare const platformContract: {
|
|
106713
106713
|
message: string;
|
106714
106714
|
id: string;
|
106715
106715
|
url: string;
|
106716
|
-
direction:
|
106716
|
+
direction: "incoming" | "outgoing" | "system";
|
106717
106717
|
createdAt: Date;
|
106718
106718
|
updatedAt: Date;
|
106719
106719
|
deletedAt: Date | null;
|
@@ -106924,7 +106924,7 @@ export declare const platformContract: {
|
|
106924
106924
|
message: string;
|
106925
106925
|
id: string;
|
106926
106926
|
url: string;
|
106927
|
-
direction:
|
106927
|
+
direction: "incoming" | "outgoing" | "system";
|
106928
106928
|
createdAt: Date;
|
106929
106929
|
updatedAt: Date;
|
106930
106930
|
deletedAt: Date | null;
|
@@ -107127,7 +107127,7 @@ export declare const platformContract: {
|
|
107127
107127
|
integrationId: string;
|
107128
107128
|
} | null;
|
107129
107129
|
};
|
107130
|
-
direction:
|
107130
|
+
direction: "incoming" | "outgoing" | "system";
|
107131
107131
|
status: number;
|
107132
107132
|
createdAt: Date;
|
107133
107133
|
updatedAt: Date;
|
@@ -107479,7 +107479,7 @@ export declare const platformContract: {
|
|
107479
107479
|
message: string;
|
107480
107480
|
id: string;
|
107481
107481
|
url: string;
|
107482
|
-
direction:
|
107482
|
+
direction: "incoming" | "outgoing" | "system";
|
107483
107483
|
createdAt: Date;
|
107484
107484
|
updatedAt: Date;
|
107485
107485
|
deletedAt: Date | null;
|
@@ -110758,7 +110758,7 @@ export declare const platformContract: {
|
|
110758
110758
|
lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
|
110759
110759
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
110760
110760
|
isLatest: import("zod").ZodBoolean;
|
110761
|
-
direction: import("zod").
|
110761
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
110762
110762
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
110763
110763
|
createdAt: import("zod").ZodString;
|
110764
110764
|
updatedAt: import("zod").ZodString;
|
@@ -111180,7 +111180,7 @@ export declare const platformContract: {
|
|
111180
111180
|
connectedUserName?: string | null | undefined;
|
111181
111181
|
connectedUserId?: string | null | undefined;
|
111182
111182
|
};
|
111183
|
-
direction:
|
111183
|
+
direction: "incoming" | "outgoing" | "system";
|
111184
111184
|
createdAt: string;
|
111185
111185
|
updatedAt: string;
|
111186
111186
|
actor: {
|
@@ -111272,7 +111272,7 @@ export declare const platformContract: {
|
|
111272
111272
|
connectedUserName?: string | null | undefined;
|
111273
111273
|
connectedUserId?: string | null | undefined;
|
111274
111274
|
};
|
111275
|
-
direction:
|
111275
|
+
direction: "incoming" | "outgoing" | "system";
|
111276
111276
|
createdAt: string;
|
111277
111277
|
updatedAt: string;
|
111278
111278
|
actor: {
|
@@ -111317,8 +111317,8 @@ export declare const platformContract: {
|
|
111317
111317
|
message: import("zod").ZodObject<{
|
111318
111318
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
111319
111319
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
111320
|
-
direction: import("zod").
|
111321
|
-
type: import("zod").
|
111320
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
111321
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
111322
111322
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
111323
111323
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
111324
111324
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -111375,7 +111375,7 @@ export declare const platformContract: {
|
|
111375
111375
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
111376
111376
|
}, "strip", import("zod").ZodTypeAny, {
|
111377
111377
|
type: string;
|
111378
|
-
direction:
|
111378
|
+
direction: "incoming" | "outgoing" | "system";
|
111379
111379
|
message?: string | undefined;
|
111380
111380
|
id?: string | undefined;
|
111381
111381
|
url?: string | undefined;
|
@@ -111410,7 +111410,7 @@ export declare const platformContract: {
|
|
111410
111410
|
editedAt?: string | Date | null | undefined;
|
111411
111411
|
}, {
|
111412
111412
|
type: string;
|
111413
|
-
direction:
|
111413
|
+
direction: "incoming" | "outgoing" | "system";
|
111414
111414
|
message?: string | undefined;
|
111415
111415
|
id?: string | undefined;
|
111416
111416
|
url?: string | undefined;
|
@@ -111447,7 +111447,7 @@ export declare const platformContract: {
|
|
111447
111447
|
}, "strip", import("zod").ZodTypeAny, {
|
111448
111448
|
message: {
|
111449
111449
|
type: string;
|
111450
|
-
direction:
|
111450
|
+
direction: "incoming" | "outgoing" | "system";
|
111451
111451
|
message?: string | undefined;
|
111452
111452
|
id?: string | undefined;
|
111453
111453
|
url?: string | undefined;
|
@@ -111532,7 +111532,7 @@ export declare const platformContract: {
|
|
111532
111532
|
connectedUserName?: string | null | undefined;
|
111533
111533
|
connectedUserId?: string | null | undefined;
|
111534
111534
|
};
|
111535
|
-
direction:
|
111535
|
+
direction: "incoming" | "outgoing" | "system";
|
111536
111536
|
createdAt: string;
|
111537
111537
|
updatedAt: string;
|
111538
111538
|
actor: {
|
@@ -111578,7 +111578,7 @@ export declare const platformContract: {
|
|
111578
111578
|
}, {
|
111579
111579
|
message: {
|
111580
111580
|
type: string;
|
111581
|
-
direction:
|
111581
|
+
direction: "incoming" | "outgoing" | "system";
|
111582
111582
|
message?: string | undefined;
|
111583
111583
|
id?: string | undefined;
|
111584
111584
|
url?: string | undefined;
|
@@ -111663,7 +111663,7 @@ export declare const platformContract: {
|
|
111663
111663
|
connectedUserName?: string | null | undefined;
|
111664
111664
|
connectedUserId?: string | null | undefined;
|
111665
111665
|
};
|
111666
|
-
direction:
|
111666
|
+
direction: "incoming" | "outgoing" | "system";
|
111667
111667
|
createdAt: string;
|
111668
111668
|
updatedAt: string;
|
111669
111669
|
actor: {
|
@@ -111720,8 +111720,8 @@ export declare const platformContract: {
|
|
111720
111720
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
111721
111721
|
}, {
|
111722
111722
|
message: import("zod").ZodString;
|
111723
|
-
direction: import("zod").
|
111724
|
-
type: import("zod").
|
111723
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
111724
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
111725
111725
|
readAt: import("zod").ZodDate;
|
111726
111726
|
metadata: import("zod").ZodAny;
|
111727
111727
|
platformId: import("zod").ZodString;
|
@@ -111748,7 +111748,7 @@ export declare const platformContract: {
|
|
111748
111748
|
firstResponseTime: import("zod").ZodNumber;
|
111749
111749
|
isLatest: import("zod").ZodBoolean;
|
111750
111750
|
isBotRoom: import("zod").ZodBoolean;
|
111751
|
-
direction: import("zod").
|
111751
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
111752
111752
|
platformContact: import("zod").ZodObject<{
|
111753
111753
|
id: import("zod").ZodString;
|
111754
111754
|
createdAt: import("zod").ZodDate;
|
@@ -114433,7 +114433,7 @@ export declare const platformContract: {
|
|
114433
114433
|
integrationId: string;
|
114434
114434
|
} | null;
|
114435
114435
|
};
|
114436
|
-
direction:
|
114436
|
+
direction: "incoming" | "outgoing" | "system";
|
114437
114437
|
status: number;
|
114438
114438
|
createdAt: Date;
|
114439
114439
|
updatedAt: Date;
|
@@ -114862,7 +114862,7 @@ export declare const platformContract: {
|
|
114862
114862
|
integrationId: string;
|
114863
114863
|
} | null;
|
114864
114864
|
};
|
114865
|
-
direction:
|
114865
|
+
direction: "incoming" | "outgoing" | "system";
|
114866
114866
|
status: number;
|
114867
114867
|
createdAt: Date;
|
114868
114868
|
updatedAt: Date;
|
@@ -115236,8 +115236,8 @@ export declare const platformContract: {
|
|
115236
115236
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
115237
115237
|
}, {
|
115238
115238
|
message: import("zod").ZodString;
|
115239
|
-
direction: import("zod").
|
115240
|
-
type: import("zod").
|
115239
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
115240
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
115241
115241
|
readAt: import("zod").ZodDate;
|
115242
115242
|
metadata: import("zod").ZodAny;
|
115243
115243
|
platformId: import("zod").ZodString;
|
@@ -115903,7 +115903,7 @@ export declare const platformContract: {
|
|
115903
115903
|
message: string;
|
115904
115904
|
id: string;
|
115905
115905
|
url: string;
|
115906
|
-
direction:
|
115906
|
+
direction: "incoming" | "outgoing" | "system";
|
115907
115907
|
createdAt: Date;
|
115908
115908
|
updatedAt: Date;
|
115909
115909
|
deletedAt: Date | null;
|
@@ -116065,7 +116065,7 @@ export declare const platformContract: {
|
|
116065
116065
|
message: string;
|
116066
116066
|
id: string;
|
116067
116067
|
url: string;
|
116068
|
-
direction:
|
116068
|
+
direction: "incoming" | "outgoing" | "system";
|
116069
116069
|
createdAt: Date;
|
116070
116070
|
updatedAt: Date;
|
116071
116071
|
deletedAt: Date | null;
|
@@ -116871,8 +116871,8 @@ export declare const platformContract: {
|
|
116871
116871
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
116872
116872
|
}, {
|
116873
116873
|
message: import("zod").ZodString;
|
116874
|
-
direction: import("zod").
|
116875
|
-
type: import("zod").
|
116874
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
116875
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
116876
116876
|
readAt: import("zod").ZodDate;
|
116877
116877
|
metadata: import("zod").ZodAny;
|
116878
116878
|
platformId: import("zod").ZodString;
|
@@ -116899,7 +116899,7 @@ export declare const platformContract: {
|
|
116899
116899
|
firstResponseTime: import("zod").ZodNumber;
|
116900
116900
|
isLatest: import("zod").ZodBoolean;
|
116901
116901
|
isBotRoom: import("zod").ZodBoolean;
|
116902
|
-
direction: import("zod").
|
116902
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
116903
116903
|
platformContact: import("zod").ZodObject<{
|
116904
116904
|
id: import("zod").ZodString;
|
116905
116905
|
createdAt: import("zod").ZodDate;
|
@@ -119584,7 +119584,7 @@ export declare const platformContract: {
|
|
119584
119584
|
integrationId: string;
|
119585
119585
|
} | null;
|
119586
119586
|
};
|
119587
|
-
direction:
|
119587
|
+
direction: "incoming" | "outgoing" | "system";
|
119588
119588
|
status: number;
|
119589
119589
|
createdAt: Date;
|
119590
119590
|
updatedAt: Date;
|
@@ -120013,7 +120013,7 @@ export declare const platformContract: {
|
|
120013
120013
|
integrationId: string;
|
120014
120014
|
} | null;
|
120015
120015
|
};
|
120016
|
-
direction:
|
120016
|
+
direction: "incoming" | "outgoing" | "system";
|
120017
120017
|
status: number;
|
120018
120018
|
createdAt: Date;
|
120019
120019
|
updatedAt: Date;
|
@@ -120387,8 +120387,8 @@ export declare const platformContract: {
|
|
120387
120387
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
120388
120388
|
}, {
|
120389
120389
|
message: import("zod").ZodString;
|
120390
|
-
direction: import("zod").
|
120391
|
-
type: import("zod").
|
120390
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
120391
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
120392
120392
|
readAt: import("zod").ZodDate;
|
120393
120393
|
metadata: import("zod").ZodAny;
|
120394
120394
|
platformId: import("zod").ZodString;
|
@@ -121054,7 +121054,7 @@ export declare const platformContract: {
|
|
121054
121054
|
message: string;
|
121055
121055
|
id: string;
|
121056
121056
|
url: string;
|
121057
|
-
direction:
|
121057
|
+
direction: "incoming" | "outgoing" | "system";
|
121058
121058
|
createdAt: Date;
|
121059
121059
|
updatedAt: Date;
|
121060
121060
|
deletedAt: Date | null;
|
@@ -121216,7 +121216,7 @@ export declare const platformContract: {
|
|
121216
121216
|
message: string;
|
121217
121217
|
id: string;
|
121218
121218
|
url: string;
|
121219
|
-
direction:
|
121219
|
+
direction: "incoming" | "outgoing" | "system";
|
121220
121220
|
createdAt: Date;
|
121221
121221
|
updatedAt: Date;
|
121222
121222
|
deletedAt: Date | null;
|
@@ -122019,7 +122019,7 @@ export declare const platformContract: {
|
|
122019
122019
|
message: string;
|
122020
122020
|
id: string;
|
122021
122021
|
url: string;
|
122022
|
-
direction:
|
122022
|
+
direction: "incoming" | "outgoing" | "system";
|
122023
122023
|
createdAt: Date;
|
122024
122024
|
updatedAt: Date;
|
122025
122025
|
deletedAt: Date | null;
|
@@ -122222,7 +122222,7 @@ export declare const platformContract: {
|
|
122222
122222
|
integrationId: string;
|
122223
122223
|
} | null;
|
122224
122224
|
};
|
122225
|
-
direction:
|
122225
|
+
direction: "incoming" | "outgoing" | "system";
|
122226
122226
|
status: number;
|
122227
122227
|
createdAt: Date;
|
122228
122228
|
updatedAt: Date;
|
@@ -122574,7 +122574,7 @@ export declare const platformContract: {
|
|
122574
122574
|
message: string;
|
122575
122575
|
id: string;
|
122576
122576
|
url: string;
|
122577
|
-
direction:
|
122577
|
+
direction: "incoming" | "outgoing" | "system";
|
122578
122578
|
createdAt: Date;
|
122579
122579
|
updatedAt: Date;
|
122580
122580
|
deletedAt: Date | null;
|
@@ -122785,7 +122785,7 @@ export declare const platformContract: {
|
|
122785
122785
|
message: string;
|
122786
122786
|
id: string;
|
122787
122787
|
url: string;
|
122788
|
-
direction:
|
122788
|
+
direction: "incoming" | "outgoing" | "system";
|
122789
122789
|
createdAt: Date;
|
122790
122790
|
updatedAt: Date;
|
122791
122791
|
deletedAt: Date | null;
|
@@ -122988,7 +122988,7 @@ export declare const platformContract: {
|
|
122988
122988
|
integrationId: string;
|
122989
122989
|
} | null;
|
122990
122990
|
};
|
122991
|
-
direction:
|
122991
|
+
direction: "incoming" | "outgoing" | "system";
|
122992
122992
|
status: number;
|
122993
122993
|
createdAt: Date;
|
122994
122994
|
updatedAt: Date;
|
@@ -123340,7 +123340,7 @@ export declare const platformContract: {
|
|
123340
123340
|
message: string;
|
123341
123341
|
id: string;
|
123342
123342
|
url: string;
|
123343
|
-
direction:
|
123343
|
+
direction: "incoming" | "outgoing" | "system";
|
123344
123344
|
createdAt: Date;
|
123345
123345
|
updatedAt: Date;
|
123346
123346
|
deletedAt: Date | null;
|
@@ -123552,7 +123552,7 @@ export declare const platformContract: {
|
|
123552
123552
|
message: string;
|
123553
123553
|
id: string;
|
123554
123554
|
url: string;
|
123555
|
-
direction:
|
123555
|
+
direction: "incoming" | "outgoing" | "system";
|
123556
123556
|
createdAt: Date;
|
123557
123557
|
updatedAt: Date;
|
123558
123558
|
deletedAt: Date | null;
|
@@ -123755,7 +123755,7 @@ export declare const platformContract: {
|
|
123755
123755
|
integrationId: string;
|
123756
123756
|
} | null;
|
123757
123757
|
};
|
123758
|
-
direction:
|
123758
|
+
direction: "incoming" | "outgoing" | "system";
|
123759
123759
|
status: number;
|
123760
123760
|
createdAt: Date;
|
123761
123761
|
updatedAt: Date;
|
@@ -124107,7 +124107,7 @@ export declare const platformContract: {
|
|
124107
124107
|
message: string;
|
124108
124108
|
id: string;
|
124109
124109
|
url: string;
|
124110
|
-
direction:
|
124110
|
+
direction: "incoming" | "outgoing" | "system";
|
124111
124111
|
createdAt: Date;
|
124112
124112
|
updatedAt: Date;
|
124113
124113
|
deletedAt: Date | null;
|
@@ -124318,7 +124318,7 @@ export declare const platformContract: {
|
|
124318
124318
|
message: string;
|
124319
124319
|
id: string;
|
124320
124320
|
url: string;
|
124321
|
-
direction:
|
124321
|
+
direction: "incoming" | "outgoing" | "system";
|
124322
124322
|
createdAt: Date;
|
124323
124323
|
updatedAt: Date;
|
124324
124324
|
deletedAt: Date | null;
|
@@ -124521,7 +124521,7 @@ export declare const platformContract: {
|
|
124521
124521
|
integrationId: string;
|
124522
124522
|
} | null;
|
124523
124523
|
};
|
124524
|
-
direction:
|
124524
|
+
direction: "incoming" | "outgoing" | "system";
|
124525
124525
|
status: number;
|
124526
124526
|
createdAt: Date;
|
124527
124527
|
updatedAt: Date;
|
@@ -124873,7 +124873,7 @@ export declare const platformContract: {
|
|
124873
124873
|
message: string;
|
124874
124874
|
id: string;
|
124875
124875
|
url: string;
|
124876
|
-
direction:
|
124876
|
+
direction: "incoming" | "outgoing" | "system";
|
124877
124877
|
createdAt: Date;
|
124878
124878
|
updatedAt: Date;
|
124879
124879
|
deletedAt: Date | null;
|
@@ -125085,7 +125085,7 @@ export declare const platformContract: {
|
|
125085
125085
|
message: string;
|
125086
125086
|
id: string;
|
125087
125087
|
url: string;
|
125088
|
-
direction:
|
125088
|
+
direction: "incoming" | "outgoing" | "system";
|
125089
125089
|
createdAt: Date;
|
125090
125090
|
updatedAt: Date;
|
125091
125091
|
deletedAt: Date | null;
|
@@ -125288,7 +125288,7 @@ export declare const platformContract: {
|
|
125288
125288
|
integrationId: string;
|
125289
125289
|
} | null;
|
125290
125290
|
};
|
125291
|
-
direction:
|
125291
|
+
direction: "incoming" | "outgoing" | "system";
|
125292
125292
|
status: number;
|
125293
125293
|
createdAt: Date;
|
125294
125294
|
updatedAt: Date;
|
@@ -125640,7 +125640,7 @@ export declare const platformContract: {
|
|
125640
125640
|
message: string;
|
125641
125641
|
id: string;
|
125642
125642
|
url: string;
|
125643
|
-
direction:
|
125643
|
+
direction: "incoming" | "outgoing" | "system";
|
125644
125644
|
createdAt: Date;
|
125645
125645
|
updatedAt: Date;
|
125646
125646
|
deletedAt: Date | null;
|
@@ -125851,7 +125851,7 @@ export declare const platformContract: {
|
|
125851
125851
|
message: string;
|
125852
125852
|
id: string;
|
125853
125853
|
url: string;
|
125854
|
-
direction:
|
125854
|
+
direction: "incoming" | "outgoing" | "system";
|
125855
125855
|
createdAt: Date;
|
125856
125856
|
updatedAt: Date;
|
125857
125857
|
deletedAt: Date | null;
|
@@ -126054,7 +126054,7 @@ export declare const platformContract: {
|
|
126054
126054
|
integrationId: string;
|
126055
126055
|
} | null;
|
126056
126056
|
};
|
126057
|
-
direction:
|
126057
|
+
direction: "incoming" | "outgoing" | "system";
|
126058
126058
|
status: number;
|
126059
126059
|
createdAt: Date;
|
126060
126060
|
updatedAt: Date;
|
@@ -126406,7 +126406,7 @@ export declare const platformContract: {
|
|
126406
126406
|
message: string;
|
126407
126407
|
id: string;
|
126408
126408
|
url: string;
|
126409
|
-
direction:
|
126409
|
+
direction: "incoming" | "outgoing" | "system";
|
126410
126410
|
createdAt: Date;
|
126411
126411
|
updatedAt: Date;
|
126412
126412
|
deletedAt: Date | null;
|
@@ -126620,7 +126620,7 @@ export declare const platformContract: {
|
|
126620
126620
|
message: string;
|
126621
126621
|
id: string;
|
126622
126622
|
url: string;
|
126623
|
-
direction:
|
126623
|
+
direction: "incoming" | "outgoing" | "system";
|
126624
126624
|
createdAt: Date;
|
126625
126625
|
updatedAt: Date;
|
126626
126626
|
deletedAt: Date | null;
|
@@ -126823,7 +126823,7 @@ export declare const platformContract: {
|
|
126823
126823
|
integrationId: string;
|
126824
126824
|
} | null;
|
126825
126825
|
};
|
126826
|
-
direction:
|
126826
|
+
direction: "incoming" | "outgoing" | "system";
|
126827
126827
|
status: number;
|
126828
126828
|
createdAt: Date;
|
126829
126829
|
updatedAt: Date;
|
@@ -127175,7 +127175,7 @@ export declare const platformContract: {
|
|
127175
127175
|
message: string;
|
127176
127176
|
id: string;
|
127177
127177
|
url: string;
|
127178
|
-
direction:
|
127178
|
+
direction: "incoming" | "outgoing" | "system";
|
127179
127179
|
createdAt: Date;
|
127180
127180
|
updatedAt: Date;
|
127181
127181
|
deletedAt: Date | null;
|
@@ -127386,7 +127386,7 @@ export declare const platformContract: {
|
|
127386
127386
|
message: string;
|
127387
127387
|
id: string;
|
127388
127388
|
url: string;
|
127389
|
-
direction:
|
127389
|
+
direction: "incoming" | "outgoing" | "system";
|
127390
127390
|
createdAt: Date;
|
127391
127391
|
updatedAt: Date;
|
127392
127392
|
deletedAt: Date | null;
|
@@ -127589,7 +127589,7 @@ export declare const platformContract: {
|
|
127589
127589
|
integrationId: string;
|
127590
127590
|
} | null;
|
127591
127591
|
};
|
127592
|
-
direction:
|
127592
|
+
direction: "incoming" | "outgoing" | "system";
|
127593
127593
|
status: number;
|
127594
127594
|
createdAt: Date;
|
127595
127595
|
updatedAt: Date;
|
@@ -127941,7 +127941,7 @@ export declare const platformContract: {
|
|
127941
127941
|
message: string;
|
127942
127942
|
id: string;
|
127943
127943
|
url: string;
|
127944
|
-
direction:
|
127944
|
+
direction: "incoming" | "outgoing" | "system";
|
127945
127945
|
createdAt: Date;
|
127946
127946
|
updatedAt: Date;
|
127947
127947
|
deletedAt: Date | null;
|
@@ -128156,7 +128156,7 @@ export declare const platformContract: {
|
|
128156
128156
|
message: string;
|
128157
128157
|
id: string;
|
128158
128158
|
url: string;
|
128159
|
-
direction:
|
128159
|
+
direction: "incoming" | "outgoing" | "system";
|
128160
128160
|
createdAt: Date;
|
128161
128161
|
updatedAt: Date;
|
128162
128162
|
deletedAt: Date | null;
|
@@ -128359,7 +128359,7 @@ export declare const platformContract: {
|
|
128359
128359
|
integrationId: string;
|
128360
128360
|
} | null;
|
128361
128361
|
};
|
128362
|
-
direction:
|
128362
|
+
direction: "incoming" | "outgoing" | "system";
|
128363
128363
|
status: number;
|
128364
128364
|
createdAt: Date;
|
128365
128365
|
updatedAt: Date;
|
@@ -128711,7 +128711,7 @@ export declare const platformContract: {
|
|
128711
128711
|
message: string;
|
128712
128712
|
id: string;
|
128713
128713
|
url: string;
|
128714
|
-
direction:
|
128714
|
+
direction: "incoming" | "outgoing" | "system";
|
128715
128715
|
createdAt: Date;
|
128716
128716
|
updatedAt: Date;
|
128717
128717
|
deletedAt: Date | null;
|
@@ -128922,7 +128922,7 @@ export declare const platformContract: {
|
|
128922
128922
|
message: string;
|
128923
128923
|
id: string;
|
128924
128924
|
url: string;
|
128925
|
-
direction:
|
128925
|
+
direction: "incoming" | "outgoing" | "system";
|
128926
128926
|
createdAt: Date;
|
128927
128927
|
updatedAt: Date;
|
128928
128928
|
deletedAt: Date | null;
|
@@ -129125,7 +129125,7 @@ export declare const platformContract: {
|
|
129125
129125
|
integrationId: string;
|
129126
129126
|
} | null;
|
129127
129127
|
};
|
129128
|
-
direction:
|
129128
|
+
direction: "incoming" | "outgoing" | "system";
|
129129
129129
|
status: number;
|
129130
129130
|
createdAt: Date;
|
129131
129131
|
updatedAt: Date;
|
@@ -129477,7 +129477,7 @@ export declare const platformContract: {
|
|
129477
129477
|
message: string;
|
129478
129478
|
id: string;
|
129479
129479
|
url: string;
|
129480
|
-
direction:
|
129480
|
+
direction: "incoming" | "outgoing" | "system";
|
129481
129481
|
createdAt: Date;
|
129482
129482
|
updatedAt: Date;
|
129483
129483
|
deletedAt: Date | null;
|
@@ -132102,7 +132102,7 @@ export declare const platformTelegramContract: {
|
|
132102
132102
|
lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
|
132103
132103
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
132104
132104
|
isLatest: import("zod").ZodBoolean;
|
132105
|
-
direction: import("zod").
|
132105
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
132106
132106
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
132107
132107
|
createdAt: import("zod").ZodString;
|
132108
132108
|
updatedAt: import("zod").ZodString;
|
@@ -132524,7 +132524,7 @@ export declare const platformTelegramContract: {
|
|
132524
132524
|
connectedUserName?: string | null | undefined;
|
132525
132525
|
connectedUserId?: string | null | undefined;
|
132526
132526
|
};
|
132527
|
-
direction:
|
132527
|
+
direction: "incoming" | "outgoing" | "system";
|
132528
132528
|
createdAt: string;
|
132529
132529
|
updatedAt: string;
|
132530
132530
|
actor: {
|
@@ -132616,7 +132616,7 @@ export declare const platformTelegramContract: {
|
|
132616
132616
|
connectedUserName?: string | null | undefined;
|
132617
132617
|
connectedUserId?: string | null | undefined;
|
132618
132618
|
};
|
132619
|
-
direction:
|
132619
|
+
direction: "incoming" | "outgoing" | "system";
|
132620
132620
|
createdAt: string;
|
132621
132621
|
updatedAt: string;
|
132622
132622
|
actor: {
|
@@ -132661,8 +132661,8 @@ export declare const platformTelegramContract: {
|
|
132661
132661
|
message: import("zod").ZodObject<{
|
132662
132662
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
132663
132663
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
132664
|
-
direction: import("zod").
|
132665
|
-
type: import("zod").
|
132664
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
132665
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
132666
132666
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
132667
132667
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
132668
132668
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -132719,7 +132719,7 @@ export declare const platformTelegramContract: {
|
|
132719
132719
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
132720
132720
|
}, "strip", import("zod").ZodTypeAny, {
|
132721
132721
|
type: string;
|
132722
|
-
direction:
|
132722
|
+
direction: "incoming" | "outgoing" | "system";
|
132723
132723
|
message?: string | undefined;
|
132724
132724
|
id?: string | undefined;
|
132725
132725
|
url?: string | undefined;
|
@@ -132754,7 +132754,7 @@ export declare const platformTelegramContract: {
|
|
132754
132754
|
editedAt?: string | Date | null | undefined;
|
132755
132755
|
}, {
|
132756
132756
|
type: string;
|
132757
|
-
direction:
|
132757
|
+
direction: "incoming" | "outgoing" | "system";
|
132758
132758
|
message?: string | undefined;
|
132759
132759
|
id?: string | undefined;
|
132760
132760
|
url?: string | undefined;
|
@@ -132791,7 +132791,7 @@ export declare const platformTelegramContract: {
|
|
132791
132791
|
}, "strip", import("zod").ZodTypeAny, {
|
132792
132792
|
message: {
|
132793
132793
|
type: string;
|
132794
|
-
direction:
|
132794
|
+
direction: "incoming" | "outgoing" | "system";
|
132795
132795
|
message?: string | undefined;
|
132796
132796
|
id?: string | undefined;
|
132797
132797
|
url?: string | undefined;
|
@@ -132876,7 +132876,7 @@ export declare const platformTelegramContract: {
|
|
132876
132876
|
connectedUserName?: string | null | undefined;
|
132877
132877
|
connectedUserId?: string | null | undefined;
|
132878
132878
|
};
|
132879
|
-
direction:
|
132879
|
+
direction: "incoming" | "outgoing" | "system";
|
132880
132880
|
createdAt: string;
|
132881
132881
|
updatedAt: string;
|
132882
132882
|
actor: {
|
@@ -132922,7 +132922,7 @@ export declare const platformTelegramContract: {
|
|
132922
132922
|
}, {
|
132923
132923
|
message: {
|
132924
132924
|
type: string;
|
132925
|
-
direction:
|
132925
|
+
direction: "incoming" | "outgoing" | "system";
|
132926
132926
|
message?: string | undefined;
|
132927
132927
|
id?: string | undefined;
|
132928
132928
|
url?: string | undefined;
|
@@ -133007,7 +133007,7 @@ export declare const platformTelegramContract: {
|
|
133007
133007
|
connectedUserName?: string | null | undefined;
|
133008
133008
|
connectedUserId?: string | null | undefined;
|
133009
133009
|
};
|
133010
|
-
direction:
|
133010
|
+
direction: "incoming" | "outgoing" | "system";
|
133011
133011
|
createdAt: string;
|
133012
133012
|
updatedAt: string;
|
133013
133013
|
actor: {
|
@@ -133064,8 +133064,8 @@ export declare const platformTelegramContract: {
|
|
133064
133064
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
133065
133065
|
}, {
|
133066
133066
|
message: import("zod").ZodString;
|
133067
|
-
direction: import("zod").
|
133068
|
-
type: import("zod").
|
133067
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
133068
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
133069
133069
|
readAt: import("zod").ZodDate;
|
133070
133070
|
metadata: import("zod").ZodAny;
|
133071
133071
|
platformId: import("zod").ZodString;
|
@@ -133092,7 +133092,7 @@ export declare const platformTelegramContract: {
|
|
133092
133092
|
firstResponseTime: import("zod").ZodNumber;
|
133093
133093
|
isLatest: import("zod").ZodBoolean;
|
133094
133094
|
isBotRoom: import("zod").ZodBoolean;
|
133095
|
-
direction: import("zod").
|
133095
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
133096
133096
|
platformContact: import("zod").ZodObject<{
|
133097
133097
|
id: import("zod").ZodString;
|
133098
133098
|
createdAt: import("zod").ZodDate;
|
@@ -135777,7 +135777,7 @@ export declare const platformTelegramContract: {
|
|
135777
135777
|
integrationId: string;
|
135778
135778
|
} | null;
|
135779
135779
|
};
|
135780
|
-
direction:
|
135780
|
+
direction: "incoming" | "outgoing" | "system";
|
135781
135781
|
status: number;
|
135782
135782
|
createdAt: Date;
|
135783
135783
|
updatedAt: Date;
|
@@ -136206,7 +136206,7 @@ export declare const platformTelegramContract: {
|
|
136206
136206
|
integrationId: string;
|
136207
136207
|
} | null;
|
136208
136208
|
};
|
136209
|
-
direction:
|
136209
|
+
direction: "incoming" | "outgoing" | "system";
|
136210
136210
|
status: number;
|
136211
136211
|
createdAt: Date;
|
136212
136212
|
updatedAt: Date;
|
@@ -136580,8 +136580,8 @@ export declare const platformTelegramContract: {
|
|
136580
136580
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
136581
136581
|
}, {
|
136582
136582
|
message: import("zod").ZodString;
|
136583
|
-
direction: import("zod").
|
136584
|
-
type: import("zod").
|
136583
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
136584
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
136585
136585
|
readAt: import("zod").ZodDate;
|
136586
136586
|
metadata: import("zod").ZodAny;
|
136587
136587
|
platformId: import("zod").ZodString;
|
@@ -137247,7 +137247,7 @@ export declare const platformTelegramContract: {
|
|
137247
137247
|
message: string;
|
137248
137248
|
id: string;
|
137249
137249
|
url: string;
|
137250
|
-
direction:
|
137250
|
+
direction: "incoming" | "outgoing" | "system";
|
137251
137251
|
createdAt: Date;
|
137252
137252
|
updatedAt: Date;
|
137253
137253
|
deletedAt: Date | null;
|
@@ -137409,7 +137409,7 @@ export declare const platformTelegramContract: {
|
|
137409
137409
|
message: string;
|
137410
137410
|
id: string;
|
137411
137411
|
url: string;
|
137412
|
-
direction:
|
137412
|
+
direction: "incoming" | "outgoing" | "system";
|
137413
137413
|
createdAt: Date;
|
137414
137414
|
updatedAt: Date;
|
137415
137415
|
deletedAt: Date | null;
|
@@ -138215,8 +138215,8 @@ export declare const platformTelegramContract: {
|
|
138215
138215
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
138216
138216
|
}, {
|
138217
138217
|
message: import("zod").ZodString;
|
138218
|
-
direction: import("zod").
|
138219
|
-
type: import("zod").
|
138218
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
138219
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
138220
138220
|
readAt: import("zod").ZodDate;
|
138221
138221
|
metadata: import("zod").ZodAny;
|
138222
138222
|
platformId: import("zod").ZodString;
|
@@ -138243,7 +138243,7 @@ export declare const platformTelegramContract: {
|
|
138243
138243
|
firstResponseTime: import("zod").ZodNumber;
|
138244
138244
|
isLatest: import("zod").ZodBoolean;
|
138245
138245
|
isBotRoom: import("zod").ZodBoolean;
|
138246
|
-
direction: import("zod").
|
138246
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
138247
138247
|
platformContact: import("zod").ZodObject<{
|
138248
138248
|
id: import("zod").ZodString;
|
138249
138249
|
createdAt: import("zod").ZodDate;
|
@@ -140928,7 +140928,7 @@ export declare const platformTelegramContract: {
|
|
140928
140928
|
integrationId: string;
|
140929
140929
|
} | null;
|
140930
140930
|
};
|
140931
|
-
direction:
|
140931
|
+
direction: "incoming" | "outgoing" | "system";
|
140932
140932
|
status: number;
|
140933
140933
|
createdAt: Date;
|
140934
140934
|
updatedAt: Date;
|
@@ -141357,7 +141357,7 @@ export declare const platformTelegramContract: {
|
|
141357
141357
|
integrationId: string;
|
141358
141358
|
} | null;
|
141359
141359
|
};
|
141360
|
-
direction:
|
141360
|
+
direction: "incoming" | "outgoing" | "system";
|
141361
141361
|
status: number;
|
141362
141362
|
createdAt: Date;
|
141363
141363
|
updatedAt: Date;
|
@@ -141731,8 +141731,8 @@ export declare const platformTelegramContract: {
|
|
141731
141731
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
141732
141732
|
}, {
|
141733
141733
|
message: import("zod").ZodString;
|
141734
|
-
direction: import("zod").
|
141735
|
-
type: import("zod").
|
141734
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
141735
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
141736
141736
|
readAt: import("zod").ZodDate;
|
141737
141737
|
metadata: import("zod").ZodAny;
|
141738
141738
|
platformId: import("zod").ZodString;
|
@@ -142398,7 +142398,7 @@ export declare const platformTelegramContract: {
|
|
142398
142398
|
message: string;
|
142399
142399
|
id: string;
|
142400
142400
|
url: string;
|
142401
|
-
direction:
|
142401
|
+
direction: "incoming" | "outgoing" | "system";
|
142402
142402
|
createdAt: Date;
|
142403
142403
|
updatedAt: Date;
|
142404
142404
|
deletedAt: Date | null;
|
@@ -142560,7 +142560,7 @@ export declare const platformTelegramContract: {
|
|
142560
142560
|
message: string;
|
142561
142561
|
id: string;
|
142562
142562
|
url: string;
|
142563
|
-
direction:
|
142563
|
+
direction: "incoming" | "outgoing" | "system";
|
142564
142564
|
createdAt: Date;
|
142565
142565
|
updatedAt: Date;
|
142566
142566
|
deletedAt: Date | null;
|
@@ -143363,7 +143363,7 @@ export declare const platformTelegramContract: {
|
|
143363
143363
|
message: string;
|
143364
143364
|
id: string;
|
143365
143365
|
url: string;
|
143366
|
-
direction:
|
143366
|
+
direction: "incoming" | "outgoing" | "system";
|
143367
143367
|
createdAt: Date;
|
143368
143368
|
updatedAt: Date;
|
143369
143369
|
deletedAt: Date | null;
|
@@ -143566,7 +143566,7 @@ export declare const platformTelegramContract: {
|
|
143566
143566
|
integrationId: string;
|
143567
143567
|
} | null;
|
143568
143568
|
};
|
143569
|
-
direction:
|
143569
|
+
direction: "incoming" | "outgoing" | "system";
|
143570
143570
|
status: number;
|
143571
143571
|
createdAt: Date;
|
143572
143572
|
updatedAt: Date;
|
@@ -143918,7 +143918,7 @@ export declare const platformTelegramContract: {
|
|
143918
143918
|
message: string;
|
143919
143919
|
id: string;
|
143920
143920
|
url: string;
|
143921
|
-
direction:
|
143921
|
+
direction: "incoming" | "outgoing" | "system";
|
143922
143922
|
createdAt: Date;
|
143923
143923
|
updatedAt: Date;
|
143924
143924
|
deletedAt: Date | null;
|
@@ -144129,7 +144129,7 @@ export declare const platformTelegramContract: {
|
|
144129
144129
|
message: string;
|
144130
144130
|
id: string;
|
144131
144131
|
url: string;
|
144132
|
-
direction:
|
144132
|
+
direction: "incoming" | "outgoing" | "system";
|
144133
144133
|
createdAt: Date;
|
144134
144134
|
updatedAt: Date;
|
144135
144135
|
deletedAt: Date | null;
|
@@ -144332,7 +144332,7 @@ export declare const platformTelegramContract: {
|
|
144332
144332
|
integrationId: string;
|
144333
144333
|
} | null;
|
144334
144334
|
};
|
144335
|
-
direction:
|
144335
|
+
direction: "incoming" | "outgoing" | "system";
|
144336
144336
|
status: number;
|
144337
144337
|
createdAt: Date;
|
144338
144338
|
updatedAt: Date;
|
@@ -144684,7 +144684,7 @@ export declare const platformTelegramContract: {
|
|
144684
144684
|
message: string;
|
144685
144685
|
id: string;
|
144686
144686
|
url: string;
|
144687
|
-
direction:
|
144687
|
+
direction: "incoming" | "outgoing" | "system";
|
144688
144688
|
createdAt: Date;
|
144689
144689
|
updatedAt: Date;
|
144690
144690
|
deletedAt: Date | null;
|
@@ -144896,7 +144896,7 @@ export declare const platformTelegramContract: {
|
|
144896
144896
|
message: string;
|
144897
144897
|
id: string;
|
144898
144898
|
url: string;
|
144899
|
-
direction:
|
144899
|
+
direction: "incoming" | "outgoing" | "system";
|
144900
144900
|
createdAt: Date;
|
144901
144901
|
updatedAt: Date;
|
144902
144902
|
deletedAt: Date | null;
|
@@ -145099,7 +145099,7 @@ export declare const platformTelegramContract: {
|
|
145099
145099
|
integrationId: string;
|
145100
145100
|
} | null;
|
145101
145101
|
};
|
145102
|
-
direction:
|
145102
|
+
direction: "incoming" | "outgoing" | "system";
|
145103
145103
|
status: number;
|
145104
145104
|
createdAt: Date;
|
145105
145105
|
updatedAt: Date;
|
@@ -145451,7 +145451,7 @@ export declare const platformTelegramContract: {
|
|
145451
145451
|
message: string;
|
145452
145452
|
id: string;
|
145453
145453
|
url: string;
|
145454
|
-
direction:
|
145454
|
+
direction: "incoming" | "outgoing" | "system";
|
145455
145455
|
createdAt: Date;
|
145456
145456
|
updatedAt: Date;
|
145457
145457
|
deletedAt: Date | null;
|
@@ -145662,7 +145662,7 @@ export declare const platformTelegramContract: {
|
|
145662
145662
|
message: string;
|
145663
145663
|
id: string;
|
145664
145664
|
url: string;
|
145665
|
-
direction:
|
145665
|
+
direction: "incoming" | "outgoing" | "system";
|
145666
145666
|
createdAt: Date;
|
145667
145667
|
updatedAt: Date;
|
145668
145668
|
deletedAt: Date | null;
|
@@ -145865,7 +145865,7 @@ export declare const platformTelegramContract: {
|
|
145865
145865
|
integrationId: string;
|
145866
145866
|
} | null;
|
145867
145867
|
};
|
145868
|
-
direction:
|
145868
|
+
direction: "incoming" | "outgoing" | "system";
|
145869
145869
|
status: number;
|
145870
145870
|
createdAt: Date;
|
145871
145871
|
updatedAt: Date;
|
@@ -146217,7 +146217,7 @@ export declare const platformTelegramContract: {
|
|
146217
146217
|
message: string;
|
146218
146218
|
id: string;
|
146219
146219
|
url: string;
|
146220
|
-
direction:
|
146220
|
+
direction: "incoming" | "outgoing" | "system";
|
146221
146221
|
createdAt: Date;
|
146222
146222
|
updatedAt: Date;
|
146223
146223
|
deletedAt: Date | null;
|
@@ -146429,7 +146429,7 @@ export declare const platformTelegramContract: {
|
|
146429
146429
|
message: string;
|
146430
146430
|
id: string;
|
146431
146431
|
url: string;
|
146432
|
-
direction:
|
146432
|
+
direction: "incoming" | "outgoing" | "system";
|
146433
146433
|
createdAt: Date;
|
146434
146434
|
updatedAt: Date;
|
146435
146435
|
deletedAt: Date | null;
|
@@ -146632,7 +146632,7 @@ export declare const platformTelegramContract: {
|
|
146632
146632
|
integrationId: string;
|
146633
146633
|
} | null;
|
146634
146634
|
};
|
146635
|
-
direction:
|
146635
|
+
direction: "incoming" | "outgoing" | "system";
|
146636
146636
|
status: number;
|
146637
146637
|
createdAt: Date;
|
146638
146638
|
updatedAt: Date;
|
@@ -146984,7 +146984,7 @@ export declare const platformTelegramContract: {
|
|
146984
146984
|
message: string;
|
146985
146985
|
id: string;
|
146986
146986
|
url: string;
|
146987
|
-
direction:
|
146987
|
+
direction: "incoming" | "outgoing" | "system";
|
146988
146988
|
createdAt: Date;
|
146989
146989
|
updatedAt: Date;
|
146990
146990
|
deletedAt: Date | null;
|
@@ -147195,7 +147195,7 @@ export declare const platformTelegramContract: {
|
|
147195
147195
|
message: string;
|
147196
147196
|
id: string;
|
147197
147197
|
url: string;
|
147198
|
-
direction:
|
147198
|
+
direction: "incoming" | "outgoing" | "system";
|
147199
147199
|
createdAt: Date;
|
147200
147200
|
updatedAt: Date;
|
147201
147201
|
deletedAt: Date | null;
|
@@ -147398,7 +147398,7 @@ export declare const platformTelegramContract: {
|
|
147398
147398
|
integrationId: string;
|
147399
147399
|
} | null;
|
147400
147400
|
};
|
147401
|
-
direction:
|
147401
|
+
direction: "incoming" | "outgoing" | "system";
|
147402
147402
|
status: number;
|
147403
147403
|
createdAt: Date;
|
147404
147404
|
updatedAt: Date;
|
@@ -147750,7 +147750,7 @@ export declare const platformTelegramContract: {
|
|
147750
147750
|
message: string;
|
147751
147751
|
id: string;
|
147752
147752
|
url: string;
|
147753
|
-
direction:
|
147753
|
+
direction: "incoming" | "outgoing" | "system";
|
147754
147754
|
createdAt: Date;
|
147755
147755
|
updatedAt: Date;
|
147756
147756
|
deletedAt: Date | null;
|
@@ -147964,7 +147964,7 @@ export declare const platformTelegramContract: {
|
|
147964
147964
|
message: string;
|
147965
147965
|
id: string;
|
147966
147966
|
url: string;
|
147967
|
-
direction:
|
147967
|
+
direction: "incoming" | "outgoing" | "system";
|
147968
147968
|
createdAt: Date;
|
147969
147969
|
updatedAt: Date;
|
147970
147970
|
deletedAt: Date | null;
|
@@ -148167,7 +148167,7 @@ export declare const platformTelegramContract: {
|
|
148167
148167
|
integrationId: string;
|
148168
148168
|
} | null;
|
148169
148169
|
};
|
148170
|
-
direction:
|
148170
|
+
direction: "incoming" | "outgoing" | "system";
|
148171
148171
|
status: number;
|
148172
148172
|
createdAt: Date;
|
148173
148173
|
updatedAt: Date;
|
@@ -148519,7 +148519,7 @@ export declare const platformTelegramContract: {
|
|
148519
148519
|
message: string;
|
148520
148520
|
id: string;
|
148521
148521
|
url: string;
|
148522
|
-
direction:
|
148522
|
+
direction: "incoming" | "outgoing" | "system";
|
148523
148523
|
createdAt: Date;
|
148524
148524
|
updatedAt: Date;
|
148525
148525
|
deletedAt: Date | null;
|
@@ -148730,7 +148730,7 @@ export declare const platformTelegramContract: {
|
|
148730
148730
|
message: string;
|
148731
148731
|
id: string;
|
148732
148732
|
url: string;
|
148733
|
-
direction:
|
148733
|
+
direction: "incoming" | "outgoing" | "system";
|
148734
148734
|
createdAt: Date;
|
148735
148735
|
updatedAt: Date;
|
148736
148736
|
deletedAt: Date | null;
|
@@ -148933,7 +148933,7 @@ export declare const platformTelegramContract: {
|
|
148933
148933
|
integrationId: string;
|
148934
148934
|
} | null;
|
148935
148935
|
};
|
148936
|
-
direction:
|
148936
|
+
direction: "incoming" | "outgoing" | "system";
|
148937
148937
|
status: number;
|
148938
148938
|
createdAt: Date;
|
148939
148939
|
updatedAt: Date;
|
@@ -149285,7 +149285,7 @@ export declare const platformTelegramContract: {
|
|
149285
149285
|
message: string;
|
149286
149286
|
id: string;
|
149287
149287
|
url: string;
|
149288
|
-
direction:
|
149288
|
+
direction: "incoming" | "outgoing" | "system";
|
149289
149289
|
createdAt: Date;
|
149290
149290
|
updatedAt: Date;
|
149291
149291
|
deletedAt: Date | null;
|
@@ -149500,7 +149500,7 @@ export declare const platformTelegramContract: {
|
|
149500
149500
|
message: string;
|
149501
149501
|
id: string;
|
149502
149502
|
url: string;
|
149503
|
-
direction:
|
149503
|
+
direction: "incoming" | "outgoing" | "system";
|
149504
149504
|
createdAt: Date;
|
149505
149505
|
updatedAt: Date;
|
149506
149506
|
deletedAt: Date | null;
|
@@ -149703,7 +149703,7 @@ export declare const platformTelegramContract: {
|
|
149703
149703
|
integrationId: string;
|
149704
149704
|
} | null;
|
149705
149705
|
};
|
149706
|
-
direction:
|
149706
|
+
direction: "incoming" | "outgoing" | "system";
|
149707
149707
|
status: number;
|
149708
149708
|
createdAt: Date;
|
149709
149709
|
updatedAt: Date;
|
@@ -150055,7 +150055,7 @@ export declare const platformTelegramContract: {
|
|
150055
150055
|
message: string;
|
150056
150056
|
id: string;
|
150057
150057
|
url: string;
|
150058
|
-
direction:
|
150058
|
+
direction: "incoming" | "outgoing" | "system";
|
150059
150059
|
createdAt: Date;
|
150060
150060
|
updatedAt: Date;
|
150061
150061
|
deletedAt: Date | null;
|
@@ -150266,7 +150266,7 @@ export declare const platformTelegramContract: {
|
|
150266
150266
|
message: string;
|
150267
150267
|
id: string;
|
150268
150268
|
url: string;
|
150269
|
-
direction:
|
150269
|
+
direction: "incoming" | "outgoing" | "system";
|
150270
150270
|
createdAt: Date;
|
150271
150271
|
updatedAt: Date;
|
150272
150272
|
deletedAt: Date | null;
|
@@ -150469,7 +150469,7 @@ export declare const platformTelegramContract: {
|
|
150469
150469
|
integrationId: string;
|
150470
150470
|
} | null;
|
150471
150471
|
};
|
150472
|
-
direction:
|
150472
|
+
direction: "incoming" | "outgoing" | "system";
|
150473
150473
|
status: number;
|
150474
150474
|
createdAt: Date;
|
150475
150475
|
updatedAt: Date;
|
@@ -150821,7 +150821,7 @@ export declare const platformTelegramContract: {
|
|
150821
150821
|
message: string;
|
150822
150822
|
id: string;
|
150823
150823
|
url: string;
|
150824
|
-
direction:
|
150824
|
+
direction: "incoming" | "outgoing" | "system";
|
150825
150825
|
createdAt: Date;
|
150826
150826
|
updatedAt: Date;
|
150827
150827
|
deletedAt: Date | null;
|
@@ -151839,7 +151839,7 @@ export declare const platformMessengerContract: {
|
|
151839
151839
|
lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
|
151840
151840
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
151841
151841
|
isLatest: import("zod").ZodBoolean;
|
151842
|
-
direction: import("zod").
|
151842
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
151843
151843
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
151844
151844
|
createdAt: import("zod").ZodString;
|
151845
151845
|
updatedAt: import("zod").ZodString;
|
@@ -152261,7 +152261,7 @@ export declare const platformMessengerContract: {
|
|
152261
152261
|
connectedUserName?: string | null | undefined;
|
152262
152262
|
connectedUserId?: string | null | undefined;
|
152263
152263
|
};
|
152264
|
-
direction:
|
152264
|
+
direction: "incoming" | "outgoing" | "system";
|
152265
152265
|
createdAt: string;
|
152266
152266
|
updatedAt: string;
|
152267
152267
|
actor: {
|
@@ -152353,7 +152353,7 @@ export declare const platformMessengerContract: {
|
|
152353
152353
|
connectedUserName?: string | null | undefined;
|
152354
152354
|
connectedUserId?: string | null | undefined;
|
152355
152355
|
};
|
152356
|
-
direction:
|
152356
|
+
direction: "incoming" | "outgoing" | "system";
|
152357
152357
|
createdAt: string;
|
152358
152358
|
updatedAt: string;
|
152359
152359
|
actor: {
|
@@ -152398,8 +152398,8 @@ export declare const platformMessengerContract: {
|
|
152398
152398
|
message: import("zod").ZodObject<{
|
152399
152399
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
152400
152400
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
152401
|
-
direction: import("zod").
|
152402
|
-
type: import("zod").
|
152401
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
152402
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
152403
152403
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
152404
152404
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
152405
152405
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -152456,7 +152456,7 @@ export declare const platformMessengerContract: {
|
|
152456
152456
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
152457
152457
|
}, "strip", import("zod").ZodTypeAny, {
|
152458
152458
|
type: string;
|
152459
|
-
direction:
|
152459
|
+
direction: "incoming" | "outgoing" | "system";
|
152460
152460
|
message?: string | undefined;
|
152461
152461
|
id?: string | undefined;
|
152462
152462
|
url?: string | undefined;
|
@@ -152491,7 +152491,7 @@ export declare const platformMessengerContract: {
|
|
152491
152491
|
editedAt?: string | Date | null | undefined;
|
152492
152492
|
}, {
|
152493
152493
|
type: string;
|
152494
|
-
direction:
|
152494
|
+
direction: "incoming" | "outgoing" | "system";
|
152495
152495
|
message?: string | undefined;
|
152496
152496
|
id?: string | undefined;
|
152497
152497
|
url?: string | undefined;
|
@@ -152528,7 +152528,7 @@ export declare const platformMessengerContract: {
|
|
152528
152528
|
}, "strip", import("zod").ZodTypeAny, {
|
152529
152529
|
message: {
|
152530
152530
|
type: string;
|
152531
|
-
direction:
|
152531
|
+
direction: "incoming" | "outgoing" | "system";
|
152532
152532
|
message?: string | undefined;
|
152533
152533
|
id?: string | undefined;
|
152534
152534
|
url?: string | undefined;
|
@@ -152613,7 +152613,7 @@ export declare const platformMessengerContract: {
|
|
152613
152613
|
connectedUserName?: string | null | undefined;
|
152614
152614
|
connectedUserId?: string | null | undefined;
|
152615
152615
|
};
|
152616
|
-
direction:
|
152616
|
+
direction: "incoming" | "outgoing" | "system";
|
152617
152617
|
createdAt: string;
|
152618
152618
|
updatedAt: string;
|
152619
152619
|
actor: {
|
@@ -152659,7 +152659,7 @@ export declare const platformMessengerContract: {
|
|
152659
152659
|
}, {
|
152660
152660
|
message: {
|
152661
152661
|
type: string;
|
152662
|
-
direction:
|
152662
|
+
direction: "incoming" | "outgoing" | "system";
|
152663
152663
|
message?: string | undefined;
|
152664
152664
|
id?: string | undefined;
|
152665
152665
|
url?: string | undefined;
|
@@ -152744,7 +152744,7 @@ export declare const platformMessengerContract: {
|
|
152744
152744
|
connectedUserName?: string | null | undefined;
|
152745
152745
|
connectedUserId?: string | null | undefined;
|
152746
152746
|
};
|
152747
|
-
direction:
|
152747
|
+
direction: "incoming" | "outgoing" | "system";
|
152748
152748
|
createdAt: string;
|
152749
152749
|
updatedAt: string;
|
152750
152750
|
actor: {
|
@@ -152801,8 +152801,8 @@ export declare const platformMessengerContract: {
|
|
152801
152801
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
152802
152802
|
}, {
|
152803
152803
|
message: import("zod").ZodString;
|
152804
|
-
direction: import("zod").
|
152805
|
-
type: import("zod").
|
152804
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
152805
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
152806
152806
|
readAt: import("zod").ZodDate;
|
152807
152807
|
metadata: import("zod").ZodAny;
|
152808
152808
|
platformId: import("zod").ZodString;
|
@@ -152829,7 +152829,7 @@ export declare const platformMessengerContract: {
|
|
152829
152829
|
firstResponseTime: import("zod").ZodNumber;
|
152830
152830
|
isLatest: import("zod").ZodBoolean;
|
152831
152831
|
isBotRoom: import("zod").ZodBoolean;
|
152832
|
-
direction: import("zod").
|
152832
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
152833
152833
|
platformContact: import("zod").ZodObject<{
|
152834
152834
|
id: import("zod").ZodString;
|
152835
152835
|
createdAt: import("zod").ZodDate;
|
@@ -155514,7 +155514,7 @@ export declare const platformMessengerContract: {
|
|
155514
155514
|
integrationId: string;
|
155515
155515
|
} | null;
|
155516
155516
|
};
|
155517
|
-
direction:
|
155517
|
+
direction: "incoming" | "outgoing" | "system";
|
155518
155518
|
status: number;
|
155519
155519
|
createdAt: Date;
|
155520
155520
|
updatedAt: Date;
|
@@ -155943,7 +155943,7 @@ export declare const platformMessengerContract: {
|
|
155943
155943
|
integrationId: string;
|
155944
155944
|
} | null;
|
155945
155945
|
};
|
155946
|
-
direction:
|
155946
|
+
direction: "incoming" | "outgoing" | "system";
|
155947
155947
|
status: number;
|
155948
155948
|
createdAt: Date;
|
155949
155949
|
updatedAt: Date;
|
@@ -156317,8 +156317,8 @@ export declare const platformMessengerContract: {
|
|
156317
156317
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
156318
156318
|
}, {
|
156319
156319
|
message: import("zod").ZodString;
|
156320
|
-
direction: import("zod").
|
156321
|
-
type: import("zod").
|
156320
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
156321
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
156322
156322
|
readAt: import("zod").ZodDate;
|
156323
156323
|
metadata: import("zod").ZodAny;
|
156324
156324
|
platformId: import("zod").ZodString;
|
@@ -156984,7 +156984,7 @@ export declare const platformMessengerContract: {
|
|
156984
156984
|
message: string;
|
156985
156985
|
id: string;
|
156986
156986
|
url: string;
|
156987
|
-
direction:
|
156987
|
+
direction: "incoming" | "outgoing" | "system";
|
156988
156988
|
createdAt: Date;
|
156989
156989
|
updatedAt: Date;
|
156990
156990
|
deletedAt: Date | null;
|
@@ -157146,7 +157146,7 @@ export declare const platformMessengerContract: {
|
|
157146
157146
|
message: string;
|
157147
157147
|
id: string;
|
157148
157148
|
url: string;
|
157149
|
-
direction:
|
157149
|
+
direction: "incoming" | "outgoing" | "system";
|
157150
157150
|
createdAt: Date;
|
157151
157151
|
updatedAt: Date;
|
157152
157152
|
deletedAt: Date | null;
|
@@ -157952,8 +157952,8 @@ export declare const platformMessengerContract: {
|
|
157952
157952
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
157953
157953
|
}, {
|
157954
157954
|
message: import("zod").ZodString;
|
157955
|
-
direction: import("zod").
|
157956
|
-
type: import("zod").
|
157955
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
157956
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
157957
157957
|
readAt: import("zod").ZodDate;
|
157958
157958
|
metadata: import("zod").ZodAny;
|
157959
157959
|
platformId: import("zod").ZodString;
|
@@ -157980,7 +157980,7 @@ export declare const platformMessengerContract: {
|
|
157980
157980
|
firstResponseTime: import("zod").ZodNumber;
|
157981
157981
|
isLatest: import("zod").ZodBoolean;
|
157982
157982
|
isBotRoom: import("zod").ZodBoolean;
|
157983
|
-
direction: import("zod").
|
157983
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
157984
157984
|
platformContact: import("zod").ZodObject<{
|
157985
157985
|
id: import("zod").ZodString;
|
157986
157986
|
createdAt: import("zod").ZodDate;
|
@@ -160665,7 +160665,7 @@ export declare const platformMessengerContract: {
|
|
160665
160665
|
integrationId: string;
|
160666
160666
|
} | null;
|
160667
160667
|
};
|
160668
|
-
direction:
|
160668
|
+
direction: "incoming" | "outgoing" | "system";
|
160669
160669
|
status: number;
|
160670
160670
|
createdAt: Date;
|
160671
160671
|
updatedAt: Date;
|
@@ -161094,7 +161094,7 @@ export declare const platformMessengerContract: {
|
|
161094
161094
|
integrationId: string;
|
161095
161095
|
} | null;
|
161096
161096
|
};
|
161097
|
-
direction:
|
161097
|
+
direction: "incoming" | "outgoing" | "system";
|
161098
161098
|
status: number;
|
161099
161099
|
createdAt: Date;
|
161100
161100
|
updatedAt: Date;
|
@@ -161468,8 +161468,8 @@ export declare const platformMessengerContract: {
|
|
161468
161468
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
161469
161469
|
}, {
|
161470
161470
|
message: import("zod").ZodString;
|
161471
|
-
direction: import("zod").
|
161472
|
-
type: import("zod").
|
161471
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
161472
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
161473
161473
|
readAt: import("zod").ZodDate;
|
161474
161474
|
metadata: import("zod").ZodAny;
|
161475
161475
|
platformId: import("zod").ZodString;
|
@@ -162135,7 +162135,7 @@ export declare const platformMessengerContract: {
|
|
162135
162135
|
message: string;
|
162136
162136
|
id: string;
|
162137
162137
|
url: string;
|
162138
|
-
direction:
|
162138
|
+
direction: "incoming" | "outgoing" | "system";
|
162139
162139
|
createdAt: Date;
|
162140
162140
|
updatedAt: Date;
|
162141
162141
|
deletedAt: Date | null;
|
@@ -162297,7 +162297,7 @@ export declare const platformMessengerContract: {
|
|
162297
162297
|
message: string;
|
162298
162298
|
id: string;
|
162299
162299
|
url: string;
|
162300
|
-
direction:
|
162300
|
+
direction: "incoming" | "outgoing" | "system";
|
162301
162301
|
createdAt: Date;
|
162302
162302
|
updatedAt: Date;
|
162303
162303
|
deletedAt: Date | null;
|
@@ -163100,7 +163100,7 @@ export declare const platformMessengerContract: {
|
|
163100
163100
|
message: string;
|
163101
163101
|
id: string;
|
163102
163102
|
url: string;
|
163103
|
-
direction:
|
163103
|
+
direction: "incoming" | "outgoing" | "system";
|
163104
163104
|
createdAt: Date;
|
163105
163105
|
updatedAt: Date;
|
163106
163106
|
deletedAt: Date | null;
|
@@ -163303,7 +163303,7 @@ export declare const platformMessengerContract: {
|
|
163303
163303
|
integrationId: string;
|
163304
163304
|
} | null;
|
163305
163305
|
};
|
163306
|
-
direction:
|
163306
|
+
direction: "incoming" | "outgoing" | "system";
|
163307
163307
|
status: number;
|
163308
163308
|
createdAt: Date;
|
163309
163309
|
updatedAt: Date;
|
@@ -163655,7 +163655,7 @@ export declare const platformMessengerContract: {
|
|
163655
163655
|
message: string;
|
163656
163656
|
id: string;
|
163657
163657
|
url: string;
|
163658
|
-
direction:
|
163658
|
+
direction: "incoming" | "outgoing" | "system";
|
163659
163659
|
createdAt: Date;
|
163660
163660
|
updatedAt: Date;
|
163661
163661
|
deletedAt: Date | null;
|
@@ -163866,7 +163866,7 @@ export declare const platformMessengerContract: {
|
|
163866
163866
|
message: string;
|
163867
163867
|
id: string;
|
163868
163868
|
url: string;
|
163869
|
-
direction:
|
163869
|
+
direction: "incoming" | "outgoing" | "system";
|
163870
163870
|
createdAt: Date;
|
163871
163871
|
updatedAt: Date;
|
163872
163872
|
deletedAt: Date | null;
|
@@ -164069,7 +164069,7 @@ export declare const platformMessengerContract: {
|
|
164069
164069
|
integrationId: string;
|
164070
164070
|
} | null;
|
164071
164071
|
};
|
164072
|
-
direction:
|
164072
|
+
direction: "incoming" | "outgoing" | "system";
|
164073
164073
|
status: number;
|
164074
164074
|
createdAt: Date;
|
164075
164075
|
updatedAt: Date;
|
@@ -164421,7 +164421,7 @@ export declare const platformMessengerContract: {
|
|
164421
164421
|
message: string;
|
164422
164422
|
id: string;
|
164423
164423
|
url: string;
|
164424
|
-
direction:
|
164424
|
+
direction: "incoming" | "outgoing" | "system";
|
164425
164425
|
createdAt: Date;
|
164426
164426
|
updatedAt: Date;
|
164427
164427
|
deletedAt: Date | null;
|
@@ -164633,7 +164633,7 @@ export declare const platformMessengerContract: {
|
|
164633
164633
|
message: string;
|
164634
164634
|
id: string;
|
164635
164635
|
url: string;
|
164636
|
-
direction:
|
164636
|
+
direction: "incoming" | "outgoing" | "system";
|
164637
164637
|
createdAt: Date;
|
164638
164638
|
updatedAt: Date;
|
164639
164639
|
deletedAt: Date | null;
|
@@ -164836,7 +164836,7 @@ export declare const platformMessengerContract: {
|
|
164836
164836
|
integrationId: string;
|
164837
164837
|
} | null;
|
164838
164838
|
};
|
164839
|
-
direction:
|
164839
|
+
direction: "incoming" | "outgoing" | "system";
|
164840
164840
|
status: number;
|
164841
164841
|
createdAt: Date;
|
164842
164842
|
updatedAt: Date;
|
@@ -165188,7 +165188,7 @@ export declare const platformMessengerContract: {
|
|
165188
165188
|
message: string;
|
165189
165189
|
id: string;
|
165190
165190
|
url: string;
|
165191
|
-
direction:
|
165191
|
+
direction: "incoming" | "outgoing" | "system";
|
165192
165192
|
createdAt: Date;
|
165193
165193
|
updatedAt: Date;
|
165194
165194
|
deletedAt: Date | null;
|
@@ -165399,7 +165399,7 @@ export declare const platformMessengerContract: {
|
|
165399
165399
|
message: string;
|
165400
165400
|
id: string;
|
165401
165401
|
url: string;
|
165402
|
-
direction:
|
165402
|
+
direction: "incoming" | "outgoing" | "system";
|
165403
165403
|
createdAt: Date;
|
165404
165404
|
updatedAt: Date;
|
165405
165405
|
deletedAt: Date | null;
|
@@ -165602,7 +165602,7 @@ export declare const platformMessengerContract: {
|
|
165602
165602
|
integrationId: string;
|
165603
165603
|
} | null;
|
165604
165604
|
};
|
165605
|
-
direction:
|
165605
|
+
direction: "incoming" | "outgoing" | "system";
|
165606
165606
|
status: number;
|
165607
165607
|
createdAt: Date;
|
165608
165608
|
updatedAt: Date;
|
@@ -165954,7 +165954,7 @@ export declare const platformMessengerContract: {
|
|
165954
165954
|
message: string;
|
165955
165955
|
id: string;
|
165956
165956
|
url: string;
|
165957
|
-
direction:
|
165957
|
+
direction: "incoming" | "outgoing" | "system";
|
165958
165958
|
createdAt: Date;
|
165959
165959
|
updatedAt: Date;
|
165960
165960
|
deletedAt: Date | null;
|
@@ -166166,7 +166166,7 @@ export declare const platformMessengerContract: {
|
|
166166
166166
|
message: string;
|
166167
166167
|
id: string;
|
166168
166168
|
url: string;
|
166169
|
-
direction:
|
166169
|
+
direction: "incoming" | "outgoing" | "system";
|
166170
166170
|
createdAt: Date;
|
166171
166171
|
updatedAt: Date;
|
166172
166172
|
deletedAt: Date | null;
|
@@ -166369,7 +166369,7 @@ export declare const platformMessengerContract: {
|
|
166369
166369
|
integrationId: string;
|
166370
166370
|
} | null;
|
166371
166371
|
};
|
166372
|
-
direction:
|
166372
|
+
direction: "incoming" | "outgoing" | "system";
|
166373
166373
|
status: number;
|
166374
166374
|
createdAt: Date;
|
166375
166375
|
updatedAt: Date;
|
@@ -166721,7 +166721,7 @@ export declare const platformMessengerContract: {
|
|
166721
166721
|
message: string;
|
166722
166722
|
id: string;
|
166723
166723
|
url: string;
|
166724
|
-
direction:
|
166724
|
+
direction: "incoming" | "outgoing" | "system";
|
166725
166725
|
createdAt: Date;
|
166726
166726
|
updatedAt: Date;
|
166727
166727
|
deletedAt: Date | null;
|
@@ -166932,7 +166932,7 @@ export declare const platformMessengerContract: {
|
|
166932
166932
|
message: string;
|
166933
166933
|
id: string;
|
166934
166934
|
url: string;
|
166935
|
-
direction:
|
166935
|
+
direction: "incoming" | "outgoing" | "system";
|
166936
166936
|
createdAt: Date;
|
166937
166937
|
updatedAt: Date;
|
166938
166938
|
deletedAt: Date | null;
|
@@ -167135,7 +167135,7 @@ export declare const platformMessengerContract: {
|
|
167135
167135
|
integrationId: string;
|
167136
167136
|
} | null;
|
167137
167137
|
};
|
167138
|
-
direction:
|
167138
|
+
direction: "incoming" | "outgoing" | "system";
|
167139
167139
|
status: number;
|
167140
167140
|
createdAt: Date;
|
167141
167141
|
updatedAt: Date;
|
@@ -167487,7 +167487,7 @@ export declare const platformMessengerContract: {
|
|
167487
167487
|
message: string;
|
167488
167488
|
id: string;
|
167489
167489
|
url: string;
|
167490
|
-
direction:
|
167490
|
+
direction: "incoming" | "outgoing" | "system";
|
167491
167491
|
createdAt: Date;
|
167492
167492
|
updatedAt: Date;
|
167493
167493
|
deletedAt: Date | null;
|
@@ -167701,7 +167701,7 @@ export declare const platformMessengerContract: {
|
|
167701
167701
|
message: string;
|
167702
167702
|
id: string;
|
167703
167703
|
url: string;
|
167704
|
-
direction:
|
167704
|
+
direction: "incoming" | "outgoing" | "system";
|
167705
167705
|
createdAt: Date;
|
167706
167706
|
updatedAt: Date;
|
167707
167707
|
deletedAt: Date | null;
|
@@ -167904,7 +167904,7 @@ export declare const platformMessengerContract: {
|
|
167904
167904
|
integrationId: string;
|
167905
167905
|
} | null;
|
167906
167906
|
};
|
167907
|
-
direction:
|
167907
|
+
direction: "incoming" | "outgoing" | "system";
|
167908
167908
|
status: number;
|
167909
167909
|
createdAt: Date;
|
167910
167910
|
updatedAt: Date;
|
@@ -168256,7 +168256,7 @@ export declare const platformMessengerContract: {
|
|
168256
168256
|
message: string;
|
168257
168257
|
id: string;
|
168258
168258
|
url: string;
|
168259
|
-
direction:
|
168259
|
+
direction: "incoming" | "outgoing" | "system";
|
168260
168260
|
createdAt: Date;
|
168261
168261
|
updatedAt: Date;
|
168262
168262
|
deletedAt: Date | null;
|
@@ -168467,7 +168467,7 @@ export declare const platformMessengerContract: {
|
|
168467
168467
|
message: string;
|
168468
168468
|
id: string;
|
168469
168469
|
url: string;
|
168470
|
-
direction:
|
168470
|
+
direction: "incoming" | "outgoing" | "system";
|
168471
168471
|
createdAt: Date;
|
168472
168472
|
updatedAt: Date;
|
168473
168473
|
deletedAt: Date | null;
|
@@ -168670,7 +168670,7 @@ export declare const platformMessengerContract: {
|
|
168670
168670
|
integrationId: string;
|
168671
168671
|
} | null;
|
168672
168672
|
};
|
168673
|
-
direction:
|
168673
|
+
direction: "incoming" | "outgoing" | "system";
|
168674
168674
|
status: number;
|
168675
168675
|
createdAt: Date;
|
168676
168676
|
updatedAt: Date;
|
@@ -169022,7 +169022,7 @@ export declare const platformMessengerContract: {
|
|
169022
169022
|
message: string;
|
169023
169023
|
id: string;
|
169024
169024
|
url: string;
|
169025
|
-
direction:
|
169025
|
+
direction: "incoming" | "outgoing" | "system";
|
169026
169026
|
createdAt: Date;
|
169027
169027
|
updatedAt: Date;
|
169028
169028
|
deletedAt: Date | null;
|
@@ -169237,7 +169237,7 @@ export declare const platformMessengerContract: {
|
|
169237
169237
|
message: string;
|
169238
169238
|
id: string;
|
169239
169239
|
url: string;
|
169240
|
-
direction:
|
169240
|
+
direction: "incoming" | "outgoing" | "system";
|
169241
169241
|
createdAt: Date;
|
169242
169242
|
updatedAt: Date;
|
169243
169243
|
deletedAt: Date | null;
|
@@ -169440,7 +169440,7 @@ export declare const platformMessengerContract: {
|
|
169440
169440
|
integrationId: string;
|
169441
169441
|
} | null;
|
169442
169442
|
};
|
169443
|
-
direction:
|
169443
|
+
direction: "incoming" | "outgoing" | "system";
|
169444
169444
|
status: number;
|
169445
169445
|
createdAt: Date;
|
169446
169446
|
updatedAt: Date;
|
@@ -169792,7 +169792,7 @@ export declare const platformMessengerContract: {
|
|
169792
169792
|
message: string;
|
169793
169793
|
id: string;
|
169794
169794
|
url: string;
|
169795
|
-
direction:
|
169795
|
+
direction: "incoming" | "outgoing" | "system";
|
169796
169796
|
createdAt: Date;
|
169797
169797
|
updatedAt: Date;
|
169798
169798
|
deletedAt: Date | null;
|
@@ -170003,7 +170003,7 @@ export declare const platformMessengerContract: {
|
|
170003
170003
|
message: string;
|
170004
170004
|
id: string;
|
170005
170005
|
url: string;
|
170006
|
-
direction:
|
170006
|
+
direction: "incoming" | "outgoing" | "system";
|
170007
170007
|
createdAt: Date;
|
170008
170008
|
updatedAt: Date;
|
170009
170009
|
deletedAt: Date | null;
|
@@ -170206,7 +170206,7 @@ export declare const platformMessengerContract: {
|
|
170206
170206
|
integrationId: string;
|
170207
170207
|
} | null;
|
170208
170208
|
};
|
170209
|
-
direction:
|
170209
|
+
direction: "incoming" | "outgoing" | "system";
|
170210
170210
|
status: number;
|
170211
170211
|
createdAt: Date;
|
170212
170212
|
updatedAt: Date;
|
@@ -170558,7 +170558,7 @@ export declare const platformMessengerContract: {
|
|
170558
170558
|
message: string;
|
170559
170559
|
id: string;
|
170560
170560
|
url: string;
|
170561
|
-
direction:
|
170561
|
+
direction: "incoming" | "outgoing" | "system";
|
170562
170562
|
createdAt: Date;
|
170563
170563
|
updatedAt: Date;
|
170564
170564
|
deletedAt: Date | null;
|
@@ -173760,7 +173760,7 @@ export declare const platformInstagramContract: {
|
|
173760
173760
|
lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
|
173761
173761
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
173762
173762
|
isLatest: import("zod").ZodBoolean;
|
173763
|
-
direction: import("zod").
|
173763
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
173764
173764
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
173765
173765
|
createdAt: import("zod").ZodString;
|
173766
173766
|
updatedAt: import("zod").ZodString;
|
@@ -174182,7 +174182,7 @@ export declare const platformInstagramContract: {
|
|
174182
174182
|
connectedUserName?: string | null | undefined;
|
174183
174183
|
connectedUserId?: string | null | undefined;
|
174184
174184
|
};
|
174185
|
-
direction:
|
174185
|
+
direction: "incoming" | "outgoing" | "system";
|
174186
174186
|
createdAt: string;
|
174187
174187
|
updatedAt: string;
|
174188
174188
|
actor: {
|
@@ -174274,7 +174274,7 @@ export declare const platformInstagramContract: {
|
|
174274
174274
|
connectedUserName?: string | null | undefined;
|
174275
174275
|
connectedUserId?: string | null | undefined;
|
174276
174276
|
};
|
174277
|
-
direction:
|
174277
|
+
direction: "incoming" | "outgoing" | "system";
|
174278
174278
|
createdAt: string;
|
174279
174279
|
updatedAt: string;
|
174280
174280
|
actor: {
|
@@ -174319,8 +174319,8 @@ export declare const platformInstagramContract: {
|
|
174319
174319
|
message: import("zod").ZodObject<{
|
174320
174320
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
174321
174321
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
174322
|
-
direction: import("zod").
|
174323
|
-
type: import("zod").
|
174322
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
174323
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
174324
174324
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
174325
174325
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
174326
174326
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -174377,7 +174377,7 @@ export declare const platformInstagramContract: {
|
|
174377
174377
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
174378
174378
|
}, "strip", import("zod").ZodTypeAny, {
|
174379
174379
|
type: string;
|
174380
|
-
direction:
|
174380
|
+
direction: "incoming" | "outgoing" | "system";
|
174381
174381
|
message?: string | undefined;
|
174382
174382
|
id?: string | undefined;
|
174383
174383
|
url?: string | undefined;
|
@@ -174412,7 +174412,7 @@ export declare const platformInstagramContract: {
|
|
174412
174412
|
editedAt?: string | Date | null | undefined;
|
174413
174413
|
}, {
|
174414
174414
|
type: string;
|
174415
|
-
direction:
|
174415
|
+
direction: "incoming" | "outgoing" | "system";
|
174416
174416
|
message?: string | undefined;
|
174417
174417
|
id?: string | undefined;
|
174418
174418
|
url?: string | undefined;
|
@@ -174449,7 +174449,7 @@ export declare const platformInstagramContract: {
|
|
174449
174449
|
}, "strip", import("zod").ZodTypeAny, {
|
174450
174450
|
message: {
|
174451
174451
|
type: string;
|
174452
|
-
direction:
|
174452
|
+
direction: "incoming" | "outgoing" | "system";
|
174453
174453
|
message?: string | undefined;
|
174454
174454
|
id?: string | undefined;
|
174455
174455
|
url?: string | undefined;
|
@@ -174534,7 +174534,7 @@ export declare const platformInstagramContract: {
|
|
174534
174534
|
connectedUserName?: string | null | undefined;
|
174535
174535
|
connectedUserId?: string | null | undefined;
|
174536
174536
|
};
|
174537
|
-
direction:
|
174537
|
+
direction: "incoming" | "outgoing" | "system";
|
174538
174538
|
createdAt: string;
|
174539
174539
|
updatedAt: string;
|
174540
174540
|
actor: {
|
@@ -174580,7 +174580,7 @@ export declare const platformInstagramContract: {
|
|
174580
174580
|
}, {
|
174581
174581
|
message: {
|
174582
174582
|
type: string;
|
174583
|
-
direction:
|
174583
|
+
direction: "incoming" | "outgoing" | "system";
|
174584
174584
|
message?: string | undefined;
|
174585
174585
|
id?: string | undefined;
|
174586
174586
|
url?: string | undefined;
|
@@ -174665,7 +174665,7 @@ export declare const platformInstagramContract: {
|
|
174665
174665
|
connectedUserName?: string | null | undefined;
|
174666
174666
|
connectedUserId?: string | null | undefined;
|
174667
174667
|
};
|
174668
|
-
direction:
|
174668
|
+
direction: "incoming" | "outgoing" | "system";
|
174669
174669
|
createdAt: string;
|
174670
174670
|
updatedAt: string;
|
174671
174671
|
actor: {
|
@@ -174722,8 +174722,8 @@ export declare const platformInstagramContract: {
|
|
174722
174722
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
174723
174723
|
}, {
|
174724
174724
|
message: import("zod").ZodString;
|
174725
|
-
direction: import("zod").
|
174726
|
-
type: import("zod").
|
174725
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
174726
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
174727
174727
|
readAt: import("zod").ZodDate;
|
174728
174728
|
metadata: import("zod").ZodAny;
|
174729
174729
|
platformId: import("zod").ZodString;
|
@@ -174750,7 +174750,7 @@ export declare const platformInstagramContract: {
|
|
174750
174750
|
firstResponseTime: import("zod").ZodNumber;
|
174751
174751
|
isLatest: import("zod").ZodBoolean;
|
174752
174752
|
isBotRoom: import("zod").ZodBoolean;
|
174753
|
-
direction: import("zod").
|
174753
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
174754
174754
|
platformContact: import("zod").ZodObject<{
|
174755
174755
|
id: import("zod").ZodString;
|
174756
174756
|
createdAt: import("zod").ZodDate;
|
@@ -177435,7 +177435,7 @@ export declare const platformInstagramContract: {
|
|
177435
177435
|
integrationId: string;
|
177436
177436
|
} | null;
|
177437
177437
|
};
|
177438
|
-
direction:
|
177438
|
+
direction: "incoming" | "outgoing" | "system";
|
177439
177439
|
status: number;
|
177440
177440
|
createdAt: Date;
|
177441
177441
|
updatedAt: Date;
|
@@ -177864,7 +177864,7 @@ export declare const platformInstagramContract: {
|
|
177864
177864
|
integrationId: string;
|
177865
177865
|
} | null;
|
177866
177866
|
};
|
177867
|
-
direction:
|
177867
|
+
direction: "incoming" | "outgoing" | "system";
|
177868
177868
|
status: number;
|
177869
177869
|
createdAt: Date;
|
177870
177870
|
updatedAt: Date;
|
@@ -178238,8 +178238,8 @@ export declare const platformInstagramContract: {
|
|
178238
178238
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
178239
178239
|
}, {
|
178240
178240
|
message: import("zod").ZodString;
|
178241
|
-
direction: import("zod").
|
178242
|
-
type: import("zod").
|
178241
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
178242
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
178243
178243
|
readAt: import("zod").ZodDate;
|
178244
178244
|
metadata: import("zod").ZodAny;
|
178245
178245
|
platformId: import("zod").ZodString;
|
@@ -178905,7 +178905,7 @@ export declare const platformInstagramContract: {
|
|
178905
178905
|
message: string;
|
178906
178906
|
id: string;
|
178907
178907
|
url: string;
|
178908
|
-
direction:
|
178908
|
+
direction: "incoming" | "outgoing" | "system";
|
178909
178909
|
createdAt: Date;
|
178910
178910
|
updatedAt: Date;
|
178911
178911
|
deletedAt: Date | null;
|
@@ -179067,7 +179067,7 @@ export declare const platformInstagramContract: {
|
|
179067
179067
|
message: string;
|
179068
179068
|
id: string;
|
179069
179069
|
url: string;
|
179070
|
-
direction:
|
179070
|
+
direction: "incoming" | "outgoing" | "system";
|
179071
179071
|
createdAt: Date;
|
179072
179072
|
updatedAt: Date;
|
179073
179073
|
deletedAt: Date | null;
|
@@ -179873,8 +179873,8 @@ export declare const platformInstagramContract: {
|
|
179873
179873
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
179874
179874
|
}, {
|
179875
179875
|
message: import("zod").ZodString;
|
179876
|
-
direction: import("zod").
|
179877
|
-
type: import("zod").
|
179876
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
179877
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
179878
179878
|
readAt: import("zod").ZodDate;
|
179879
179879
|
metadata: import("zod").ZodAny;
|
179880
179880
|
platformId: import("zod").ZodString;
|
@@ -179901,7 +179901,7 @@ export declare const platformInstagramContract: {
|
|
179901
179901
|
firstResponseTime: import("zod").ZodNumber;
|
179902
179902
|
isLatest: import("zod").ZodBoolean;
|
179903
179903
|
isBotRoom: import("zod").ZodBoolean;
|
179904
|
-
direction: import("zod").
|
179904
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
179905
179905
|
platformContact: import("zod").ZodObject<{
|
179906
179906
|
id: import("zod").ZodString;
|
179907
179907
|
createdAt: import("zod").ZodDate;
|
@@ -182586,7 +182586,7 @@ export declare const platformInstagramContract: {
|
|
182586
182586
|
integrationId: string;
|
182587
182587
|
} | null;
|
182588
182588
|
};
|
182589
|
-
direction:
|
182589
|
+
direction: "incoming" | "outgoing" | "system";
|
182590
182590
|
status: number;
|
182591
182591
|
createdAt: Date;
|
182592
182592
|
updatedAt: Date;
|
@@ -183015,7 +183015,7 @@ export declare const platformInstagramContract: {
|
|
183015
183015
|
integrationId: string;
|
183016
183016
|
} | null;
|
183017
183017
|
};
|
183018
|
-
direction:
|
183018
|
+
direction: "incoming" | "outgoing" | "system";
|
183019
183019
|
status: number;
|
183020
183020
|
createdAt: Date;
|
183021
183021
|
updatedAt: Date;
|
@@ -183389,8 +183389,8 @@ export declare const platformInstagramContract: {
|
|
183389
183389
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
183390
183390
|
}, {
|
183391
183391
|
message: import("zod").ZodString;
|
183392
|
-
direction: import("zod").
|
183393
|
-
type: import("zod").
|
183392
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
183393
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
183394
183394
|
readAt: import("zod").ZodDate;
|
183395
183395
|
metadata: import("zod").ZodAny;
|
183396
183396
|
platformId: import("zod").ZodString;
|
@@ -184056,7 +184056,7 @@ export declare const platformInstagramContract: {
|
|
184056
184056
|
message: string;
|
184057
184057
|
id: string;
|
184058
184058
|
url: string;
|
184059
|
-
direction:
|
184059
|
+
direction: "incoming" | "outgoing" | "system";
|
184060
184060
|
createdAt: Date;
|
184061
184061
|
updatedAt: Date;
|
184062
184062
|
deletedAt: Date | null;
|
@@ -184218,7 +184218,7 @@ export declare const platformInstagramContract: {
|
|
184218
184218
|
message: string;
|
184219
184219
|
id: string;
|
184220
184220
|
url: string;
|
184221
|
-
direction:
|
184221
|
+
direction: "incoming" | "outgoing" | "system";
|
184222
184222
|
createdAt: Date;
|
184223
184223
|
updatedAt: Date;
|
184224
184224
|
deletedAt: Date | null;
|
@@ -185021,7 +185021,7 @@ export declare const platformInstagramContract: {
|
|
185021
185021
|
message: string;
|
185022
185022
|
id: string;
|
185023
185023
|
url: string;
|
185024
|
-
direction:
|
185024
|
+
direction: "incoming" | "outgoing" | "system";
|
185025
185025
|
createdAt: Date;
|
185026
185026
|
updatedAt: Date;
|
185027
185027
|
deletedAt: Date | null;
|
@@ -185224,7 +185224,7 @@ export declare const platformInstagramContract: {
|
|
185224
185224
|
integrationId: string;
|
185225
185225
|
} | null;
|
185226
185226
|
};
|
185227
|
-
direction:
|
185227
|
+
direction: "incoming" | "outgoing" | "system";
|
185228
185228
|
status: number;
|
185229
185229
|
createdAt: Date;
|
185230
185230
|
updatedAt: Date;
|
@@ -185576,7 +185576,7 @@ export declare const platformInstagramContract: {
|
|
185576
185576
|
message: string;
|
185577
185577
|
id: string;
|
185578
185578
|
url: string;
|
185579
|
-
direction:
|
185579
|
+
direction: "incoming" | "outgoing" | "system";
|
185580
185580
|
createdAt: Date;
|
185581
185581
|
updatedAt: Date;
|
185582
185582
|
deletedAt: Date | null;
|
@@ -185787,7 +185787,7 @@ export declare const platformInstagramContract: {
|
|
185787
185787
|
message: string;
|
185788
185788
|
id: string;
|
185789
185789
|
url: string;
|
185790
|
-
direction:
|
185790
|
+
direction: "incoming" | "outgoing" | "system";
|
185791
185791
|
createdAt: Date;
|
185792
185792
|
updatedAt: Date;
|
185793
185793
|
deletedAt: Date | null;
|
@@ -185990,7 +185990,7 @@ export declare const platformInstagramContract: {
|
|
185990
185990
|
integrationId: string;
|
185991
185991
|
} | null;
|
185992
185992
|
};
|
185993
|
-
direction:
|
185993
|
+
direction: "incoming" | "outgoing" | "system";
|
185994
185994
|
status: number;
|
185995
185995
|
createdAt: Date;
|
185996
185996
|
updatedAt: Date;
|
@@ -186342,7 +186342,7 @@ export declare const platformInstagramContract: {
|
|
186342
186342
|
message: string;
|
186343
186343
|
id: string;
|
186344
186344
|
url: string;
|
186345
|
-
direction:
|
186345
|
+
direction: "incoming" | "outgoing" | "system";
|
186346
186346
|
createdAt: Date;
|
186347
186347
|
updatedAt: Date;
|
186348
186348
|
deletedAt: Date | null;
|
@@ -186554,7 +186554,7 @@ export declare const platformInstagramContract: {
|
|
186554
186554
|
message: string;
|
186555
186555
|
id: string;
|
186556
186556
|
url: string;
|
186557
|
-
direction:
|
186557
|
+
direction: "incoming" | "outgoing" | "system";
|
186558
186558
|
createdAt: Date;
|
186559
186559
|
updatedAt: Date;
|
186560
186560
|
deletedAt: Date | null;
|
@@ -186757,7 +186757,7 @@ export declare const platformInstagramContract: {
|
|
186757
186757
|
integrationId: string;
|
186758
186758
|
} | null;
|
186759
186759
|
};
|
186760
|
-
direction:
|
186760
|
+
direction: "incoming" | "outgoing" | "system";
|
186761
186761
|
status: number;
|
186762
186762
|
createdAt: Date;
|
186763
186763
|
updatedAt: Date;
|
@@ -187109,7 +187109,7 @@ export declare const platformInstagramContract: {
|
|
187109
187109
|
message: string;
|
187110
187110
|
id: string;
|
187111
187111
|
url: string;
|
187112
|
-
direction:
|
187112
|
+
direction: "incoming" | "outgoing" | "system";
|
187113
187113
|
createdAt: Date;
|
187114
187114
|
updatedAt: Date;
|
187115
187115
|
deletedAt: Date | null;
|
@@ -187320,7 +187320,7 @@ export declare const platformInstagramContract: {
|
|
187320
187320
|
message: string;
|
187321
187321
|
id: string;
|
187322
187322
|
url: string;
|
187323
|
-
direction:
|
187323
|
+
direction: "incoming" | "outgoing" | "system";
|
187324
187324
|
createdAt: Date;
|
187325
187325
|
updatedAt: Date;
|
187326
187326
|
deletedAt: Date | null;
|
@@ -187523,7 +187523,7 @@ export declare const platformInstagramContract: {
|
|
187523
187523
|
integrationId: string;
|
187524
187524
|
} | null;
|
187525
187525
|
};
|
187526
|
-
direction:
|
187526
|
+
direction: "incoming" | "outgoing" | "system";
|
187527
187527
|
status: number;
|
187528
187528
|
createdAt: Date;
|
187529
187529
|
updatedAt: Date;
|
@@ -187875,7 +187875,7 @@ export declare const platformInstagramContract: {
|
|
187875
187875
|
message: string;
|
187876
187876
|
id: string;
|
187877
187877
|
url: string;
|
187878
|
-
direction:
|
187878
|
+
direction: "incoming" | "outgoing" | "system";
|
187879
187879
|
createdAt: Date;
|
187880
187880
|
updatedAt: Date;
|
187881
187881
|
deletedAt: Date | null;
|
@@ -188087,7 +188087,7 @@ export declare const platformInstagramContract: {
|
|
188087
188087
|
message: string;
|
188088
188088
|
id: string;
|
188089
188089
|
url: string;
|
188090
|
-
direction:
|
188090
|
+
direction: "incoming" | "outgoing" | "system";
|
188091
188091
|
createdAt: Date;
|
188092
188092
|
updatedAt: Date;
|
188093
188093
|
deletedAt: Date | null;
|
@@ -188290,7 +188290,7 @@ export declare const platformInstagramContract: {
|
|
188290
188290
|
integrationId: string;
|
188291
188291
|
} | null;
|
188292
188292
|
};
|
188293
|
-
direction:
|
188293
|
+
direction: "incoming" | "outgoing" | "system";
|
188294
188294
|
status: number;
|
188295
188295
|
createdAt: Date;
|
188296
188296
|
updatedAt: Date;
|
@@ -188642,7 +188642,7 @@ export declare const platformInstagramContract: {
|
|
188642
188642
|
message: string;
|
188643
188643
|
id: string;
|
188644
188644
|
url: string;
|
188645
|
-
direction:
|
188645
|
+
direction: "incoming" | "outgoing" | "system";
|
188646
188646
|
createdAt: Date;
|
188647
188647
|
updatedAt: Date;
|
188648
188648
|
deletedAt: Date | null;
|
@@ -188853,7 +188853,7 @@ export declare const platformInstagramContract: {
|
|
188853
188853
|
message: string;
|
188854
188854
|
id: string;
|
188855
188855
|
url: string;
|
188856
|
-
direction:
|
188856
|
+
direction: "incoming" | "outgoing" | "system";
|
188857
188857
|
createdAt: Date;
|
188858
188858
|
updatedAt: Date;
|
188859
188859
|
deletedAt: Date | null;
|
@@ -189056,7 +189056,7 @@ export declare const platformInstagramContract: {
|
|
189056
189056
|
integrationId: string;
|
189057
189057
|
} | null;
|
189058
189058
|
};
|
189059
|
-
direction:
|
189059
|
+
direction: "incoming" | "outgoing" | "system";
|
189060
189060
|
status: number;
|
189061
189061
|
createdAt: Date;
|
189062
189062
|
updatedAt: Date;
|
@@ -189408,7 +189408,7 @@ export declare const platformInstagramContract: {
|
|
189408
189408
|
message: string;
|
189409
189409
|
id: string;
|
189410
189410
|
url: string;
|
189411
|
-
direction:
|
189411
|
+
direction: "incoming" | "outgoing" | "system";
|
189412
189412
|
createdAt: Date;
|
189413
189413
|
updatedAt: Date;
|
189414
189414
|
deletedAt: Date | null;
|
@@ -189622,7 +189622,7 @@ export declare const platformInstagramContract: {
|
|
189622
189622
|
message: string;
|
189623
189623
|
id: string;
|
189624
189624
|
url: string;
|
189625
|
-
direction:
|
189625
|
+
direction: "incoming" | "outgoing" | "system";
|
189626
189626
|
createdAt: Date;
|
189627
189627
|
updatedAt: Date;
|
189628
189628
|
deletedAt: Date | null;
|
@@ -189825,7 +189825,7 @@ export declare const platformInstagramContract: {
|
|
189825
189825
|
integrationId: string;
|
189826
189826
|
} | null;
|
189827
189827
|
};
|
189828
|
-
direction:
|
189828
|
+
direction: "incoming" | "outgoing" | "system";
|
189829
189829
|
status: number;
|
189830
189830
|
createdAt: Date;
|
189831
189831
|
updatedAt: Date;
|
@@ -190177,7 +190177,7 @@ export declare const platformInstagramContract: {
|
|
190177
190177
|
message: string;
|
190178
190178
|
id: string;
|
190179
190179
|
url: string;
|
190180
|
-
direction:
|
190180
|
+
direction: "incoming" | "outgoing" | "system";
|
190181
190181
|
createdAt: Date;
|
190182
190182
|
updatedAt: Date;
|
190183
190183
|
deletedAt: Date | null;
|
@@ -190388,7 +190388,7 @@ export declare const platformInstagramContract: {
|
|
190388
190388
|
message: string;
|
190389
190389
|
id: string;
|
190390
190390
|
url: string;
|
190391
|
-
direction:
|
190391
|
+
direction: "incoming" | "outgoing" | "system";
|
190392
190392
|
createdAt: Date;
|
190393
190393
|
updatedAt: Date;
|
190394
190394
|
deletedAt: Date | null;
|
@@ -190591,7 +190591,7 @@ export declare const platformInstagramContract: {
|
|
190591
190591
|
integrationId: string;
|
190592
190592
|
} | null;
|
190593
190593
|
};
|
190594
|
-
direction:
|
190594
|
+
direction: "incoming" | "outgoing" | "system";
|
190595
190595
|
status: number;
|
190596
190596
|
createdAt: Date;
|
190597
190597
|
updatedAt: Date;
|
@@ -190943,7 +190943,7 @@ export declare const platformInstagramContract: {
|
|
190943
190943
|
message: string;
|
190944
190944
|
id: string;
|
190945
190945
|
url: string;
|
190946
|
-
direction:
|
190946
|
+
direction: "incoming" | "outgoing" | "system";
|
190947
190947
|
createdAt: Date;
|
190948
190948
|
updatedAt: Date;
|
190949
190949
|
deletedAt: Date | null;
|
@@ -191158,7 +191158,7 @@ export declare const platformInstagramContract: {
|
|
191158
191158
|
message: string;
|
191159
191159
|
id: string;
|
191160
191160
|
url: string;
|
191161
|
-
direction:
|
191161
|
+
direction: "incoming" | "outgoing" | "system";
|
191162
191162
|
createdAt: Date;
|
191163
191163
|
updatedAt: Date;
|
191164
191164
|
deletedAt: Date | null;
|
@@ -191361,7 +191361,7 @@ export declare const platformInstagramContract: {
|
|
191361
191361
|
integrationId: string;
|
191362
191362
|
} | null;
|
191363
191363
|
};
|
191364
|
-
direction:
|
191364
|
+
direction: "incoming" | "outgoing" | "system";
|
191365
191365
|
status: number;
|
191366
191366
|
createdAt: Date;
|
191367
191367
|
updatedAt: Date;
|
@@ -191713,7 +191713,7 @@ export declare const platformInstagramContract: {
|
|
191713
191713
|
message: string;
|
191714
191714
|
id: string;
|
191715
191715
|
url: string;
|
191716
|
-
direction:
|
191716
|
+
direction: "incoming" | "outgoing" | "system";
|
191717
191717
|
createdAt: Date;
|
191718
191718
|
updatedAt: Date;
|
191719
191719
|
deletedAt: Date | null;
|
@@ -191924,7 +191924,7 @@ export declare const platformInstagramContract: {
|
|
191924
191924
|
message: string;
|
191925
191925
|
id: string;
|
191926
191926
|
url: string;
|
191927
|
-
direction:
|
191927
|
+
direction: "incoming" | "outgoing" | "system";
|
191928
191928
|
createdAt: Date;
|
191929
191929
|
updatedAt: Date;
|
191930
191930
|
deletedAt: Date | null;
|
@@ -192127,7 +192127,7 @@ export declare const platformInstagramContract: {
|
|
192127
192127
|
integrationId: string;
|
192128
192128
|
} | null;
|
192129
192129
|
};
|
192130
|
-
direction:
|
192130
|
+
direction: "incoming" | "outgoing" | "system";
|
192131
192131
|
status: number;
|
192132
192132
|
createdAt: Date;
|
192133
192133
|
updatedAt: Date;
|
@@ -192479,7 +192479,7 @@ export declare const platformInstagramContract: {
|
|
192479
192479
|
message: string;
|
192480
192480
|
id: string;
|
192481
192481
|
url: string;
|
192482
|
-
direction:
|
192482
|
+
direction: "incoming" | "outgoing" | "system";
|
192483
192483
|
createdAt: Date;
|
192484
192484
|
updatedAt: Date;
|
192485
192485
|
deletedAt: Date | null;
|
@@ -199191,7 +199191,7 @@ export declare const platformSMSContract: {
|
|
199191
199191
|
lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
|
199192
199192
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
199193
199193
|
isLatest: import("zod").ZodBoolean;
|
199194
|
-
direction: import("zod").
|
199194
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
199195
199195
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
199196
199196
|
createdAt: import("zod").ZodString;
|
199197
199197
|
updatedAt: import("zod").ZodString;
|
@@ -199613,7 +199613,7 @@ export declare const platformSMSContract: {
|
|
199613
199613
|
connectedUserName?: string | null | undefined;
|
199614
199614
|
connectedUserId?: string | null | undefined;
|
199615
199615
|
};
|
199616
|
-
direction:
|
199616
|
+
direction: "incoming" | "outgoing" | "system";
|
199617
199617
|
createdAt: string;
|
199618
199618
|
updatedAt: string;
|
199619
199619
|
actor: {
|
@@ -199705,7 +199705,7 @@ export declare const platformSMSContract: {
|
|
199705
199705
|
connectedUserName?: string | null | undefined;
|
199706
199706
|
connectedUserId?: string | null | undefined;
|
199707
199707
|
};
|
199708
|
-
direction:
|
199708
|
+
direction: "incoming" | "outgoing" | "system";
|
199709
199709
|
createdAt: string;
|
199710
199710
|
updatedAt: string;
|
199711
199711
|
actor: {
|
@@ -199750,8 +199750,8 @@ export declare const platformSMSContract: {
|
|
199750
199750
|
message: import("zod").ZodObject<{
|
199751
199751
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
199752
199752
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
199753
|
-
direction: import("zod").
|
199754
|
-
type: import("zod").
|
199753
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
199754
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
199755
199755
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
199756
199756
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
199757
199757
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -199808,7 +199808,7 @@ export declare const platformSMSContract: {
|
|
199808
199808
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
199809
199809
|
}, "strip", import("zod").ZodTypeAny, {
|
199810
199810
|
type: string;
|
199811
|
-
direction:
|
199811
|
+
direction: "incoming" | "outgoing" | "system";
|
199812
199812
|
message?: string | undefined;
|
199813
199813
|
id?: string | undefined;
|
199814
199814
|
url?: string | undefined;
|
@@ -199843,7 +199843,7 @@ export declare const platformSMSContract: {
|
|
199843
199843
|
editedAt?: string | Date | null | undefined;
|
199844
199844
|
}, {
|
199845
199845
|
type: string;
|
199846
|
-
direction:
|
199846
|
+
direction: "incoming" | "outgoing" | "system";
|
199847
199847
|
message?: string | undefined;
|
199848
199848
|
id?: string | undefined;
|
199849
199849
|
url?: string | undefined;
|
@@ -199880,7 +199880,7 @@ export declare const platformSMSContract: {
|
|
199880
199880
|
}, "strip", import("zod").ZodTypeAny, {
|
199881
199881
|
message: {
|
199882
199882
|
type: string;
|
199883
|
-
direction:
|
199883
|
+
direction: "incoming" | "outgoing" | "system";
|
199884
199884
|
message?: string | undefined;
|
199885
199885
|
id?: string | undefined;
|
199886
199886
|
url?: string | undefined;
|
@@ -199965,7 +199965,7 @@ export declare const platformSMSContract: {
|
|
199965
199965
|
connectedUserName?: string | null | undefined;
|
199966
199966
|
connectedUserId?: string | null | undefined;
|
199967
199967
|
};
|
199968
|
-
direction:
|
199968
|
+
direction: "incoming" | "outgoing" | "system";
|
199969
199969
|
createdAt: string;
|
199970
199970
|
updatedAt: string;
|
199971
199971
|
actor: {
|
@@ -200011,7 +200011,7 @@ export declare const platformSMSContract: {
|
|
200011
200011
|
}, {
|
200012
200012
|
message: {
|
200013
200013
|
type: string;
|
200014
|
-
direction:
|
200014
|
+
direction: "incoming" | "outgoing" | "system";
|
200015
200015
|
message?: string | undefined;
|
200016
200016
|
id?: string | undefined;
|
200017
200017
|
url?: string | undefined;
|
@@ -200096,7 +200096,7 @@ export declare const platformSMSContract: {
|
|
200096
200096
|
connectedUserName?: string | null | undefined;
|
200097
200097
|
connectedUserId?: string | null | undefined;
|
200098
200098
|
};
|
200099
|
-
direction:
|
200099
|
+
direction: "incoming" | "outgoing" | "system";
|
200100
200100
|
createdAt: string;
|
200101
200101
|
updatedAt: string;
|
200102
200102
|
actor: {
|
@@ -200184,7 +200184,7 @@ export declare const platformWhatsappContract: {
|
|
200184
200184
|
lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
|
200185
200185
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
200186
200186
|
isLatest: import("zod").ZodBoolean;
|
200187
|
-
direction: import("zod").
|
200187
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
200188
200188
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
200189
200189
|
createdAt: import("zod").ZodString;
|
200190
200190
|
updatedAt: import("zod").ZodString;
|
@@ -200606,7 +200606,7 @@ export declare const platformWhatsappContract: {
|
|
200606
200606
|
connectedUserName?: string | null | undefined;
|
200607
200607
|
connectedUserId?: string | null | undefined;
|
200608
200608
|
};
|
200609
|
-
direction:
|
200609
|
+
direction: "incoming" | "outgoing" | "system";
|
200610
200610
|
createdAt: string;
|
200611
200611
|
updatedAt: string;
|
200612
200612
|
actor: {
|
@@ -200698,7 +200698,7 @@ export declare const platformWhatsappContract: {
|
|
200698
200698
|
connectedUserName?: string | null | undefined;
|
200699
200699
|
connectedUserId?: string | null | undefined;
|
200700
200700
|
};
|
200701
|
-
direction:
|
200701
|
+
direction: "incoming" | "outgoing" | "system";
|
200702
200702
|
createdAt: string;
|
200703
200703
|
updatedAt: string;
|
200704
200704
|
actor: {
|
@@ -200743,8 +200743,8 @@ export declare const platformWhatsappContract: {
|
|
200743
200743
|
message: import("zod").ZodObject<{
|
200744
200744
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
200745
200745
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
200746
|
-
direction: import("zod").
|
200747
|
-
type: import("zod").
|
200746
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
200747
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
200748
200748
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
200749
200749
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
200750
200750
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -200801,7 +200801,7 @@ export declare const platformWhatsappContract: {
|
|
200801
200801
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
200802
200802
|
}, "strip", import("zod").ZodTypeAny, {
|
200803
200803
|
type: string;
|
200804
|
-
direction:
|
200804
|
+
direction: "incoming" | "outgoing" | "system";
|
200805
200805
|
message?: string | undefined;
|
200806
200806
|
id?: string | undefined;
|
200807
200807
|
url?: string | undefined;
|
@@ -200836,7 +200836,7 @@ export declare const platformWhatsappContract: {
|
|
200836
200836
|
editedAt?: string | Date | null | undefined;
|
200837
200837
|
}, {
|
200838
200838
|
type: string;
|
200839
|
-
direction:
|
200839
|
+
direction: "incoming" | "outgoing" | "system";
|
200840
200840
|
message?: string | undefined;
|
200841
200841
|
id?: string | undefined;
|
200842
200842
|
url?: string | undefined;
|
@@ -200873,7 +200873,7 @@ export declare const platformWhatsappContract: {
|
|
200873
200873
|
}, "strip", import("zod").ZodTypeAny, {
|
200874
200874
|
message: {
|
200875
200875
|
type: string;
|
200876
|
-
direction:
|
200876
|
+
direction: "incoming" | "outgoing" | "system";
|
200877
200877
|
message?: string | undefined;
|
200878
200878
|
id?: string | undefined;
|
200879
200879
|
url?: string | undefined;
|
@@ -200958,7 +200958,7 @@ export declare const platformWhatsappContract: {
|
|
200958
200958
|
connectedUserName?: string | null | undefined;
|
200959
200959
|
connectedUserId?: string | null | undefined;
|
200960
200960
|
};
|
200961
|
-
direction:
|
200961
|
+
direction: "incoming" | "outgoing" | "system";
|
200962
200962
|
createdAt: string;
|
200963
200963
|
updatedAt: string;
|
200964
200964
|
actor: {
|
@@ -201004,7 +201004,7 @@ export declare const platformWhatsappContract: {
|
|
201004
201004
|
}, {
|
201005
201005
|
message: {
|
201006
201006
|
type: string;
|
201007
|
-
direction:
|
201007
|
+
direction: "incoming" | "outgoing" | "system";
|
201008
201008
|
message?: string | undefined;
|
201009
201009
|
id?: string | undefined;
|
201010
201010
|
url?: string | undefined;
|
@@ -201089,7 +201089,7 @@ export declare const platformWhatsappContract: {
|
|
201089
201089
|
connectedUserName?: string | null | undefined;
|
201090
201090
|
connectedUserId?: string | null | undefined;
|
201091
201091
|
};
|
201092
|
-
direction:
|
201092
|
+
direction: "incoming" | "outgoing" | "system";
|
201093
201093
|
createdAt: string;
|
201094
201094
|
updatedAt: string;
|
201095
201095
|
actor: {
|
@@ -201146,8 +201146,8 @@ export declare const platformWhatsappContract: {
|
|
201146
201146
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
201147
201147
|
}, {
|
201148
201148
|
message: import("zod").ZodString;
|
201149
|
-
direction: import("zod").
|
201150
|
-
type: import("zod").
|
201149
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
201150
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
201151
201151
|
readAt: import("zod").ZodDate;
|
201152
201152
|
metadata: import("zod").ZodAny;
|
201153
201153
|
platformId: import("zod").ZodString;
|
@@ -201174,7 +201174,7 @@ export declare const platformWhatsappContract: {
|
|
201174
201174
|
firstResponseTime: import("zod").ZodNumber;
|
201175
201175
|
isLatest: import("zod").ZodBoolean;
|
201176
201176
|
isBotRoom: import("zod").ZodBoolean;
|
201177
|
-
direction: import("zod").
|
201177
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
201178
201178
|
platformContact: import("zod").ZodObject<{
|
201179
201179
|
id: import("zod").ZodString;
|
201180
201180
|
createdAt: import("zod").ZodDate;
|
@@ -203859,7 +203859,7 @@ export declare const platformWhatsappContract: {
|
|
203859
203859
|
integrationId: string;
|
203860
203860
|
} | null;
|
203861
203861
|
};
|
203862
|
-
direction:
|
203862
|
+
direction: "incoming" | "outgoing" | "system";
|
203863
203863
|
status: number;
|
203864
203864
|
createdAt: Date;
|
203865
203865
|
updatedAt: Date;
|
@@ -204288,7 +204288,7 @@ export declare const platformWhatsappContract: {
|
|
204288
204288
|
integrationId: string;
|
204289
204289
|
} | null;
|
204290
204290
|
};
|
204291
|
-
direction:
|
204291
|
+
direction: "incoming" | "outgoing" | "system";
|
204292
204292
|
status: number;
|
204293
204293
|
createdAt: Date;
|
204294
204294
|
updatedAt: Date;
|
@@ -204662,8 +204662,8 @@ export declare const platformWhatsappContract: {
|
|
204662
204662
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
204663
204663
|
}, {
|
204664
204664
|
message: import("zod").ZodString;
|
204665
|
-
direction: import("zod").
|
204666
|
-
type: import("zod").
|
204665
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
204666
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
204667
204667
|
readAt: import("zod").ZodDate;
|
204668
204668
|
metadata: import("zod").ZodAny;
|
204669
204669
|
platformId: import("zod").ZodString;
|
@@ -205329,7 +205329,7 @@ export declare const platformWhatsappContract: {
|
|
205329
205329
|
message: string;
|
205330
205330
|
id: string;
|
205331
205331
|
url: string;
|
205332
|
-
direction:
|
205332
|
+
direction: "incoming" | "outgoing" | "system";
|
205333
205333
|
createdAt: Date;
|
205334
205334
|
updatedAt: Date;
|
205335
205335
|
deletedAt: Date | null;
|
@@ -205491,7 +205491,7 @@ export declare const platformWhatsappContract: {
|
|
205491
205491
|
message: string;
|
205492
205492
|
id: string;
|
205493
205493
|
url: string;
|
205494
|
-
direction:
|
205494
|
+
direction: "incoming" | "outgoing" | "system";
|
205495
205495
|
createdAt: Date;
|
205496
205496
|
updatedAt: Date;
|
205497
205497
|
deletedAt: Date | null;
|
@@ -206297,8 +206297,8 @@ export declare const platformWhatsappContract: {
|
|
206297
206297
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
206298
206298
|
}, {
|
206299
206299
|
message: import("zod").ZodString;
|
206300
|
-
direction: import("zod").
|
206301
|
-
type: import("zod").
|
206300
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
206301
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
206302
206302
|
readAt: import("zod").ZodDate;
|
206303
206303
|
metadata: import("zod").ZodAny;
|
206304
206304
|
platformId: import("zod").ZodString;
|
@@ -206325,7 +206325,7 @@ export declare const platformWhatsappContract: {
|
|
206325
206325
|
firstResponseTime: import("zod").ZodNumber;
|
206326
206326
|
isLatest: import("zod").ZodBoolean;
|
206327
206327
|
isBotRoom: import("zod").ZodBoolean;
|
206328
|
-
direction: import("zod").
|
206328
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
206329
206329
|
platformContact: import("zod").ZodObject<{
|
206330
206330
|
id: import("zod").ZodString;
|
206331
206331
|
createdAt: import("zod").ZodDate;
|
@@ -209010,7 +209010,7 @@ export declare const platformWhatsappContract: {
|
|
209010
209010
|
integrationId: string;
|
209011
209011
|
} | null;
|
209012
209012
|
};
|
209013
|
-
direction:
|
209013
|
+
direction: "incoming" | "outgoing" | "system";
|
209014
209014
|
status: number;
|
209015
209015
|
createdAt: Date;
|
209016
209016
|
updatedAt: Date;
|
@@ -209439,7 +209439,7 @@ export declare const platformWhatsappContract: {
|
|
209439
209439
|
integrationId: string;
|
209440
209440
|
} | null;
|
209441
209441
|
};
|
209442
|
-
direction:
|
209442
|
+
direction: "incoming" | "outgoing" | "system";
|
209443
209443
|
status: number;
|
209444
209444
|
createdAt: Date;
|
209445
209445
|
updatedAt: Date;
|
@@ -209813,8 +209813,8 @@ export declare const platformWhatsappContract: {
|
|
209813
209813
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
209814
209814
|
}, {
|
209815
209815
|
message: import("zod").ZodString;
|
209816
|
-
direction: import("zod").
|
209817
|
-
type: import("zod").
|
209816
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
209817
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
209818
209818
|
readAt: import("zod").ZodDate;
|
209819
209819
|
metadata: import("zod").ZodAny;
|
209820
209820
|
platformId: import("zod").ZodString;
|
@@ -210480,7 +210480,7 @@ export declare const platformWhatsappContract: {
|
|
210480
210480
|
message: string;
|
210481
210481
|
id: string;
|
210482
210482
|
url: string;
|
210483
|
-
direction:
|
210483
|
+
direction: "incoming" | "outgoing" | "system";
|
210484
210484
|
createdAt: Date;
|
210485
210485
|
updatedAt: Date;
|
210486
210486
|
deletedAt: Date | null;
|
@@ -210642,7 +210642,7 @@ export declare const platformWhatsappContract: {
|
|
210642
210642
|
message: string;
|
210643
210643
|
id: string;
|
210644
210644
|
url: string;
|
210645
|
-
direction:
|
210645
|
+
direction: "incoming" | "outgoing" | "system";
|
210646
210646
|
createdAt: Date;
|
210647
210647
|
updatedAt: Date;
|
210648
210648
|
deletedAt: Date | null;
|
@@ -211445,7 +211445,7 @@ export declare const platformWhatsappContract: {
|
|
211445
211445
|
message: string;
|
211446
211446
|
id: string;
|
211447
211447
|
url: string;
|
211448
|
-
direction:
|
211448
|
+
direction: "incoming" | "outgoing" | "system";
|
211449
211449
|
createdAt: Date;
|
211450
211450
|
updatedAt: Date;
|
211451
211451
|
deletedAt: Date | null;
|
@@ -211648,7 +211648,7 @@ export declare const platformWhatsappContract: {
|
|
211648
211648
|
integrationId: string;
|
211649
211649
|
} | null;
|
211650
211650
|
};
|
211651
|
-
direction:
|
211651
|
+
direction: "incoming" | "outgoing" | "system";
|
211652
211652
|
status: number;
|
211653
211653
|
createdAt: Date;
|
211654
211654
|
updatedAt: Date;
|
@@ -212000,7 +212000,7 @@ export declare const platformWhatsappContract: {
|
|
212000
212000
|
message: string;
|
212001
212001
|
id: string;
|
212002
212002
|
url: string;
|
212003
|
-
direction:
|
212003
|
+
direction: "incoming" | "outgoing" | "system";
|
212004
212004
|
createdAt: Date;
|
212005
212005
|
updatedAt: Date;
|
212006
212006
|
deletedAt: Date | null;
|
@@ -212211,7 +212211,7 @@ export declare const platformWhatsappContract: {
|
|
212211
212211
|
message: string;
|
212212
212212
|
id: string;
|
212213
212213
|
url: string;
|
212214
|
-
direction:
|
212214
|
+
direction: "incoming" | "outgoing" | "system";
|
212215
212215
|
createdAt: Date;
|
212216
212216
|
updatedAt: Date;
|
212217
212217
|
deletedAt: Date | null;
|
@@ -212414,7 +212414,7 @@ export declare const platformWhatsappContract: {
|
|
212414
212414
|
integrationId: string;
|
212415
212415
|
} | null;
|
212416
212416
|
};
|
212417
|
-
direction:
|
212417
|
+
direction: "incoming" | "outgoing" | "system";
|
212418
212418
|
status: number;
|
212419
212419
|
createdAt: Date;
|
212420
212420
|
updatedAt: Date;
|
@@ -212766,7 +212766,7 @@ export declare const platformWhatsappContract: {
|
|
212766
212766
|
message: string;
|
212767
212767
|
id: string;
|
212768
212768
|
url: string;
|
212769
|
-
direction:
|
212769
|
+
direction: "incoming" | "outgoing" | "system";
|
212770
212770
|
createdAt: Date;
|
212771
212771
|
updatedAt: Date;
|
212772
212772
|
deletedAt: Date | null;
|
@@ -212978,7 +212978,7 @@ export declare const platformWhatsappContract: {
|
|
212978
212978
|
message: string;
|
212979
212979
|
id: string;
|
212980
212980
|
url: string;
|
212981
|
-
direction:
|
212981
|
+
direction: "incoming" | "outgoing" | "system";
|
212982
212982
|
createdAt: Date;
|
212983
212983
|
updatedAt: Date;
|
212984
212984
|
deletedAt: Date | null;
|
@@ -213181,7 +213181,7 @@ export declare const platformWhatsappContract: {
|
|
213181
213181
|
integrationId: string;
|
213182
213182
|
} | null;
|
213183
213183
|
};
|
213184
|
-
direction:
|
213184
|
+
direction: "incoming" | "outgoing" | "system";
|
213185
213185
|
status: number;
|
213186
213186
|
createdAt: Date;
|
213187
213187
|
updatedAt: Date;
|
@@ -213533,7 +213533,7 @@ export declare const platformWhatsappContract: {
|
|
213533
213533
|
message: string;
|
213534
213534
|
id: string;
|
213535
213535
|
url: string;
|
213536
|
-
direction:
|
213536
|
+
direction: "incoming" | "outgoing" | "system";
|
213537
213537
|
createdAt: Date;
|
213538
213538
|
updatedAt: Date;
|
213539
213539
|
deletedAt: Date | null;
|
@@ -213744,7 +213744,7 @@ export declare const platformWhatsappContract: {
|
|
213744
213744
|
message: string;
|
213745
213745
|
id: string;
|
213746
213746
|
url: string;
|
213747
|
-
direction:
|
213747
|
+
direction: "incoming" | "outgoing" | "system";
|
213748
213748
|
createdAt: Date;
|
213749
213749
|
updatedAt: Date;
|
213750
213750
|
deletedAt: Date | null;
|
@@ -213947,7 +213947,7 @@ export declare const platformWhatsappContract: {
|
|
213947
213947
|
integrationId: string;
|
213948
213948
|
} | null;
|
213949
213949
|
};
|
213950
|
-
direction:
|
213950
|
+
direction: "incoming" | "outgoing" | "system";
|
213951
213951
|
status: number;
|
213952
213952
|
createdAt: Date;
|
213953
213953
|
updatedAt: Date;
|
@@ -214299,7 +214299,7 @@ export declare const platformWhatsappContract: {
|
|
214299
214299
|
message: string;
|
214300
214300
|
id: string;
|
214301
214301
|
url: string;
|
214302
|
-
direction:
|
214302
|
+
direction: "incoming" | "outgoing" | "system";
|
214303
214303
|
createdAt: Date;
|
214304
214304
|
updatedAt: Date;
|
214305
214305
|
deletedAt: Date | null;
|
@@ -214511,7 +214511,7 @@ export declare const platformWhatsappContract: {
|
|
214511
214511
|
message: string;
|
214512
214512
|
id: string;
|
214513
214513
|
url: string;
|
214514
|
-
direction:
|
214514
|
+
direction: "incoming" | "outgoing" | "system";
|
214515
214515
|
createdAt: Date;
|
214516
214516
|
updatedAt: Date;
|
214517
214517
|
deletedAt: Date | null;
|
@@ -214714,7 +214714,7 @@ export declare const platformWhatsappContract: {
|
|
214714
214714
|
integrationId: string;
|
214715
214715
|
} | null;
|
214716
214716
|
};
|
214717
|
-
direction:
|
214717
|
+
direction: "incoming" | "outgoing" | "system";
|
214718
214718
|
status: number;
|
214719
214719
|
createdAt: Date;
|
214720
214720
|
updatedAt: Date;
|
@@ -215066,7 +215066,7 @@ export declare const platformWhatsappContract: {
|
|
215066
215066
|
message: string;
|
215067
215067
|
id: string;
|
215068
215068
|
url: string;
|
215069
|
-
direction:
|
215069
|
+
direction: "incoming" | "outgoing" | "system";
|
215070
215070
|
createdAt: Date;
|
215071
215071
|
updatedAt: Date;
|
215072
215072
|
deletedAt: Date | null;
|
@@ -215277,7 +215277,7 @@ export declare const platformWhatsappContract: {
|
|
215277
215277
|
message: string;
|
215278
215278
|
id: string;
|
215279
215279
|
url: string;
|
215280
|
-
direction:
|
215280
|
+
direction: "incoming" | "outgoing" | "system";
|
215281
215281
|
createdAt: Date;
|
215282
215282
|
updatedAt: Date;
|
215283
215283
|
deletedAt: Date | null;
|
@@ -215480,7 +215480,7 @@ export declare const platformWhatsappContract: {
|
|
215480
215480
|
integrationId: string;
|
215481
215481
|
} | null;
|
215482
215482
|
};
|
215483
|
-
direction:
|
215483
|
+
direction: "incoming" | "outgoing" | "system";
|
215484
215484
|
status: number;
|
215485
215485
|
createdAt: Date;
|
215486
215486
|
updatedAt: Date;
|
@@ -215832,7 +215832,7 @@ export declare const platformWhatsappContract: {
|
|
215832
215832
|
message: string;
|
215833
215833
|
id: string;
|
215834
215834
|
url: string;
|
215835
|
-
direction:
|
215835
|
+
direction: "incoming" | "outgoing" | "system";
|
215836
215836
|
createdAt: Date;
|
215837
215837
|
updatedAt: Date;
|
215838
215838
|
deletedAt: Date | null;
|
@@ -216046,7 +216046,7 @@ export declare const platformWhatsappContract: {
|
|
216046
216046
|
message: string;
|
216047
216047
|
id: string;
|
216048
216048
|
url: string;
|
216049
|
-
direction:
|
216049
|
+
direction: "incoming" | "outgoing" | "system";
|
216050
216050
|
createdAt: Date;
|
216051
216051
|
updatedAt: Date;
|
216052
216052
|
deletedAt: Date | null;
|
@@ -216249,7 +216249,7 @@ export declare const platformWhatsappContract: {
|
|
216249
216249
|
integrationId: string;
|
216250
216250
|
} | null;
|
216251
216251
|
};
|
216252
|
-
direction:
|
216252
|
+
direction: "incoming" | "outgoing" | "system";
|
216253
216253
|
status: number;
|
216254
216254
|
createdAt: Date;
|
216255
216255
|
updatedAt: Date;
|
@@ -216601,7 +216601,7 @@ export declare const platformWhatsappContract: {
|
|
216601
216601
|
message: string;
|
216602
216602
|
id: string;
|
216603
216603
|
url: string;
|
216604
|
-
direction:
|
216604
|
+
direction: "incoming" | "outgoing" | "system";
|
216605
216605
|
createdAt: Date;
|
216606
216606
|
updatedAt: Date;
|
216607
216607
|
deletedAt: Date | null;
|
@@ -216812,7 +216812,7 @@ export declare const platformWhatsappContract: {
|
|
216812
216812
|
message: string;
|
216813
216813
|
id: string;
|
216814
216814
|
url: string;
|
216815
|
-
direction:
|
216815
|
+
direction: "incoming" | "outgoing" | "system";
|
216816
216816
|
createdAt: Date;
|
216817
216817
|
updatedAt: Date;
|
216818
216818
|
deletedAt: Date | null;
|
@@ -217015,7 +217015,7 @@ export declare const platformWhatsappContract: {
|
|
217015
217015
|
integrationId: string;
|
217016
217016
|
} | null;
|
217017
217017
|
};
|
217018
|
-
direction:
|
217018
|
+
direction: "incoming" | "outgoing" | "system";
|
217019
217019
|
status: number;
|
217020
217020
|
createdAt: Date;
|
217021
217021
|
updatedAt: Date;
|
@@ -217367,7 +217367,7 @@ export declare const platformWhatsappContract: {
|
|
217367
217367
|
message: string;
|
217368
217368
|
id: string;
|
217369
217369
|
url: string;
|
217370
|
-
direction:
|
217370
|
+
direction: "incoming" | "outgoing" | "system";
|
217371
217371
|
createdAt: Date;
|
217372
217372
|
updatedAt: Date;
|
217373
217373
|
deletedAt: Date | null;
|
@@ -217582,7 +217582,7 @@ export declare const platformWhatsappContract: {
|
|
217582
217582
|
message: string;
|
217583
217583
|
id: string;
|
217584
217584
|
url: string;
|
217585
|
-
direction:
|
217585
|
+
direction: "incoming" | "outgoing" | "system";
|
217586
217586
|
createdAt: Date;
|
217587
217587
|
updatedAt: Date;
|
217588
217588
|
deletedAt: Date | null;
|
@@ -217785,7 +217785,7 @@ export declare const platformWhatsappContract: {
|
|
217785
217785
|
integrationId: string;
|
217786
217786
|
} | null;
|
217787
217787
|
};
|
217788
|
-
direction:
|
217788
|
+
direction: "incoming" | "outgoing" | "system";
|
217789
217789
|
status: number;
|
217790
217790
|
createdAt: Date;
|
217791
217791
|
updatedAt: Date;
|
@@ -218137,7 +218137,7 @@ export declare const platformWhatsappContract: {
|
|
218137
218137
|
message: string;
|
218138
218138
|
id: string;
|
218139
218139
|
url: string;
|
218140
|
-
direction:
|
218140
|
+
direction: "incoming" | "outgoing" | "system";
|
218141
218141
|
createdAt: Date;
|
218142
218142
|
updatedAt: Date;
|
218143
218143
|
deletedAt: Date | null;
|
@@ -218348,7 +218348,7 @@ export declare const platformWhatsappContract: {
|
|
218348
218348
|
message: string;
|
218349
218349
|
id: string;
|
218350
218350
|
url: string;
|
218351
|
-
direction:
|
218351
|
+
direction: "incoming" | "outgoing" | "system";
|
218352
218352
|
createdAt: Date;
|
218353
218353
|
updatedAt: Date;
|
218354
218354
|
deletedAt: Date | null;
|
@@ -218551,7 +218551,7 @@ export declare const platformWhatsappContract: {
|
|
218551
218551
|
integrationId: string;
|
218552
218552
|
} | null;
|
218553
218553
|
};
|
218554
|
-
direction:
|
218554
|
+
direction: "incoming" | "outgoing" | "system";
|
218555
218555
|
status: number;
|
218556
218556
|
createdAt: Date;
|
218557
218557
|
updatedAt: Date;
|
@@ -218903,7 +218903,7 @@ export declare const platformWhatsappContract: {
|
|
218903
218903
|
message: string;
|
218904
218904
|
id: string;
|
218905
218905
|
url: string;
|
218906
|
-
direction:
|
218906
|
+
direction: "incoming" | "outgoing" | "system";
|
218907
218907
|
createdAt: Date;
|
218908
218908
|
updatedAt: Date;
|
218909
218909
|
deletedAt: Date | null;
|
@@ -226175,7 +226175,7 @@ export declare const facebookFeedContract: {
|
|
226175
226175
|
lastMessage: import("zod").ZodOptional<import("zod").ZodString>;
|
226176
226176
|
handleTime: import("zod").ZodOptional<import("zod").ZodNumber>;
|
226177
226177
|
isLatest: import("zod").ZodBoolean;
|
226178
|
-
direction: import("zod").
|
226178
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
226179
226179
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
226180
226180
|
createdAt: import("zod").ZodString;
|
226181
226181
|
updatedAt: import("zod").ZodString;
|
@@ -226597,7 +226597,7 @@ export declare const facebookFeedContract: {
|
|
226597
226597
|
connectedUserName?: string | null | undefined;
|
226598
226598
|
connectedUserId?: string | null | undefined;
|
226599
226599
|
};
|
226600
|
-
direction:
|
226600
|
+
direction: "incoming" | "outgoing" | "system";
|
226601
226601
|
createdAt: string;
|
226602
226602
|
updatedAt: string;
|
226603
226603
|
actor: {
|
@@ -226689,7 +226689,7 @@ export declare const facebookFeedContract: {
|
|
226689
226689
|
connectedUserName?: string | null | undefined;
|
226690
226690
|
connectedUserId?: string | null | undefined;
|
226691
226691
|
};
|
226692
|
-
direction:
|
226692
|
+
direction: "incoming" | "outgoing" | "system";
|
226693
226693
|
createdAt: string;
|
226694
226694
|
updatedAt: string;
|
226695
226695
|
actor: {
|
@@ -226734,8 +226734,8 @@ export declare const facebookFeedContract: {
|
|
226734
226734
|
message: import("zod").ZodObject<{
|
226735
226735
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
226736
226736
|
message: import("zod").ZodOptional<import("zod").ZodString>;
|
226737
|
-
direction: import("zod").
|
226738
|
-
type: import("zod").
|
226737
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
226738
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
226739
226739
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
226740
226740
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
226741
226741
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -226792,7 +226792,7 @@ export declare const facebookFeedContract: {
|
|
226792
226792
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
226793
226793
|
}, "strip", import("zod").ZodTypeAny, {
|
226794
226794
|
type: string;
|
226795
|
-
direction:
|
226795
|
+
direction: "incoming" | "outgoing" | "system";
|
226796
226796
|
message?: string | undefined;
|
226797
226797
|
id?: string | undefined;
|
226798
226798
|
url?: string | undefined;
|
@@ -226827,7 +226827,7 @@ export declare const facebookFeedContract: {
|
|
226827
226827
|
editedAt?: string | Date | null | undefined;
|
226828
226828
|
}, {
|
226829
226829
|
type: string;
|
226830
|
-
direction:
|
226830
|
+
direction: "incoming" | "outgoing" | "system";
|
226831
226831
|
message?: string | undefined;
|
226832
226832
|
id?: string | undefined;
|
226833
226833
|
url?: string | undefined;
|
@@ -226875,7 +226875,7 @@ export declare const facebookFeedContract: {
|
|
226875
226875
|
}>, "strip", import("zod").ZodTypeAny, {
|
226876
226876
|
message: {
|
226877
226877
|
type: string;
|
226878
|
-
direction:
|
226878
|
+
direction: "incoming" | "outgoing" | "system";
|
226879
226879
|
message?: string | undefined;
|
226880
226880
|
id?: string | undefined;
|
226881
226881
|
url?: string | undefined;
|
@@ -226960,7 +226960,7 @@ export declare const facebookFeedContract: {
|
|
226960
226960
|
connectedUserName?: string | null | undefined;
|
226961
226961
|
connectedUserId?: string | null | undefined;
|
226962
226962
|
};
|
226963
|
-
direction:
|
226963
|
+
direction: "incoming" | "outgoing" | "system";
|
226964
226964
|
createdAt: string;
|
226965
226965
|
updatedAt: string;
|
226966
226966
|
actor: {
|
@@ -227010,7 +227010,7 @@ export declare const facebookFeedContract: {
|
|
227010
227010
|
}, {
|
227011
227011
|
message: {
|
227012
227012
|
type: string;
|
227013
|
-
direction:
|
227013
|
+
direction: "incoming" | "outgoing" | "system";
|
227014
227014
|
message?: string | undefined;
|
227015
227015
|
id?: string | undefined;
|
227016
227016
|
url?: string | undefined;
|
@@ -227095,7 +227095,7 @@ export declare const facebookFeedContract: {
|
|
227095
227095
|
connectedUserName?: string | null | undefined;
|
227096
227096
|
connectedUserId?: string | null | undefined;
|
227097
227097
|
};
|
227098
|
-
direction:
|
227098
|
+
direction: "incoming" | "outgoing" | "system";
|
227099
227099
|
createdAt: string;
|
227100
227100
|
updatedAt: string;
|
227101
227101
|
actor: {
|
@@ -227156,8 +227156,8 @@ export declare const facebookFeedContract: {
|
|
227156
227156
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
227157
227157
|
}, {
|
227158
227158
|
message: import("zod").ZodString;
|
227159
|
-
direction: import("zod").
|
227160
|
-
type: import("zod").
|
227159
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
227160
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
227161
227161
|
readAt: import("zod").ZodDate;
|
227162
227162
|
metadata: import("zod").ZodAny;
|
227163
227163
|
platformId: import("zod").ZodString;
|
@@ -227184,7 +227184,7 @@ export declare const facebookFeedContract: {
|
|
227184
227184
|
firstResponseTime: import("zod").ZodNumber;
|
227185
227185
|
isLatest: import("zod").ZodBoolean;
|
227186
227186
|
isBotRoom: import("zod").ZodBoolean;
|
227187
|
-
direction: import("zod").
|
227187
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
227188
227188
|
platformContact: import("zod").ZodObject<{
|
227189
227189
|
id: import("zod").ZodString;
|
227190
227190
|
createdAt: import("zod").ZodDate;
|
@@ -229869,7 +229869,7 @@ export declare const facebookFeedContract: {
|
|
229869
229869
|
integrationId: string;
|
229870
229870
|
} | null;
|
229871
229871
|
};
|
229872
|
-
direction:
|
229872
|
+
direction: "incoming" | "outgoing" | "system";
|
229873
229873
|
status: number;
|
229874
229874
|
createdAt: Date;
|
229875
229875
|
updatedAt: Date;
|
@@ -230298,7 +230298,7 @@ export declare const facebookFeedContract: {
|
|
230298
230298
|
integrationId: string;
|
230299
230299
|
} | null;
|
230300
230300
|
};
|
230301
|
-
direction:
|
230301
|
+
direction: "incoming" | "outgoing" | "system";
|
230302
230302
|
status: number;
|
230303
230303
|
createdAt: Date;
|
230304
230304
|
updatedAt: Date;
|
@@ -230672,8 +230672,8 @@ export declare const facebookFeedContract: {
|
|
230672
230672
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
230673
230673
|
}, {
|
230674
230674
|
message: import("zod").ZodString;
|
230675
|
-
direction: import("zod").
|
230676
|
-
type: import("zod").
|
230675
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
230676
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
230677
230677
|
readAt: import("zod").ZodDate;
|
230678
230678
|
metadata: import("zod").ZodAny;
|
230679
230679
|
platformId: import("zod").ZodString;
|
@@ -231339,7 +231339,7 @@ export declare const facebookFeedContract: {
|
|
231339
231339
|
message: string;
|
231340
231340
|
id: string;
|
231341
231341
|
url: string;
|
231342
|
-
direction:
|
231342
|
+
direction: "incoming" | "outgoing" | "system";
|
231343
231343
|
createdAt: Date;
|
231344
231344
|
updatedAt: Date;
|
231345
231345
|
deletedAt: Date | null;
|
@@ -231501,7 +231501,7 @@ export declare const facebookFeedContract: {
|
|
231501
231501
|
message: string;
|
231502
231502
|
id: string;
|
231503
231503
|
url: string;
|
231504
|
-
direction:
|
231504
|
+
direction: "incoming" | "outgoing" | "system";
|
231505
231505
|
createdAt: Date;
|
231506
231506
|
updatedAt: Date;
|
231507
231507
|
deletedAt: Date | null;
|
@@ -232307,8 +232307,8 @@ export declare const facebookFeedContract: {
|
|
232307
232307
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
232308
232308
|
}, {
|
232309
232309
|
message: import("zod").ZodString;
|
232310
|
-
direction: import("zod").
|
232311
|
-
type: import("zod").
|
232310
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
232311
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
232312
232312
|
readAt: import("zod").ZodDate;
|
232313
232313
|
metadata: import("zod").ZodAny;
|
232314
232314
|
platformId: import("zod").ZodString;
|
@@ -232335,7 +232335,7 @@ export declare const facebookFeedContract: {
|
|
232335
232335
|
firstResponseTime: import("zod").ZodNumber;
|
232336
232336
|
isLatest: import("zod").ZodBoolean;
|
232337
232337
|
isBotRoom: import("zod").ZodBoolean;
|
232338
|
-
direction: import("zod").
|
232338
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
232339
232339
|
platformContact: import("zod").ZodObject<{
|
232340
232340
|
id: import("zod").ZodString;
|
232341
232341
|
createdAt: import("zod").ZodDate;
|
@@ -235020,7 +235020,7 @@ export declare const facebookFeedContract: {
|
|
235020
235020
|
integrationId: string;
|
235021
235021
|
} | null;
|
235022
235022
|
};
|
235023
|
-
direction:
|
235023
|
+
direction: "incoming" | "outgoing" | "system";
|
235024
235024
|
status: number;
|
235025
235025
|
createdAt: Date;
|
235026
235026
|
updatedAt: Date;
|
@@ -235449,7 +235449,7 @@ export declare const facebookFeedContract: {
|
|
235449
235449
|
integrationId: string;
|
235450
235450
|
} | null;
|
235451
235451
|
};
|
235452
|
-
direction:
|
235452
|
+
direction: "incoming" | "outgoing" | "system";
|
235453
235453
|
status: number;
|
235454
235454
|
createdAt: Date;
|
235455
235455
|
updatedAt: Date;
|
@@ -235823,8 +235823,8 @@ export declare const facebookFeedContract: {
|
|
235823
235823
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
235824
235824
|
}, {
|
235825
235825
|
message: import("zod").ZodString;
|
235826
|
-
direction: import("zod").
|
235827
|
-
type: import("zod").
|
235826
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
235827
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
235828
235828
|
readAt: import("zod").ZodDate;
|
235829
235829
|
metadata: import("zod").ZodAny;
|
235830
235830
|
platformId: import("zod").ZodString;
|
@@ -236490,7 +236490,7 @@ export declare const facebookFeedContract: {
|
|
236490
236490
|
message: string;
|
236491
236491
|
id: string;
|
236492
236492
|
url: string;
|
236493
|
-
direction:
|
236493
|
+
direction: "incoming" | "outgoing" | "system";
|
236494
236494
|
createdAt: Date;
|
236495
236495
|
updatedAt: Date;
|
236496
236496
|
deletedAt: Date | null;
|
@@ -236652,7 +236652,7 @@ export declare const facebookFeedContract: {
|
|
236652
236652
|
message: string;
|
236653
236653
|
id: string;
|
236654
236654
|
url: string;
|
236655
|
-
direction:
|
236655
|
+
direction: "incoming" | "outgoing" | "system";
|
236656
236656
|
createdAt: Date;
|
236657
236657
|
updatedAt: Date;
|
236658
236658
|
deletedAt: Date | null;
|
@@ -237455,7 +237455,7 @@ export declare const facebookFeedContract: {
|
|
237455
237455
|
message: string;
|
237456
237456
|
id: string;
|
237457
237457
|
url: string;
|
237458
|
-
direction:
|
237458
|
+
direction: "incoming" | "outgoing" | "system";
|
237459
237459
|
createdAt: Date;
|
237460
237460
|
updatedAt: Date;
|
237461
237461
|
deletedAt: Date | null;
|
@@ -237658,7 +237658,7 @@ export declare const facebookFeedContract: {
|
|
237658
237658
|
integrationId: string;
|
237659
237659
|
} | null;
|
237660
237660
|
};
|
237661
|
-
direction:
|
237661
|
+
direction: "incoming" | "outgoing" | "system";
|
237662
237662
|
status: number;
|
237663
237663
|
createdAt: Date;
|
237664
237664
|
updatedAt: Date;
|
@@ -238010,7 +238010,7 @@ export declare const facebookFeedContract: {
|
|
238010
238010
|
message: string;
|
238011
238011
|
id: string;
|
238012
238012
|
url: string;
|
238013
|
-
direction:
|
238013
|
+
direction: "incoming" | "outgoing" | "system";
|
238014
238014
|
createdAt: Date;
|
238015
238015
|
updatedAt: Date;
|
238016
238016
|
deletedAt: Date | null;
|
@@ -238221,7 +238221,7 @@ export declare const facebookFeedContract: {
|
|
238221
238221
|
message: string;
|
238222
238222
|
id: string;
|
238223
238223
|
url: string;
|
238224
|
-
direction:
|
238224
|
+
direction: "incoming" | "outgoing" | "system";
|
238225
238225
|
createdAt: Date;
|
238226
238226
|
updatedAt: Date;
|
238227
238227
|
deletedAt: Date | null;
|
@@ -238424,7 +238424,7 @@ export declare const facebookFeedContract: {
|
|
238424
238424
|
integrationId: string;
|
238425
238425
|
} | null;
|
238426
238426
|
};
|
238427
|
-
direction:
|
238427
|
+
direction: "incoming" | "outgoing" | "system";
|
238428
238428
|
status: number;
|
238429
238429
|
createdAt: Date;
|
238430
238430
|
updatedAt: Date;
|
@@ -238776,7 +238776,7 @@ export declare const facebookFeedContract: {
|
|
238776
238776
|
message: string;
|
238777
238777
|
id: string;
|
238778
238778
|
url: string;
|
238779
|
-
direction:
|
238779
|
+
direction: "incoming" | "outgoing" | "system";
|
238780
238780
|
createdAt: Date;
|
238781
238781
|
updatedAt: Date;
|
238782
238782
|
deletedAt: Date | null;
|
@@ -238988,7 +238988,7 @@ export declare const facebookFeedContract: {
|
|
238988
238988
|
message: string;
|
238989
238989
|
id: string;
|
238990
238990
|
url: string;
|
238991
|
-
direction:
|
238991
|
+
direction: "incoming" | "outgoing" | "system";
|
238992
238992
|
createdAt: Date;
|
238993
238993
|
updatedAt: Date;
|
238994
238994
|
deletedAt: Date | null;
|
@@ -239191,7 +239191,7 @@ export declare const facebookFeedContract: {
|
|
239191
239191
|
integrationId: string;
|
239192
239192
|
} | null;
|
239193
239193
|
};
|
239194
|
-
direction:
|
239194
|
+
direction: "incoming" | "outgoing" | "system";
|
239195
239195
|
status: number;
|
239196
239196
|
createdAt: Date;
|
239197
239197
|
updatedAt: Date;
|
@@ -239543,7 +239543,7 @@ export declare const facebookFeedContract: {
|
|
239543
239543
|
message: string;
|
239544
239544
|
id: string;
|
239545
239545
|
url: string;
|
239546
|
-
direction:
|
239546
|
+
direction: "incoming" | "outgoing" | "system";
|
239547
239547
|
createdAt: Date;
|
239548
239548
|
updatedAt: Date;
|
239549
239549
|
deletedAt: Date | null;
|
@@ -239754,7 +239754,7 @@ export declare const facebookFeedContract: {
|
|
239754
239754
|
message: string;
|
239755
239755
|
id: string;
|
239756
239756
|
url: string;
|
239757
|
-
direction:
|
239757
|
+
direction: "incoming" | "outgoing" | "system";
|
239758
239758
|
createdAt: Date;
|
239759
239759
|
updatedAt: Date;
|
239760
239760
|
deletedAt: Date | null;
|
@@ -239957,7 +239957,7 @@ export declare const facebookFeedContract: {
|
|
239957
239957
|
integrationId: string;
|
239958
239958
|
} | null;
|
239959
239959
|
};
|
239960
|
-
direction:
|
239960
|
+
direction: "incoming" | "outgoing" | "system";
|
239961
239961
|
status: number;
|
239962
239962
|
createdAt: Date;
|
239963
239963
|
updatedAt: Date;
|
@@ -240309,7 +240309,7 @@ export declare const facebookFeedContract: {
|
|
240309
240309
|
message: string;
|
240310
240310
|
id: string;
|
240311
240311
|
url: string;
|
240312
|
-
direction:
|
240312
|
+
direction: "incoming" | "outgoing" | "system";
|
240313
240313
|
createdAt: Date;
|
240314
240314
|
updatedAt: Date;
|
240315
240315
|
deletedAt: Date | null;
|
@@ -240521,7 +240521,7 @@ export declare const facebookFeedContract: {
|
|
240521
240521
|
message: string;
|
240522
240522
|
id: string;
|
240523
240523
|
url: string;
|
240524
|
-
direction:
|
240524
|
+
direction: "incoming" | "outgoing" | "system";
|
240525
240525
|
createdAt: Date;
|
240526
240526
|
updatedAt: Date;
|
240527
240527
|
deletedAt: Date | null;
|
@@ -240724,7 +240724,7 @@ export declare const facebookFeedContract: {
|
|
240724
240724
|
integrationId: string;
|
240725
240725
|
} | null;
|
240726
240726
|
};
|
240727
|
-
direction:
|
240727
|
+
direction: "incoming" | "outgoing" | "system";
|
240728
240728
|
status: number;
|
240729
240729
|
createdAt: Date;
|
240730
240730
|
updatedAt: Date;
|
@@ -241076,7 +241076,7 @@ export declare const facebookFeedContract: {
|
|
241076
241076
|
message: string;
|
241077
241077
|
id: string;
|
241078
241078
|
url: string;
|
241079
|
-
direction:
|
241079
|
+
direction: "incoming" | "outgoing" | "system";
|
241080
241080
|
createdAt: Date;
|
241081
241081
|
updatedAt: Date;
|
241082
241082
|
deletedAt: Date | null;
|
@@ -241287,7 +241287,7 @@ export declare const facebookFeedContract: {
|
|
241287
241287
|
message: string;
|
241288
241288
|
id: string;
|
241289
241289
|
url: string;
|
241290
|
-
direction:
|
241290
|
+
direction: "incoming" | "outgoing" | "system";
|
241291
241291
|
createdAt: Date;
|
241292
241292
|
updatedAt: Date;
|
241293
241293
|
deletedAt: Date | null;
|
@@ -241490,7 +241490,7 @@ export declare const facebookFeedContract: {
|
|
241490
241490
|
integrationId: string;
|
241491
241491
|
} | null;
|
241492
241492
|
};
|
241493
|
-
direction:
|
241493
|
+
direction: "incoming" | "outgoing" | "system";
|
241494
241494
|
status: number;
|
241495
241495
|
createdAt: Date;
|
241496
241496
|
updatedAt: Date;
|
@@ -241842,7 +241842,7 @@ export declare const facebookFeedContract: {
|
|
241842
241842
|
message: string;
|
241843
241843
|
id: string;
|
241844
241844
|
url: string;
|
241845
|
-
direction:
|
241845
|
+
direction: "incoming" | "outgoing" | "system";
|
241846
241846
|
createdAt: Date;
|
241847
241847
|
updatedAt: Date;
|
241848
241848
|
deletedAt: Date | null;
|
@@ -242056,7 +242056,7 @@ export declare const facebookFeedContract: {
|
|
242056
242056
|
message: string;
|
242057
242057
|
id: string;
|
242058
242058
|
url: string;
|
242059
|
-
direction:
|
242059
|
+
direction: "incoming" | "outgoing" | "system";
|
242060
242060
|
createdAt: Date;
|
242061
242061
|
updatedAt: Date;
|
242062
242062
|
deletedAt: Date | null;
|
@@ -242259,7 +242259,7 @@ export declare const facebookFeedContract: {
|
|
242259
242259
|
integrationId: string;
|
242260
242260
|
} | null;
|
242261
242261
|
};
|
242262
|
-
direction:
|
242262
|
+
direction: "incoming" | "outgoing" | "system";
|
242263
242263
|
status: number;
|
242264
242264
|
createdAt: Date;
|
242265
242265
|
updatedAt: Date;
|
@@ -242611,7 +242611,7 @@ export declare const facebookFeedContract: {
|
|
242611
242611
|
message: string;
|
242612
242612
|
id: string;
|
242613
242613
|
url: string;
|
242614
|
-
direction:
|
242614
|
+
direction: "incoming" | "outgoing" | "system";
|
242615
242615
|
createdAt: Date;
|
242616
242616
|
updatedAt: Date;
|
242617
242617
|
deletedAt: Date | null;
|
@@ -242822,7 +242822,7 @@ export declare const facebookFeedContract: {
|
|
242822
242822
|
message: string;
|
242823
242823
|
id: string;
|
242824
242824
|
url: string;
|
242825
|
-
direction:
|
242825
|
+
direction: "incoming" | "outgoing" | "system";
|
242826
242826
|
createdAt: Date;
|
242827
242827
|
updatedAt: Date;
|
242828
242828
|
deletedAt: Date | null;
|
@@ -243025,7 +243025,7 @@ export declare const facebookFeedContract: {
|
|
243025
243025
|
integrationId: string;
|
243026
243026
|
} | null;
|
243027
243027
|
};
|
243028
|
-
direction:
|
243028
|
+
direction: "incoming" | "outgoing" | "system";
|
243029
243029
|
status: number;
|
243030
243030
|
createdAt: Date;
|
243031
243031
|
updatedAt: Date;
|
@@ -243377,7 +243377,7 @@ export declare const facebookFeedContract: {
|
|
243377
243377
|
message: string;
|
243378
243378
|
id: string;
|
243379
243379
|
url: string;
|
243380
|
-
direction:
|
243380
|
+
direction: "incoming" | "outgoing" | "system";
|
243381
243381
|
createdAt: Date;
|
243382
243382
|
updatedAt: Date;
|
243383
243383
|
deletedAt: Date | null;
|
@@ -243592,7 +243592,7 @@ export declare const facebookFeedContract: {
|
|
243592
243592
|
message: string;
|
243593
243593
|
id: string;
|
243594
243594
|
url: string;
|
243595
|
-
direction:
|
243595
|
+
direction: "incoming" | "outgoing" | "system";
|
243596
243596
|
createdAt: Date;
|
243597
243597
|
updatedAt: Date;
|
243598
243598
|
deletedAt: Date | null;
|
@@ -243795,7 +243795,7 @@ export declare const facebookFeedContract: {
|
|
243795
243795
|
integrationId: string;
|
243796
243796
|
} | null;
|
243797
243797
|
};
|
243798
|
-
direction:
|
243798
|
+
direction: "incoming" | "outgoing" | "system";
|
243799
243799
|
status: number;
|
243800
243800
|
createdAt: Date;
|
243801
243801
|
updatedAt: Date;
|
@@ -244147,7 +244147,7 @@ export declare const facebookFeedContract: {
|
|
244147
244147
|
message: string;
|
244148
244148
|
id: string;
|
244149
244149
|
url: string;
|
244150
|
-
direction:
|
244150
|
+
direction: "incoming" | "outgoing" | "system";
|
244151
244151
|
createdAt: Date;
|
244152
244152
|
updatedAt: Date;
|
244153
244153
|
deletedAt: Date | null;
|
@@ -244358,7 +244358,7 @@ export declare const facebookFeedContract: {
|
|
244358
244358
|
message: string;
|
244359
244359
|
id: string;
|
244360
244360
|
url: string;
|
244361
|
-
direction:
|
244361
|
+
direction: "incoming" | "outgoing" | "system";
|
244362
244362
|
createdAt: Date;
|
244363
244363
|
updatedAt: Date;
|
244364
244364
|
deletedAt: Date | null;
|
@@ -244561,7 +244561,7 @@ export declare const facebookFeedContract: {
|
|
244561
244561
|
integrationId: string;
|
244562
244562
|
} | null;
|
244563
244563
|
};
|
244564
|
-
direction:
|
244564
|
+
direction: "incoming" | "outgoing" | "system";
|
244565
244565
|
status: number;
|
244566
244566
|
createdAt: Date;
|
244567
244567
|
updatedAt: Date;
|
@@ -244913,7 +244913,7 @@ export declare const facebookFeedContract: {
|
|
244913
244913
|
message: string;
|
244914
244914
|
id: string;
|
244915
244915
|
url: string;
|
244916
|
-
direction:
|
244916
|
+
direction: "incoming" | "outgoing" | "system";
|
244917
244917
|
createdAt: Date;
|
244918
244918
|
updatedAt: Date;
|
244919
244919
|
deletedAt: Date | null;
|
@@ -245506,8 +245506,8 @@ export declare const facebookFeedContract: {
|
|
245506
245506
|
message: import("zod").ZodObject<{
|
245507
245507
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
245508
245508
|
message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
245509
|
-
direction: import("zod").
|
245510
|
-
type: import("zod").
|
245509
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
245510
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
245511
245511
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
245512
245512
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
245513
245513
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -245560,7 +245560,7 @@ export declare const facebookFeedContract: {
|
|
245560
245560
|
feedPostId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
245561
245561
|
}, "strip", import("zod").ZodTypeAny, {
|
245562
245562
|
type: string;
|
245563
|
-
direction:
|
245563
|
+
direction: "incoming" | "outgoing" | "system";
|
245564
245564
|
message?: string | null | undefined;
|
245565
245565
|
id?: string | undefined;
|
245566
245566
|
url?: string | null | undefined;
|
@@ -245591,7 +245591,7 @@ export declare const facebookFeedContract: {
|
|
245591
245591
|
feedPostId?: string | null | undefined;
|
245592
245592
|
}, {
|
245593
245593
|
type: string;
|
245594
|
-
direction:
|
245594
|
+
direction: "incoming" | "outgoing" | "system";
|
245595
245595
|
message?: string | null | undefined;
|
245596
245596
|
id?: string | undefined;
|
245597
245597
|
url?: string | null | undefined;
|
@@ -245624,7 +245624,7 @@ export declare const facebookFeedContract: {
|
|
245624
245624
|
}, "strip", import("zod").ZodTypeAny, {
|
245625
245625
|
message: {
|
245626
245626
|
type: string;
|
245627
|
-
direction:
|
245627
|
+
direction: "incoming" | "outgoing" | "system";
|
245628
245628
|
message?: string | null | undefined;
|
245629
245629
|
id?: string | undefined;
|
245630
245630
|
url?: string | null | undefined;
|
@@ -245709,7 +245709,7 @@ export declare const facebookFeedContract: {
|
|
245709
245709
|
}, {
|
245710
245710
|
message: {
|
245711
245711
|
type: string;
|
245712
|
-
direction:
|
245712
|
+
direction: "incoming" | "outgoing" | "system";
|
245713
245713
|
message?: string | null | undefined;
|
245714
245714
|
id?: string | undefined;
|
245715
245715
|
url?: string | null | undefined;
|
@@ -246155,8 +246155,8 @@ export declare const facebookFeedContract: {
|
|
246155
246155
|
message: import("zod").ZodObject<{
|
246156
246156
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
246157
246157
|
message: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
246158
|
-
direction: import("zod").
|
246159
|
-
type: import("zod").
|
246158
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
246159
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
246160
246160
|
readAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString]>>>;
|
246161
246161
|
metadata: import("zod").ZodOptional<import("zod").ZodAny>;
|
246162
246162
|
platformId: import("zod").ZodOptional<import("zod").ZodString>;
|
@@ -246209,7 +246209,7 @@ export declare const facebookFeedContract: {
|
|
246209
246209
|
feedPostId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
246210
246210
|
}, "strip", import("zod").ZodTypeAny, {
|
246211
246211
|
type: string;
|
246212
|
-
direction:
|
246212
|
+
direction: "incoming" | "outgoing" | "system";
|
246213
246213
|
message?: string | null | undefined;
|
246214
246214
|
id?: string | undefined;
|
246215
246215
|
url?: string | null | undefined;
|
@@ -246240,7 +246240,7 @@ export declare const facebookFeedContract: {
|
|
246240
246240
|
feedPostId?: string | null | undefined;
|
246241
246241
|
}, {
|
246242
246242
|
type: string;
|
246243
|
-
direction:
|
246243
|
+
direction: "incoming" | "outgoing" | "system";
|
246244
246244
|
message?: string | null | undefined;
|
246245
246245
|
id?: string | undefined;
|
246246
246246
|
url?: string | null | undefined;
|
@@ -246273,7 +246273,7 @@ export declare const facebookFeedContract: {
|
|
246273
246273
|
}, "strip", import("zod").ZodTypeAny, {
|
246274
246274
|
message: {
|
246275
246275
|
type: string;
|
246276
|
-
direction:
|
246276
|
+
direction: "incoming" | "outgoing" | "system";
|
246277
246277
|
message?: string | null | undefined;
|
246278
246278
|
id?: string | undefined;
|
246279
246279
|
url?: string | null | undefined;
|
@@ -246358,7 +246358,7 @@ export declare const facebookFeedContract: {
|
|
246358
246358
|
}, {
|
246359
246359
|
message: {
|
246360
246360
|
type: string;
|
246361
|
-
direction:
|
246361
|
+
direction: "incoming" | "outgoing" | "system";
|
246362
246362
|
message?: string | null | undefined;
|
246363
246363
|
id?: string | undefined;
|
246364
246364
|
url?: string | null | undefined;
|
@@ -246505,7 +246505,7 @@ export declare const feedPostContract: {
|
|
246505
246505
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
246506
246506
|
}, {
|
246507
246507
|
message: import("zod").ZodNullable<import("zod").ZodString>;
|
246508
|
-
type: import("zod").ZodUnion<[import("zod").ZodEnum<[
|
246508
|
+
type: import("zod").ZodUnion<[import("zod").ZodEnum<["text", "added_photos", "added_video", "shared_story", "mobile_status_update", "no_data"]>, import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>]>;
|
246509
246509
|
metadata: import("zod").ZodAny;
|
246510
246510
|
platformId: import("zod").ZodString;
|
246511
246511
|
platformMessageId: import("zod").ZodString;
|
@@ -249517,8 +249517,8 @@ export declare const feedPostContract: {
|
|
249517
249517
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
249518
249518
|
}, {
|
249519
249519
|
message: import("zod").ZodString;
|
249520
|
-
direction: import("zod").
|
249521
|
-
type: import("zod").
|
249520
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
249521
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
249522
249522
|
readAt: import("zod").ZodDate;
|
249523
249523
|
metadata: import("zod").ZodAny;
|
249524
249524
|
platformId: import("zod").ZodString;
|
@@ -249545,7 +249545,7 @@ export declare const feedPostContract: {
|
|
249545
249545
|
firstResponseTime: import("zod").ZodNumber;
|
249546
249546
|
isLatest: import("zod").ZodBoolean;
|
249547
249547
|
isBotRoom: import("zod").ZodBoolean;
|
249548
|
-
direction: import("zod").
|
249548
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
249549
249549
|
platformContact: import("zod").ZodObject<{
|
249550
249550
|
id: import("zod").ZodString;
|
249551
249551
|
createdAt: import("zod").ZodDate;
|
@@ -252230,7 +252230,7 @@ export declare const feedPostContract: {
|
|
252230
252230
|
integrationId: string;
|
252231
252231
|
} | null;
|
252232
252232
|
};
|
252233
|
-
direction:
|
252233
|
+
direction: "incoming" | "outgoing" | "system";
|
252234
252234
|
status: number;
|
252235
252235
|
createdAt: Date;
|
252236
252236
|
updatedAt: Date;
|
@@ -252659,7 +252659,7 @@ export declare const feedPostContract: {
|
|
252659
252659
|
integrationId: string;
|
252660
252660
|
} | null;
|
252661
252661
|
};
|
252662
|
-
direction:
|
252662
|
+
direction: "incoming" | "outgoing" | "system";
|
252663
252663
|
status: number;
|
252664
252664
|
createdAt: Date;
|
252665
252665
|
updatedAt: Date;
|
@@ -253033,8 +253033,8 @@ export declare const feedPostContract: {
|
|
253033
253033
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
253034
253034
|
}, {
|
253035
253035
|
message: import("zod").ZodString;
|
253036
|
-
direction: import("zod").
|
253037
|
-
type: import("zod").
|
253036
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
253037
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
253038
253038
|
readAt: import("zod").ZodDate;
|
253039
253039
|
metadata: import("zod").ZodAny;
|
253040
253040
|
platformId: import("zod").ZodString;
|
@@ -253700,7 +253700,7 @@ export declare const feedPostContract: {
|
|
253700
253700
|
message: string;
|
253701
253701
|
id: string;
|
253702
253702
|
url: string;
|
253703
|
-
direction:
|
253703
|
+
direction: "incoming" | "outgoing" | "system";
|
253704
253704
|
createdAt: Date;
|
253705
253705
|
updatedAt: Date;
|
253706
253706
|
deletedAt: Date | null;
|
@@ -253862,7 +253862,7 @@ export declare const feedPostContract: {
|
|
253862
253862
|
message: string;
|
253863
253863
|
id: string;
|
253864
253864
|
url: string;
|
253865
|
-
direction:
|
253865
|
+
direction: "incoming" | "outgoing" | "system";
|
253866
253866
|
createdAt: Date;
|
253867
253867
|
updatedAt: Date;
|
253868
253868
|
deletedAt: Date | null;
|
@@ -255725,8 +255725,8 @@ export declare const feedPostContract: {
|
|
255725
255725
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
255726
255726
|
}, {
|
255727
255727
|
message: import("zod").ZodString;
|
255728
|
-
direction: import("zod").
|
255729
|
-
type: import("zod").
|
255728
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
255729
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
255730
255730
|
readAt: import("zod").ZodDate;
|
255731
255731
|
metadata: import("zod").ZodAny;
|
255732
255732
|
platformId: import("zod").ZodString;
|
@@ -255753,7 +255753,7 @@ export declare const feedPostContract: {
|
|
255753
255753
|
firstResponseTime: import("zod").ZodNumber;
|
255754
255754
|
isLatest: import("zod").ZodBoolean;
|
255755
255755
|
isBotRoom: import("zod").ZodBoolean;
|
255756
|
-
direction: import("zod").
|
255756
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
255757
255757
|
platformContact: import("zod").ZodObject<{
|
255758
255758
|
id: import("zod").ZodString;
|
255759
255759
|
createdAt: import("zod").ZodDate;
|
@@ -258438,7 +258438,7 @@ export declare const feedPostContract: {
|
|
258438
258438
|
integrationId: string;
|
258439
258439
|
} | null;
|
258440
258440
|
};
|
258441
|
-
direction:
|
258441
|
+
direction: "incoming" | "outgoing" | "system";
|
258442
258442
|
status: number;
|
258443
258443
|
createdAt: Date;
|
258444
258444
|
updatedAt: Date;
|
@@ -258867,7 +258867,7 @@ export declare const feedPostContract: {
|
|
258867
258867
|
integrationId: string;
|
258868
258868
|
} | null;
|
258869
258869
|
};
|
258870
|
-
direction:
|
258870
|
+
direction: "incoming" | "outgoing" | "system";
|
258871
258871
|
status: number;
|
258872
258872
|
createdAt: Date;
|
258873
258873
|
updatedAt: Date;
|
@@ -259241,8 +259241,8 @@ export declare const feedPostContract: {
|
|
259241
259241
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
259242
259242
|
}, {
|
259243
259243
|
message: import("zod").ZodString;
|
259244
|
-
direction: import("zod").
|
259245
|
-
type: import("zod").
|
259244
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
259245
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
259246
259246
|
readAt: import("zod").ZodDate;
|
259247
259247
|
metadata: import("zod").ZodAny;
|
259248
259248
|
platformId: import("zod").ZodString;
|
@@ -259908,7 +259908,7 @@ export declare const feedPostContract: {
|
|
259908
259908
|
message: string;
|
259909
259909
|
id: string;
|
259910
259910
|
url: string;
|
259911
|
-
direction:
|
259911
|
+
direction: "incoming" | "outgoing" | "system";
|
259912
259912
|
createdAt: Date;
|
259913
259913
|
updatedAt: Date;
|
259914
259914
|
deletedAt: Date | null;
|
@@ -260070,7 +260070,7 @@ export declare const feedPostContract: {
|
|
260070
260070
|
message: string;
|
260071
260071
|
id: string;
|
260072
260072
|
url: string;
|
260073
|
-
direction:
|
260073
|
+
direction: "incoming" | "outgoing" | "system";
|
260074
260074
|
createdAt: Date;
|
260075
260075
|
updatedAt: Date;
|
260076
260076
|
deletedAt: Date | null;
|
@@ -260873,7 +260873,7 @@ export declare const feedPostContract: {
|
|
260873
260873
|
message: string;
|
260874
260874
|
id: string;
|
260875
260875
|
url: string;
|
260876
|
-
direction:
|
260876
|
+
direction: "incoming" | "outgoing" | "system";
|
260877
260877
|
createdAt: Date;
|
260878
260878
|
updatedAt: Date;
|
260879
260879
|
deletedAt: Date | null;
|
@@ -261076,7 +261076,7 @@ export declare const feedPostContract: {
|
|
261076
261076
|
integrationId: string;
|
261077
261077
|
} | null;
|
261078
261078
|
};
|
261079
|
-
direction:
|
261079
|
+
direction: "incoming" | "outgoing" | "system";
|
261080
261080
|
status: number;
|
261081
261081
|
createdAt: Date;
|
261082
261082
|
updatedAt: Date;
|
@@ -261428,7 +261428,7 @@ export declare const feedPostContract: {
|
|
261428
261428
|
message: string;
|
261429
261429
|
id: string;
|
261430
261430
|
url: string;
|
261431
|
-
direction:
|
261431
|
+
direction: "incoming" | "outgoing" | "system";
|
261432
261432
|
createdAt: Date;
|
261433
261433
|
updatedAt: Date;
|
261434
261434
|
deletedAt: Date | null;
|
@@ -261639,7 +261639,7 @@ export declare const feedPostContract: {
|
|
261639
261639
|
message: string;
|
261640
261640
|
id: string;
|
261641
261641
|
url: string;
|
261642
|
-
direction:
|
261642
|
+
direction: "incoming" | "outgoing" | "system";
|
261643
261643
|
createdAt: Date;
|
261644
261644
|
updatedAt: Date;
|
261645
261645
|
deletedAt: Date | null;
|
@@ -261842,7 +261842,7 @@ export declare const feedPostContract: {
|
|
261842
261842
|
integrationId: string;
|
261843
261843
|
} | null;
|
261844
261844
|
};
|
261845
|
-
direction:
|
261845
|
+
direction: "incoming" | "outgoing" | "system";
|
261846
261846
|
status: number;
|
261847
261847
|
createdAt: Date;
|
261848
261848
|
updatedAt: Date;
|
@@ -262194,7 +262194,7 @@ export declare const feedPostContract: {
|
|
262194
262194
|
message: string;
|
262195
262195
|
id: string;
|
262196
262196
|
url: string;
|
262197
|
-
direction:
|
262197
|
+
direction: "incoming" | "outgoing" | "system";
|
262198
262198
|
createdAt: Date;
|
262199
262199
|
updatedAt: Date;
|
262200
262200
|
deletedAt: Date | null;
|
@@ -262406,13 +262406,13 @@ export declare const feedPostContract: {
|
|
262406
262406
|
message: string;
|
262407
262407
|
id: string;
|
262408
262408
|
url: string;
|
262409
|
-
direction:
|
262409
|
+
direction: "incoming" | "outgoing" | "system";
|
262410
262410
|
children: {
|
262411
262411
|
type: string;
|
262412
262412
|
message: string;
|
262413
262413
|
id: string;
|
262414
262414
|
url: string;
|
262415
|
-
direction:
|
262415
|
+
direction: "incoming" | "outgoing" | "system";
|
262416
262416
|
createdAt: Date;
|
262417
262417
|
updatedAt: Date;
|
262418
262418
|
deletedAt: Date | null;
|
@@ -262615,7 +262615,7 @@ export declare const feedPostContract: {
|
|
262615
262615
|
integrationId: string;
|
262616
262616
|
} | null;
|
262617
262617
|
};
|
262618
|
-
direction:
|
262618
|
+
direction: "incoming" | "outgoing" | "system";
|
262619
262619
|
status: number;
|
262620
262620
|
createdAt: Date;
|
262621
262621
|
updatedAt: Date;
|
@@ -262967,7 +262967,7 @@ export declare const feedPostContract: {
|
|
262967
262967
|
message: string;
|
262968
262968
|
id: string;
|
262969
262969
|
url: string;
|
262970
|
-
direction:
|
262970
|
+
direction: "incoming" | "outgoing" | "system";
|
262971
262971
|
createdAt: Date;
|
262972
262972
|
updatedAt: Date;
|
262973
262973
|
deletedAt: Date | null;
|
@@ -263376,7 +263376,7 @@ export declare const feedPostContract: {
|
|
263376
263376
|
integrationId: string;
|
263377
263377
|
} | null;
|
263378
263378
|
};
|
263379
|
-
direction:
|
263379
|
+
direction: "incoming" | "outgoing" | "system";
|
263380
263380
|
status: number;
|
263381
263381
|
createdAt: Date;
|
263382
263382
|
updatedAt: Date;
|
@@ -263728,7 +263728,7 @@ export declare const feedPostContract: {
|
|
263728
263728
|
message: string;
|
263729
263729
|
id: string;
|
263730
263730
|
url: string;
|
263731
|
-
direction:
|
263731
|
+
direction: "incoming" | "outgoing" | "system";
|
263732
263732
|
createdAt: Date;
|
263733
263733
|
updatedAt: Date;
|
263734
263734
|
deletedAt: Date | null;
|
@@ -264066,13 +264066,13 @@ export declare const feedPostContract: {
|
|
264066
264066
|
message: string;
|
264067
264067
|
id: string;
|
264068
264068
|
url: string;
|
264069
|
-
direction:
|
264069
|
+
direction: "incoming" | "outgoing" | "system";
|
264070
264070
|
children: {
|
264071
264071
|
type: string;
|
264072
264072
|
message: string;
|
264073
264073
|
id: string;
|
264074
264074
|
url: string;
|
264075
|
-
direction:
|
264075
|
+
direction: "incoming" | "outgoing" | "system";
|
264076
264076
|
createdAt: Date;
|
264077
264077
|
updatedAt: Date;
|
264078
264078
|
deletedAt: Date | null;
|
@@ -264275,7 +264275,7 @@ export declare const feedPostContract: {
|
|
264275
264275
|
integrationId: string;
|
264276
264276
|
} | null;
|
264277
264277
|
};
|
264278
|
-
direction:
|
264278
|
+
direction: "incoming" | "outgoing" | "system";
|
264279
264279
|
status: number;
|
264280
264280
|
createdAt: Date;
|
264281
264281
|
updatedAt: Date;
|
@@ -264627,7 +264627,7 @@ export declare const feedPostContract: {
|
|
264627
264627
|
message: string;
|
264628
264628
|
id: string;
|
264629
264629
|
url: string;
|
264630
|
-
direction:
|
264630
|
+
direction: "incoming" | "outgoing" | "system";
|
264631
264631
|
createdAt: Date;
|
264632
264632
|
updatedAt: Date;
|
264633
264633
|
deletedAt: Date | null;
|
@@ -265036,7 +265036,7 @@ export declare const feedPostContract: {
|
|
265036
265036
|
integrationId: string;
|
265037
265037
|
} | null;
|
265038
265038
|
};
|
265039
|
-
direction:
|
265039
|
+
direction: "incoming" | "outgoing" | "system";
|
265040
265040
|
status: number;
|
265041
265041
|
createdAt: Date;
|
265042
265042
|
updatedAt: Date;
|
@@ -265388,7 +265388,7 @@ export declare const feedPostContract: {
|
|
265388
265388
|
message: string;
|
265389
265389
|
id: string;
|
265390
265390
|
url: string;
|
265391
|
-
direction:
|
265391
|
+
direction: "incoming" | "outgoing" | "system";
|
265392
265392
|
createdAt: Date;
|
265393
265393
|
updatedAt: Date;
|
265394
265394
|
deletedAt: Date | null;
|
@@ -265728,13 +265728,13 @@ export declare const feedPostContract: {
|
|
265728
265728
|
message: string;
|
265729
265729
|
id: string;
|
265730
265730
|
url: string;
|
265731
|
-
direction:
|
265731
|
+
direction: "incoming" | "outgoing" | "system";
|
265732
265732
|
children: {
|
265733
265733
|
type: string;
|
265734
265734
|
message: string;
|
265735
265735
|
id: string;
|
265736
265736
|
url: string;
|
265737
|
-
direction:
|
265737
|
+
direction: "incoming" | "outgoing" | "system";
|
265738
265738
|
createdAt: Date;
|
265739
265739
|
updatedAt: Date;
|
265740
265740
|
deletedAt: Date | null;
|
@@ -265937,7 +265937,7 @@ export declare const feedPostContract: {
|
|
265937
265937
|
integrationId: string;
|
265938
265938
|
} | null;
|
265939
265939
|
};
|
265940
|
-
direction:
|
265940
|
+
direction: "incoming" | "outgoing" | "system";
|
265941
265941
|
status: number;
|
265942
265942
|
createdAt: Date;
|
265943
265943
|
updatedAt: Date;
|
@@ -266289,7 +266289,7 @@ export declare const feedPostContract: {
|
|
266289
266289
|
message: string;
|
266290
266290
|
id: string;
|
266291
266291
|
url: string;
|
266292
|
-
direction:
|
266292
|
+
direction: "incoming" | "outgoing" | "system";
|
266293
266293
|
createdAt: Date;
|
266294
266294
|
updatedAt: Date;
|
266295
266295
|
deletedAt: Date | null;
|
@@ -266698,7 +266698,7 @@ export declare const feedPostContract: {
|
|
266698
266698
|
integrationId: string;
|
266699
266699
|
} | null;
|
266700
266700
|
};
|
266701
|
-
direction:
|
266701
|
+
direction: "incoming" | "outgoing" | "system";
|
266702
266702
|
status: number;
|
266703
266703
|
createdAt: Date;
|
266704
266704
|
updatedAt: Date;
|
@@ -267050,7 +267050,7 @@ export declare const feedPostContract: {
|
|
267050
267050
|
message: string;
|
267051
267051
|
id: string;
|
267052
267052
|
url: string;
|
267053
|
-
direction:
|
267053
|
+
direction: "incoming" | "outgoing" | "system";
|
267054
267054
|
createdAt: Date;
|
267055
267055
|
updatedAt: Date;
|
267056
267056
|
deletedAt: Date | null;
|
@@ -267394,13 +267394,13 @@ export declare const feedPostContract: {
|
|
267394
267394
|
message: string;
|
267395
267395
|
id: string;
|
267396
267396
|
url: string;
|
267397
|
-
direction:
|
267397
|
+
direction: "incoming" | "outgoing" | "system";
|
267398
267398
|
children: {
|
267399
267399
|
type: string;
|
267400
267400
|
message: string;
|
267401
267401
|
id: string;
|
267402
267402
|
url: string;
|
267403
|
-
direction:
|
267403
|
+
direction: "incoming" | "outgoing" | "system";
|
267404
267404
|
createdAt: Date;
|
267405
267405
|
updatedAt: Date;
|
267406
267406
|
deletedAt: Date | null;
|
@@ -267603,7 +267603,7 @@ export declare const feedPostContract: {
|
|
267603
267603
|
integrationId: string;
|
267604
267604
|
} | null;
|
267605
267605
|
};
|
267606
|
-
direction:
|
267606
|
+
direction: "incoming" | "outgoing" | "system";
|
267607
267607
|
status: number;
|
267608
267608
|
createdAt: Date;
|
267609
267609
|
updatedAt: Date;
|
@@ -267955,7 +267955,7 @@ export declare const feedPostContract: {
|
|
267955
267955
|
message: string;
|
267956
267956
|
id: string;
|
267957
267957
|
url: string;
|
267958
|
-
direction:
|
267958
|
+
direction: "incoming" | "outgoing" | "system";
|
267959
267959
|
createdAt: Date;
|
267960
267960
|
updatedAt: Date;
|
267961
267961
|
deletedAt: Date | null;
|
@@ -268364,7 +268364,7 @@ export declare const feedPostContract: {
|
|
268364
268364
|
integrationId: string;
|
268365
268365
|
} | null;
|
268366
268366
|
};
|
268367
|
-
direction:
|
268367
|
+
direction: "incoming" | "outgoing" | "system";
|
268368
268368
|
status: number;
|
268369
268369
|
createdAt: Date;
|
268370
268370
|
updatedAt: Date;
|
@@ -268716,7 +268716,7 @@ export declare const feedPostContract: {
|
|
268716
268716
|
message: string;
|
268717
268717
|
id: string;
|
268718
268718
|
url: string;
|
268719
|
-
direction:
|
268719
|
+
direction: "incoming" | "outgoing" | "system";
|
268720
268720
|
createdAt: Date;
|
268721
268721
|
updatedAt: Date;
|
268722
268722
|
deletedAt: Date | null;
|
@@ -287912,7 +287912,7 @@ export declare const workflowContract: {
|
|
287912
287912
|
firstResponseTime: import("zod").ZodNumber;
|
287913
287913
|
isLatest: import("zod").ZodBoolean;
|
287914
287914
|
isBotRoom: import("zod").ZodBoolean;
|
287915
|
-
direction: import("zod").
|
287915
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
287916
287916
|
platformContact: import("zod").ZodObject<{
|
287917
287917
|
id: import("zod").ZodString;
|
287918
287918
|
createdAt: import("zod").ZodDate;
|
@@ -290597,7 +290597,7 @@ export declare const workflowContract: {
|
|
290597
290597
|
integrationId: string;
|
290598
290598
|
} | null;
|
290599
290599
|
};
|
290600
|
-
direction:
|
290600
|
+
direction: "incoming" | "outgoing" | "system";
|
290601
290601
|
status: number;
|
290602
290602
|
createdAt: Date;
|
290603
290603
|
updatedAt: Date;
|
@@ -291026,7 +291026,7 @@ export declare const workflowContract: {
|
|
291026
291026
|
integrationId: string;
|
291027
291027
|
} | null;
|
291028
291028
|
};
|
291029
|
-
direction:
|
291029
|
+
direction: "incoming" | "outgoing" | "system";
|
291030
291030
|
status: number;
|
291031
291031
|
createdAt: Date;
|
291032
291032
|
updatedAt: Date;
|
@@ -291457,7 +291457,7 @@ export declare const workflowContract: {
|
|
291457
291457
|
integrationId: string;
|
291458
291458
|
} | null;
|
291459
291459
|
};
|
291460
|
-
direction:
|
291460
|
+
direction: "incoming" | "outgoing" | "system";
|
291461
291461
|
status: number;
|
291462
291462
|
createdAt: Date;
|
291463
291463
|
updatedAt: Date;
|
@@ -291889,7 +291889,7 @@ export declare const workflowContract: {
|
|
291889
291889
|
integrationId: string;
|
291890
291890
|
} | null;
|
291891
291891
|
};
|
291892
|
-
direction:
|
291892
|
+
direction: "incoming" | "outgoing" | "system";
|
291893
291893
|
status: number;
|
291894
291894
|
createdAt: Date;
|
291895
291895
|
updatedAt: Date;
|
@@ -292239,15 +292239,15 @@ export declare const workflowContract: {
|
|
292239
292239
|
body: import("zod").ZodObject<{
|
292240
292240
|
roomId: import("zod").ZodString;
|
292241
292241
|
message: import("zod").ZodString;
|
292242
|
-
messageType: import("zod").ZodDefault<import("zod").ZodEnum<[
|
292242
|
+
messageType: import("zod").ZodDefault<import("zod").ZodEnum<["text", "image"]>>;
|
292243
292243
|
}, "strip", import("zod").ZodTypeAny, {
|
292244
292244
|
message: string;
|
292245
|
-
messageType:
|
292245
|
+
messageType: "image" | "text";
|
292246
292246
|
roomId: string;
|
292247
292247
|
}, {
|
292248
292248
|
message: string;
|
292249
292249
|
roomId: string;
|
292250
|
-
messageType?:
|
292250
|
+
messageType?: "image" | "text" | undefined;
|
292251
292251
|
}>;
|
292252
292252
|
summary: "send auto reply message";
|
292253
292253
|
method: "POST";
|
@@ -292273,8 +292273,8 @@ export declare const workflowContract: {
|
|
292273
292273
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
292274
292274
|
}, {
|
292275
292275
|
message: import("zod").ZodString;
|
292276
|
-
direction: import("zod").
|
292277
|
-
type: import("zod").
|
292276
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
292277
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
292278
292278
|
readAt: import("zod").ZodDate;
|
292279
292279
|
metadata: import("zod").ZodAny;
|
292280
292280
|
platformId: import("zod").ZodString;
|
@@ -292301,7 +292301,7 @@ export declare const workflowContract: {
|
|
292301
292301
|
firstResponseTime: import("zod").ZodNumber;
|
292302
292302
|
isLatest: import("zod").ZodBoolean;
|
292303
292303
|
isBotRoom: import("zod").ZodBoolean;
|
292304
|
-
direction: import("zod").
|
292304
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
292305
292305
|
platformContact: import("zod").ZodObject<{
|
292306
292306
|
id: import("zod").ZodString;
|
292307
292307
|
createdAt: import("zod").ZodDate;
|
@@ -294986,7 +294986,7 @@ export declare const workflowContract: {
|
|
294986
294986
|
integrationId: string;
|
294987
294987
|
} | null;
|
294988
294988
|
};
|
294989
|
-
direction:
|
294989
|
+
direction: "incoming" | "outgoing" | "system";
|
294990
294990
|
status: number;
|
294991
294991
|
createdAt: Date;
|
294992
294992
|
updatedAt: Date;
|
@@ -295415,7 +295415,7 @@ export declare const workflowContract: {
|
|
295415
295415
|
integrationId: string;
|
295416
295416
|
} | null;
|
295417
295417
|
};
|
295418
|
-
direction:
|
295418
|
+
direction: "incoming" | "outgoing" | "system";
|
295419
295419
|
status: number;
|
295420
295420
|
createdAt: Date;
|
295421
295421
|
updatedAt: Date;
|
@@ -295789,8 +295789,8 @@ export declare const workflowContract: {
|
|
295789
295789
|
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
295790
295790
|
}, {
|
295791
295791
|
message: import("zod").ZodString;
|
295792
|
-
direction: import("zod").
|
295793
|
-
type: import("zod").
|
295792
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
295793
|
+
type: import("zod").ZodUnion<[import("zod").ZodLiteral<string>, import("zod").ZodLiteral<string>, ...import("zod").ZodLiteral<string>[]]>;
|
295794
295794
|
readAt: import("zod").ZodDate;
|
295795
295795
|
metadata: import("zod").ZodAny;
|
295796
295796
|
platformId: import("zod").ZodString;
|
@@ -296456,7 +296456,7 @@ export declare const workflowContract: {
|
|
296456
296456
|
message: string;
|
296457
296457
|
id: string;
|
296458
296458
|
url: string;
|
296459
|
-
direction:
|
296459
|
+
direction: "incoming" | "outgoing" | "system";
|
296460
296460
|
createdAt: Date;
|
296461
296461
|
updatedAt: Date;
|
296462
296462
|
deletedAt: Date | null;
|
@@ -296618,7 +296618,7 @@ export declare const workflowContract: {
|
|
296618
296618
|
message: string;
|
296619
296619
|
id: string;
|
296620
296620
|
url: string;
|
296621
|
-
direction:
|
296621
|
+
direction: "incoming" | "outgoing" | "system";
|
296622
296622
|
createdAt: Date;
|
296623
296623
|
updatedAt: Date;
|
296624
296624
|
deletedAt: Date | null;
|
@@ -297421,7 +297421,7 @@ export declare const workflowContract: {
|
|
297421
297421
|
message: string;
|
297422
297422
|
id: string;
|
297423
297423
|
url: string;
|
297424
|
-
direction:
|
297424
|
+
direction: "incoming" | "outgoing" | "system";
|
297425
297425
|
createdAt: Date;
|
297426
297426
|
updatedAt: Date;
|
297427
297427
|
deletedAt: Date | null;
|
@@ -297624,7 +297624,7 @@ export declare const workflowContract: {
|
|
297624
297624
|
integrationId: string;
|
297625
297625
|
} | null;
|
297626
297626
|
};
|
297627
|
-
direction:
|
297627
|
+
direction: "incoming" | "outgoing" | "system";
|
297628
297628
|
status: number;
|
297629
297629
|
createdAt: Date;
|
297630
297630
|
updatedAt: Date;
|
@@ -297976,7 +297976,7 @@ export declare const workflowContract: {
|
|
297976
297976
|
message: string;
|
297977
297977
|
id: string;
|
297978
297978
|
url: string;
|
297979
|
-
direction:
|
297979
|
+
direction: "incoming" | "outgoing" | "system";
|
297980
297980
|
createdAt: Date;
|
297981
297981
|
updatedAt: Date;
|
297982
297982
|
deletedAt: Date | null;
|
@@ -298187,7 +298187,7 @@ export declare const workflowContract: {
|
|
298187
298187
|
message: string;
|
298188
298188
|
id: string;
|
298189
298189
|
url: string;
|
298190
|
-
direction:
|
298190
|
+
direction: "incoming" | "outgoing" | "system";
|
298191
298191
|
createdAt: Date;
|
298192
298192
|
updatedAt: Date;
|
298193
298193
|
deletedAt: Date | null;
|
@@ -298390,7 +298390,7 @@ export declare const workflowContract: {
|
|
298390
298390
|
integrationId: string;
|
298391
298391
|
} | null;
|
298392
298392
|
};
|
298393
|
-
direction:
|
298393
|
+
direction: "incoming" | "outgoing" | "system";
|
298394
298394
|
status: number;
|
298395
298395
|
createdAt: Date;
|
298396
298396
|
updatedAt: Date;
|
@@ -298742,7 +298742,7 @@ export declare const workflowContract: {
|
|
298742
298742
|
message: string;
|
298743
298743
|
id: string;
|
298744
298744
|
url: string;
|
298745
|
-
direction:
|
298745
|
+
direction: "incoming" | "outgoing" | "system";
|
298746
298746
|
createdAt: Date;
|
298747
298747
|
updatedAt: Date;
|
298748
298748
|
deletedAt: Date | null;
|
@@ -298955,7 +298955,7 @@ export declare const workflowContract: {
|
|
298955
298955
|
message: string;
|
298956
298956
|
id: string;
|
298957
298957
|
url: string;
|
298958
|
-
direction:
|
298958
|
+
direction: "incoming" | "outgoing" | "system";
|
298959
298959
|
createdAt: Date;
|
298960
298960
|
updatedAt: Date;
|
298961
298961
|
deletedAt: Date | null;
|
@@ -299158,7 +299158,7 @@ export declare const workflowContract: {
|
|
299158
299158
|
integrationId: string;
|
299159
299159
|
} | null;
|
299160
299160
|
};
|
299161
|
-
direction:
|
299161
|
+
direction: "incoming" | "outgoing" | "system";
|
299162
299162
|
status: number;
|
299163
299163
|
createdAt: Date;
|
299164
299164
|
updatedAt: Date;
|
@@ -299510,7 +299510,7 @@ export declare const workflowContract: {
|
|
299510
299510
|
message: string;
|
299511
299511
|
id: string;
|
299512
299512
|
url: string;
|
299513
|
-
direction:
|
299513
|
+
direction: "incoming" | "outgoing" | "system";
|
299514
299514
|
createdAt: Date;
|
299515
299515
|
updatedAt: Date;
|
299516
299516
|
deletedAt: Date | null;
|
@@ -299724,7 +299724,7 @@ export declare const workflowContract: {
|
|
299724
299724
|
message: string;
|
299725
299725
|
id: string;
|
299726
299726
|
url: string;
|
299727
|
-
direction:
|
299727
|
+
direction: "incoming" | "outgoing" | "system";
|
299728
299728
|
createdAt: Date;
|
299729
299729
|
updatedAt: Date;
|
299730
299730
|
deletedAt: Date | null;
|
@@ -299927,7 +299927,7 @@ export declare const workflowContract: {
|
|
299927
299927
|
integrationId: string;
|
299928
299928
|
} | null;
|
299929
299929
|
};
|
299930
|
-
direction:
|
299930
|
+
direction: "incoming" | "outgoing" | "system";
|
299931
299931
|
status: number;
|
299932
299932
|
createdAt: Date;
|
299933
299933
|
updatedAt: Date;
|
@@ -300279,7 +300279,7 @@ export declare const workflowContract: {
|
|
300279
300279
|
message: string;
|
300280
300280
|
id: string;
|
300281
300281
|
url: string;
|
300282
|
-
direction:
|
300282
|
+
direction: "incoming" | "outgoing" | "system";
|
300283
300283
|
createdAt: Date;
|
300284
300284
|
updatedAt: Date;
|
300285
300285
|
deletedAt: Date | null;
|
@@ -300547,7 +300547,7 @@ export declare const workflowContract: {
|
|
300547
300547
|
firstResponseTime: import("zod").ZodNumber;
|
300548
300548
|
isLatest: import("zod").ZodBoolean;
|
300549
300549
|
isBotRoom: import("zod").ZodBoolean;
|
300550
|
-
direction: import("zod").
|
300550
|
+
direction: import("zod").ZodUnion<[import("zod").ZodLiteral<"incoming">, import("zod").ZodLiteral<"outgoing">, import("zod").ZodLiteral<"system">]>;
|
300551
300551
|
platformContact: import("zod").ZodObject<{
|
300552
300552
|
id: import("zod").ZodString;
|
300553
300553
|
createdAt: import("zod").ZodDate;
|
@@ -303234,7 +303234,7 @@ export declare const workflowContract: {
|
|
303234
303234
|
integrationId: string;
|
303235
303235
|
} | null;
|
303236
303236
|
};
|
303237
|
-
direction:
|
303237
|
+
direction: "incoming" | "outgoing" | "system";
|
303238
303238
|
status: number;
|
303239
303239
|
createdAt: Date;
|
303240
303240
|
updatedAt: Date;
|
@@ -303664,7 +303664,7 @@ export declare const workflowContract: {
|
|
303664
303664
|
integrationId: string;
|
303665
303665
|
} | null;
|
303666
303666
|
};
|
303667
|
-
direction:
|
303667
|
+
direction: "incoming" | "outgoing" | "system";
|
303668
303668
|
status: number;
|
303669
303669
|
createdAt: Date;
|
303670
303670
|
updatedAt: Date;
|
@@ -304096,7 +304096,7 @@ export declare const workflowContract: {
|
|
304096
304096
|
integrationId: string;
|
304097
304097
|
} | null;
|
304098
304098
|
};
|
304099
|
-
direction:
|
304099
|
+
direction: "incoming" | "outgoing" | "system";
|
304100
304100
|
status: number;
|
304101
304101
|
createdAt: Date;
|
304102
304102
|
updatedAt: Date;
|
@@ -304529,7 +304529,7 @@ export declare const workflowContract: {
|
|
304529
304529
|
integrationId: string;
|
304530
304530
|
} | null;
|
304531
304531
|
};
|
304532
|
-
direction:
|
304532
|
+
direction: "incoming" | "outgoing" | "system";
|
304533
304533
|
status: number;
|
304534
304534
|
createdAt: Date;
|
304535
304535
|
updatedAt: Date;
|