@tec.pet/tecpet-sdk 0.0.33 → 0.0.35
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/changelog.md +2 -2
- package/dist/domain/breed/breed.service.d.ts +1 -1
- package/dist/domain/chatbot/enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum.d.ts +8 -1
- package/dist/domain/chatbot/enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum.js +7 -0
- package/dist/domain/chatbot/index.d.ts +1 -0
- package/dist/domain/chatbot/index.js +1 -0
- package/package.json +1 -1
- package/src/domain/breed/breed.service.ts +5 -5
- package/src/domain/chatbot/enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum.ts +7 -0
- package/src/domain/chatbot/index.ts +1 -0
package/changelog.md
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
🚀 Alterações desde v0.0.
|
|
2
|
-
-
|
|
1
|
+
🚀 Alterações desde v0.0.34:
|
|
2
|
+
- update ChatbotSettingsAIPersonalityEnum (04bdaf6)
|
|
@@ -3,5 +3,5 @@ import { PaBreedResponse } from "./dto/pa.get-breed.dto";
|
|
|
3
3
|
export declare class BreedService {
|
|
4
4
|
private readonly api;
|
|
5
5
|
constructor(api: HttpClient);
|
|
6
|
-
list(specieId: string, name?: string, shopId?: number): Promise<Array<PaBreedResponse
|
|
6
|
+
list(specieId: string, name?: string, shopId?: number): Promise<Array<PaBreedResponse>>;
|
|
7
7
|
}
|
package/dist/domain/chatbot/enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum.d.ts
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
export declare enum ChatbotSettingsAIPersonalityEnum {
|
|
2
|
-
FRIENDLY = "FRIENDLY"
|
|
2
|
+
FRIENDLY = "FRIENDLY",
|
|
3
|
+
PROFESSIONAL = "PROFESSIONAL",
|
|
4
|
+
EXCITED = "EXCITED",
|
|
5
|
+
CALM = "CALM",
|
|
6
|
+
PET_MOM = "PET_MOM",
|
|
7
|
+
SPECIALIST = "SPECIALIST",
|
|
8
|
+
COOL = "COOL",
|
|
9
|
+
CONCISE = "CONCISE"
|
|
3
10
|
}
|
package/dist/domain/chatbot/enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum.js
CHANGED
|
@@ -4,4 +4,11 @@ exports.ChatbotSettingsAIPersonalityEnum = void 0;
|
|
|
4
4
|
var ChatbotSettingsAIPersonalityEnum;
|
|
5
5
|
(function (ChatbotSettingsAIPersonalityEnum) {
|
|
6
6
|
ChatbotSettingsAIPersonalityEnum["FRIENDLY"] = "FRIENDLY";
|
|
7
|
+
ChatbotSettingsAIPersonalityEnum["PROFESSIONAL"] = "PROFESSIONAL";
|
|
8
|
+
ChatbotSettingsAIPersonalityEnum["EXCITED"] = "EXCITED";
|
|
9
|
+
ChatbotSettingsAIPersonalityEnum["CALM"] = "CALM";
|
|
10
|
+
ChatbotSettingsAIPersonalityEnum["PET_MOM"] = "PET_MOM";
|
|
11
|
+
ChatbotSettingsAIPersonalityEnum["SPECIALIST"] = "SPECIALIST";
|
|
12
|
+
ChatbotSettingsAIPersonalityEnum["COOL"] = "COOL";
|
|
13
|
+
ChatbotSettingsAIPersonalityEnum["CONCISE"] = "CONCISE";
|
|
7
14
|
})(ChatbotSettingsAIPersonalityEnum || (exports.ChatbotSettingsAIPersonalityEnum = ChatbotSettingsAIPersonalityEnum = {}));
|
|
@@ -6,3 +6,4 @@ export * from './enum/chatbotBehaviorEnums/chatbot-inactive-employee-action.enum
|
|
|
6
6
|
export * from './enum/chatbotBehaviorEnums/chatbot-timeout-action.enum';
|
|
7
7
|
export * from './enum/chatbotGuidanceEnums/chatbot-action-button-type.enum';
|
|
8
8
|
export * from './enum/chatbotSettingsEnums/chatbot-platform-type.enum';
|
|
9
|
+
export * from './enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum';
|
|
@@ -22,3 +22,4 @@ __exportStar(require("./enum/chatbotBehaviorEnums/chatbot-inactive-employee-acti
|
|
|
22
22
|
__exportStar(require("./enum/chatbotBehaviorEnums/chatbot-timeout-action.enum"), exports);
|
|
23
23
|
__exportStar(require("./enum/chatbotGuidanceEnums/chatbot-action-button-type.enum"), exports);
|
|
24
24
|
__exportStar(require("./enum/chatbotSettingsEnums/chatbot-platform-type.enum"), exports);
|
|
25
|
+
__exportStar(require("./enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum"), exports);
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {HttpClient} from "infra/http/client.http";
|
|
2
|
-
import {PaBreedResponse} from "./dto/pa.get-breed.dto";
|
|
3
|
-
import {PaGetBreedsResponse} from "./dto/pa.get-breeds.dto";
|
|
4
|
-
import {logger} from "../../infra/logger/stdout.logger";
|
|
1
|
+
import { HttpClient } from "infra/http/client.http";
|
|
2
|
+
import { PaBreedResponse } from "./dto/pa.get-breed.dto";
|
|
3
|
+
import { PaGetBreedsResponse } from "./dto/pa.get-breeds.dto";
|
|
4
|
+
import { logger } from "../../infra/logger/stdout.logger";
|
|
5
5
|
|
|
6
6
|
export class BreedService {
|
|
7
7
|
constructor(private readonly api: HttpClient) {
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
async list(specieId: string, name?: string, shopId?: number): Promise<Array<PaBreedResponse
|
|
10
|
+
async list(specieId: string, name?: string, shopId?: number): Promise<Array<PaBreedResponse>> {
|
|
11
11
|
const params = { specieId, name };
|
|
12
12
|
if (!name) {
|
|
13
13
|
delete params.name;
|
|
@@ -6,4 +6,5 @@ export * from './enum/chatbotBehaviorEnums/chatbot-inactive-employee-action.enum
|
|
|
6
6
|
export * from './enum/chatbotBehaviorEnums/chatbot-timeout-action.enum';
|
|
7
7
|
export * from './enum/chatbotGuidanceEnums/chatbot-action-button-type.enum';
|
|
8
8
|
export * from './enum/chatbotSettingsEnums/chatbot-platform-type.enum';
|
|
9
|
+
export * from './enum/chatbotSettingsEnums/chatbot-settings-ai-personality.enum';
|
|
9
10
|
|