@tec.pet/tecpet-sdk 0.0.135 → 0.0.137
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/domain/chatbot/dto/chatbot-settings.json.d.ts +5 -0
- package/dist/domain/chatbot/enum/chatbotActionEnums/chatbot-post-scheduling-behavior.enum.d.ts +5 -0
- package/dist/domain/chatbot/enum/chatbotActionEnums/chatbot-post-scheduling-behavior.enum.js +9 -0
- package/dist/domain/chatbot/enum/chatbotInfoCollectionEnums/info-collection-mode.enum.d.ts +4 -0
- package/dist/domain/chatbot/enum/chatbotInfoCollectionEnums/info-collection-mode.enum.js +8 -0
- package/dist/domain/chatbot/index.d.ts +2 -0
- package/dist/domain/chatbot/index.js +2 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChatbotActionModeTypeEnum } from "../enum/chatbotActionEnums/chatbot-action-mode-type.enum";
|
|
2
|
+
import { ChatbotPostSchedulingBehaviorEnum } from "../enum/chatbotActionEnums/chatbot-post-scheduling-behavior.enum";
|
|
2
3
|
import { ChatBotActionSchedulePermissionEnum } from "../enum/chatbotActionEnums/chatbot-action-schedule-permission.enum";
|
|
3
4
|
import { ChatBotActionShowSendingInfoEnum } from "../enum/chatbotActionEnums/chatbot-action-show-sending-info.enum";
|
|
4
5
|
import { ChatbotActionTypeEnum } from "../enum/chatbotActionEnums/chatbot-action-type.enum";
|
|
@@ -12,6 +13,7 @@ import { ChatbotPriceDisplayModeEnum } from "../enum/chatbotInfoCollectionEnums/
|
|
|
12
13
|
import { ChatbotSizeDisplayModeEnum } from "../enum/chatbotInfoCollectionEnums/chatbot-size_display-mode.enum";
|
|
13
14
|
import { ChatbotTimeDisplayModeEnum } from "../enum/chatbotInfoCollectionEnums/chatbot-time-display-mode.enum";
|
|
14
15
|
import { ChatbotInfoCollectionBehaviorEnum } from "../enum/chatbotInfoCollectionEnums/chatbot-time-selection-behavior.enum";
|
|
16
|
+
import { InfoCollectionModeEnum } from "../enum/chatbotInfoCollectionEnums/info-collection-mode.enum";
|
|
15
17
|
import { ChatbotSendingInfoItemTypeEnum } from "../enum/chatbotSendingInfoItemEnums/chatbot-sending-info-item-type.enum";
|
|
16
18
|
import { ChatbotAIVoiceEnum } from "../enum/chatbotSettingsEnums/chatbot-ai-voice.enum";
|
|
17
19
|
import { ChatbotChannelTypeEnum } from "../enum/chatbotSettingsEnums/chatbot-channel-type.enum";
|
|
@@ -123,6 +125,8 @@ export interface ChatbotActionJson {
|
|
|
123
125
|
conclusionMessage?: string;
|
|
124
126
|
aiInstruction?: string;
|
|
125
127
|
chatTagInstruction?: string;
|
|
128
|
+
postSchedulingBehavior?: ChatbotPostSchedulingBehaviorEnum;
|
|
129
|
+
postSchedulingInstruction?: string;
|
|
126
130
|
operationsDays: OperationDaysJson[];
|
|
127
131
|
chatbotFlux: ChatbotFluxJson;
|
|
128
132
|
}
|
|
@@ -155,6 +159,7 @@ export interface ChatbotGuidanceOptionDto {
|
|
|
155
159
|
}
|
|
156
160
|
export interface InfoCollectionMenuJson {
|
|
157
161
|
petInfo?: {
|
|
162
|
+
collectionMode?: InfoCollectionModeEnum;
|
|
158
163
|
petName: {
|
|
159
164
|
enabled: boolean;
|
|
160
165
|
message: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ChatbotPostSchedulingBehaviorEnum = void 0;
|
|
4
|
+
var ChatbotPostSchedulingBehaviorEnum;
|
|
5
|
+
(function (ChatbotPostSchedulingBehaviorEnum) {
|
|
6
|
+
ChatbotPostSchedulingBehaviorEnum["END_SESSION"] = "END_SESSION";
|
|
7
|
+
ChatbotPostSchedulingBehaviorEnum["KEEP_OPEN"] = "KEEP_OPEN";
|
|
8
|
+
ChatbotPostSchedulingBehaviorEnum["TRANSFER_TO_HUMAN"] = "TRANSFER_TO_HUMAN";
|
|
9
|
+
})(ChatbotPostSchedulingBehaviorEnum || (exports.ChatbotPostSchedulingBehaviorEnum = ChatbotPostSchedulingBehaviorEnum = {}));
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InfoCollectionModeEnum = void 0;
|
|
4
|
+
var InfoCollectionModeEnum;
|
|
5
|
+
(function (InfoCollectionModeEnum) {
|
|
6
|
+
InfoCollectionModeEnum["ASK_ALL_AT_ONCE"] = "ASK_ALL_AT_ONCE";
|
|
7
|
+
InfoCollectionModeEnum["ASK_SEPARATELY"] = "ASK_SEPARATELY";
|
|
8
|
+
})(InfoCollectionModeEnum || (exports.InfoCollectionModeEnum = InfoCollectionModeEnum = {}));
|
|
@@ -15,6 +15,7 @@ export * from './enum/chatbotInfoCollectionEnums/chatbot-price-display-mode.enum
|
|
|
15
15
|
export * from './enum/chatbotInfoCollectionEnums/chatbot-size_display-mode.enum';
|
|
16
16
|
export * from './enum/chatbotInfoCollectionEnums/chatbot-time-display-mode.enum';
|
|
17
17
|
export * from './enum/chatbotInfoCollectionEnums/chatbot-time-selection-behavior.enum';
|
|
18
|
+
export * from './enum/chatbotInfoCollectionEnums/info-collection-mode.enum';
|
|
18
19
|
export * from './enum/chatbotSendingInfoItemEnums/chatbot-sending-info-item-type.enum';
|
|
19
20
|
export * from './enum/chatbotSettingsEnums/chatbot-ai-voice.enum';
|
|
20
21
|
export * from './enum/chatbotSettingsEnums/chatbot-mode.enum';
|
|
@@ -22,6 +23,7 @@ export * from './enum/chatbotSettingsEnums/chatbot-platform-type.enum';
|
|
|
22
23
|
export * from './enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum';
|
|
23
24
|
export * from './enum/chatbotTriggerEnums/chatbot-trigger-pattern-type.enum';
|
|
24
25
|
export * from './enum/chatbotActionEnums/chatbot-action-show-sending-info.enum';
|
|
26
|
+
export * from './enum/chatbotActionEnums/chatbot-post-scheduling-behavior.enum';
|
|
25
27
|
export * from './enum/chatbotActionEnums/media-type.enum';
|
|
26
28
|
export * from './enum/aiInteractionEnums/ai-interaction-consumption-source.enum';
|
|
27
29
|
export * from './enum/aiInteractionEnums/ai-interaction-validation-reason.enum';
|
|
@@ -31,6 +31,7 @@ __exportStar(require("./enum/chatbotInfoCollectionEnums/chatbot-price-display-mo
|
|
|
31
31
|
__exportStar(require("./enum/chatbotInfoCollectionEnums/chatbot-size_display-mode.enum"), exports);
|
|
32
32
|
__exportStar(require("./enum/chatbotInfoCollectionEnums/chatbot-time-display-mode.enum"), exports);
|
|
33
33
|
__exportStar(require("./enum/chatbotInfoCollectionEnums/chatbot-time-selection-behavior.enum"), exports);
|
|
34
|
+
__exportStar(require("./enum/chatbotInfoCollectionEnums/info-collection-mode.enum"), exports);
|
|
34
35
|
__exportStar(require("./enum/chatbotSendingInfoItemEnums/chatbot-sending-info-item-type.enum"), exports);
|
|
35
36
|
__exportStar(require("./enum/chatbotSettingsEnums/chatbot-ai-voice.enum"), exports);
|
|
36
37
|
__exportStar(require("./enum/chatbotSettingsEnums/chatbot-mode.enum"), exports);
|
|
@@ -38,6 +39,7 @@ __exportStar(require("./enum/chatbotSettingsEnums/chatbot-platform-type.enum"),
|
|
|
38
39
|
__exportStar(require("./enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum"), exports);
|
|
39
40
|
__exportStar(require("./enum/chatbotTriggerEnums/chatbot-trigger-pattern-type.enum"), exports);
|
|
40
41
|
__exportStar(require("./enum/chatbotActionEnums/chatbot-action-show-sending-info.enum"), exports);
|
|
42
|
+
__exportStar(require("./enum/chatbotActionEnums/chatbot-post-scheduling-behavior.enum"), exports);
|
|
41
43
|
__exportStar(require("./enum/chatbotActionEnums/media-type.enum"), exports);
|
|
42
44
|
__exportStar(require("./enum/aiInteractionEnums/ai-interaction-consumption-source.enum"), exports);
|
|
43
45
|
__exportStar(require("./enum/aiInteractionEnums/ai-interaction-validation-reason.enum"), exports);
|