@kl1/contracts 1.2.29-uat → 1.2.30-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/chat/index.d.ts +1979 -1780
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +350 -350
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +417 -218
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +2062 -2062
- package/dist/api-contracts/src/cx-log/schema.d.ts +97 -0
- package/dist/api-contracts/src/cx-log/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +218 -218
- package/dist/api-contracts/src/hold-label/index.d.ts +108 -0
- package/dist/api-contracts/src/hold-label/index.d.ts.map +1 -1
- package/dist/api-contracts/src/hold-label/schema.d.ts +38 -0
- package/dist/api-contracts/src/hold-label/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +0 -1
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +218 -218
- package/dist/api-contracts/src/line/index.d.ts +218 -218
- package/dist/api-contracts/src/mail/mail-contract.d.ts +495 -0
- package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/room-contract.d.ts +495 -0
- package/dist/api-contracts/src/mail/room-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +165 -0
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +131 -0
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/api-contracts/src/messenger/index.d.ts +218 -218
- package/dist/api-contracts/src/telegram/index.d.ts +218 -218
- package/dist/api-contracts/src/viber/index.d.ts +218 -218
- package/dist/api-contracts/src/webchat/index.d.ts +218 -218
- package/dist/api-contracts/src/whatsapp/index.d.ts +218 -218
- package/dist/api-contracts/src/workflow-rule/index.d.ts +144 -144
- package/dist/index.js +326 -352
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +326 -351
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -7715,19 +7715,19 @@ export declare const facebookFeedContract: {
|
|
|
7715
7715
|
integrationId: string;
|
|
7716
7716
|
} | null;
|
|
7717
7717
|
}>;
|
|
7718
|
-
cxlog: z.ZodObject<{
|
|
7718
|
+
cxlog: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7719
7719
|
id: z.ZodString;
|
|
7720
|
-
channel: z.ZodNullable<z.ZodString>;
|
|
7721
|
-
direction: z.ZodNullable<z.ZodString>;
|
|
7722
7720
|
createdAt: z.ZodDate;
|
|
7723
7721
|
updatedAt: z.ZodDate;
|
|
7724
7722
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
7725
|
-
entityId: z.ZodString;
|
|
7726
|
-
queueId: z.ZodNullable<z.ZodString>;
|
|
7727
|
-
contactId: z.ZodNullable<z.ZodString>;
|
|
7728
7723
|
caseId: z.ZodNumber;
|
|
7724
|
+
entityId: z.ZodString;
|
|
7729
7725
|
entityName: z.ZodString;
|
|
7726
|
+
contactId: z.ZodNullable<z.ZodString>;
|
|
7727
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
7728
|
+
queueId: z.ZodNullable<z.ZodString>;
|
|
7730
7729
|
agentId: z.ZodNullable<z.ZodString>;
|
|
7730
|
+
direction: z.ZodNullable<z.ZodString>;
|
|
7731
7731
|
startedDate: z.ZodNullable<z.ZodDate>;
|
|
7732
7732
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
|
7733
7733
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
|
@@ -7997,7 +7997,7 @@ export declare const facebookFeedContract: {
|
|
|
7997
7997
|
dateValue: Date | null;
|
|
7998
7998
|
}[] | null | undefined;
|
|
7999
7999
|
}>>;
|
|
8000
|
-
holdLogs: z.
|
|
8000
|
+
holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
8001
8001
|
id: z.ZodString;
|
|
8002
8002
|
createdAt: z.ZodDate;
|
|
8003
8003
|
updatedAt: z.ZodDate;
|
|
@@ -8005,7 +8005,7 @@ export declare const facebookFeedContract: {
|
|
|
8005
8005
|
startedAt: z.ZodString;
|
|
8006
8006
|
endedAt: z.ZodNullable<z.ZodString>;
|
|
8007
8007
|
duration: z.ZodNullable<z.ZodNumber>;
|
|
8008
|
-
holdLabel: z.ZodObject<{
|
|
8008
|
+
holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
8009
8009
|
id: z.ZodString;
|
|
8010
8010
|
createdAt: z.ZodDate;
|
|
8011
8011
|
updatedAt: z.ZodDate;
|
|
@@ -8026,7 +8026,7 @@ export declare const facebookFeedContract: {
|
|
|
8026
8026
|
createdAt: Date;
|
|
8027
8027
|
updatedAt: Date;
|
|
8028
8028
|
deletedAt: Date | null;
|
|
8029
|
-
}
|
|
8029
|
+
}>>>;
|
|
8030
8030
|
}, "strip", z.ZodTypeAny, {
|
|
8031
8031
|
id: string;
|
|
8032
8032
|
createdAt: Date;
|
|
@@ -8035,14 +8035,14 @@ export declare const facebookFeedContract: {
|
|
|
8035
8035
|
startedAt: string;
|
|
8036
8036
|
endedAt: string | null;
|
|
8037
8037
|
duration: number | null;
|
|
8038
|
-
holdLabel
|
|
8038
|
+
holdLabel?: {
|
|
8039
8039
|
id: string;
|
|
8040
8040
|
name: string;
|
|
8041
8041
|
position: number;
|
|
8042
8042
|
createdAt: Date;
|
|
8043
8043
|
updatedAt: Date;
|
|
8044
8044
|
deletedAt: Date | null;
|
|
8045
|
-
};
|
|
8045
|
+
} | null | undefined;
|
|
8046
8046
|
}, {
|
|
8047
8047
|
id: string;
|
|
8048
8048
|
createdAt: Date;
|
|
@@ -8051,14 +8051,14 @@ export declare const facebookFeedContract: {
|
|
|
8051
8051
|
startedAt: string;
|
|
8052
8052
|
endedAt: string | null;
|
|
8053
8053
|
duration: number | null;
|
|
8054
|
-
holdLabel
|
|
8054
|
+
holdLabel?: {
|
|
8055
8055
|
id: string;
|
|
8056
8056
|
name: string;
|
|
8057
8057
|
position: number;
|
|
8058
8058
|
createdAt: Date;
|
|
8059
8059
|
updatedAt: Date;
|
|
8060
8060
|
deletedAt: Date | null;
|
|
8061
|
-
};
|
|
8061
|
+
} | null | undefined;
|
|
8062
8062
|
}>, "many">>>;
|
|
8063
8063
|
}, "strip", z.ZodTypeAny, {
|
|
8064
8064
|
id: string;
|
|
@@ -8136,14 +8136,14 @@ export declare const facebookFeedContract: {
|
|
|
8136
8136
|
startedAt: string;
|
|
8137
8137
|
endedAt: string | null;
|
|
8138
8138
|
duration: number | null;
|
|
8139
|
-
holdLabel
|
|
8139
|
+
holdLabel?: {
|
|
8140
8140
|
id: string;
|
|
8141
8141
|
name: string;
|
|
8142
8142
|
position: number;
|
|
8143
8143
|
createdAt: Date;
|
|
8144
8144
|
updatedAt: Date;
|
|
8145
8145
|
deletedAt: Date | null;
|
|
8146
|
-
};
|
|
8146
|
+
} | null | undefined;
|
|
8147
8147
|
}[] | null | undefined;
|
|
8148
8148
|
}, {
|
|
8149
8149
|
id: string;
|
|
@@ -8221,16 +8221,16 @@ export declare const facebookFeedContract: {
|
|
|
8221
8221
|
startedAt: string;
|
|
8222
8222
|
endedAt: string | null;
|
|
8223
8223
|
duration: number | null;
|
|
8224
|
-
holdLabel
|
|
8224
|
+
holdLabel?: {
|
|
8225
8225
|
id: string;
|
|
8226
8226
|
name: string;
|
|
8227
8227
|
position: number;
|
|
8228
8228
|
createdAt: Date;
|
|
8229
8229
|
updatedAt: Date;
|
|
8230
8230
|
deletedAt: Date | null;
|
|
8231
|
-
};
|
|
8231
|
+
} | null | undefined;
|
|
8232
8232
|
}[] | null | undefined;
|
|
8233
|
-
}
|
|
8233
|
+
}>>>;
|
|
8234
8234
|
workflowRule: z.ZodObject<{
|
|
8235
8235
|
id: z.ZodString;
|
|
8236
8236
|
createdAt: z.ZodDate;
|
|
@@ -8579,7 +8579,16 @@ export declare const facebookFeedContract: {
|
|
|
8579
8579
|
closedAt: Date;
|
|
8580
8580
|
lastMessageAt: Date | null;
|
|
8581
8581
|
isBotRoom: boolean;
|
|
8582
|
-
|
|
8582
|
+
workflowRule: {
|
|
8583
|
+
type: string;
|
|
8584
|
+
id: string;
|
|
8585
|
+
name: string;
|
|
8586
|
+
createdAt: Date;
|
|
8587
|
+
updatedAt: Date;
|
|
8588
|
+
deletedAt: Date | null;
|
|
8589
|
+
isActive: boolean;
|
|
8590
|
+
};
|
|
8591
|
+
cxlog?: {
|
|
8583
8592
|
id: string;
|
|
8584
8593
|
channel: string | null;
|
|
8585
8594
|
direction: string | null;
|
|
@@ -8655,25 +8664,16 @@ export declare const facebookFeedContract: {
|
|
|
8655
8664
|
startedAt: string;
|
|
8656
8665
|
endedAt: string | null;
|
|
8657
8666
|
duration: number | null;
|
|
8658
|
-
holdLabel
|
|
8667
|
+
holdLabel?: {
|
|
8659
8668
|
id: string;
|
|
8660
8669
|
name: string;
|
|
8661
8670
|
position: number;
|
|
8662
8671
|
createdAt: Date;
|
|
8663
8672
|
updatedAt: Date;
|
|
8664
8673
|
deletedAt: Date | null;
|
|
8665
|
-
};
|
|
8674
|
+
} | null | undefined;
|
|
8666
8675
|
}[] | null | undefined;
|
|
8667
|
-
};
|
|
8668
|
-
workflowRule: {
|
|
8669
|
-
type: string;
|
|
8670
|
-
id: string;
|
|
8671
|
-
name: string;
|
|
8672
|
-
createdAt: Date;
|
|
8673
|
-
updatedAt: Date;
|
|
8674
|
-
deletedAt: Date | null;
|
|
8675
|
-
isActive: boolean;
|
|
8676
|
-
};
|
|
8676
|
+
} | null | undefined;
|
|
8677
8677
|
automationQueueId?: string | null | undefined;
|
|
8678
8678
|
}, {
|
|
8679
8679
|
id: string;
|
|
@@ -8997,7 +8997,16 @@ export declare const facebookFeedContract: {
|
|
|
8997
8997
|
closedAt: Date;
|
|
8998
8998
|
lastMessageAt: Date | null;
|
|
8999
8999
|
isBotRoom: boolean;
|
|
9000
|
-
|
|
9000
|
+
workflowRule: {
|
|
9001
|
+
type: string;
|
|
9002
|
+
id: string;
|
|
9003
|
+
name: string;
|
|
9004
|
+
createdAt: Date;
|
|
9005
|
+
updatedAt: Date;
|
|
9006
|
+
deletedAt: Date | null;
|
|
9007
|
+
isActive: boolean;
|
|
9008
|
+
};
|
|
9009
|
+
cxlog?: {
|
|
9001
9010
|
id: string;
|
|
9002
9011
|
channel: string | null;
|
|
9003
9012
|
direction: string | null;
|
|
@@ -9073,25 +9082,16 @@ export declare const facebookFeedContract: {
|
|
|
9073
9082
|
startedAt: string;
|
|
9074
9083
|
endedAt: string | null;
|
|
9075
9084
|
duration: number | null;
|
|
9076
|
-
holdLabel
|
|
9085
|
+
holdLabel?: {
|
|
9077
9086
|
id: string;
|
|
9078
9087
|
name: string;
|
|
9079
9088
|
position: number;
|
|
9080
9089
|
createdAt: Date;
|
|
9081
9090
|
updatedAt: Date;
|
|
9082
9091
|
deletedAt: Date | null;
|
|
9083
|
-
};
|
|
9092
|
+
} | null | undefined;
|
|
9084
9093
|
}[] | null | undefined;
|
|
9085
|
-
};
|
|
9086
|
-
workflowRule: {
|
|
9087
|
-
type: string;
|
|
9088
|
-
id: string;
|
|
9089
|
-
name: string;
|
|
9090
|
-
createdAt: Date;
|
|
9091
|
-
updatedAt: Date;
|
|
9092
|
-
deletedAt: Date | null;
|
|
9093
|
-
isActive: boolean;
|
|
9094
|
-
};
|
|
9094
|
+
} | null | undefined;
|
|
9095
9095
|
automationQueueId?: string | null | undefined;
|
|
9096
9096
|
}>;
|
|
9097
9097
|
platformMessageId: z.ZodString;
|
|
@@ -12329,19 +12329,19 @@ export declare const facebookFeedContract: {
|
|
|
12329
12329
|
integrationId: string;
|
|
12330
12330
|
} | null;
|
|
12331
12331
|
}>;
|
|
12332
|
-
cxlog: z.ZodObject<{
|
|
12332
|
+
cxlog: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12333
12333
|
id: z.ZodString;
|
|
12334
|
-
channel: z.ZodNullable<z.ZodString>;
|
|
12335
|
-
direction: z.ZodNullable<z.ZodString>;
|
|
12336
12334
|
createdAt: z.ZodDate;
|
|
12337
12335
|
updatedAt: z.ZodDate;
|
|
12338
12336
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
|
12339
|
-
entityId: z.ZodString;
|
|
12340
|
-
queueId: z.ZodNullable<z.ZodString>;
|
|
12341
|
-
contactId: z.ZodNullable<z.ZodString>;
|
|
12342
12337
|
caseId: z.ZodNumber;
|
|
12338
|
+
entityId: z.ZodString;
|
|
12343
12339
|
entityName: z.ZodString;
|
|
12340
|
+
contactId: z.ZodNullable<z.ZodString>;
|
|
12341
|
+
channel: z.ZodNullable<z.ZodString>;
|
|
12342
|
+
queueId: z.ZodNullable<z.ZodString>;
|
|
12344
12343
|
agentId: z.ZodNullable<z.ZodString>;
|
|
12344
|
+
direction: z.ZodNullable<z.ZodString>;
|
|
12345
12345
|
startedDate: z.ZodNullable<z.ZodDate>;
|
|
12346
12346
|
handledTime: z.ZodNullable<z.ZodNumber>;
|
|
12347
12347
|
firstResponseTime: z.ZodNullable<z.ZodNumber>;
|
|
@@ -12611,7 +12611,7 @@ export declare const facebookFeedContract: {
|
|
|
12611
12611
|
dateValue: Date | null;
|
|
12612
12612
|
}[] | null | undefined;
|
|
12613
12613
|
}>>;
|
|
12614
|
-
holdLogs: z.
|
|
12614
|
+
holdLogs: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
12615
12615
|
id: z.ZodString;
|
|
12616
12616
|
createdAt: z.ZodDate;
|
|
12617
12617
|
updatedAt: z.ZodDate;
|
|
@@ -12619,7 +12619,7 @@ export declare const facebookFeedContract: {
|
|
|
12619
12619
|
startedAt: z.ZodString;
|
|
12620
12620
|
endedAt: z.ZodNullable<z.ZodString>;
|
|
12621
12621
|
duration: z.ZodNullable<z.ZodNumber>;
|
|
12622
|
-
holdLabel: z.ZodObject<{
|
|
12622
|
+
holdLabel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
12623
12623
|
id: z.ZodString;
|
|
12624
12624
|
createdAt: z.ZodDate;
|
|
12625
12625
|
updatedAt: z.ZodDate;
|
|
@@ -12640,7 +12640,7 @@ export declare const facebookFeedContract: {
|
|
|
12640
12640
|
createdAt: Date;
|
|
12641
12641
|
updatedAt: Date;
|
|
12642
12642
|
deletedAt: Date | null;
|
|
12643
|
-
}
|
|
12643
|
+
}>>>;
|
|
12644
12644
|
}, "strip", z.ZodTypeAny, {
|
|
12645
12645
|
id: string;
|
|
12646
12646
|
createdAt: Date;
|
|
@@ -12649,14 +12649,14 @@ export declare const facebookFeedContract: {
|
|
|
12649
12649
|
startedAt: string;
|
|
12650
12650
|
endedAt: string | null;
|
|
12651
12651
|
duration: number | null;
|
|
12652
|
-
holdLabel
|
|
12652
|
+
holdLabel?: {
|
|
12653
12653
|
id: string;
|
|
12654
12654
|
name: string;
|
|
12655
12655
|
position: number;
|
|
12656
12656
|
createdAt: Date;
|
|
12657
12657
|
updatedAt: Date;
|
|
12658
12658
|
deletedAt: Date | null;
|
|
12659
|
-
};
|
|
12659
|
+
} | null | undefined;
|
|
12660
12660
|
}, {
|
|
12661
12661
|
id: string;
|
|
12662
12662
|
createdAt: Date;
|
|
@@ -12665,14 +12665,14 @@ export declare const facebookFeedContract: {
|
|
|
12665
12665
|
startedAt: string;
|
|
12666
12666
|
endedAt: string | null;
|
|
12667
12667
|
duration: number | null;
|
|
12668
|
-
holdLabel
|
|
12668
|
+
holdLabel?: {
|
|
12669
12669
|
id: string;
|
|
12670
12670
|
name: string;
|
|
12671
12671
|
position: number;
|
|
12672
12672
|
createdAt: Date;
|
|
12673
12673
|
updatedAt: Date;
|
|
12674
12674
|
deletedAt: Date | null;
|
|
12675
|
-
};
|
|
12675
|
+
} | null | undefined;
|
|
12676
12676
|
}>, "many">>>;
|
|
12677
12677
|
}, "strip", z.ZodTypeAny, {
|
|
12678
12678
|
id: string;
|
|
@@ -12750,14 +12750,14 @@ export declare const facebookFeedContract: {
|
|
|
12750
12750
|
startedAt: string;
|
|
12751
12751
|
endedAt: string | null;
|
|
12752
12752
|
duration: number | null;
|
|
12753
|
-
holdLabel
|
|
12753
|
+
holdLabel?: {
|
|
12754
12754
|
id: string;
|
|
12755
12755
|
name: string;
|
|
12756
12756
|
position: number;
|
|
12757
12757
|
createdAt: Date;
|
|
12758
12758
|
updatedAt: Date;
|
|
12759
12759
|
deletedAt: Date | null;
|
|
12760
|
-
};
|
|
12760
|
+
} | null | undefined;
|
|
12761
12761
|
}[] | null | undefined;
|
|
12762
12762
|
}, {
|
|
12763
12763
|
id: string;
|
|
@@ -12835,16 +12835,16 @@ export declare const facebookFeedContract: {
|
|
|
12835
12835
|
startedAt: string;
|
|
12836
12836
|
endedAt: string | null;
|
|
12837
12837
|
duration: number | null;
|
|
12838
|
-
holdLabel
|
|
12838
|
+
holdLabel?: {
|
|
12839
12839
|
id: string;
|
|
12840
12840
|
name: string;
|
|
12841
12841
|
position: number;
|
|
12842
12842
|
createdAt: Date;
|
|
12843
12843
|
updatedAt: Date;
|
|
12844
12844
|
deletedAt: Date | null;
|
|
12845
|
-
};
|
|
12845
|
+
} | null | undefined;
|
|
12846
12846
|
}[] | null | undefined;
|
|
12847
|
-
}
|
|
12847
|
+
}>>>;
|
|
12848
12848
|
workflowRule: z.ZodObject<{
|
|
12849
12849
|
id: z.ZodString;
|
|
12850
12850
|
createdAt: z.ZodDate;
|
|
@@ -13193,7 +13193,16 @@ export declare const facebookFeedContract: {
|
|
|
13193
13193
|
closedAt: Date;
|
|
13194
13194
|
lastMessageAt: Date | null;
|
|
13195
13195
|
isBotRoom: boolean;
|
|
13196
|
-
|
|
13196
|
+
workflowRule: {
|
|
13197
|
+
type: string;
|
|
13198
|
+
id: string;
|
|
13199
|
+
name: string;
|
|
13200
|
+
createdAt: Date;
|
|
13201
|
+
updatedAt: Date;
|
|
13202
|
+
deletedAt: Date | null;
|
|
13203
|
+
isActive: boolean;
|
|
13204
|
+
};
|
|
13205
|
+
cxlog?: {
|
|
13197
13206
|
id: string;
|
|
13198
13207
|
channel: string | null;
|
|
13199
13208
|
direction: string | null;
|
|
@@ -13269,25 +13278,16 @@ export declare const facebookFeedContract: {
|
|
|
13269
13278
|
startedAt: string;
|
|
13270
13279
|
endedAt: string | null;
|
|
13271
13280
|
duration: number | null;
|
|
13272
|
-
holdLabel
|
|
13281
|
+
holdLabel?: {
|
|
13273
13282
|
id: string;
|
|
13274
13283
|
name: string;
|
|
13275
13284
|
position: number;
|
|
13276
13285
|
createdAt: Date;
|
|
13277
13286
|
updatedAt: Date;
|
|
13278
13287
|
deletedAt: Date | null;
|
|
13279
|
-
};
|
|
13288
|
+
} | null | undefined;
|
|
13280
13289
|
}[] | null | undefined;
|
|
13281
|
-
};
|
|
13282
|
-
workflowRule: {
|
|
13283
|
-
type: string;
|
|
13284
|
-
id: string;
|
|
13285
|
-
name: string;
|
|
13286
|
-
createdAt: Date;
|
|
13287
|
-
updatedAt: Date;
|
|
13288
|
-
deletedAt: Date | null;
|
|
13289
|
-
isActive: boolean;
|
|
13290
|
-
};
|
|
13290
|
+
} | null | undefined;
|
|
13291
13291
|
automationQueueId?: string | null | undefined;
|
|
13292
13292
|
}, {
|
|
13293
13293
|
id: string;
|
|
@@ -13611,7 +13611,16 @@ export declare const facebookFeedContract: {
|
|
|
13611
13611
|
closedAt: Date;
|
|
13612
13612
|
lastMessageAt: Date | null;
|
|
13613
13613
|
isBotRoom: boolean;
|
|
13614
|
-
|
|
13614
|
+
workflowRule: {
|
|
13615
|
+
type: string;
|
|
13616
|
+
id: string;
|
|
13617
|
+
name: string;
|
|
13618
|
+
createdAt: Date;
|
|
13619
|
+
updatedAt: Date;
|
|
13620
|
+
deletedAt: Date | null;
|
|
13621
|
+
isActive: boolean;
|
|
13622
|
+
};
|
|
13623
|
+
cxlog?: {
|
|
13615
13624
|
id: string;
|
|
13616
13625
|
channel: string | null;
|
|
13617
13626
|
direction: string | null;
|
|
@@ -13687,25 +13696,16 @@ export declare const facebookFeedContract: {
|
|
|
13687
13696
|
startedAt: string;
|
|
13688
13697
|
endedAt: string | null;
|
|
13689
13698
|
duration: number | null;
|
|
13690
|
-
holdLabel
|
|
13699
|
+
holdLabel?: {
|
|
13691
13700
|
id: string;
|
|
13692
13701
|
name: string;
|
|
13693
13702
|
position: number;
|
|
13694
13703
|
createdAt: Date;
|
|
13695
13704
|
updatedAt: Date;
|
|
13696
13705
|
deletedAt: Date | null;
|
|
13697
|
-
};
|
|
13706
|
+
} | null | undefined;
|
|
13698
13707
|
}[] | null | undefined;
|
|
13699
|
-
};
|
|
13700
|
-
workflowRule: {
|
|
13701
|
-
type: string;
|
|
13702
|
-
id: string;
|
|
13703
|
-
name: string;
|
|
13704
|
-
createdAt: Date;
|
|
13705
|
-
updatedAt: Date;
|
|
13706
|
-
deletedAt: Date | null;
|
|
13707
|
-
isActive: boolean;
|
|
13708
|
-
};
|
|
13708
|
+
} | null | undefined;
|
|
13709
13709
|
automationQueueId?: string | null | undefined;
|
|
13710
13710
|
}>;
|
|
13711
13711
|
upload: z.ZodObject<{
|
|
@@ -15802,7 +15802,16 @@ export declare const facebookFeedContract: {
|
|
|
15802
15802
|
closedAt: Date;
|
|
15803
15803
|
lastMessageAt: Date | null;
|
|
15804
15804
|
isBotRoom: boolean;
|
|
15805
|
-
|
|
15805
|
+
workflowRule: {
|
|
15806
|
+
type: string;
|
|
15807
|
+
id: string;
|
|
15808
|
+
name: string;
|
|
15809
|
+
createdAt: Date;
|
|
15810
|
+
updatedAt: Date;
|
|
15811
|
+
deletedAt: Date | null;
|
|
15812
|
+
isActive: boolean;
|
|
15813
|
+
};
|
|
15814
|
+
cxlog?: {
|
|
15806
15815
|
id: string;
|
|
15807
15816
|
channel: string | null;
|
|
15808
15817
|
direction: string | null;
|
|
@@ -15878,25 +15887,16 @@ export declare const facebookFeedContract: {
|
|
|
15878
15887
|
startedAt: string;
|
|
15879
15888
|
endedAt: string | null;
|
|
15880
15889
|
duration: number | null;
|
|
15881
|
-
holdLabel
|
|
15890
|
+
holdLabel?: {
|
|
15882
15891
|
id: string;
|
|
15883
15892
|
name: string;
|
|
15884
15893
|
position: number;
|
|
15885
15894
|
createdAt: Date;
|
|
15886
15895
|
updatedAt: Date;
|
|
15887
15896
|
deletedAt: Date | null;
|
|
15888
|
-
};
|
|
15897
|
+
} | null | undefined;
|
|
15889
15898
|
}[] | null | undefined;
|
|
15890
|
-
};
|
|
15891
|
-
workflowRule: {
|
|
15892
|
-
type: string;
|
|
15893
|
-
id: string;
|
|
15894
|
-
name: string;
|
|
15895
|
-
createdAt: Date;
|
|
15896
|
-
updatedAt: Date;
|
|
15897
|
-
deletedAt: Date | null;
|
|
15898
|
-
isActive: boolean;
|
|
15899
|
-
};
|
|
15899
|
+
} | null | undefined;
|
|
15900
15900
|
automationQueueId?: string | null | undefined;
|
|
15901
15901
|
};
|
|
15902
15902
|
platformMessageId: string;
|
|
@@ -16557,7 +16557,16 @@ export declare const facebookFeedContract: {
|
|
|
16557
16557
|
closedAt: Date;
|
|
16558
16558
|
lastMessageAt: Date | null;
|
|
16559
16559
|
isBotRoom: boolean;
|
|
16560
|
-
|
|
16560
|
+
workflowRule: {
|
|
16561
|
+
type: string;
|
|
16562
|
+
id: string;
|
|
16563
|
+
name: string;
|
|
16564
|
+
createdAt: Date;
|
|
16565
|
+
updatedAt: Date;
|
|
16566
|
+
deletedAt: Date | null;
|
|
16567
|
+
isActive: boolean;
|
|
16568
|
+
};
|
|
16569
|
+
cxlog?: {
|
|
16561
16570
|
id: string;
|
|
16562
16571
|
channel: string | null;
|
|
16563
16572
|
direction: string | null;
|
|
@@ -16633,25 +16642,16 @@ export declare const facebookFeedContract: {
|
|
|
16633
16642
|
startedAt: string;
|
|
16634
16643
|
endedAt: string | null;
|
|
16635
16644
|
duration: number | null;
|
|
16636
|
-
holdLabel
|
|
16645
|
+
holdLabel?: {
|
|
16637
16646
|
id: string;
|
|
16638
16647
|
name: string;
|
|
16639
16648
|
position: number;
|
|
16640
16649
|
createdAt: Date;
|
|
16641
16650
|
updatedAt: Date;
|
|
16642
16651
|
deletedAt: Date | null;
|
|
16643
|
-
};
|
|
16652
|
+
} | null | undefined;
|
|
16644
16653
|
}[] | null | undefined;
|
|
16645
|
-
};
|
|
16646
|
-
workflowRule: {
|
|
16647
|
-
type: string;
|
|
16648
|
-
id: string;
|
|
16649
|
-
name: string;
|
|
16650
|
-
createdAt: Date;
|
|
16651
|
-
updatedAt: Date;
|
|
16652
|
-
deletedAt: Date | null;
|
|
16653
|
-
isActive: boolean;
|
|
16654
|
-
};
|
|
16654
|
+
} | null | undefined;
|
|
16655
16655
|
automationQueueId?: string | null | undefined;
|
|
16656
16656
|
};
|
|
16657
16657
|
platformMessageId: string;
|
|
@@ -17313,7 +17313,16 @@ export declare const facebookFeedContract: {
|
|
|
17313
17313
|
closedAt: Date;
|
|
17314
17314
|
lastMessageAt: Date | null;
|
|
17315
17315
|
isBotRoom: boolean;
|
|
17316
|
-
|
|
17316
|
+
workflowRule: {
|
|
17317
|
+
type: string;
|
|
17318
|
+
id: string;
|
|
17319
|
+
name: string;
|
|
17320
|
+
createdAt: Date;
|
|
17321
|
+
updatedAt: Date;
|
|
17322
|
+
deletedAt: Date | null;
|
|
17323
|
+
isActive: boolean;
|
|
17324
|
+
};
|
|
17325
|
+
cxlog?: {
|
|
17317
17326
|
id: string;
|
|
17318
17327
|
channel: string | null;
|
|
17319
17328
|
direction: string | null;
|
|
@@ -17389,25 +17398,16 @@ export declare const facebookFeedContract: {
|
|
|
17389
17398
|
startedAt: string;
|
|
17390
17399
|
endedAt: string | null;
|
|
17391
17400
|
duration: number | null;
|
|
17392
|
-
holdLabel
|
|
17401
|
+
holdLabel?: {
|
|
17393
17402
|
id: string;
|
|
17394
17403
|
name: string;
|
|
17395
17404
|
position: number;
|
|
17396
17405
|
createdAt: Date;
|
|
17397
17406
|
updatedAt: Date;
|
|
17398
17407
|
deletedAt: Date | null;
|
|
17399
|
-
};
|
|
17408
|
+
} | null | undefined;
|
|
17400
17409
|
}[] | null | undefined;
|
|
17401
|
-
};
|
|
17402
|
-
workflowRule: {
|
|
17403
|
-
type: string;
|
|
17404
|
-
id: string;
|
|
17405
|
-
name: string;
|
|
17406
|
-
createdAt: Date;
|
|
17407
|
-
updatedAt: Date;
|
|
17408
|
-
deletedAt: Date | null;
|
|
17409
|
-
isActive: boolean;
|
|
17410
|
-
};
|
|
17410
|
+
} | null | undefined;
|
|
17411
17411
|
automationQueueId?: string | null | undefined;
|
|
17412
17412
|
};
|
|
17413
17413
|
platformMessageId: string;
|
|
@@ -18068,7 +18068,16 @@ export declare const facebookFeedContract: {
|
|
|
18068
18068
|
closedAt: Date;
|
|
18069
18069
|
lastMessageAt: Date | null;
|
|
18070
18070
|
isBotRoom: boolean;
|
|
18071
|
-
|
|
18071
|
+
workflowRule: {
|
|
18072
|
+
type: string;
|
|
18073
|
+
id: string;
|
|
18074
|
+
name: string;
|
|
18075
|
+
createdAt: Date;
|
|
18076
|
+
updatedAt: Date;
|
|
18077
|
+
deletedAt: Date | null;
|
|
18078
|
+
isActive: boolean;
|
|
18079
|
+
};
|
|
18080
|
+
cxlog?: {
|
|
18072
18081
|
id: string;
|
|
18073
18082
|
channel: string | null;
|
|
18074
18083
|
direction: string | null;
|
|
@@ -18144,25 +18153,16 @@ export declare const facebookFeedContract: {
|
|
|
18144
18153
|
startedAt: string;
|
|
18145
18154
|
endedAt: string | null;
|
|
18146
18155
|
duration: number | null;
|
|
18147
|
-
holdLabel
|
|
18156
|
+
holdLabel?: {
|
|
18148
18157
|
id: string;
|
|
18149
18158
|
name: string;
|
|
18150
18159
|
position: number;
|
|
18151
18160
|
createdAt: Date;
|
|
18152
18161
|
updatedAt: Date;
|
|
18153
18162
|
deletedAt: Date | null;
|
|
18154
|
-
};
|
|
18163
|
+
} | null | undefined;
|
|
18155
18164
|
}[] | null | undefined;
|
|
18156
|
-
};
|
|
18157
|
-
workflowRule: {
|
|
18158
|
-
type: string;
|
|
18159
|
-
id: string;
|
|
18160
|
-
name: string;
|
|
18161
|
-
createdAt: Date;
|
|
18162
|
-
updatedAt: Date;
|
|
18163
|
-
deletedAt: Date | null;
|
|
18164
|
-
isActive: boolean;
|
|
18165
|
-
};
|
|
18165
|
+
} | null | undefined;
|
|
18166
18166
|
automationQueueId?: string | null | undefined;
|
|
18167
18167
|
};
|
|
18168
18168
|
platformMessageId: string;
|
|
@@ -18824,7 +18824,16 @@ export declare const facebookFeedContract: {
|
|
|
18824
18824
|
closedAt: Date;
|
|
18825
18825
|
lastMessageAt: Date | null;
|
|
18826
18826
|
isBotRoom: boolean;
|
|
18827
|
-
|
|
18827
|
+
workflowRule: {
|
|
18828
|
+
type: string;
|
|
18829
|
+
id: string;
|
|
18830
|
+
name: string;
|
|
18831
|
+
createdAt: Date;
|
|
18832
|
+
updatedAt: Date;
|
|
18833
|
+
deletedAt: Date | null;
|
|
18834
|
+
isActive: boolean;
|
|
18835
|
+
};
|
|
18836
|
+
cxlog?: {
|
|
18828
18837
|
id: string;
|
|
18829
18838
|
channel: string | null;
|
|
18830
18839
|
direction: string | null;
|
|
@@ -18900,25 +18909,16 @@ export declare const facebookFeedContract: {
|
|
|
18900
18909
|
startedAt: string;
|
|
18901
18910
|
endedAt: string | null;
|
|
18902
18911
|
duration: number | null;
|
|
18903
|
-
holdLabel
|
|
18912
|
+
holdLabel?: {
|
|
18904
18913
|
id: string;
|
|
18905
18914
|
name: string;
|
|
18906
18915
|
position: number;
|
|
18907
18916
|
createdAt: Date;
|
|
18908
18917
|
updatedAt: Date;
|
|
18909
18918
|
deletedAt: Date | null;
|
|
18910
|
-
};
|
|
18919
|
+
} | null | undefined;
|
|
18911
18920
|
}[] | null | undefined;
|
|
18912
|
-
};
|
|
18913
|
-
workflowRule: {
|
|
18914
|
-
type: string;
|
|
18915
|
-
id: string;
|
|
18916
|
-
name: string;
|
|
18917
|
-
createdAt: Date;
|
|
18918
|
-
updatedAt: Date;
|
|
18919
|
-
deletedAt: Date | null;
|
|
18920
|
-
isActive: boolean;
|
|
18921
|
-
};
|
|
18921
|
+
} | null | undefined;
|
|
18922
18922
|
automationQueueId?: string | null | undefined;
|
|
18923
18923
|
};
|
|
18924
18924
|
platformMessageId: string;
|
|
@@ -19579,7 +19579,16 @@ export declare const facebookFeedContract: {
|
|
|
19579
19579
|
closedAt: Date;
|
|
19580
19580
|
lastMessageAt: Date | null;
|
|
19581
19581
|
isBotRoom: boolean;
|
|
19582
|
-
|
|
19582
|
+
workflowRule: {
|
|
19583
|
+
type: string;
|
|
19584
|
+
id: string;
|
|
19585
|
+
name: string;
|
|
19586
|
+
createdAt: Date;
|
|
19587
|
+
updatedAt: Date;
|
|
19588
|
+
deletedAt: Date | null;
|
|
19589
|
+
isActive: boolean;
|
|
19590
|
+
};
|
|
19591
|
+
cxlog?: {
|
|
19583
19592
|
id: string;
|
|
19584
19593
|
channel: string | null;
|
|
19585
19594
|
direction: string | null;
|
|
@@ -19655,25 +19664,16 @@ export declare const facebookFeedContract: {
|
|
|
19655
19664
|
startedAt: string;
|
|
19656
19665
|
endedAt: string | null;
|
|
19657
19666
|
duration: number | null;
|
|
19658
|
-
holdLabel
|
|
19667
|
+
holdLabel?: {
|
|
19659
19668
|
id: string;
|
|
19660
19669
|
name: string;
|
|
19661
19670
|
position: number;
|
|
19662
19671
|
createdAt: Date;
|
|
19663
19672
|
updatedAt: Date;
|
|
19664
19673
|
deletedAt: Date | null;
|
|
19665
|
-
};
|
|
19674
|
+
} | null | undefined;
|
|
19666
19675
|
}[] | null | undefined;
|
|
19667
|
-
};
|
|
19668
|
-
workflowRule: {
|
|
19669
|
-
type: string;
|
|
19670
|
-
id: string;
|
|
19671
|
-
name: string;
|
|
19672
|
-
createdAt: Date;
|
|
19673
|
-
updatedAt: Date;
|
|
19674
|
-
deletedAt: Date | null;
|
|
19675
|
-
isActive: boolean;
|
|
19676
|
-
};
|
|
19676
|
+
} | null | undefined;
|
|
19677
19677
|
automationQueueId?: string | null | undefined;
|
|
19678
19678
|
};
|
|
19679
19679
|
platformMessageId: string;
|
|
@@ -20337,7 +20337,16 @@ export declare const facebookFeedContract: {
|
|
|
20337
20337
|
closedAt: Date;
|
|
20338
20338
|
lastMessageAt: Date | null;
|
|
20339
20339
|
isBotRoom: boolean;
|
|
20340
|
-
|
|
20340
|
+
workflowRule: {
|
|
20341
|
+
type: string;
|
|
20342
|
+
id: string;
|
|
20343
|
+
name: string;
|
|
20344
|
+
createdAt: Date;
|
|
20345
|
+
updatedAt: Date;
|
|
20346
|
+
deletedAt: Date | null;
|
|
20347
|
+
isActive: boolean;
|
|
20348
|
+
};
|
|
20349
|
+
cxlog?: {
|
|
20341
20350
|
id: string;
|
|
20342
20351
|
channel: string | null;
|
|
20343
20352
|
direction: string | null;
|
|
@@ -20413,25 +20422,16 @@ export declare const facebookFeedContract: {
|
|
|
20413
20422
|
startedAt: string;
|
|
20414
20423
|
endedAt: string | null;
|
|
20415
20424
|
duration: number | null;
|
|
20416
|
-
holdLabel
|
|
20425
|
+
holdLabel?: {
|
|
20417
20426
|
id: string;
|
|
20418
20427
|
name: string;
|
|
20419
20428
|
position: number;
|
|
20420
20429
|
createdAt: Date;
|
|
20421
20430
|
updatedAt: Date;
|
|
20422
20431
|
deletedAt: Date | null;
|
|
20423
|
-
};
|
|
20432
|
+
} | null | undefined;
|
|
20424
20433
|
}[] | null | undefined;
|
|
20425
|
-
};
|
|
20426
|
-
workflowRule: {
|
|
20427
|
-
type: string;
|
|
20428
|
-
id: string;
|
|
20429
|
-
name: string;
|
|
20430
|
-
createdAt: Date;
|
|
20431
|
-
updatedAt: Date;
|
|
20432
|
-
deletedAt: Date | null;
|
|
20433
|
-
isActive: boolean;
|
|
20434
|
-
};
|
|
20434
|
+
} | null | undefined;
|
|
20435
20435
|
automationQueueId?: string | null | undefined;
|
|
20436
20436
|
};
|
|
20437
20437
|
platformMessageId: string;
|
|
@@ -21092,7 +21092,16 @@ export declare const facebookFeedContract: {
|
|
|
21092
21092
|
closedAt: Date;
|
|
21093
21093
|
lastMessageAt: Date | null;
|
|
21094
21094
|
isBotRoom: boolean;
|
|
21095
|
-
|
|
21095
|
+
workflowRule: {
|
|
21096
|
+
type: string;
|
|
21097
|
+
id: string;
|
|
21098
|
+
name: string;
|
|
21099
|
+
createdAt: Date;
|
|
21100
|
+
updatedAt: Date;
|
|
21101
|
+
deletedAt: Date | null;
|
|
21102
|
+
isActive: boolean;
|
|
21103
|
+
};
|
|
21104
|
+
cxlog?: {
|
|
21096
21105
|
id: string;
|
|
21097
21106
|
channel: string | null;
|
|
21098
21107
|
direction: string | null;
|
|
@@ -21168,25 +21177,16 @@ export declare const facebookFeedContract: {
|
|
|
21168
21177
|
startedAt: string;
|
|
21169
21178
|
endedAt: string | null;
|
|
21170
21179
|
duration: number | null;
|
|
21171
|
-
holdLabel
|
|
21180
|
+
holdLabel?: {
|
|
21172
21181
|
id: string;
|
|
21173
21182
|
name: string;
|
|
21174
21183
|
position: number;
|
|
21175
21184
|
createdAt: Date;
|
|
21176
21185
|
updatedAt: Date;
|
|
21177
21186
|
deletedAt: Date | null;
|
|
21178
|
-
};
|
|
21187
|
+
} | null | undefined;
|
|
21179
21188
|
}[] | null | undefined;
|
|
21180
|
-
};
|
|
21181
|
-
workflowRule: {
|
|
21182
|
-
type: string;
|
|
21183
|
-
id: string;
|
|
21184
|
-
name: string;
|
|
21185
|
-
createdAt: Date;
|
|
21186
|
-
updatedAt: Date;
|
|
21187
|
-
deletedAt: Date | null;
|
|
21188
|
-
isActive: boolean;
|
|
21189
|
-
};
|
|
21189
|
+
} | null | undefined;
|
|
21190
21190
|
automationQueueId?: string | null | undefined;
|
|
21191
21191
|
};
|
|
21192
21192
|
platformMessageId: string;
|
|
@@ -21851,7 +21851,16 @@ export declare const facebookFeedContract: {
|
|
|
21851
21851
|
closedAt: Date;
|
|
21852
21852
|
lastMessageAt: Date | null;
|
|
21853
21853
|
isBotRoom: boolean;
|
|
21854
|
-
|
|
21854
|
+
workflowRule: {
|
|
21855
|
+
type: string;
|
|
21856
|
+
id: string;
|
|
21857
|
+
name: string;
|
|
21858
|
+
createdAt: Date;
|
|
21859
|
+
updatedAt: Date;
|
|
21860
|
+
deletedAt: Date | null;
|
|
21861
|
+
isActive: boolean;
|
|
21862
|
+
};
|
|
21863
|
+
cxlog?: {
|
|
21855
21864
|
id: string;
|
|
21856
21865
|
channel: string | null;
|
|
21857
21866
|
direction: string | null;
|
|
@@ -21927,25 +21936,16 @@ export declare const facebookFeedContract: {
|
|
|
21927
21936
|
startedAt: string;
|
|
21928
21937
|
endedAt: string | null;
|
|
21929
21938
|
duration: number | null;
|
|
21930
|
-
holdLabel
|
|
21939
|
+
holdLabel?: {
|
|
21931
21940
|
id: string;
|
|
21932
21941
|
name: string;
|
|
21933
21942
|
position: number;
|
|
21934
21943
|
createdAt: Date;
|
|
21935
21944
|
updatedAt: Date;
|
|
21936
21945
|
deletedAt: Date | null;
|
|
21937
|
-
};
|
|
21946
|
+
} | null | undefined;
|
|
21938
21947
|
}[] | null | undefined;
|
|
21939
|
-
};
|
|
21940
|
-
workflowRule: {
|
|
21941
|
-
type: string;
|
|
21942
|
-
id: string;
|
|
21943
|
-
name: string;
|
|
21944
|
-
createdAt: Date;
|
|
21945
|
-
updatedAt: Date;
|
|
21946
|
-
deletedAt: Date | null;
|
|
21947
|
-
isActive: boolean;
|
|
21948
|
-
};
|
|
21948
|
+
} | null | undefined;
|
|
21949
21949
|
automationQueueId?: string | null | undefined;
|
|
21950
21950
|
};
|
|
21951
21951
|
platformMessageId: string;
|
|
@@ -22606,7 +22606,16 @@ export declare const facebookFeedContract: {
|
|
|
22606
22606
|
closedAt: Date;
|
|
22607
22607
|
lastMessageAt: Date | null;
|
|
22608
22608
|
isBotRoom: boolean;
|
|
22609
|
-
|
|
22609
|
+
workflowRule: {
|
|
22610
|
+
type: string;
|
|
22611
|
+
id: string;
|
|
22612
|
+
name: string;
|
|
22613
|
+
createdAt: Date;
|
|
22614
|
+
updatedAt: Date;
|
|
22615
|
+
deletedAt: Date | null;
|
|
22616
|
+
isActive: boolean;
|
|
22617
|
+
};
|
|
22618
|
+
cxlog?: {
|
|
22610
22619
|
id: string;
|
|
22611
22620
|
channel: string | null;
|
|
22612
22621
|
direction: string | null;
|
|
@@ -22682,25 +22691,16 @@ export declare const facebookFeedContract: {
|
|
|
22682
22691
|
startedAt: string;
|
|
22683
22692
|
endedAt: string | null;
|
|
22684
22693
|
duration: number | null;
|
|
22685
|
-
holdLabel
|
|
22694
|
+
holdLabel?: {
|
|
22686
22695
|
id: string;
|
|
22687
22696
|
name: string;
|
|
22688
22697
|
position: number;
|
|
22689
22698
|
createdAt: Date;
|
|
22690
22699
|
updatedAt: Date;
|
|
22691
22700
|
deletedAt: Date | null;
|
|
22692
|
-
};
|
|
22701
|
+
} | null | undefined;
|
|
22693
22702
|
}[] | null | undefined;
|
|
22694
|
-
};
|
|
22695
|
-
workflowRule: {
|
|
22696
|
-
type: string;
|
|
22697
|
-
id: string;
|
|
22698
|
-
name: string;
|
|
22699
|
-
createdAt: Date;
|
|
22700
|
-
updatedAt: Date;
|
|
22701
|
-
deletedAt: Date | null;
|
|
22702
|
-
isActive: boolean;
|
|
22703
|
-
};
|
|
22703
|
+
} | null | undefined;
|
|
22704
22704
|
automationQueueId?: string | null | undefined;
|
|
22705
22705
|
};
|
|
22706
22706
|
platformMessageId: string;
|