@blackcode_sa/metaestetics-api 1.6.11 → 1.6.13

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@blackcode_sa/metaestetics-api",
3
3
  "private": false,
4
- "version": "1.6.11",
4
+ "version": "1.6.13",
5
5
  "description": "Firebase authentication service with anonymous upgrade support",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",
@@ -12,12 +12,14 @@ import {
12
12
  import { DoctorInfo } from "../types/clinic";
13
13
  import { Procedure, ProcedureSummaryInfo } from "../types/procedure";
14
14
  import { PatientProfile } from "../types/patient";
15
+ import { Appointment, AppointmentStatus } from "../types/appointment";
15
16
 
16
17
  // Explicitly import the services to re-export them by name
17
18
  import { ClinicAggregationService } from "./aggregation/clinic/clinic.aggregation.service";
18
19
  import { PractitionerAggregationService } from "./aggregation/practitioner/practitioner.aggregation.service";
19
20
  import { ProcedureAggregationService } from "./aggregation/procedure/procedure.aggregation.service";
20
21
  import { PatientAggregationService } from "./aggregation/patient/patient.aggregation.service";
22
+ import { AppointmentAggregationService } from "./aggregation/appointment/appointment.aggregation.service";
21
23
 
22
24
  // Import mailing services
23
25
  import { BaseMailingService } from "./mailing/base.mailing.service";
@@ -45,6 +47,7 @@ export type { Practitioner, PractitionerToken } from "../types/practitioner";
45
47
  export type { DoctorInfo } from "../types/clinic";
46
48
  export type { Procedure, ProcedureSummaryInfo } from "../types/procedure";
47
49
  export type { PatientProfile as Patient } from "../types/patient";
50
+ export type { Appointment } from "../types/appointment";
48
51
 
49
52
  // Re-export enums/consts
50
53
  export {
@@ -54,6 +57,7 @@ export {
54
57
  } from "../types/notifications";
55
58
  export { UserRole } from "../types";
56
59
  export { PractitionerTokenStatus } from "../types/practitioner";
60
+ export { AppointmentStatus } from "../types/appointment";
57
61
 
58
62
  // Export admin classes/services explicitly by name
59
63
  export {
@@ -62,6 +66,7 @@ export {
62
66
  PractitionerAggregationService,
63
67
  ProcedureAggregationService,
64
68
  PatientAggregationService,
69
+ AppointmentAggregationService,
65
70
  PatientRequirementsAdminService,
66
71
  };
67
72