@tec.pet/tecpet-sdk 0.0.125 → 0.0.127
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.
|
@@ -95,6 +95,19 @@ export interface ChatbotSendingInfoItemDto {
|
|
|
95
95
|
content?: string;
|
|
96
96
|
medias?: MediaDto[];
|
|
97
97
|
}
|
|
98
|
+
export interface DayOperatingHoursJson {
|
|
99
|
+
id: string;
|
|
100
|
+
period: number;
|
|
101
|
+
startTime: string;
|
|
102
|
+
endTime: string;
|
|
103
|
+
}
|
|
104
|
+
export interface OperationDaysJson {
|
|
105
|
+
id: string;
|
|
106
|
+
fullTimeOperation: boolean;
|
|
107
|
+
dayOfWeek: string;
|
|
108
|
+
dayOperatingHours: DayOperatingHoursJson[];
|
|
109
|
+
active: boolean;
|
|
110
|
+
}
|
|
98
111
|
export interface ChatbotActionJson {
|
|
99
112
|
id: string;
|
|
100
113
|
name: string;
|
|
@@ -110,6 +123,7 @@ export interface ChatbotActionJson {
|
|
|
110
123
|
conclusionMessage?: string;
|
|
111
124
|
aiInstruction?: string;
|
|
112
125
|
chatTagInstruction?: string;
|
|
126
|
+
operationsDays: OperationDaysJson[];
|
|
113
127
|
chatbotFlux: ChatbotFluxJson;
|
|
114
128
|
}
|
|
115
129
|
export interface ChatbotFluxJson {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tec.pet/tecpet-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.127",
|
|
4
4
|
"description": "TecPet SDK for integration with TecPet services",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"watch": "tsc-watch"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": "23
|
|
26
|
+
"node": ">=23"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"axios": "
|
|
29
|
+
"axios": "1.13.5",
|
|
30
30
|
"chalk": "^4.1.2",
|
|
31
31
|
"cpf-cnpj-validator": "^1.0.3",
|
|
32
32
|
"date-fns": "^4.1.0"
|