@tec.pet/tecpet-sdk 0.0.92 → 0.0.94

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.
@@ -47,7 +47,10 @@ export interface PaChatbotSettingsResponse {
47
47
  id: number;
48
48
  name: string;
49
49
  timeZone: string;
50
- chainId: string;
50
+ chain?: {
51
+ id: string;
52
+ name: string;
53
+ };
51
54
  };
52
55
  }
53
56
  export declare class ChatbotBehaviorDto {
@@ -0,0 +1,14 @@
1
+ export interface TimeHourMin {
2
+ start: string;
3
+ stop: string;
4
+ }
5
+ export interface TimeTable {
6
+ fullTime: boolean;
7
+ monday: Array<TimeHourMin>;
8
+ thursday: Array<TimeHourMin>;
9
+ wednesday: Array<TimeHourMin>;
10
+ tuesday: Array<TimeHourMin>;
11
+ friday: Array<TimeHourMin>;
12
+ saturday: Array<TimeHourMin>;
13
+ sunday: Array<TimeHourMin>;
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,9 +1,11 @@
1
1
  import { PaServiceCategoryResponse, ServiceCategoryType } from "../../service";
2
+ import { TimeTable } from "./pa-timetable.dto";
2
3
  export interface PaEmployeeResponse {
3
4
  id: number;
4
5
  name: string;
5
6
  phoneNumber: string;
6
7
  categories: PaServiceCategoryResponse[];
8
+ timeTable: TimeTable;
7
9
  }
8
10
  export interface PaGetEmployeeResponse {
9
11
  data: PaEmployeeResponse[];
@@ -1,2 +1,3 @@
1
1
  export * from './dto/pa.employee-filter.dto';
2
2
  export * from './dto/pa.get-employee.dto';
3
+ export * from './dto/pa-timetable.dto';
@@ -16,3 +16,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./dto/pa.employee-filter.dto"), exports);
18
18
  __exportStar(require("./dto/pa.get-employee.dto"), exports);
19
+ __exportStar(require("./dto/pa-timetable.dto"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tec.pet/tecpet-sdk",
3
- "version": "0.0.92",
3
+ "version": "0.0.94",
4
4
  "description": "TecPet SDK for integration with TecPet services",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",