@kl1/contracts 1.4.49 → 1.4.51
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/botpress/index.d.ts +9 -9
- package/dist/api-contracts/src/botpress/validation.d.ts +9 -9
- package/dist/api-contracts/src/channel/index.d.ts +64 -0
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +64 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +127 -3
- package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/schema.d.ts +26 -1
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +19 -0
- package/dist/api-contracts/src/chat/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/company/index.d.ts +80 -0
- package/dist/api-contracts/src/company/index.d.ts.map +1 -1
- package/dist/api-contracts/src/company/validation.d.ts +40 -0
- package/dist/api-contracts/src/company/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/contract.d.ts +431 -446
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +16 -0
- package/dist/api-contracts/src/facebook-feed/index.d.ts.map +1 -1
- package/dist/api-contracts/src/index.d.ts +1 -0
- package/dist/api-contracts/src/index.d.ts.map +1 -1
- package/dist/api-contracts/src/instagram/index.d.ts +16 -0
- package/dist/api-contracts/src/instagram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/line/index.d.ts +16 -0
- package/dist/api-contracts/src/line/index.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/account-contract.d.ts +169 -29
- package/dist/api-contracts/src/mail/account-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/index.d.ts +1 -0
- package/dist/api-contracts/src/mail/index.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +181 -41
- package/dist/api-contracts/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/room-contract.d.ts +12 -12
- package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts +85 -24
- package/dist/api-contracts/src/mail/schemas/account-validation.schema.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/schemas/account.schema.d.ts +3 -3
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +3 -3
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +3 -3
- package/dist/api-contracts/src/messenger/index.d.ts +16 -0
- package/dist/api-contracts/src/messenger/index.d.ts.map +1 -1
- package/dist/api-contracts/src/subscription/index.d.ts +438 -0
- package/dist/api-contracts/src/subscription/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telegram/index.d.ts +16 -0
- package/dist/api-contracts/src/telegram/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +0 -430
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts +0 -3
- package/dist/api-contracts/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts +0 -3
- package/dist/api-contracts/src/telephony-agent-presence-status/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/viber/index.d.ts +16 -0
- package/dist/api-contracts/src/viber/index.d.ts.map +1 -1
- package/dist/api-contracts/src/webchat/index.d.ts +16 -0
- package/dist/api-contracts/src/webchat/index.d.ts.map +1 -1
- package/dist/api-contracts/src/whatsapp/index.d.ts +16 -0
- package/dist/api-contracts/src/whatsapp/index.d.ts.map +1 -1
- package/dist/api-contracts/src/workflow-rule/index.d.ts +86 -7
- package/dist/api-contracts/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/entities/src/enums/chat.d.ts +1 -0
- package/dist/entities/src/enums/chat.d.ts.map +1 -1
- package/dist/index.js +1740 -1640
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1739 -1640
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
@@ -9220,6 +9220,7 @@ export declare const mainFeedContract: {
|
|
9220
9220
|
firstResponseTime: z.ZodNumber;
|
9221
9221
|
isLatest: z.ZodBoolean;
|
9222
9222
|
isBotRoom: z.ZodBoolean;
|
9223
|
+
isAiAgentRoom: z.ZodBoolean;
|
9223
9224
|
metadata: z.ZodAny;
|
9224
9225
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
9225
9226
|
platformContact: z.ZodObject<{
|
@@ -12155,6 +12156,7 @@ export declare const mainFeedContract: {
|
|
12155
12156
|
};
|
12156
12157
|
lastMessageAt: Date | null;
|
12157
12158
|
isBotRoom: boolean;
|
12159
|
+
isAiAgentRoom: boolean;
|
12158
12160
|
csatStatus: string | null;
|
12159
12161
|
cxlog: {
|
12160
12162
|
id: string;
|
@@ -12592,6 +12594,7 @@ export declare const mainFeedContract: {
|
|
12592
12594
|
};
|
12593
12595
|
lastMessageAt: Date | null;
|
12594
12596
|
isBotRoom: boolean;
|
12597
|
+
isAiAgentRoom: boolean;
|
12595
12598
|
csatStatus: string | null;
|
12596
12599
|
cxlog: {
|
12597
12600
|
id: string;
|
@@ -15004,6 +15007,7 @@ export declare const mainFeedContract: {
|
|
15004
15007
|
firstResponseTime: z.ZodNumber;
|
15005
15008
|
isLatest: z.ZodBoolean;
|
15006
15009
|
isBotRoom: z.ZodBoolean;
|
15010
|
+
isAiAgentRoom: z.ZodBoolean;
|
15007
15011
|
metadata: z.ZodAny;
|
15008
15012
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
15009
15013
|
platformContact: z.ZodObject<{
|
@@ -17939,6 +17943,7 @@ export declare const mainFeedContract: {
|
|
17939
17943
|
};
|
17940
17944
|
lastMessageAt: Date | null;
|
17941
17945
|
isBotRoom: boolean;
|
17946
|
+
isAiAgentRoom: boolean;
|
17942
17947
|
csatStatus: string | null;
|
17943
17948
|
cxlog: {
|
17944
17949
|
id: string;
|
@@ -18376,6 +18381,7 @@ export declare const mainFeedContract: {
|
|
18376
18381
|
};
|
18377
18382
|
lastMessageAt: Date | null;
|
18378
18383
|
isBotRoom: boolean;
|
18384
|
+
isAiAgentRoom: boolean;
|
18379
18385
|
csatStatus: string | null;
|
18380
18386
|
cxlog: {
|
18381
18387
|
id: string;
|
@@ -20586,6 +20592,7 @@ export declare const mainFeedContract: {
|
|
20586
20592
|
};
|
20587
20593
|
lastMessageAt: Date | null;
|
20588
20594
|
isBotRoom: boolean;
|
20595
|
+
isAiAgentRoom: boolean;
|
20589
20596
|
csatStatus: string | null;
|
20590
20597
|
cxlog: {
|
20591
20598
|
id: string;
|
@@ -21360,6 +21367,7 @@ export declare const mainFeedContract: {
|
|
21360
21367
|
};
|
21361
21368
|
lastMessageAt: Date | null;
|
21362
21369
|
isBotRoom: boolean;
|
21370
|
+
isAiAgentRoom: boolean;
|
21363
21371
|
csatStatus: string | null;
|
21364
21372
|
cxlog: {
|
21365
21373
|
id: string;
|
@@ -22141,6 +22149,7 @@ export declare const mainFeedContract: {
|
|
22141
22149
|
};
|
22142
22150
|
lastMessageAt: Date | null;
|
22143
22151
|
isBotRoom: boolean;
|
22152
|
+
isAiAgentRoom: boolean;
|
22144
22153
|
csatStatus: string | null;
|
22145
22154
|
cxlog: {
|
22146
22155
|
id: string;
|
@@ -22910,6 +22919,7 @@ export declare const mainFeedContract: {
|
|
22910
22919
|
};
|
22911
22920
|
lastMessageAt: Date | null;
|
22912
22921
|
isBotRoom: boolean;
|
22922
|
+
isAiAgentRoom: boolean;
|
22913
22923
|
csatStatus: string | null;
|
22914
22924
|
cxlog: {
|
22915
22925
|
id: string;
|
@@ -23817,6 +23827,7 @@ export declare const mainFeedContract: {
|
|
23817
23827
|
};
|
23818
23828
|
lastMessageAt: Date | null;
|
23819
23829
|
isBotRoom: boolean;
|
23830
|
+
isAiAgentRoom: boolean;
|
23820
23831
|
csatStatus: string | null;
|
23821
23832
|
cxlog: {
|
23822
23833
|
id: string;
|
@@ -24586,6 +24597,7 @@ export declare const mainFeedContract: {
|
|
24586
24597
|
};
|
24587
24598
|
lastMessageAt: Date | null;
|
24588
24599
|
isBotRoom: boolean;
|
24600
|
+
isAiAgentRoom: boolean;
|
24589
24601
|
csatStatus: string | null;
|
24590
24602
|
cxlog: {
|
24591
24603
|
id: string;
|
@@ -25495,6 +25507,7 @@ export declare const mainFeedContract: {
|
|
25495
25507
|
};
|
25496
25508
|
lastMessageAt: Date | null;
|
25497
25509
|
isBotRoom: boolean;
|
25510
|
+
isAiAgentRoom: boolean;
|
25498
25511
|
csatStatus: string | null;
|
25499
25512
|
cxlog: {
|
25500
25513
|
id: string;
|
@@ -26264,6 +26277,7 @@ export declare const mainFeedContract: {
|
|
26264
26277
|
};
|
26265
26278
|
lastMessageAt: Date | null;
|
26266
26279
|
isBotRoom: boolean;
|
26280
|
+
isAiAgentRoom: boolean;
|
26267
26281
|
csatStatus: string | null;
|
26268
26282
|
cxlog: {
|
26269
26283
|
id: string;
|
@@ -27177,6 +27191,7 @@ export declare const mainFeedContract: {
|
|
27177
27191
|
};
|
27178
27192
|
lastMessageAt: Date | null;
|
27179
27193
|
isBotRoom: boolean;
|
27194
|
+
isAiAgentRoom: boolean;
|
27180
27195
|
csatStatus: string | null;
|
27181
27196
|
cxlog: {
|
27182
27197
|
id: string;
|
@@ -27946,6 +27961,7 @@ export declare const mainFeedContract: {
|
|
27946
27961
|
};
|
27947
27962
|
lastMessageAt: Date | null;
|
27948
27963
|
isBotRoom: boolean;
|
27964
|
+
isAiAgentRoom: boolean;
|
27949
27965
|
csatStatus: string | null;
|
27950
27966
|
cxlog: {
|
27951
27967
|
id: string;
|
@@ -28498,10 +28514,12 @@ export declare const mainChatRoomContract: {
|
|
28498
28514
|
botpressBotId: z.ZodOptional<z.ZodString>;
|
28499
28515
|
queueIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
28500
28516
|
queueFilterIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
28517
|
+
orderBy: z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"DESC">, z.ZodLiteral<"ASC">]>>>;
|
28501
28518
|
}, "strip", z.ZodTypeAny, {
|
28502
28519
|
page: number;
|
28503
28520
|
pageSize: number;
|
28504
28521
|
sorting: string;
|
28522
|
+
orderBy: "ASC" | "DESC";
|
28505
28523
|
contactTags?: string[] | undefined;
|
28506
28524
|
contacts?: string[] | undefined;
|
28507
28525
|
agents?: string[] | undefined;
|
@@ -28578,6 +28596,7 @@ export declare const mainChatRoomContract: {
|
|
28578
28596
|
botpressBotId?: string | undefined;
|
28579
28597
|
queueIds?: string[] | undefined;
|
28580
28598
|
queueFilterIds?: string[] | undefined;
|
28599
|
+
orderBy?: "ASC" | "DESC" | undefined;
|
28581
28600
|
}>;
|
28582
28601
|
responses: {
|
28583
28602
|
200: z.ZodObject<{
|
@@ -28600,6 +28619,7 @@ export declare const mainChatRoomContract: {
|
|
28600
28619
|
firstResponseTime: z.ZodNumber;
|
28601
28620
|
isLatest: z.ZodBoolean;
|
28602
28621
|
isBotRoom: z.ZodBoolean;
|
28622
|
+
isAiAgentRoom: z.ZodBoolean;
|
28603
28623
|
metadata: z.ZodAny;
|
28604
28624
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
28605
28625
|
platformContact: z.ZodObject<{
|
@@ -31535,6 +31555,7 @@ export declare const mainChatRoomContract: {
|
|
31535
31555
|
};
|
31536
31556
|
lastMessageAt: Date | null;
|
31537
31557
|
isBotRoom: boolean;
|
31558
|
+
isAiAgentRoom: boolean;
|
31538
31559
|
csatStatus: string | null;
|
31539
31560
|
cxlog: {
|
31540
31561
|
id: string;
|
@@ -31972,6 +31993,7 @@ export declare const mainChatRoomContract: {
|
|
31972
31993
|
};
|
31973
31994
|
lastMessageAt: Date | null;
|
31974
31995
|
isBotRoom: boolean;
|
31996
|
+
isAiAgentRoom: boolean;
|
31975
31997
|
csatStatus: string | null;
|
31976
31998
|
cxlog: {
|
31977
31999
|
id: string;
|
@@ -32422,6 +32444,7 @@ export declare const mainChatRoomContract: {
|
|
32422
32444
|
};
|
32423
32445
|
lastMessageAt: Date | null;
|
32424
32446
|
isBotRoom: boolean;
|
32447
|
+
isAiAgentRoom: boolean;
|
32425
32448
|
csatStatus: string | null;
|
32426
32449
|
cxlog: {
|
32427
32450
|
id: string;
|
@@ -32870,6 +32893,7 @@ export declare const mainChatRoomContract: {
|
|
32870
32893
|
};
|
32871
32894
|
lastMessageAt: Date | null;
|
32872
32895
|
isBotRoom: boolean;
|
32896
|
+
isAiAgentRoom: boolean;
|
32873
32897
|
csatStatus: string | null;
|
32874
32898
|
cxlog: {
|
32875
32899
|
id: string;
|
@@ -33045,6 +33069,7 @@ export declare const mainChatRoomContract: {
|
|
33045
33069
|
firstResponseTime: z.ZodNumber;
|
33046
33070
|
isLatest: z.ZodBoolean;
|
33047
33071
|
isBotRoom: z.ZodBoolean;
|
33072
|
+
isAiAgentRoom: z.ZodBoolean;
|
33048
33073
|
metadata: z.ZodAny;
|
33049
33074
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
33050
33075
|
platformContact: z.ZodObject<{
|
@@ -35980,6 +36005,7 @@ export declare const mainChatRoomContract: {
|
|
35980
36005
|
};
|
35981
36006
|
lastMessageAt: Date | null;
|
35982
36007
|
isBotRoom: boolean;
|
36008
|
+
isAiAgentRoom: boolean;
|
35983
36009
|
csatStatus: string | null;
|
35984
36010
|
cxlog: {
|
35985
36011
|
id: string;
|
@@ -36417,6 +36443,7 @@ export declare const mainChatRoomContract: {
|
|
36417
36443
|
};
|
36418
36444
|
lastMessageAt: Date | null;
|
36419
36445
|
isBotRoom: boolean;
|
36446
|
+
isAiAgentRoom: boolean;
|
36420
36447
|
csatStatus: string | null;
|
36421
36448
|
cxlog: {
|
36422
36449
|
id: string;
|
@@ -36943,6 +36970,7 @@ export declare const mainChatRoomContract: {
|
|
36943
36970
|
};
|
36944
36971
|
lastMessageAt: Date | null;
|
36945
36972
|
isBotRoom: boolean;
|
36973
|
+
isAiAgentRoom: boolean;
|
36946
36974
|
csatStatus: string | null;
|
36947
36975
|
cxlog: {
|
36948
36976
|
id: string;
|
@@ -37413,6 +37441,7 @@ export declare const mainChatRoomContract: {
|
|
37413
37441
|
};
|
37414
37442
|
lastMessageAt: Date | null;
|
37415
37443
|
isBotRoom: boolean;
|
37444
|
+
isAiAgentRoom: boolean;
|
37416
37445
|
csatStatus: string | null;
|
37417
37446
|
cxlog: {
|
37418
37447
|
id: string;
|
@@ -37885,6 +37914,7 @@ export declare const mainChatRoomContract: {
|
|
37885
37914
|
};
|
37886
37915
|
lastMessageAt: Date | null;
|
37887
37916
|
isBotRoom: boolean;
|
37917
|
+
isAiAgentRoom: boolean;
|
37888
37918
|
csatStatus: string | null;
|
37889
37919
|
cxlog: {
|
37890
37920
|
id: string;
|
@@ -38358,6 +38388,7 @@ export declare const mainChatRoomContract: {
|
|
38358
38388
|
};
|
38359
38389
|
lastMessageAt: Date | null;
|
38360
38390
|
isBotRoom: boolean;
|
38391
|
+
isAiAgentRoom: boolean;
|
38361
38392
|
csatStatus: string | null;
|
38362
38393
|
cxlog: {
|
38363
38394
|
id: string;
|
@@ -40594,6 +40625,7 @@ export declare const mainChatRoomContract: {
|
|
40594
40625
|
}>;
|
40595
40626
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
40596
40627
|
isBotRoom: z.ZodBoolean;
|
40628
|
+
isAiAgentRoom: z.ZodBoolean;
|
40597
40629
|
csatStatus: z.ZodNullable<z.ZodString>;
|
40598
40630
|
cxlog: z.ZodObject<{
|
40599
40631
|
id: z.ZodString;
|
@@ -41495,6 +41527,7 @@ export declare const mainChatRoomContract: {
|
|
41495
41527
|
};
|
41496
41528
|
lastMessageAt: Date | null;
|
41497
41529
|
isBotRoom: boolean;
|
41530
|
+
isAiAgentRoom: boolean;
|
41498
41531
|
csatStatus: string | null;
|
41499
41532
|
cxlog: {
|
41500
41533
|
id: string;
|
@@ -41933,6 +41966,7 @@ export declare const mainChatRoomContract: {
|
|
41933
41966
|
};
|
41934
41967
|
lastMessageAt: Date | null;
|
41935
41968
|
isBotRoom: boolean;
|
41969
|
+
isAiAgentRoom: boolean;
|
41936
41970
|
csatStatus: string | null;
|
41937
41971
|
cxlog: {
|
41938
41972
|
id: string;
|
@@ -42373,6 +42407,7 @@ export declare const mainChatRoomContract: {
|
|
42373
42407
|
};
|
42374
42408
|
lastMessageAt: Date | null;
|
42375
42409
|
isBotRoom: boolean;
|
42410
|
+
isAiAgentRoom: boolean;
|
42376
42411
|
csatStatus: string | null;
|
42377
42412
|
cxlog: {
|
42378
42413
|
id: string;
|
@@ -42814,6 +42849,7 @@ export declare const mainChatRoomContract: {
|
|
42814
42849
|
};
|
42815
42850
|
lastMessageAt: Date | null;
|
42816
42851
|
isBotRoom: boolean;
|
42852
|
+
isAiAgentRoom: boolean;
|
42817
42853
|
csatStatus: string | null;
|
42818
42854
|
cxlog: {
|
42819
42855
|
id: string;
|
@@ -45017,6 +45053,7 @@ export declare const mainChatRoomContract: {
|
|
45017
45053
|
}>;
|
45018
45054
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
45019
45055
|
isBotRoom: z.ZodBoolean;
|
45056
|
+
isAiAgentRoom: z.ZodBoolean;
|
45020
45057
|
csatStatus: z.ZodNullable<z.ZodString>;
|
45021
45058
|
cxlog: z.ZodObject<{
|
45022
45059
|
id: z.ZodString;
|
@@ -46800,6 +46837,7 @@ export declare const mainChatRoomContract: {
|
|
46800
46837
|
};
|
46801
46838
|
lastMessageAt: Date | null;
|
46802
46839
|
isBotRoom: boolean;
|
46840
|
+
isAiAgentRoom: boolean;
|
46803
46841
|
csatStatus: string | null;
|
46804
46842
|
cxlog: {
|
46805
46843
|
id: string;
|
@@ -47350,6 +47388,7 @@ export declare const mainChatRoomContract: {
|
|
47350
47388
|
};
|
47351
47389
|
lastMessageAt: Date | null;
|
47352
47390
|
isBotRoom: boolean;
|
47391
|
+
isAiAgentRoom: boolean;
|
47353
47392
|
csatStatus: string | null;
|
47354
47393
|
cxlog: {
|
47355
47394
|
id: string;
|
@@ -47902,6 +47941,7 @@ export declare const mainChatRoomContract: {
|
|
47902
47941
|
};
|
47903
47942
|
lastMessageAt: Date | null;
|
47904
47943
|
isBotRoom: boolean;
|
47944
|
+
isAiAgentRoom: boolean;
|
47905
47945
|
csatStatus: string | null;
|
47906
47946
|
cxlog: {
|
47907
47947
|
id: string;
|
@@ -48455,6 +48495,7 @@ export declare const mainChatRoomContract: {
|
|
48455
48495
|
};
|
48456
48496
|
lastMessageAt: Date | null;
|
48457
48497
|
isBotRoom: boolean;
|
48498
|
+
isAiAgentRoom: boolean;
|
48458
48499
|
csatStatus: string | null;
|
48459
48500
|
cxlog: {
|
48460
48501
|
id: string;
|
@@ -50648,6 +50689,7 @@ export declare const mainChatRoomContract: {
|
|
50648
50689
|
}>;
|
50649
50690
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
50650
50691
|
isBotRoom: z.ZodBoolean;
|
50692
|
+
isAiAgentRoom: z.ZodBoolean;
|
50651
50693
|
csatStatus: z.ZodNullable<z.ZodString>;
|
50652
50694
|
cxlog: z.ZodObject<{
|
50653
50695
|
id: z.ZodString;
|
@@ -51550,6 +51592,7 @@ export declare const mainChatRoomContract: {
|
|
51550
51592
|
};
|
51551
51593
|
lastMessageAt: Date | null;
|
51552
51594
|
isBotRoom: boolean;
|
51595
|
+
isAiAgentRoom: boolean;
|
51553
51596
|
csatStatus: string | null;
|
51554
51597
|
cxlog: {
|
51555
51598
|
id: string;
|
@@ -51988,6 +52031,7 @@ export declare const mainChatRoomContract: {
|
|
51988
52031
|
};
|
51989
52032
|
lastMessageAt: Date | null;
|
51990
52033
|
isBotRoom: boolean;
|
52034
|
+
isAiAgentRoom: boolean;
|
51991
52035
|
csatStatus: string | null;
|
51992
52036
|
cxlog: {
|
51993
52037
|
id: string;
|
@@ -52428,6 +52472,7 @@ export declare const mainChatRoomContract: {
|
|
52428
52472
|
};
|
52429
52473
|
lastMessageAt: Date | null;
|
52430
52474
|
isBotRoom: boolean;
|
52475
|
+
isAiAgentRoom: boolean;
|
52431
52476
|
csatStatus: string | null;
|
52432
52477
|
cxlog: {
|
52433
52478
|
id: string;
|
@@ -52869,6 +52914,7 @@ export declare const mainChatRoomContract: {
|
|
52869
52914
|
};
|
52870
52915
|
lastMessageAt: Date | null;
|
52871
52916
|
isBotRoom: boolean;
|
52917
|
+
isAiAgentRoom: boolean;
|
52872
52918
|
csatStatus: string | null;
|
52873
52919
|
cxlog: {
|
52874
52920
|
id: string;
|
@@ -55075,6 +55121,7 @@ export declare const mainChatRoomContract: {
|
|
55075
55121
|
}>;
|
55076
55122
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
55077
55123
|
isBotRoom: z.ZodBoolean;
|
55124
|
+
isAiAgentRoom: z.ZodBoolean;
|
55078
55125
|
csatStatus: z.ZodNullable<z.ZodString>;
|
55079
55126
|
cxlog: z.ZodObject<{
|
55080
55127
|
id: z.ZodString;
|
@@ -55975,6 +56022,7 @@ export declare const mainChatRoomContract: {
|
|
55975
56022
|
};
|
55976
56023
|
lastMessageAt: Date | null;
|
55977
56024
|
isBotRoom: boolean;
|
56025
|
+
isAiAgentRoom: boolean;
|
55978
56026
|
csatStatus: string | null;
|
55979
56027
|
cxlog: {
|
55980
56028
|
id: string;
|
@@ -56412,6 +56460,7 @@ export declare const mainChatRoomContract: {
|
|
56412
56460
|
};
|
56413
56461
|
lastMessageAt: Date | null;
|
56414
56462
|
isBotRoom: boolean;
|
56463
|
+
isAiAgentRoom: boolean;
|
56415
56464
|
csatStatus: string | null;
|
56416
56465
|
cxlog: {
|
56417
56466
|
id: string;
|
@@ -56851,6 +56900,7 @@ export declare const mainChatRoomContract: {
|
|
56851
56900
|
};
|
56852
56901
|
lastMessageAt: Date | null;
|
56853
56902
|
isBotRoom: boolean;
|
56903
|
+
isAiAgentRoom: boolean;
|
56854
56904
|
csatStatus: string | null;
|
56855
56905
|
cxlog: {
|
56856
56906
|
id: string;
|
@@ -57294,6 +57344,7 @@ export declare const mainChatRoomContract: {
|
|
57294
57344
|
};
|
57295
57345
|
lastMessageAt: Date | null;
|
57296
57346
|
isBotRoom: boolean;
|
57347
|
+
isAiAgentRoom: boolean;
|
57297
57348
|
csatStatus: string | null;
|
57298
57349
|
cxlog: {
|
57299
57350
|
id: string;
|
@@ -57455,7 +57506,7 @@ export declare const mainChatRoomContract: {
|
|
57455
57506
|
requestId: string;
|
57456
57507
|
}>;
|
57457
57508
|
};
|
57458
|
-
path: "
|
57509
|
+
path: "chs/api/v1/chat/opened-and-closed-room-counts";
|
57459
57510
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
57460
57511
|
'x-tenant': z.ZodString;
|
57461
57512
|
'x-service-token': z.ZodString;
|
@@ -57503,7 +57554,7 @@ export declare const mainChatRoomContract: {
|
|
57503
57554
|
requestId: string;
|
57504
57555
|
}>;
|
57505
57556
|
};
|
57506
|
-
path: "
|
57557
|
+
path: "chs/api/v1/chat/queue-and-hold-room-counts";
|
57507
57558
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
57508
57559
|
'x-tenant': z.ZodString;
|
57509
57560
|
'x-service-token': z.ZodString;
|
@@ -57546,7 +57597,7 @@ export declare const mainChatRoomContract: {
|
|
57546
57597
|
requestId: string;
|
57547
57598
|
}>;
|
57548
57599
|
};
|
57549
|
-
path: "
|
57600
|
+
path: "chs/api/v1/chat/bot-room-count";
|
57550
57601
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
57551
57602
|
'x-tenant': z.ZodString;
|
57552
57603
|
'x-service-token': z.ZodString;
|
@@ -59634,6 +59685,7 @@ export declare const mainChatRoomContract: {
|
|
59634
59685
|
}>;
|
59635
59686
|
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
59636
59687
|
isBotRoom: z.ZodBoolean;
|
59688
|
+
isAiAgentRoom: z.ZodBoolean;
|
59637
59689
|
csatStatus: z.ZodNullable<z.ZodString>;
|
59638
59690
|
cxlog: z.ZodObject<{
|
59639
59691
|
id: z.ZodString;
|
@@ -61417,6 +61469,7 @@ export declare const mainChatRoomContract: {
|
|
61417
61469
|
};
|
61418
61470
|
lastMessageAt: Date | null;
|
61419
61471
|
isBotRoom: boolean;
|
61472
|
+
isAiAgentRoom: boolean;
|
61420
61473
|
csatStatus: string | null;
|
61421
61474
|
cxlog: {
|
61422
61475
|
id: string;
|
@@ -61967,6 +62020,7 @@ export declare const mainChatRoomContract: {
|
|
61967
62020
|
};
|
61968
62021
|
lastMessageAt: Date | null;
|
61969
62022
|
isBotRoom: boolean;
|
62023
|
+
isAiAgentRoom: boolean;
|
61970
62024
|
csatStatus: string | null;
|
61971
62025
|
cxlog: {
|
61972
62026
|
id: string;
|
@@ -62519,6 +62573,7 @@ export declare const mainChatRoomContract: {
|
|
62519
62573
|
};
|
62520
62574
|
lastMessageAt: Date | null;
|
62521
62575
|
isBotRoom: boolean;
|
62576
|
+
isAiAgentRoom: boolean;
|
62522
62577
|
csatStatus: string | null;
|
62523
62578
|
cxlog: {
|
62524
62579
|
id: string;
|
@@ -63072,6 +63127,7 @@ export declare const mainChatRoomContract: {
|
|
63072
63127
|
};
|
63073
63128
|
lastMessageAt: Date | null;
|
63074
63129
|
isBotRoom: boolean;
|
63130
|
+
isAiAgentRoom: boolean;
|
63075
63131
|
csatStatus: string | null;
|
63076
63132
|
cxlog: {
|
63077
63133
|
id: string;
|
@@ -64094,6 +64150,7 @@ export declare const mainChatContract: {
|
|
64094
64150
|
firstResponseTime: z.ZodNumber;
|
64095
64151
|
isLatest: z.ZodBoolean;
|
64096
64152
|
isBotRoom: z.ZodBoolean;
|
64153
|
+
isAiAgentRoom: z.ZodBoolean;
|
64097
64154
|
metadata: z.ZodAny;
|
64098
64155
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
64099
64156
|
platformContact: z.ZodObject<{
|
@@ -67029,6 +67086,7 @@ export declare const mainChatContract: {
|
|
67029
67086
|
};
|
67030
67087
|
lastMessageAt: Date | null;
|
67031
67088
|
isBotRoom: boolean;
|
67089
|
+
isAiAgentRoom: boolean;
|
67032
67090
|
csatStatus: string | null;
|
67033
67091
|
cxlog: {
|
67034
67092
|
id: string;
|
@@ -67466,6 +67524,7 @@ export declare const mainChatContract: {
|
|
67466
67524
|
};
|
67467
67525
|
lastMessageAt: Date | null;
|
67468
67526
|
isBotRoom: boolean;
|
67527
|
+
isAiAgentRoom: boolean;
|
67469
67528
|
csatStatus: string | null;
|
67470
67529
|
cxlog: {
|
67471
67530
|
id: string;
|
@@ -68831,6 +68890,7 @@ export declare const mainChatContract: {
|
|
68831
68890
|
firstResponseTime: z.ZodNumber;
|
68832
68891
|
isLatest: z.ZodBoolean;
|
68833
68892
|
isBotRoom: z.ZodBoolean;
|
68893
|
+
isAiAgentRoom: z.ZodBoolean;
|
68834
68894
|
metadata: z.ZodAny;
|
68835
68895
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
68836
68896
|
platformContact: z.ZodObject<{
|
@@ -71766,6 +71826,7 @@ export declare const mainChatContract: {
|
|
71766
71826
|
};
|
71767
71827
|
lastMessageAt: Date | null;
|
71768
71828
|
isBotRoom: boolean;
|
71829
|
+
isAiAgentRoom: boolean;
|
71769
71830
|
csatStatus: string | null;
|
71770
71831
|
cxlog: {
|
71771
71832
|
id: string;
|
@@ -72203,6 +72264,7 @@ export declare const mainChatContract: {
|
|
72203
72264
|
};
|
72204
72265
|
lastMessageAt: Date | null;
|
72205
72266
|
isBotRoom: boolean;
|
72267
|
+
isAiAgentRoom: boolean;
|
72206
72268
|
csatStatus: string | null;
|
72207
72269
|
cxlog: {
|
72208
72270
|
id: string;
|
@@ -74413,6 +74475,7 @@ export declare const mainChatContract: {
|
|
74413
74475
|
};
|
74414
74476
|
lastMessageAt: Date | null;
|
74415
74477
|
isBotRoom: boolean;
|
74478
|
+
isAiAgentRoom: boolean;
|
74416
74479
|
csatStatus: string | null;
|
74417
74480
|
cxlog: {
|
74418
74481
|
id: string;
|
@@ -75187,6 +75250,7 @@ export declare const mainChatContract: {
|
|
75187
75250
|
};
|
75188
75251
|
lastMessageAt: Date | null;
|
75189
75252
|
isBotRoom: boolean;
|
75253
|
+
isAiAgentRoom: boolean;
|
75190
75254
|
csatStatus: string | null;
|
75191
75255
|
cxlog: {
|
75192
75256
|
id: string;
|
@@ -75962,6 +76026,7 @@ export declare const mainChatContract: {
|
|
75962
76026
|
};
|
75963
76027
|
lastMessageAt: Date | null;
|
75964
76028
|
isBotRoom: boolean;
|
76029
|
+
isAiAgentRoom: boolean;
|
75965
76030
|
csatStatus: string | null;
|
75966
76031
|
cxlog: {
|
75967
76032
|
id: string;
|
@@ -76736,6 +76801,7 @@ export declare const mainChatContract: {
|
|
76736
76801
|
};
|
76737
76802
|
lastMessageAt: Date | null;
|
76738
76803
|
isBotRoom: boolean;
|
76804
|
+
isAiAgentRoom: boolean;
|
76739
76805
|
csatStatus: string | null;
|
76740
76806
|
cxlog: {
|
76741
76807
|
id: string;
|
@@ -77511,6 +77577,7 @@ export declare const mainChatContract: {
|
|
77511
77577
|
};
|
77512
77578
|
lastMessageAt: Date | null;
|
77513
77579
|
isBotRoom: boolean;
|
77580
|
+
isAiAgentRoom: boolean;
|
77514
77581
|
csatStatus: string | null;
|
77515
77582
|
cxlog: {
|
77516
77583
|
id: string;
|
@@ -78285,6 +78352,7 @@ export declare const mainChatContract: {
|
|
78285
78352
|
};
|
78286
78353
|
lastMessageAt: Date | null;
|
78287
78354
|
isBotRoom: boolean;
|
78355
|
+
isAiAgentRoom: boolean;
|
78288
78356
|
csatStatus: string | null;
|
78289
78357
|
cxlog: {
|
78290
78358
|
id: string;
|
@@ -79062,6 +79130,7 @@ export declare const mainChatContract: {
|
|
79062
79130
|
};
|
79063
79131
|
lastMessageAt: Date | null;
|
79064
79132
|
isBotRoom: boolean;
|
79133
|
+
isAiAgentRoom: boolean;
|
79065
79134
|
csatStatus: string | null;
|
79066
79135
|
cxlog: {
|
79067
79136
|
id: string;
|
@@ -79836,6 +79905,7 @@ export declare const mainChatContract: {
|
|
79836
79905
|
};
|
79837
79906
|
lastMessageAt: Date | null;
|
79838
79907
|
isBotRoom: boolean;
|
79908
|
+
isAiAgentRoom: boolean;
|
79839
79909
|
csatStatus: string | null;
|
79840
79910
|
cxlog: {
|
79841
79911
|
id: string;
|
@@ -80614,6 +80684,7 @@ export declare const mainChatContract: {
|
|
80614
80684
|
};
|
80615
80685
|
lastMessageAt: Date | null;
|
80616
80686
|
isBotRoom: boolean;
|
80687
|
+
isAiAgentRoom: boolean;
|
80617
80688
|
csatStatus: string | null;
|
80618
80689
|
cxlog: {
|
80619
80690
|
id: string;
|
@@ -81388,6 +81459,7 @@ export declare const mainChatContract: {
|
|
81388
81459
|
};
|
81389
81460
|
lastMessageAt: Date | null;
|
81390
81461
|
isBotRoom: boolean;
|
81462
|
+
isAiAgentRoom: boolean;
|
81391
81463
|
csatStatus: string | null;
|
81392
81464
|
cxlog: {
|
81393
81465
|
id: string;
|
@@ -82372,6 +82444,7 @@ export declare const mainChatContract: {
|
|
82372
82444
|
firstResponseTime: z.ZodNumber;
|
82373
82445
|
isLatest: z.ZodBoolean;
|
82374
82446
|
isBotRoom: z.ZodBoolean;
|
82447
|
+
isAiAgentRoom: z.ZodBoolean;
|
82375
82448
|
metadata: z.ZodAny;
|
82376
82449
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
82377
82450
|
platformContact: z.ZodObject<{
|
@@ -85307,6 +85380,7 @@ export declare const mainChatContract: {
|
|
85307
85380
|
};
|
85308
85381
|
lastMessageAt: Date | null;
|
85309
85382
|
isBotRoom: boolean;
|
85383
|
+
isAiAgentRoom: boolean;
|
85310
85384
|
csatStatus: string | null;
|
85311
85385
|
cxlog: {
|
85312
85386
|
id: string;
|
@@ -85744,6 +85818,7 @@ export declare const mainChatContract: {
|
|
85744
85818
|
};
|
85745
85819
|
lastMessageAt: Date | null;
|
85746
85820
|
isBotRoom: boolean;
|
85821
|
+
isAiAgentRoom: boolean;
|
85747
85822
|
csatStatus: string | null;
|
85748
85823
|
cxlog: {
|
85749
85824
|
id: string;
|
@@ -89937,6 +90012,7 @@ export declare const mainChatContract: {
|
|
89937
90012
|
};
|
89938
90013
|
lastMessageAt: Date | null;
|
89939
90014
|
isBotRoom: boolean;
|
90015
|
+
isAiAgentRoom: boolean;
|
89940
90016
|
csatStatus: string | null;
|
89941
90017
|
cxlog: {
|
89942
90018
|
id: string;
|
@@ -91001,6 +91077,7 @@ export declare const mainChatContract: {
|
|
91001
91077
|
};
|
91002
91078
|
lastMessageAt: Date | null;
|
91003
91079
|
isBotRoom: boolean;
|
91080
|
+
isAiAgentRoom: boolean;
|
91004
91081
|
csatStatus: string | null;
|
91005
91082
|
cxlog: {
|
91006
91083
|
id: string;
|
@@ -92067,6 +92144,7 @@ export declare const mainChatContract: {
|
|
92067
92144
|
};
|
92068
92145
|
lastMessageAt: Date | null;
|
92069
92146
|
isBotRoom: boolean;
|
92147
|
+
isAiAgentRoom: boolean;
|
92070
92148
|
csatStatus: string | null;
|
92071
92149
|
cxlog: {
|
92072
92150
|
id: string;
|
@@ -93137,6 +93215,7 @@ export declare const mainChatContract: {
|
|
93137
93215
|
};
|
93138
93216
|
lastMessageAt: Date | null;
|
93139
93217
|
isBotRoom: boolean;
|
93218
|
+
isAiAgentRoom: boolean;
|
93140
93219
|
csatStatus: string | null;
|
93141
93220
|
cxlog: {
|
93142
93221
|
id: string;
|
@@ -93819,6 +93898,7 @@ export declare const mainChatContract: {
|
|
93819
93898
|
firstResponseTime: z.ZodNumber;
|
93820
93899
|
isLatest: z.ZodBoolean;
|
93821
93900
|
isBotRoom: z.ZodBoolean;
|
93901
|
+
isAiAgentRoom: z.ZodBoolean;
|
93822
93902
|
metadata: z.ZodAny;
|
93823
93903
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
93824
93904
|
platformContact: z.ZodObject<{
|
@@ -96754,6 +96834,7 @@ export declare const mainChatContract: {
|
|
96754
96834
|
};
|
96755
96835
|
lastMessageAt: Date | null;
|
96756
96836
|
isBotRoom: boolean;
|
96837
|
+
isAiAgentRoom: boolean;
|
96757
96838
|
csatStatus: string | null;
|
96758
96839
|
cxlog: {
|
96759
96840
|
id: string;
|
@@ -97191,6 +97272,7 @@ export declare const mainChatContract: {
|
|
97191
97272
|
};
|
97192
97273
|
lastMessageAt: Date | null;
|
97193
97274
|
isBotRoom: boolean;
|
97275
|
+
isAiAgentRoom: boolean;
|
97194
97276
|
csatStatus: string | null;
|
97195
97277
|
cxlog: {
|
97196
97278
|
id: string;
|
@@ -97630,6 +97712,7 @@ export declare const mainChatContract: {
|
|
97630
97712
|
};
|
97631
97713
|
lastMessageAt: Date | null;
|
97632
97714
|
isBotRoom: boolean;
|
97715
|
+
isAiAgentRoom: boolean;
|
97633
97716
|
csatStatus: string | null;
|
97634
97717
|
cxlog: {
|
97635
97718
|
id: string;
|
@@ -98070,6 +98153,7 @@ export declare const mainChatContract: {
|
|
98070
98153
|
};
|
98071
98154
|
lastMessageAt: Date | null;
|
98072
98155
|
isBotRoom: boolean;
|
98156
|
+
isAiAgentRoom: boolean;
|
98073
98157
|
csatStatus: string | null;
|
98074
98158
|
cxlog: {
|
98075
98159
|
id: string;
|
@@ -98242,6 +98326,7 @@ export declare const mainChatContract: {
|
|
98242
98326
|
firstResponseTime: z.ZodNumber;
|
98243
98327
|
isLatest: z.ZodBoolean;
|
98244
98328
|
isBotRoom: z.ZodBoolean;
|
98329
|
+
isAiAgentRoom: z.ZodBoolean;
|
98245
98330
|
metadata: z.ZodAny;
|
98246
98331
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
98247
98332
|
platformContact: z.ZodObject<{
|
@@ -101177,6 +101262,7 @@ export declare const mainChatContract: {
|
|
101177
101262
|
};
|
101178
101263
|
lastMessageAt: Date | null;
|
101179
101264
|
isBotRoom: boolean;
|
101265
|
+
isAiAgentRoom: boolean;
|
101180
101266
|
csatStatus: string | null;
|
101181
101267
|
cxlog: {
|
101182
101268
|
id: string;
|
@@ -101614,6 +101700,7 @@ export declare const mainChatContract: {
|
|
101614
101700
|
};
|
101615
101701
|
lastMessageAt: Date | null;
|
101616
101702
|
isBotRoom: boolean;
|
101703
|
+
isAiAgentRoom: boolean;
|
101617
101704
|
csatStatus: string | null;
|
101618
101705
|
cxlog: {
|
101619
101706
|
id: string;
|
@@ -102053,6 +102140,7 @@ export declare const mainChatContract: {
|
|
102053
102140
|
};
|
102054
102141
|
lastMessageAt: Date | null;
|
102055
102142
|
isBotRoom: boolean;
|
102143
|
+
isAiAgentRoom: boolean;
|
102056
102144
|
csatStatus: string | null;
|
102057
102145
|
cxlog: {
|
102058
102146
|
id: string;
|
@@ -102493,6 +102581,7 @@ export declare const mainChatContract: {
|
|
102493
102581
|
};
|
102494
102582
|
lastMessageAt: Date | null;
|
102495
102583
|
isBotRoom: boolean;
|
102584
|
+
isAiAgentRoom: boolean;
|
102496
102585
|
csatStatus: string | null;
|
102497
102586
|
cxlog: {
|
102498
102587
|
id: string;
|
@@ -103726,6 +103815,7 @@ export declare const mainChatContract: {
|
|
103726
103815
|
firstResponseTime: z.ZodNumber;
|
103727
103816
|
isLatest: z.ZodBoolean;
|
103728
103817
|
isBotRoom: z.ZodBoolean;
|
103818
|
+
isAiAgentRoom: z.ZodBoolean;
|
103729
103819
|
metadata: z.ZodAny;
|
103730
103820
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
103731
103821
|
platformContact: z.ZodObject<{
|
@@ -106661,6 +106751,7 @@ export declare const mainChatContract: {
|
|
106661
106751
|
};
|
106662
106752
|
lastMessageAt: Date | null;
|
106663
106753
|
isBotRoom: boolean;
|
106754
|
+
isAiAgentRoom: boolean;
|
106664
106755
|
csatStatus: string | null;
|
106665
106756
|
cxlog: {
|
106666
106757
|
id: string;
|
@@ -107098,6 +107189,7 @@ export declare const mainChatContract: {
|
|
107098
107189
|
};
|
107099
107190
|
lastMessageAt: Date | null;
|
107100
107191
|
isBotRoom: boolean;
|
107192
|
+
isAiAgentRoom: boolean;
|
107101
107193
|
csatStatus: string | null;
|
107102
107194
|
cxlog: {
|
107103
107195
|
id: string;
|
@@ -107537,6 +107629,7 @@ export declare const mainChatContract: {
|
|
107537
107629
|
};
|
107538
107630
|
lastMessageAt: Date | null;
|
107539
107631
|
isBotRoom: boolean;
|
107632
|
+
isAiAgentRoom: boolean;
|
107540
107633
|
csatStatus: string | null;
|
107541
107634
|
cxlog: {
|
107542
107635
|
id: string;
|
@@ -107977,6 +108070,7 @@ export declare const mainChatContract: {
|
|
107977
108070
|
};
|
107978
108071
|
lastMessageAt: Date | null;
|
107979
108072
|
isBotRoom: boolean;
|
108073
|
+
isAiAgentRoom: boolean;
|
107980
108074
|
csatStatus: string | null;
|
107981
108075
|
cxlog: {
|
107982
108076
|
id: string;
|
@@ -108176,6 +108270,7 @@ export declare const initiateMessageContract: {
|
|
108176
108270
|
firstResponseTime: z.ZodNumber;
|
108177
108271
|
isLatest: z.ZodBoolean;
|
108178
108272
|
isBotRoom: z.ZodBoolean;
|
108273
|
+
isAiAgentRoom: z.ZodBoolean;
|
108179
108274
|
metadata: z.ZodAny;
|
108180
108275
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
108181
108276
|
platformContact: z.ZodObject<{
|
@@ -111111,6 +111206,7 @@ export declare const initiateMessageContract: {
|
|
111111
111206
|
};
|
111112
111207
|
lastMessageAt: Date | null;
|
111113
111208
|
isBotRoom: boolean;
|
111209
|
+
isAiAgentRoom: boolean;
|
111114
111210
|
csatStatus: string | null;
|
111115
111211
|
cxlog: {
|
111116
111212
|
id: string;
|
@@ -111548,6 +111644,7 @@ export declare const initiateMessageContract: {
|
|
111548
111644
|
};
|
111549
111645
|
lastMessageAt: Date | null;
|
111550
111646
|
isBotRoom: boolean;
|
111647
|
+
isAiAgentRoom: boolean;
|
111551
111648
|
csatStatus: string | null;
|
111552
111649
|
cxlog: {
|
111553
111650
|
id: string;
|
@@ -113758,6 +113855,7 @@ export declare const initiateMessageContract: {
|
|
113758
113855
|
};
|
113759
113856
|
lastMessageAt: Date | null;
|
113760
113857
|
isBotRoom: boolean;
|
113858
|
+
isAiAgentRoom: boolean;
|
113761
113859
|
csatStatus: string | null;
|
113762
113860
|
cxlog: {
|
113763
113861
|
id: string;
|
@@ -114532,6 +114630,7 @@ export declare const initiateMessageContract: {
|
|
114532
114630
|
};
|
114533
114631
|
lastMessageAt: Date | null;
|
114534
114632
|
isBotRoom: boolean;
|
114633
|
+
isAiAgentRoom: boolean;
|
114535
114634
|
csatStatus: string | null;
|
114536
114635
|
cxlog: {
|
114537
114636
|
id: string;
|
@@ -115308,6 +115407,7 @@ export declare const initiateMessageContract: {
|
|
115308
115407
|
};
|
115309
115408
|
lastMessageAt: Date | null;
|
115310
115409
|
isBotRoom: boolean;
|
115410
|
+
isAiAgentRoom: boolean;
|
115311
115411
|
csatStatus: string | null;
|
115312
115412
|
cxlog: {
|
115313
115413
|
id: string;
|
@@ -116085,6 +116185,7 @@ export declare const initiateMessageContract: {
|
|
116085
116185
|
};
|
116086
116186
|
lastMessageAt: Date | null;
|
116087
116187
|
isBotRoom: boolean;
|
116188
|
+
isAiAgentRoom: boolean;
|
116088
116189
|
csatStatus: string | null;
|
116089
116190
|
cxlog: {
|
116090
116191
|
id: string;
|
@@ -117353,6 +117454,7 @@ export declare const mainChatMessageContract: {
|
|
117353
117454
|
firstResponseTime: z.ZodNumber;
|
117354
117455
|
isLatest: z.ZodBoolean;
|
117355
117456
|
isBotRoom: z.ZodBoolean;
|
117457
|
+
isAiAgentRoom: z.ZodBoolean;
|
117356
117458
|
metadata: z.ZodAny;
|
117357
117459
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
117358
117460
|
platformContact: z.ZodObject<{
|
@@ -120288,6 +120390,7 @@ export declare const mainChatMessageContract: {
|
|
120288
120390
|
};
|
120289
120391
|
lastMessageAt: Date | null;
|
120290
120392
|
isBotRoom: boolean;
|
120393
|
+
isAiAgentRoom: boolean;
|
120291
120394
|
csatStatus: string | null;
|
120292
120395
|
cxlog: {
|
120293
120396
|
id: string;
|
@@ -120725,6 +120828,7 @@ export declare const mainChatMessageContract: {
|
|
120725
120828
|
};
|
120726
120829
|
lastMessageAt: Date | null;
|
120727
120830
|
isBotRoom: boolean;
|
120831
|
+
isAiAgentRoom: boolean;
|
120728
120832
|
csatStatus: string | null;
|
120729
120833
|
cxlog: {
|
120730
120834
|
id: string;
|
@@ -122090,6 +122194,7 @@ export declare const mainChatMessageContract: {
|
|
122090
122194
|
firstResponseTime: z.ZodNumber;
|
122091
122195
|
isLatest: z.ZodBoolean;
|
122092
122196
|
isBotRoom: z.ZodBoolean;
|
122197
|
+
isAiAgentRoom: z.ZodBoolean;
|
122093
122198
|
metadata: z.ZodAny;
|
122094
122199
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
122095
122200
|
platformContact: z.ZodObject<{
|
@@ -125025,6 +125130,7 @@ export declare const mainChatMessageContract: {
|
|
125025
125130
|
};
|
125026
125131
|
lastMessageAt: Date | null;
|
125027
125132
|
isBotRoom: boolean;
|
125133
|
+
isAiAgentRoom: boolean;
|
125028
125134
|
csatStatus: string | null;
|
125029
125135
|
cxlog: {
|
125030
125136
|
id: string;
|
@@ -125462,6 +125568,7 @@ export declare const mainChatMessageContract: {
|
|
125462
125568
|
};
|
125463
125569
|
lastMessageAt: Date | null;
|
125464
125570
|
isBotRoom: boolean;
|
125571
|
+
isAiAgentRoom: boolean;
|
125465
125572
|
csatStatus: string | null;
|
125466
125573
|
cxlog: {
|
125467
125574
|
id: string;
|
@@ -127672,6 +127779,7 @@ export declare const mainChatMessageContract: {
|
|
127672
127779
|
};
|
127673
127780
|
lastMessageAt: Date | null;
|
127674
127781
|
isBotRoom: boolean;
|
127782
|
+
isAiAgentRoom: boolean;
|
127675
127783
|
csatStatus: string | null;
|
127676
127784
|
cxlog: {
|
127677
127785
|
id: string;
|
@@ -128446,6 +128554,7 @@ export declare const mainChatMessageContract: {
|
|
128446
128554
|
};
|
128447
128555
|
lastMessageAt: Date | null;
|
128448
128556
|
isBotRoom: boolean;
|
128557
|
+
isAiAgentRoom: boolean;
|
128449
128558
|
csatStatus: string | null;
|
128450
128559
|
cxlog: {
|
128451
128560
|
id: string;
|
@@ -129221,6 +129330,7 @@ export declare const mainChatMessageContract: {
|
|
129221
129330
|
};
|
129222
129331
|
lastMessageAt: Date | null;
|
129223
129332
|
isBotRoom: boolean;
|
129333
|
+
isAiAgentRoom: boolean;
|
129224
129334
|
csatStatus: string | null;
|
129225
129335
|
cxlog: {
|
129226
129336
|
id: string;
|
@@ -129995,6 +130105,7 @@ export declare const mainChatMessageContract: {
|
|
129995
130105
|
};
|
129996
130106
|
lastMessageAt: Date | null;
|
129997
130107
|
isBotRoom: boolean;
|
130108
|
+
isAiAgentRoom: boolean;
|
129998
130109
|
csatStatus: string | null;
|
129999
130110
|
cxlog: {
|
130000
130111
|
id: string;
|
@@ -130770,6 +130881,7 @@ export declare const mainChatMessageContract: {
|
|
130770
130881
|
};
|
130771
130882
|
lastMessageAt: Date | null;
|
130772
130883
|
isBotRoom: boolean;
|
130884
|
+
isAiAgentRoom: boolean;
|
130773
130885
|
csatStatus: string | null;
|
130774
130886
|
cxlog: {
|
130775
130887
|
id: string;
|
@@ -131544,6 +131656,7 @@ export declare const mainChatMessageContract: {
|
|
131544
131656
|
};
|
131545
131657
|
lastMessageAt: Date | null;
|
131546
131658
|
isBotRoom: boolean;
|
131659
|
+
isAiAgentRoom: boolean;
|
131547
131660
|
csatStatus: string | null;
|
131548
131661
|
cxlog: {
|
131549
131662
|
id: string;
|
@@ -132321,6 +132434,7 @@ export declare const mainChatMessageContract: {
|
|
132321
132434
|
};
|
132322
132435
|
lastMessageAt: Date | null;
|
132323
132436
|
isBotRoom: boolean;
|
132437
|
+
isAiAgentRoom: boolean;
|
132324
132438
|
csatStatus: string | null;
|
132325
132439
|
cxlog: {
|
132326
132440
|
id: string;
|
@@ -133095,6 +133209,7 @@ export declare const mainChatMessageContract: {
|
|
133095
133209
|
};
|
133096
133210
|
lastMessageAt: Date | null;
|
133097
133211
|
isBotRoom: boolean;
|
133212
|
+
isAiAgentRoom: boolean;
|
133098
133213
|
csatStatus: string | null;
|
133099
133214
|
cxlog: {
|
133100
133215
|
id: string;
|
@@ -133873,6 +133988,7 @@ export declare const mainChatMessageContract: {
|
|
133873
133988
|
};
|
133874
133989
|
lastMessageAt: Date | null;
|
133875
133990
|
isBotRoom: boolean;
|
133991
|
+
isAiAgentRoom: boolean;
|
133876
133992
|
csatStatus: string | null;
|
133877
133993
|
cxlog: {
|
133878
133994
|
id: string;
|
@@ -134647,6 +134763,7 @@ export declare const mainChatMessageContract: {
|
|
134647
134763
|
};
|
134648
134764
|
lastMessageAt: Date | null;
|
134649
134765
|
isBotRoom: boolean;
|
134766
|
+
isAiAgentRoom: boolean;
|
134650
134767
|
csatStatus: string | null;
|
134651
134768
|
cxlog: {
|
134652
134769
|
id: string;
|
@@ -136003,6 +136120,7 @@ export declare const mainChatMessageContract: {
|
|
136003
136120
|
firstResponseTime: z.ZodNumber;
|
136004
136121
|
isLatest: z.ZodBoolean;
|
136005
136122
|
isBotRoom: z.ZodBoolean;
|
136123
|
+
isAiAgentRoom: z.ZodBoolean;
|
136006
136124
|
metadata: z.ZodAny;
|
136007
136125
|
direction: z.ZodUnion<[z.ZodLiteral<"incoming">, z.ZodLiteral<"outgoing">, z.ZodLiteral<"system">]>;
|
136008
136126
|
platformContact: z.ZodObject<{
|
@@ -138938,6 +139056,7 @@ export declare const mainChatMessageContract: {
|
|
138938
139056
|
};
|
138939
139057
|
lastMessageAt: Date | null;
|
138940
139058
|
isBotRoom: boolean;
|
139059
|
+
isAiAgentRoom: boolean;
|
138941
139060
|
csatStatus: string | null;
|
138942
139061
|
cxlog: {
|
138943
139062
|
id: string;
|
@@ -139375,6 +139494,7 @@ export declare const mainChatMessageContract: {
|
|
139375
139494
|
};
|
139376
139495
|
lastMessageAt: Date | null;
|
139377
139496
|
isBotRoom: boolean;
|
139497
|
+
isAiAgentRoom: boolean;
|
139378
139498
|
csatStatus: string | null;
|
139379
139499
|
cxlog: {
|
139380
139500
|
id: string;
|
@@ -141585,6 +141705,7 @@ export declare const mainChatMessageContract: {
|
|
141585
141705
|
};
|
141586
141706
|
lastMessageAt: Date | null;
|
141587
141707
|
isBotRoom: boolean;
|
141708
|
+
isAiAgentRoom: boolean;
|
141588
141709
|
csatStatus: string | null;
|
141589
141710
|
cxlog: {
|
141590
141711
|
id: string;
|
@@ -142359,6 +142480,7 @@ export declare const mainChatMessageContract: {
|
|
142359
142480
|
};
|
142360
142481
|
lastMessageAt: Date | null;
|
142361
142482
|
isBotRoom: boolean;
|
142483
|
+
isAiAgentRoom: boolean;
|
142362
142484
|
csatStatus: string | null;
|
142363
142485
|
cxlog: {
|
142364
142486
|
id: string;
|
@@ -143135,6 +143257,7 @@ export declare const mainChatMessageContract: {
|
|
143135
143257
|
};
|
143136
143258
|
lastMessageAt: Date | null;
|
143137
143259
|
isBotRoom: boolean;
|
143260
|
+
isAiAgentRoom: boolean;
|
143138
143261
|
csatStatus: string | null;
|
143139
143262
|
cxlog: {
|
143140
143263
|
id: string;
|
@@ -143912,6 +144035,7 @@ export declare const mainChatMessageContract: {
|
|
143912
144035
|
};
|
143913
144036
|
lastMessageAt: Date | null;
|
143914
144037
|
isBotRoom: boolean;
|
144038
|
+
isAiAgentRoom: boolean;
|
143915
144039
|
csatStatus: string | null;
|
143916
144040
|
cxlog: {
|
143917
144041
|
id: string;
|