@trii/types 2.10.293 → 2.10.294
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.
|
@@ -30,6 +30,7 @@ export interface IConversation {
|
|
|
30
30
|
archived: boolean;
|
|
31
31
|
botStatus: ConversationBotStatus;
|
|
32
32
|
botId?: string;
|
|
33
|
+
botVars: ConversationBotVar[];
|
|
33
34
|
finalizedAt: Date;
|
|
34
35
|
createdAt: Date;
|
|
35
36
|
updatedAt: Date;
|
|
@@ -41,6 +42,10 @@ export declare enum ConversationBotStatus {
|
|
|
41
42
|
FINALIZED = 4,
|
|
42
43
|
CANCELED = 5
|
|
43
44
|
}
|
|
45
|
+
export declare class ConversationBotVar {
|
|
46
|
+
title: string;
|
|
47
|
+
value: string;
|
|
48
|
+
}
|
|
44
49
|
export declare enum ChatType {
|
|
45
50
|
/**Conversation with a external channel/contact */
|
|
46
51
|
EXTERNAL = 0,
|
|
@@ -6,6 +6,8 @@ export var ConversationBotStatus;
|
|
|
6
6
|
ConversationBotStatus[ConversationBotStatus["FINALIZED"] = 4] = "FINALIZED";
|
|
7
7
|
ConversationBotStatus[ConversationBotStatus["CANCELED"] = 5] = "CANCELED";
|
|
8
8
|
})(ConversationBotStatus || (ConversationBotStatus = {}));
|
|
9
|
+
export class ConversationBotVar {
|
|
10
|
+
}
|
|
9
11
|
export var ChatType;
|
|
10
12
|
(function (ChatType) {
|
|
11
13
|
/**Conversation with a external channel/contact */
|