@tec.pet/tecpet-sdk 0.0.124 → 0.0.126

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 {
@@ -3,6 +3,10 @@ export interface PaClientResponse {
3
3
  name: string;
4
4
  phoneNumberDDI: string;
5
5
  phoneNumber: string;
6
+ secondaryPhoneNumberDDI: string;
7
+ secondaryPhoneNumber: string;
8
+ tertiaryPhoneNumberDDI: string;
9
+ tertiaryPhoneNumber: string;
6
10
  cpf: string;
7
11
  birthDate: string;
8
12
  shopId: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tec.pet/tecpet-sdk",
3
- "version": "0.0.124",
3
+ "version": "0.0.126",
4
4
  "description": "TecPet SDK for integration with TecPet services",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",