@tec.pet/tecpet-sdk 0.0.147 → 0.0.149
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/chatbotInfoCollectionEnums/chatbot-info-collection-subtype.enum.d.ts +2 -1
- package/dist/domain/chatbot/enum/chatbotInfoCollectionEnums/chatbot-info-collection-subtype.enum.js +1 -0
- package/dist/domain/shop/dto/pa.get-shop-configurations.dto.d.ts +15 -0
- package/package.json +1 -1
|
@@ -218,6 +218,11 @@ export interface InfoCollectionMenuJson {
|
|
|
218
218
|
showServicePromotions: {
|
|
219
219
|
enabled: boolean;
|
|
220
220
|
};
|
|
221
|
+
askPetCondition?: {
|
|
222
|
+
enabled: boolean;
|
|
223
|
+
message?: string;
|
|
224
|
+
aiInstruction?: string;
|
|
225
|
+
};
|
|
221
226
|
};
|
|
222
227
|
takeAndBring?: {
|
|
223
228
|
allowTakeAndBring: {
|
|
@@ -28,5 +28,6 @@ export declare enum ChatbotInfoCollectionSubtypeEnum {
|
|
|
28
28
|
'GUIDANCE_MESSAGE' = "GUIDANCE_MESSAGE",
|
|
29
29
|
'TIME_SELECTION_BEHAVIOR' = "TIME_SELECTION_BEHAVIOR",
|
|
30
30
|
'ASK_FOR_HEALTH_PLAN' = "ASK_FOR_HEALTH_PLAN",
|
|
31
|
-
'TRANSFER_TO_ATTENDANT_IF_HEALTH_PLAN' = "TRANSFER_TO_ATTENDANT_IF_HEALTH_PLAN"
|
|
31
|
+
'TRANSFER_TO_ATTENDANT_IF_HEALTH_PLAN' = "TRANSFER_TO_ATTENDANT_IF_HEALTH_PLAN",
|
|
32
|
+
'ASK_PET_CONDITION' = "ASK_PET_CONDITION"
|
|
32
33
|
}
|
package/dist/domain/chatbot/enum/chatbotInfoCollectionEnums/chatbot-info-collection-subtype.enum.js
CHANGED
|
@@ -33,4 +33,5 @@ var ChatbotInfoCollectionSubtypeEnum;
|
|
|
33
33
|
ChatbotInfoCollectionSubtypeEnum["TIME_SELECTION_BEHAVIOR"] = "TIME_SELECTION_BEHAVIOR";
|
|
34
34
|
ChatbotInfoCollectionSubtypeEnum["ASK_FOR_HEALTH_PLAN"] = "ASK_FOR_HEALTH_PLAN";
|
|
35
35
|
ChatbotInfoCollectionSubtypeEnum["TRANSFER_TO_ATTENDANT_IF_HEALTH_PLAN"] = "TRANSFER_TO_ATTENDANT_IF_HEALTH_PLAN";
|
|
36
|
+
ChatbotInfoCollectionSubtypeEnum["ASK_PET_CONDITION"] = "ASK_PET_CONDITION";
|
|
36
37
|
})(ChatbotInfoCollectionSubtypeEnum || (exports.ChatbotInfoCollectionSubtypeEnum = ChatbotInfoCollectionSubtypeEnum = {}));
|
|
@@ -8,6 +8,20 @@ interface AdvancedConfigSegment {
|
|
|
8
8
|
id: number;
|
|
9
9
|
segmentType: ShopSegment;
|
|
10
10
|
}
|
|
11
|
+
export interface PaShopConfigurationsTimeRange {
|
|
12
|
+
start: string;
|
|
13
|
+
stop: string;
|
|
14
|
+
}
|
|
15
|
+
export interface PaShopConfigurationsTimeTable {
|
|
16
|
+
fullTime: boolean;
|
|
17
|
+
monday: Array<PaShopConfigurationsTimeRange>;
|
|
18
|
+
tuesday: Array<PaShopConfigurationsTimeRange>;
|
|
19
|
+
wednesday: Array<PaShopConfigurationsTimeRange>;
|
|
20
|
+
thursday: Array<PaShopConfigurationsTimeRange>;
|
|
21
|
+
friday: Array<PaShopConfigurationsTimeRange>;
|
|
22
|
+
saturday: Array<PaShopConfigurationsTimeRange>;
|
|
23
|
+
sunday: Array<PaShopConfigurationsTimeRange>;
|
|
24
|
+
}
|
|
11
25
|
export interface PaShopConfigurationsSpecie {
|
|
12
26
|
id: string;
|
|
13
27
|
type: SpecieTypeEnum;
|
|
@@ -17,6 +31,7 @@ export interface PaShopConfigurationsSegment {
|
|
|
17
31
|
id: number;
|
|
18
32
|
type: ShopSegment;
|
|
19
33
|
name: string;
|
|
34
|
+
timeTable?: PaShopConfigurationsTimeTable;
|
|
20
35
|
}
|
|
21
36
|
export interface AdvancedConfigResponseDto {
|
|
22
37
|
extraAuth: boolean;
|