@tec.pet/tecpet-sdk 0.0.58 → 0.0.60
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.
|
@@ -209,9 +209,11 @@ export interface InfoCollectionMenuJson {
|
|
|
209
209
|
editBooking?: {
|
|
210
210
|
allowChangeDateAndTime: {
|
|
211
211
|
enabled: boolean;
|
|
212
|
+
aiInstruction?: string;
|
|
212
213
|
};
|
|
213
214
|
allowCancel: {
|
|
214
215
|
enabled: boolean;
|
|
216
|
+
aiInstruction?: string;
|
|
215
217
|
};
|
|
216
218
|
};
|
|
217
219
|
guidance?: {
|
|
@@ -5,5 +5,6 @@ var ChatbotModeEnum;
|
|
|
5
5
|
(function (ChatbotModeEnum) {
|
|
6
6
|
ChatbotModeEnum["DISABLED"] = "DISABLED";
|
|
7
7
|
ChatbotModeEnum["AUTO_REPLY"] = "AUTO_REPLY";
|
|
8
|
+
ChatbotModeEnum["SIMULATION"] = "SIMULATION";
|
|
8
9
|
ChatbotModeEnum["SELF_SERVICE"] = "SELF_SERVICE";
|
|
9
10
|
})(ChatbotModeEnum || (exports.ChatbotModeEnum = ChatbotModeEnum = {}));
|