tychat-contracts 1.0.122 → 1.0.123

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,8 +1,7 @@
1
- /** Um agendamento no calendário (com nome do paciente resolvido na API). */
1
+ /** Um agendamento no calendário. */
2
2
  export declare class AppointmentCalendarItemDto {
3
3
  id: string;
4
4
  date: string;
5
- patientName: string;
6
5
  }
7
6
  /** Agendamentos agrupados por dia civil (UTC a partir do timestamp do agendamento). */
8
7
  export declare class AppointmentCalendarDayDto {
@@ -1 +1 @@
1
- {"version":3,"file":"appointment-calendar.dto.d.ts","sourceRoot":"","sources":["../../src/appointments/appointment-calendar.dto.ts"],"names":[],"mappings":"AAEA,4EAA4E;AAC5E,qBAAa,0BAA0B;IAErC,EAAE,EAAE,MAAM,CAAC;IAMX,IAAI,EAAE,MAAM,CAAC;IAGb,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,uFAAuF;AACvF,qBAAa,yBAAyB;IAKpC,IAAI,EAAE,MAAM,CAAC;IAGb,YAAY,EAAE,0BAA0B,EAAE,CAAC;CAC5C;AAED,qBAAa,8BAA8B;IAEzC,SAAS,EAAE,MAAM,CAAC;IAGlB,OAAO,EAAE,MAAM,CAAC;IAGhB,IAAI,EAAE,yBAAyB,EAAE,CAAC;CACnC"}
1
+ {"version":3,"file":"appointment-calendar.dto.d.ts","sourceRoot":"","sources":["../../src/appointments/appointment-calendar.dto.ts"],"names":[],"mappings":"AAEA,oCAAoC;AACpC,qBAAa,0BAA0B;IAErC,EAAE,EAAE,MAAM,CAAC;IAMX,IAAI,EAAE,MAAM,CAAC;CACd;AAED,uFAAuF;AACvF,qBAAa,yBAAyB;IAKpC,IAAI,EAAE,MAAM,CAAC;IAGb,YAAY,EAAE,0BAA0B,EAAE,CAAC;CAC5C;AAED,qBAAa,8BAA8B;IAEzC,SAAS,EAAE,MAAM,CAAC;IAGlB,OAAO,EAAE,MAAM,CAAC;IAGhB,IAAI,EAAE,yBAAyB,EAAE,CAAC;CACnC"}
@@ -11,11 +11,10 @@ var __metadata = (this && this.__metadata) || function (k, v) {
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.AppointmentCalendarResponseDto = exports.AppointmentCalendarDayDto = exports.AppointmentCalendarItemDto = void 0;
13
13
  const swagger_1 = require("@nestjs/swagger");
14
- /** Um agendamento no calendário (com nome do paciente resolvido na API). */
14
+ /** Um agendamento no calendário. */
15
15
  class AppointmentCalendarItemDto {
16
16
  id;
17
17
  date;
18
- patientName;
19
18
  }
20
19
  exports.AppointmentCalendarItemDto = AppointmentCalendarItemDto;
21
20
  __decorate([
@@ -29,10 +28,6 @@ __decorate([
29
28
  }),
30
29
  __metadata("design:type", String)
31
30
  ], AppointmentCalendarItemDto.prototype, "date", void 0);
32
- __decorate([
33
- (0, swagger_1.ApiProperty)({ description: 'Nome do paciente' }),
34
- __metadata("design:type", String)
35
- ], AppointmentCalendarItemDto.prototype, "patientName", void 0);
36
31
  /** Agendamentos agrupados por dia civil (UTC a partir do timestamp do agendamento). */
37
32
  class AppointmentCalendarDayDto {
38
33
  date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tychat-contracts",
3
- "version": "1.0.122",
3
+ "version": "1.0.123",
4
4
  "description": "DTOs compartilhados com class-validator (API e microserviços)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,6 +1,6 @@
1
1
  import { ApiProperty } from '@nestjs/swagger';
2
2
 
3
- /** Um agendamento no calendário (com nome do paciente resolvido na API). */
3
+ /** Um agendamento no calendário. */
4
4
  export class AppointmentCalendarItemDto {
5
5
  @ApiProperty({ description: 'ID do agendamento (UUID)' })
6
6
  id: string;
@@ -10,9 +10,6 @@ export class AppointmentCalendarItemDto {
10
10
  example: '2026-04-10T14:30:00.000Z',
11
11
  })
12
12
  date: string;
13
-
14
- @ApiProperty({ description: 'Nome do paciente' })
15
- patientName: string;
16
13
  }
17
14
 
18
15
  /** Agendamentos agrupados por dia civil (UTC a partir do timestamp do agendamento). */