@tec.pet/tecpet-sdk 0.0.45 → 0.0.46
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.
|
@@ -23,6 +23,7 @@ export interface Service {
|
|
|
23
23
|
}
|
|
24
24
|
export interface PaChatbotSettingsResponse {
|
|
25
25
|
newClientMessage?: string;
|
|
26
|
+
aiInstruction?: string;
|
|
26
27
|
registeredClientMessage?: string;
|
|
27
28
|
onComercialTimeMessage?: string;
|
|
28
29
|
outOfComercialTimeMessage?: string;
|
|
@@ -130,35 +131,42 @@ export interface InfoCollectionMenuJson {
|
|
|
130
131
|
petName: {
|
|
131
132
|
enabled: boolean;
|
|
132
133
|
message: string;
|
|
134
|
+
aiInstruction?: string;
|
|
133
135
|
};
|
|
134
136
|
petSpecie: {
|
|
135
137
|
enabled: boolean;
|
|
136
138
|
message: string;
|
|
139
|
+
aiInstruction?: string;
|
|
137
140
|
};
|
|
138
141
|
petBreed: {
|
|
139
142
|
enabled?: boolean;
|
|
140
143
|
message: string;
|
|
144
|
+
aiInstruction?: string;
|
|
141
145
|
};
|
|
142
146
|
petSize: {
|
|
143
147
|
enabled?: boolean;
|
|
144
148
|
message: string;
|
|
145
|
-
|
|
149
|
+
aiInstruction?: string;
|
|
146
150
|
};
|
|
147
151
|
petFur: {
|
|
148
152
|
enabled?: boolean;
|
|
149
153
|
message: string;
|
|
154
|
+
aiInstruction?: string;
|
|
155
|
+
sizeDisplayMode: ChatbotSizeDisplayModeEnum;
|
|
150
156
|
};
|
|
151
157
|
};
|
|
152
158
|
adaptionService?: {
|
|
153
159
|
allowAdaptionService: {
|
|
154
160
|
enabled: boolean;
|
|
155
161
|
message: string;
|
|
162
|
+
aiInstruction?: string;
|
|
156
163
|
service: Service;
|
|
157
164
|
};
|
|
158
165
|
};
|
|
159
166
|
serviceSelection?: {
|
|
160
167
|
service: {
|
|
161
168
|
message: string;
|
|
169
|
+
aiInstruction?: string;
|
|
162
170
|
};
|
|
163
171
|
showServiceValues: {
|
|
164
172
|
enabled: boolean;
|
|
@@ -167,6 +175,7 @@ export interface InfoCollectionMenuJson {
|
|
|
167
175
|
serviceAddons: {
|
|
168
176
|
enabled: boolean;
|
|
169
177
|
message: string;
|
|
178
|
+
aiInstruction?: string;
|
|
170
179
|
};
|
|
171
180
|
serviceProfessionalChoice: {
|
|
172
181
|
enabled: boolean;
|
|
@@ -179,12 +188,14 @@ export interface InfoCollectionMenuJson {
|
|
|
179
188
|
allowTakeAndBring: {
|
|
180
189
|
enabled: boolean;
|
|
181
190
|
message: string;
|
|
191
|
+
aiInstruction?: string;
|
|
182
192
|
minAdvanceHours: number;
|
|
183
193
|
};
|
|
184
194
|
};
|
|
185
195
|
timeSelection?: {
|
|
186
196
|
timeSelectionBehavior: {
|
|
187
197
|
message: string;
|
|
198
|
+
aiInstruction?: string;
|
|
188
199
|
behavior: ChatbotInfoCollectionBehaviorEnum;
|
|
189
200
|
timeDisplayMode: ChatbotTimeDisplayModeEnum;
|
|
190
201
|
minAdvanceHours: number;
|
|
@@ -201,19 +212,23 @@ export interface InfoCollectionMenuJson {
|
|
|
201
212
|
guidance?: {
|
|
202
213
|
guidanceMessage: {
|
|
203
214
|
message: string;
|
|
215
|
+
aiInstruction?: string;
|
|
204
216
|
};
|
|
205
217
|
};
|
|
206
218
|
responseMessage?: {
|
|
207
219
|
onCommercialTime: {
|
|
208
220
|
message: string;
|
|
221
|
+
aiInstruction?: string;
|
|
209
222
|
};
|
|
210
223
|
outOfCommercialTime: {
|
|
211
224
|
message: string;
|
|
225
|
+
aiInstruction?: string;
|
|
212
226
|
};
|
|
213
227
|
};
|
|
214
228
|
healthPlan?: {
|
|
215
229
|
askForHealthPlan: {
|
|
216
230
|
message: string;
|
|
231
|
+
aiInstruction?: string;
|
|
217
232
|
enabled: boolean;
|
|
218
233
|
};
|
|
219
234
|
transferToAttendantIfHealthPlan: {
|
|
@@ -225,34 +240,42 @@ export interface InfoCollectionMenuJson {
|
|
|
225
240
|
confirmClientName: {
|
|
226
241
|
enabled: boolean;
|
|
227
242
|
message: string;
|
|
243
|
+
aiInstruction?: string;
|
|
228
244
|
};
|
|
229
245
|
clientCpf: {
|
|
230
246
|
enabled: boolean;
|
|
231
247
|
message: string;
|
|
248
|
+
aiInstruction?: string;
|
|
232
249
|
};
|
|
233
250
|
scheduleToAnotherPet: {
|
|
234
251
|
enabled: boolean;
|
|
235
252
|
message: string;
|
|
253
|
+
aiInstruction?: string;
|
|
236
254
|
};
|
|
237
255
|
clientAddress: {
|
|
238
256
|
enabled: boolean;
|
|
239
257
|
message: string;
|
|
258
|
+
aiInstruction?: string;
|
|
240
259
|
};
|
|
241
260
|
petGender: {
|
|
242
261
|
enabled: boolean;
|
|
243
262
|
message: string;
|
|
263
|
+
aiInstruction?: string;
|
|
244
264
|
};
|
|
245
265
|
petBirthDate: {
|
|
246
266
|
enabled: boolean;
|
|
247
267
|
message: string;
|
|
268
|
+
aiInstruction?: string;
|
|
248
269
|
};
|
|
249
270
|
petWeight: {
|
|
250
271
|
enabled: boolean;
|
|
251
272
|
message: string;
|
|
273
|
+
aiInstruction?: string;
|
|
252
274
|
};
|
|
253
275
|
petDefaultChecklist: {
|
|
254
276
|
enabled: boolean;
|
|
255
277
|
message: string;
|
|
278
|
+
aiInstruction?: string;
|
|
256
279
|
};
|
|
257
280
|
};
|
|
258
281
|
}
|