@tec.pet/tecpet-sdk 0.0.32 → 0.0.33
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/availableTimes/availableTimes.service.d.ts +2 -2
- package/dist/domain/availableTimes/index.d.ts +2 -0
- package/dist/domain/availableTimes/index.js +18 -0
- package/dist/domain/billingMethod/billingMethod.service.d.ts +2 -2
- package/dist/domain/billingMethod/index.d.ts +1 -0
- package/dist/domain/billingMethod/index.js +1 -0
- package/dist/domain/booking/booking.service.d.ts +4 -4
- package/dist/domain/booking/booking.service.js +3 -12
- package/dist/domain/booking/index.d.ts +1 -0
- package/dist/domain/booking/index.js +1 -0
- package/dist/domain/breed/index.d.ts +2 -0
- package/dist/domain/breed/index.js +18 -0
- package/dist/domain/chatbot/chatbotService.d.ts +5 -5
- package/dist/domain/chatbot/chatbotService.js +5 -17
- package/dist/domain/chatbot/index.d.ts +2 -1
- package/dist/domain/chatbot/index.js +2 -1
- package/dist/domain/client/client.service.d.ts +6 -6
- package/dist/domain/client/client.service.js +4 -16
- package/dist/domain/client/index.d.ts +1 -0
- package/dist/domain/client/index.js +1 -0
- package/dist/domain/combo/index.d.ts +1 -0
- package/dist/domain/combo/index.js +17 -0
- package/dist/domain/pet/index.d.ts +3 -0
- package/dist/domain/pet/index.js +3 -0
- package/dist/domain/service/index.d.ts +1 -0
- package/dist/domain/service/index.js +17 -0
- package/dist/domain/shop/index.d.ts +2 -0
- package/dist/domain/shop/index.js +2 -0
- package/dist/domain/specie/index.d.ts +3 -0
- package/dist/domain/specie/index.js +18 -2
- package/dist/index.d.ts +17 -11
- package/dist/index.js +18 -12
- package/package.json +1 -1
- package/src/domain/availableTimes/availableTimes.service.ts +4 -4
- package/src/domain/availableTimes/index.ts +3 -0
- package/src/domain/billingMethod/billingMethod.service.ts +5 -5
- package/src/domain/billingMethod/index.ts +2 -0
- package/src/domain/booking/booking.service.ts +13 -21
- package/src/domain/booking/index.ts +2 -0
- package/src/domain/breed/index.ts +3 -0
- package/src/domain/chatbot/chatbotService.ts +14 -22
- package/src/domain/chatbot/index.ts +2 -1
- package/src/domain/client/client.service.ts +18 -26
- package/src/domain/client/index.ts +5 -3
- package/src/domain/combo/index.ts +2 -0
- package/src/domain/pet/index.ts +4 -0
- package/src/domain/service/index.ts +2 -0
- package/src/domain/shop/index.ts +5 -0
- package/src/domain/specie/dto/pa.get-specie.dto.ts +1 -1
- package/src/domain/specie/index.ts +5 -2
- package/src/index.ts +26 -16
package/changelog.md
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
🚀 Alterações desde v0.0.
|
|
2
|
-
- feat: Adjust on
|
|
1
|
+
🚀 Alterações desde v0.0.32:
|
|
2
|
+
- feat: Adjust on imports (14a4a07)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { HttpClient } from "infra/http/client.http";
|
|
2
|
-
import { PaGetAvailableTimesTimesBody } from "./dto/pa.get-available-times.dto";
|
|
3
2
|
import { PaGetAvailableTimesResponse } from "./dto/pa.get-available-time.dto";
|
|
3
|
+
import { PaGetAvailableTimesTimesBody } from "./dto/pa.get-available-times.dto";
|
|
4
4
|
export declare class AvailableTimesService {
|
|
5
5
|
private readonly api;
|
|
6
6
|
constructor(api: HttpClient);
|
|
7
|
-
list(body: PaGetAvailableTimesTimesBody, shopId: number): Promise<Array<PaGetAvailableTimesResponse
|
|
7
|
+
list(body: PaGetAvailableTimesTimesBody, shopId: number): Promise<Array<PaGetAvailableTimesResponse>>;
|
|
8
8
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dto/pa.get-available-time.dto"), exports);
|
|
18
|
+
__exportStar(require("./dto/pa.get-available-times.dto"), exports);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { HttpClient } from "infra/http/client.http";
|
|
2
|
-
import { PaBillingResponse } from "./dto/pa.get-billing-methods.dto";
|
|
3
2
|
import { ShopSegment } from "../segment/enum/segment.enum";
|
|
3
|
+
import { PaBillingResponse } from "./dto/pa.get-billing-methods.dto";
|
|
4
4
|
export declare class BillingMethodService {
|
|
5
5
|
private readonly api;
|
|
6
6
|
constructor(api: HttpClient);
|
|
7
|
-
list(segmentType: ShopSegment, shopId: number): Promise<Array<PaBillingResponse
|
|
7
|
+
list(segmentType: ShopSegment, shopId: number): Promise<Array<PaBillingResponse>>;
|
|
8
8
|
}
|
|
@@ -14,4 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dto/pa.get-billing-methods.dto"), exports);
|
|
17
18
|
__exportStar(require("./enum/billing-method-type.enum"), exports);
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { HttpClient } from "infra/http/client.http";
|
|
2
|
+
import { PaChangeBookingStatusInput, PaChangeBookingStatusResponse } from "./dto/pa.change-booking-status.dto";
|
|
2
3
|
import { PaCreateBookingInput } from "./dto/pa.create-booking.dto";
|
|
3
4
|
import { PaGetBookingResponse } from "./dto/pa.get-booking.dto";
|
|
4
|
-
import { PaChangeBookingStatusInput, PaChangeBookingStatusResponse } from "./dto/pa.change-booking-status.dto";
|
|
5
5
|
import { PaGetBookingsQuery } from "./dto/pa.get-bookings.dto";
|
|
6
6
|
export declare class BookingService {
|
|
7
7
|
private readonly api;
|
|
8
8
|
constructor(api: HttpClient);
|
|
9
9
|
list(query: PaGetBookingsQuery, shopId: number): Promise<Array<PaGetBookingResponse>>;
|
|
10
|
-
create(body: PaCreateBookingInput, shopId: number): Promise<PaGetBookingResponse
|
|
11
|
-
changeStatus(bookingId: number, body: PaChangeBookingStatusInput, shopId: number): Promise<PaChangeBookingStatusResponse
|
|
12
|
-
get(bookingId: number, shopId: number): Promise<PaGetBookingResponse
|
|
10
|
+
create(body: PaCreateBookingInput, shopId: number): Promise<PaGetBookingResponse>;
|
|
11
|
+
changeStatus(bookingId: number, body: PaChangeBookingStatusInput, shopId: number): Promise<PaChangeBookingStatusResponse>;
|
|
12
|
+
get(bookingId: number, shopId: number): Promise<PaGetBookingResponse>;
|
|
13
13
|
}
|
|
@@ -15,24 +15,15 @@ class BookingService {
|
|
|
15
15
|
}
|
|
16
16
|
async create(body, shopId) {
|
|
17
17
|
const response = await this.api.post(`/booking`, body, shopId);
|
|
18
|
-
|
|
19
|
-
return response;
|
|
20
|
-
}
|
|
21
|
-
return null;
|
|
18
|
+
return response;
|
|
22
19
|
}
|
|
23
20
|
async changeStatus(bookingId, body, shopId) {
|
|
24
21
|
const response = await this.api.put(`/booking/${bookingId}/changeStatus`, body, shopId);
|
|
25
|
-
|
|
26
|
-
return response;
|
|
27
|
-
}
|
|
28
|
-
return null;
|
|
22
|
+
return response;
|
|
29
23
|
}
|
|
30
24
|
async get(bookingId, shopId) {
|
|
31
25
|
const response = await this.api.get(`/booking/${bookingId}`, {}, shopId);
|
|
32
|
-
|
|
33
|
-
return response;
|
|
34
|
-
}
|
|
35
|
-
return null;
|
|
26
|
+
return response;
|
|
36
27
|
}
|
|
37
28
|
}
|
|
38
29
|
exports.BookingService = BookingService;
|
|
@@ -15,3 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./dto/pa.change-booking-status.dto"), exports);
|
|
18
|
+
__exportStar(require("./dto/pa.create-booking.dto"), exports);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dto/pa.get-breed.dto"), exports);
|
|
18
|
+
__exportStar(require("./dto/pa.get-breeds.dto"), exports);
|
|
@@ -7,9 +7,9 @@ import { ChatbotPlatformTypeEnum } from "./enum/chatbotSettingsEnums/chatbot-pla
|
|
|
7
7
|
export declare class ChatbotService {
|
|
8
8
|
private readonly api;
|
|
9
9
|
constructor(api: HttpClient);
|
|
10
|
-
getByShop(shopId: number): Promise<PaChatbotSettingsResponse
|
|
11
|
-
getByPlatform(platformType: ChatbotPlatformTypeEnum, platformId: string): Promise<PaChatbotSettingsResponse
|
|
12
|
-
getFormattedMessage(body: GetChatbotFormattedMessagesInput, shopId: number): Promise<Array<PaGetChatbotFormattedMessagesResponse
|
|
13
|
-
changeNotificationStatus(notificationId: number, body: PaChangeNotificationStatusInput, shopId: number): Promise<PaChangeNotificationStatusResponse
|
|
14
|
-
handleButtonAction(body: PaHandleButtonActionInput, shopId: number): Promise<PaHandleButtonActionResponse
|
|
10
|
+
getByShop(shopId: number): Promise<PaChatbotSettingsResponse>;
|
|
11
|
+
getByPlatform(platformType: ChatbotPlatformTypeEnum, platformId: string): Promise<PaChatbotSettingsResponse>;
|
|
12
|
+
getFormattedMessage(body: GetChatbotFormattedMessagesInput, shopId: number): Promise<Array<PaGetChatbotFormattedMessagesResponse>>;
|
|
13
|
+
changeNotificationStatus(notificationId: number, body: PaChangeNotificationStatusInput, shopId: number): Promise<PaChangeNotificationStatusResponse>;
|
|
14
|
+
handleButtonAction(body: PaHandleButtonActionInput, shopId: number): Promise<PaHandleButtonActionResponse>;
|
|
15
15
|
}
|
|
@@ -8,38 +8,26 @@ class ChatbotService {
|
|
|
8
8
|
}
|
|
9
9
|
async getByShop(shopId) {
|
|
10
10
|
const response = await this.api.get(`/chatbot/settings`, {}, shopId);
|
|
11
|
-
|
|
12
|
-
return response;
|
|
13
|
-
}
|
|
14
|
-
return null;
|
|
11
|
+
return response;
|
|
15
12
|
}
|
|
16
13
|
async getByPlatform(platformType, platformId) {
|
|
17
14
|
const response = await this.api.get(`/chatbot/settings`, { platformType, platformId });
|
|
18
|
-
|
|
19
|
-
return response;
|
|
20
|
-
}
|
|
21
|
-
return null;
|
|
15
|
+
return response;
|
|
22
16
|
}
|
|
23
17
|
async getFormattedMessage(body, shopId) {
|
|
24
18
|
const response = await this.api.post(`/chatbot/formattedMessages`, body, shopId);
|
|
25
19
|
if (response) {
|
|
26
20
|
return response;
|
|
27
21
|
}
|
|
28
|
-
return
|
|
22
|
+
return [];
|
|
29
23
|
}
|
|
30
24
|
async changeNotificationStatus(notificationId, body, shopId) {
|
|
31
25
|
const response = await this.api.put(`/chatbot/notification/${notificationId}/changeStatus`, body, shopId);
|
|
32
|
-
|
|
33
|
-
return response;
|
|
34
|
-
}
|
|
35
|
-
return null;
|
|
26
|
+
return response;
|
|
36
27
|
}
|
|
37
28
|
async handleButtonAction(body, shopId) {
|
|
38
29
|
const response = await this.api.post(`/chatbot/handleButtonAction`, body, shopId);
|
|
39
|
-
|
|
40
|
-
return response;
|
|
41
|
-
}
|
|
42
|
-
return null;
|
|
30
|
+
return response;
|
|
43
31
|
}
|
|
44
32
|
}
|
|
45
33
|
exports.ChatbotService = ChatbotService;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export * from './dto/chatbot-settings.json';
|
|
2
|
+
export * from './dto/get-chatbot-formatted-messages.dto';
|
|
2
3
|
export * from './dto/pa.change-notification-status.dto';
|
|
4
|
+
export * from './enum/chatbotActionEnums/chatbot-action-type.enum';
|
|
3
5
|
export * from './enum/chatbotBehaviorEnums/chatbot-inactive-employee-action.enum';
|
|
4
6
|
export * from './enum/chatbotBehaviorEnums/chatbot-timeout-action.enum';
|
|
5
7
|
export * from './enum/chatbotGuidanceEnums/chatbot-action-button-type.enum';
|
|
6
8
|
export * from './enum/chatbotSettingsEnums/chatbot-platform-type.enum';
|
|
7
|
-
export * from './enum/chatbotActionEnums/chatbot-action-type.enum';
|
|
@@ -15,9 +15,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./dto/chatbot-settings.json"), exports);
|
|
18
|
+
__exportStar(require("./dto/get-chatbot-formatted-messages.dto"), exports);
|
|
18
19
|
__exportStar(require("./dto/pa.change-notification-status.dto"), exports);
|
|
20
|
+
__exportStar(require("./enum/chatbotActionEnums/chatbot-action-type.enum"), exports);
|
|
19
21
|
__exportStar(require("./enum/chatbotBehaviorEnums/chatbot-inactive-employee-action.enum"), exports);
|
|
20
22
|
__exportStar(require("./enum/chatbotBehaviorEnums/chatbot-timeout-action.enum"), exports);
|
|
21
23
|
__exportStar(require("./enum/chatbotGuidanceEnums/chatbot-action-button-type.enum"), exports);
|
|
22
24
|
__exportStar(require("./enum/chatbotSettingsEnums/chatbot-platform-type.enum"), exports);
|
|
23
|
-
__exportStar(require("./enum/chatbotActionEnums/chatbot-action-type.enum"), exports);
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { HttpClient } from "infra/http/client.http";
|
|
2
1
|
import { PaClientResponse } from "domain/client/dto/pa.get-client.dto";
|
|
3
|
-
import {
|
|
2
|
+
import { HttpClient } from "infra/http/client.http";
|
|
4
3
|
import { PaCreateClientInput } from "./dto/pa.create-client.dto";
|
|
4
|
+
import { PaEditClientInput } from "./dto/pa.edit-client.dto";
|
|
5
5
|
import { PaClientSummaryResponse } from "./dto/pa.get-client-summary.dto";
|
|
6
6
|
export declare class ClientService {
|
|
7
7
|
private readonly api;
|
|
8
8
|
constructor(api: HttpClient);
|
|
9
|
-
getByPhone(phone: string, shopId?: number): Promise<PaClientResponse
|
|
10
|
-
edit(clientId: number, body: PaEditClientInput, shopId: number): Promise<PaClientResponse
|
|
11
|
-
create(body: PaCreateClientInput, shopId: number): Promise<PaClientResponse
|
|
12
|
-
summary(clientId: number, shopId: number): Promise<PaClientSummaryResponse
|
|
9
|
+
getByPhone(phone: string, shopId?: number): Promise<PaClientResponse>;
|
|
10
|
+
edit(clientId: number, body: PaEditClientInput, shopId: number): Promise<PaClientResponse>;
|
|
11
|
+
create(body: PaCreateClientInput, shopId: number): Promise<PaClientResponse>;
|
|
12
|
+
summary(clientId: number, shopId: number): Promise<PaClientSummaryResponse>;
|
|
13
13
|
}
|
|
@@ -12,31 +12,19 @@ class ClientService {
|
|
|
12
12
|
limit: 20,
|
|
13
13
|
phone,
|
|
14
14
|
}, shopId);
|
|
15
|
-
|
|
16
|
-
return response.data[0];
|
|
17
|
-
}
|
|
18
|
-
return null;
|
|
15
|
+
return response.data[0];
|
|
19
16
|
}
|
|
20
17
|
async edit(clientId, body, shopId) {
|
|
21
18
|
const response = await this.api.put(`/client/${clientId}`, body, shopId);
|
|
22
|
-
|
|
23
|
-
return response;
|
|
24
|
-
}
|
|
25
|
-
return null;
|
|
19
|
+
return response;
|
|
26
20
|
}
|
|
27
21
|
async create(body, shopId) {
|
|
28
22
|
const response = await this.api.post(`/client`, body, shopId);
|
|
29
|
-
|
|
30
|
-
return response;
|
|
31
|
-
}
|
|
32
|
-
return null;
|
|
23
|
+
return response;
|
|
33
24
|
}
|
|
34
25
|
async summary(clientId, shopId) {
|
|
35
26
|
const response = await this.api.get(`/client/${clientId}/summary`, {}, shopId);
|
|
36
|
-
|
|
37
|
-
return response;
|
|
38
|
-
}
|
|
39
|
-
return null;
|
|
27
|
+
return response;
|
|
40
28
|
}
|
|
41
29
|
}
|
|
42
30
|
exports.ClientService = ClientService;
|
|
@@ -15,5 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("../client/dto/pa.get-client-summary.dto"), exports);
|
|
18
|
+
__exportStar(require("./dto/pa.edit-client.dto"), exports);
|
|
18
19
|
__exportStar(require("./dto/pa.get-client-summary.dto"), exports);
|
|
19
20
|
__exportStar(require("./dto/pa.get-client.dto"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dto/pa.get-combo-pricing.dto';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dto/pa.get-combo-pricing.dto"), exports);
|
package/dist/domain/pet/index.js
CHANGED
|
@@ -14,4 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dto/pa.create-pet.dto"), exports);
|
|
18
|
+
__exportStar(require("./dto/pa.edit-pet.dto"), exports);
|
|
17
19
|
__exportStar(require("./dto/pa.get-pet.dto"), exports);
|
|
20
|
+
__exportStar(require("./dto/pa.get-pets.dto"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dto/pa.get-service-pricing.dto';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dto/pa.get-service-pricing.dto"), exports);
|
|
@@ -15,3 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("../shop/dto/pa.get-shop-configurations.dto"), exports);
|
|
18
|
+
__exportStar(require("../shop/dto/pa.get-shop-configurations.dto"), exports);
|
|
19
|
+
__exportStar(require("../segment/enum/segment.enum"), exports);
|
|
@@ -1,3 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./dto/pa.get-specie.dto"), exports);
|
|
18
|
+
__exportStar(require("./dto/pa.get-species.dto"), exports);
|
|
19
|
+
__exportStar(require("./enum/specie-type.enum"), exports);
|
package/dist/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ChatbotService } from "./domain/chatbot/chatbotService";
|
|
3
|
-
import { PetService } from "./domain/pet/pet.service";
|
|
4
|
-
import { BreedService } from "./domain/breed/breed.service";
|
|
5
|
-
import { SpecieService } from "./domain/specie/specie.service";
|
|
1
|
+
import { AvailableTimesService } from "./domain/availableTimes/availableTimes.service";
|
|
6
2
|
import { BillingMethodService } from "./domain/billingMethod/billingMethod.service";
|
|
7
|
-
import {
|
|
3
|
+
import { BookingService } from "./domain/booking/booking.service";
|
|
4
|
+
import { BreedService } from "./domain/breed/breed.service";
|
|
5
|
+
import { ChatbotService } from "./domain/chatbot/chatbotService";
|
|
6
|
+
import { ClientService } from "./domain/client/client.service";
|
|
8
7
|
import { ComboService } from "./domain/combo/combo.service";
|
|
8
|
+
import { PetService } from "./domain/pet/pet.service";
|
|
9
9
|
import { ServiceService } from "./domain/service/service.service";
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
10
|
+
import { ShopService } from "./domain/shop/shop.service";
|
|
11
|
+
import { SpecieService } from "./domain/specie/specie.service";
|
|
12
12
|
import { TokenService } from "./domain/token/token.service";
|
|
13
13
|
export declare class TecpetSDK {
|
|
14
14
|
private api;
|
|
@@ -26,9 +26,15 @@ export declare class TecpetSDK {
|
|
|
26
26
|
token: TokenService;
|
|
27
27
|
constructor(baseURL: string, apiKey?: string);
|
|
28
28
|
}
|
|
29
|
-
export * from './domain/
|
|
29
|
+
export * from './domain/availableTimes';
|
|
30
|
+
export * from './domain/billingMethod';
|
|
30
31
|
export * from './domain/booking';
|
|
31
|
-
export * from './domain/
|
|
32
|
+
export * from './domain/breed';
|
|
33
|
+
export * from './domain/chatbot';
|
|
32
34
|
export * from './domain/client';
|
|
33
|
-
export * from './domain/
|
|
35
|
+
export * from './domain/combo';
|
|
34
36
|
export * from './domain/pet';
|
|
37
|
+
export * from './domain/service';
|
|
38
|
+
export * from './domain/shop';
|
|
39
|
+
export * from './domain/specie';
|
|
40
|
+
export * from './domain/token';
|
package/dist/index.js
CHANGED
|
@@ -15,19 +15,19 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
exports.TecpetSDK = void 0;
|
|
18
|
-
const
|
|
19
|
-
const client_http_1 = require("./infra/http/client.http");
|
|
20
|
-
const chatbotService_1 = require("./domain/chatbot/chatbotService");
|
|
21
|
-
const pet_service_1 = require("./domain/pet/pet.service");
|
|
22
|
-
const breed_service_1 = require("./domain/breed/breed.service");
|
|
23
|
-
const specie_service_1 = require("./domain/specie/specie.service");
|
|
18
|
+
const availableTimes_service_1 = require("./domain/availableTimes/availableTimes.service");
|
|
24
19
|
const billingMethod_service_1 = require("./domain/billingMethod/billingMethod.service");
|
|
25
|
-
const
|
|
20
|
+
const booking_service_1 = require("./domain/booking/booking.service");
|
|
21
|
+
const breed_service_1 = require("./domain/breed/breed.service");
|
|
22
|
+
const chatbotService_1 = require("./domain/chatbot/chatbotService");
|
|
23
|
+
const client_service_1 = require("./domain/client/client.service");
|
|
26
24
|
const combo_service_1 = require("./domain/combo/combo.service");
|
|
25
|
+
const pet_service_1 = require("./domain/pet/pet.service");
|
|
27
26
|
const service_service_1 = require("./domain/service/service.service");
|
|
28
|
-
const
|
|
29
|
-
const
|
|
27
|
+
const shop_service_1 = require("./domain/shop/shop.service");
|
|
28
|
+
const specie_service_1 = require("./domain/specie/specie.service");
|
|
30
29
|
const token_service_1 = require("./domain/token/token.service");
|
|
30
|
+
const client_http_1 = require("./infra/http/client.http");
|
|
31
31
|
class TecpetSDK {
|
|
32
32
|
api;
|
|
33
33
|
client;
|
|
@@ -59,9 +59,15 @@ class TecpetSDK {
|
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
exports.TecpetSDK = TecpetSDK;
|
|
62
|
-
__exportStar(require("./domain/
|
|
62
|
+
__exportStar(require("./domain/availableTimes"), exports);
|
|
63
|
+
__exportStar(require("./domain/billingMethod"), exports);
|
|
63
64
|
__exportStar(require("./domain/booking"), exports);
|
|
64
|
-
__exportStar(require("./domain/
|
|
65
|
+
__exportStar(require("./domain/breed"), exports);
|
|
66
|
+
__exportStar(require("./domain/chatbot"), exports);
|
|
65
67
|
__exportStar(require("./domain/client"), exports);
|
|
66
|
-
__exportStar(require("./domain/
|
|
68
|
+
__exportStar(require("./domain/combo"), exports);
|
|
67
69
|
__exportStar(require("./domain/pet"), exports);
|
|
70
|
+
__exportStar(require("./domain/service"), exports);
|
|
71
|
+
__exportStar(require("./domain/shop"), exports);
|
|
72
|
+
__exportStar(require("./domain/specie"), exports);
|
|
73
|
+
__exportStar(require("./domain/token"), exports);
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {HttpClient} from "infra/http/client.http";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { HttpClient } from "infra/http/client.http";
|
|
2
|
+
import { PaGetAvailableTimesResponse } from "./dto/pa.get-available-time.dto";
|
|
3
|
+
import { PaGetAvailableTimesTimesBody } from "./dto/pa.get-available-times.dto";
|
|
4
4
|
|
|
5
5
|
export class AvailableTimesService {
|
|
6
6
|
constructor(private readonly api: HttpClient) {
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
async list(body: PaGetAvailableTimesTimesBody, shopId: number): Promise<Array<PaGetAvailableTimesResponse
|
|
9
|
+
async list(body: PaGetAvailableTimesTimesBody, shopId: number): Promise<Array<PaGetAvailableTimesResponse>> {
|
|
10
10
|
try {
|
|
11
11
|
const response = await this.api.post<Array<PaGetAvailableTimesResponse>>(`/availableTimes`, body, shopId)
|
|
12
12
|
if (response && response?.length) {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {HttpClient} from "infra/http/client.http";
|
|
2
|
-
import {logger} from "../../infra/logger/stdout.logger";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { HttpClient } from "infra/http/client.http";
|
|
2
|
+
import { logger } from "../../infra/logger/stdout.logger";
|
|
3
|
+
import { ShopSegment } from "../segment/enum/segment.enum";
|
|
4
|
+
import { PaBillingResponse, PaGetBillingMethodResponse } from "./dto/pa.get-billing-methods.dto";
|
|
5
5
|
|
|
6
6
|
export class BillingMethodService {
|
|
7
7
|
constructor(private readonly api: HttpClient) {
|
|
8
8
|
}
|
|
9
9
|
|
|
10
|
-
async list(segmentType: ShopSegment, shopId: number): Promise<Array<PaBillingResponse
|
|
10
|
+
async list(segmentType: ShopSegment, shopId: number): Promise<Array<PaBillingResponse>> {
|
|
11
11
|
const response = await this.api.get<PaGetBillingMethodResponse>(`/billingMethod`, {
|
|
12
12
|
segmentType,
|
|
13
13
|
}, shopId)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {HttpClient} from "infra/http/client.http";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {PaGetBookingsQuery, PaGetBookingsResponse} from "./dto/pa.get-bookings.dto";
|
|
1
|
+
import { HttpClient } from "infra/http/client.http";
|
|
2
|
+
import { PaChangeBookingStatusInput, PaChangeBookingStatusResponse } from "./dto/pa.change-booking-status.dto";
|
|
3
|
+
import { PaCreateBookingInput } from "./dto/pa.create-booking.dto";
|
|
4
|
+
import { PaGetBookingResponse } from "./dto/pa.get-booking.dto";
|
|
5
|
+
import { PaGetBookingsQuery, PaGetBookingsResponse } from "./dto/pa.get-bookings.dto";
|
|
6
6
|
|
|
7
7
|
export class BookingService {
|
|
8
8
|
constructor(private readonly api: HttpClient) {
|
|
@@ -16,28 +16,20 @@ export class BookingService {
|
|
|
16
16
|
return [];
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
async create(body: PaCreateBookingInput, shopId: number): Promise<PaGetBookingResponse
|
|
19
|
+
async create(body: PaCreateBookingInput, shopId: number): Promise<PaGetBookingResponse> {
|
|
20
20
|
const response = await this.api.post<PaGetBookingResponse>(`/booking`, body, shopId)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
return null;
|
|
21
|
+
return response;
|
|
22
|
+
|
|
25
23
|
}
|
|
26
24
|
|
|
27
|
-
async changeStatus(bookingId: number, body: PaChangeBookingStatusInput, shopId: number): Promise<PaChangeBookingStatusResponse
|
|
25
|
+
async changeStatus(bookingId: number, body: PaChangeBookingStatusInput, shopId: number): Promise<PaChangeBookingStatusResponse> {
|
|
28
26
|
const response = await this.api.put<PaChangeBookingStatusResponse>(`/booking/${bookingId}/changeStatus`, body, shopId)
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
return null;
|
|
27
|
+
return response;
|
|
28
|
+
|
|
33
29
|
}
|
|
34
30
|
|
|
35
|
-
async get(bookingId: number, shopId: number): Promise<PaGetBookingResponse
|
|
31
|
+
async get(bookingId: number, shopId: number): Promise<PaGetBookingResponse> {
|
|
36
32
|
const response = await this.api.get<PaGetBookingResponse>(`/booking/${bookingId}`, {}, shopId)
|
|
37
|
-
|
|
38
|
-
if (response) {
|
|
39
|
-
return response;
|
|
40
|
-
}
|
|
41
|
-
return null;
|
|
33
|
+
return response;
|
|
42
34
|
}
|
|
43
35
|
}
|
|
@@ -15,43 +15,35 @@ export class ChatbotService {
|
|
|
15
15
|
constructor(private readonly api: HttpClient) {
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
async getByShop(shopId: number): Promise<PaChatbotSettingsResponse
|
|
18
|
+
async getByShop(shopId: number): Promise<PaChatbotSettingsResponse> {
|
|
19
19
|
const response = await this.api.get<PaChatbotSettingsResponse>(`/chatbot/settings`, {}, shopId)
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
23
|
-
return null;
|
|
20
|
+
return response;
|
|
21
|
+
|
|
24
22
|
}
|
|
25
23
|
|
|
26
|
-
async getByPlatform(platformType: ChatbotPlatformTypeEnum, platformId: string): Promise<PaChatbotSettingsResponse
|
|
24
|
+
async getByPlatform(platformType: ChatbotPlatformTypeEnum, platformId: string): Promise<PaChatbotSettingsResponse> {
|
|
27
25
|
const response = await this.api.get<PaChatbotSettingsResponse>(`/chatbot/settings`, {platformType, platformId})
|
|
28
|
-
|
|
29
|
-
return response;
|
|
30
|
-
}
|
|
31
|
-
return null;
|
|
26
|
+
return response;
|
|
32
27
|
}
|
|
33
28
|
|
|
34
|
-
async getFormattedMessage(body: GetChatbotFormattedMessagesInput, shopId: number): Promise<Array<PaGetChatbotFormattedMessagesResponse
|
|
29
|
+
async getFormattedMessage(body: GetChatbotFormattedMessagesInput, shopId: number): Promise<Array<PaGetChatbotFormattedMessagesResponse>> {
|
|
35
30
|
const response = await this.api.post<Array<PaGetChatbotFormattedMessagesResponse>>(`/chatbot/formattedMessages`, body, shopId)
|
|
36
31
|
if (response) {
|
|
37
32
|
return response;
|
|
38
33
|
}
|
|
39
|
-
return
|
|
34
|
+
return [];
|
|
40
35
|
}
|
|
41
36
|
|
|
42
|
-
async changeNotificationStatus(notificationId: number, body: PaChangeNotificationStatusInput, shopId: number): Promise<PaChangeNotificationStatusResponse
|
|
37
|
+
async changeNotificationStatus(notificationId: number, body: PaChangeNotificationStatusInput, shopId: number): Promise<PaChangeNotificationStatusResponse> {
|
|
43
38
|
const response = await this.api.put<PaChangeNotificationStatusResponse>(`/chatbot/notification/${notificationId}/changeStatus`, body, shopId)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
return null;
|
|
39
|
+
return response;
|
|
40
|
+
|
|
41
|
+
|
|
48
42
|
}
|
|
49
43
|
|
|
50
|
-
async handleButtonAction(body: PaHandleButtonActionInput, shopId: number): Promise<PaHandleButtonActionResponse
|
|
44
|
+
async handleButtonAction(body: PaHandleButtonActionInput, shopId: number): Promise<PaHandleButtonActionResponse> {
|
|
51
45
|
const response = await this.api.post<PaHandleButtonActionResponse>(`/chatbot/handleButtonAction`, body, shopId)
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
return null;
|
|
46
|
+
return response;
|
|
47
|
+
|
|
56
48
|
}
|
|
57
49
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
export * from './dto/chatbot-settings.json';
|
|
2
|
+
export * from './dto/get-chatbot-formatted-messages.dto';
|
|
2
3
|
export * from './dto/pa.change-notification-status.dto';
|
|
4
|
+
export * from './enum/chatbotActionEnums/chatbot-action-type.enum';
|
|
3
5
|
export * from './enum/chatbotBehaviorEnums/chatbot-inactive-employee-action.enum';
|
|
4
6
|
export * from './enum/chatbotBehaviorEnums/chatbot-timeout-action.enum';
|
|
5
7
|
export * from './enum/chatbotGuidanceEnums/chatbot-action-button-type.enum';
|
|
6
8
|
export * from './enum/chatbotSettingsEnums/chatbot-platform-type.enum';
|
|
7
|
-
export * from './enum/chatbotActionEnums/chatbot-action-type.enum';
|
|
8
9
|
|
|
@@ -1,48 +1,40 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {PaClientSummaryResponse} from "./dto/pa.get-client-summary.dto";
|
|
1
|
+
import { PaClientResponse } from "domain/client/dto/pa.get-client.dto";
|
|
2
|
+
import { PaGetClientsResponse } from "domain/client/dto/pa.get-clients.dto";
|
|
3
|
+
import { HttpClient } from "infra/http/client.http";
|
|
4
|
+
import { PaCreateClientInput } from "./dto/pa.create-client.dto";
|
|
5
|
+
import { PaEditClientInput } from "./dto/pa.edit-client.dto";
|
|
6
|
+
import { PaClientSummaryResponse } from "./dto/pa.get-client-summary.dto";
|
|
7
7
|
|
|
8
8
|
export class ClientService {
|
|
9
9
|
constructor(private readonly api: HttpClient) {
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
async getByPhone(phone: string, shopId?: number): Promise<PaClientResponse
|
|
12
|
+
async getByPhone(phone: string, shopId?: number): Promise<PaClientResponse> {
|
|
13
13
|
const response = await this.api.get<PaGetClientsResponse>(`/client`, {
|
|
14
14
|
page: 1,
|
|
15
15
|
limit: 20,
|
|
16
16
|
phone,
|
|
17
17
|
},
|
|
18
18
|
shopId)
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
}
|
|
22
|
-
return null;
|
|
19
|
+
return response.data[0];
|
|
20
|
+
|
|
23
21
|
}
|
|
24
22
|
|
|
25
|
-
async edit(clientId: number, body: PaEditClientInput, shopId: number): Promise<PaClientResponse
|
|
23
|
+
async edit(clientId: number, body: PaEditClientInput, shopId: number): Promise<PaClientResponse> {
|
|
26
24
|
const response = await this.api.put<PaClientResponse>(`/client/${clientId}`, body, shopId)
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
return null;
|
|
25
|
+
return response;
|
|
26
|
+
|
|
31
27
|
}
|
|
32
28
|
|
|
33
|
-
async create(body: PaCreateClientInput, shopId: number): Promise<PaClientResponse
|
|
29
|
+
async create(body: PaCreateClientInput, shopId: number): Promise<PaClientResponse> {
|
|
34
30
|
const response = await this.api.post<PaClientResponse>(`/client`, body, shopId)
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
}
|
|
38
|
-
return null;
|
|
31
|
+
return response;
|
|
32
|
+
|
|
39
33
|
}
|
|
40
34
|
|
|
41
|
-
async summary(clientId: number, shopId: number): Promise<PaClientSummaryResponse
|
|
35
|
+
async summary(clientId: number, shopId: number): Promise<PaClientSummaryResponse> {
|
|
42
36
|
const response = await this.api.get<PaClientSummaryResponse>(`/client/${clientId}/summary`, {}, shopId)
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
}
|
|
46
|
-
return null;
|
|
37
|
+
return response;
|
|
38
|
+
|
|
47
39
|
}
|
|
48
40
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
export * from '../client/dto/pa.get-client-summary.dto'
|
|
2
|
-
export * from './dto/pa.
|
|
3
|
-
export * from './dto/pa.get-client.dto'
|
|
1
|
+
export * from '../client/dto/pa.get-client-summary.dto';
|
|
2
|
+
export * from './dto/pa.edit-client.dto';
|
|
3
|
+
export * from './dto/pa.get-client-summary.dto';
|
|
4
|
+
export * from './dto/pa.get-client.dto';
|
|
5
|
+
|
package/src/domain/pet/index.ts
CHANGED
package/src/domain/shop/index.ts
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
1
|
+
import { AvailableTimesService } from "./domain/availableTimes/availableTimes.service";
|
|
2
|
+
import { BillingMethodService } from "./domain/billingMethod/billingMethod.service";
|
|
3
|
+
import { BookingService } from "./domain/booking/booking.service";
|
|
4
|
+
import { BreedService } from "./domain/breed/breed.service";
|
|
5
|
+
import { ChatbotService } from "./domain/chatbot/chatbotService";
|
|
6
|
+
import { ClientService } from "./domain/client/client.service";
|
|
7
|
+
import { ComboService } from "./domain/combo/combo.service";
|
|
8
|
+
import { PetService } from "./domain/pet/pet.service";
|
|
9
|
+
import { ServiceService } from "./domain/service/service.service";
|
|
10
|
+
import { ShopService } from "./domain/shop/shop.service";
|
|
11
|
+
import { SpecieService } from "./domain/specie/specie.service";
|
|
12
|
+
import { TokenService } from "./domain/token/token.service";
|
|
13
|
+
import { HttpClient } from "./infra/http/client.http";
|
|
14
14
|
|
|
15
15
|
export class TecpetSDK {
|
|
16
16
|
private api: HttpClient;
|
|
@@ -44,9 +44,19 @@ export class TecpetSDK {
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
export * from './domain/
|
|
47
|
+
export * from './domain/availableTimes';
|
|
48
|
+
export * from './domain/billingMethod';
|
|
48
49
|
export * from './domain/booking';
|
|
49
|
-
export * from './domain/
|
|
50
|
+
export * from './domain/breed';
|
|
51
|
+
export * from './domain/chatbot';
|
|
50
52
|
export * from './domain/client';
|
|
51
|
-
export * from './domain/
|
|
53
|
+
export * from './domain/combo';
|
|
52
54
|
export * from './domain/pet';
|
|
55
|
+
export * from './domain/service';
|
|
56
|
+
export * from './domain/shop';
|
|
57
|
+
export * from './domain/specie';
|
|
58
|
+
export * from './domain/token';
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|