@rodrigobeber/patoai-dtos 3.21.4 → 3.21.6

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.
@@ -1,5 +1,5 @@
1
1
  export interface AvailableSlotDto {
2
2
  idProfessional: number;
3
- start: string;
4
- end: string;
3
+ start: Date;
4
+ end: Date;
5
5
  }
@@ -2,6 +2,6 @@ export interface GetAvailabilityDto {
2
2
  idCrew: number;
3
3
  idThread: string;
4
4
  calendarCode: string;
5
- timeMin: string;
6
- timeMax: string;
5
+ start: Date;
6
+ end: Date;
7
7
  }
@@ -1,4 +1,5 @@
1
- export declare class UpdateAppointmentDto {
1
+ export interface UpdateAppointmentDto {
2
+ idHuman?: number;
2
3
  title?: string;
3
4
  note?: string;
4
5
  attendeeName?: string;
@@ -1,6 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateAppointmentDto = void 0;
4
- class UpdateAppointmentDto {
5
- }
6
- exports.UpdateAppointmentDto = UpdateAppointmentDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "3.21.4",
3
+ "version": "3.21.6",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",