@rodrigobeber/patoai-dtos 3.19.10 → 3.19.11

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.
@@ -11,3 +11,9 @@ export * from './date-range.dto';
11
11
  export * from './time-slot.dto';
12
12
  export * from './update-appointment.dto';
13
13
  export * from './update-calendar.dto';
14
+ export * from './upflows-get-availability.dto';
15
+ export * from './upflows-available-slot.dto';
16
+ export * from './upflows-availability-response.dto';
17
+ export * from './upflows-create-appointment.dto';
18
+ export * from './upflows-appointment-response.dto';
19
+ export * from './upflows-delete-appointment.dto';
@@ -27,3 +27,9 @@ __exportStar(require("./date-range.dto"), exports);
27
27
  __exportStar(require("./time-slot.dto"), exports);
28
28
  __exportStar(require("./update-appointment.dto"), exports);
29
29
  __exportStar(require("./update-calendar.dto"), exports);
30
+ __exportStar(require("./upflows-get-availability.dto"), exports);
31
+ __exportStar(require("./upflows-available-slot.dto"), exports);
32
+ __exportStar(require("./upflows-availability-response.dto"), exports);
33
+ __exportStar(require("./upflows-create-appointment.dto"), exports);
34
+ __exportStar(require("./upflows-appointment-response.dto"), exports);
35
+ __exportStar(require("./upflows-delete-appointment.dto"), exports);
@@ -0,0 +1,14 @@
1
+ export interface UpflowsAppointmentResponseDto {
2
+ instruction?: string;
3
+ error?: string;
4
+ event?: {
5
+ id: number;
6
+ uid?: string;
7
+ title?: string;
8
+ description?: string;
9
+ meetingUrl?: string;
10
+ location?: string;
11
+ start: string;
12
+ durationMinutes: number;
13
+ };
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ import { UpflowsAvailableSlotDto } from "./upflows-available-slot.dto";
2
+ export interface UpflowsAvailabilityResponseDto {
3
+ availability: UpflowsAvailableSlotDto[];
4
+ timezone: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export interface UpflowsAvailableSlotDto {
2
+ start: string;
3
+ end: string;
4
+ idProfessional: number;
5
+ idFacilityRoom: number;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,16 @@
1
+ export interface UpflowsCreateAppointmentDto {
2
+ idCrew: number;
3
+ idThread: string;
4
+ idProfessional: number;
5
+ idFacilityRoom: number;
6
+ facilityCode: string;
7
+ serviceCode: string;
8
+ start: string;
9
+ duration: number;
10
+ title?: string;
11
+ note?: string;
12
+ attendeeName?: string;
13
+ attendeePhone?: string;
14
+ attendeeEmail?: string;
15
+ fixedLocation?: string;
16
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,5 @@
1
+ export interface UpflowsDeleteAppointmentDto {
2
+ idCrew: number;
3
+ idAppointment: number;
4
+ reason?: string;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ export interface UpflowsGetAvailabilityDto {
2
+ idCrew: number;
3
+ idThread: string;
4
+ facilityCode: string;
5
+ serviceCode: string;
6
+ timeMin: string;
7
+ timeMax: string;
8
+ offset: number;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "3.19.10",
3
+ "version": "3.19.11",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",