@more-life/types-more-life-nest 0.72.0 → 0.73.0

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.
Files changed (26) hide show
  1. package/dist/dto/application/applicationEmbedded.dto.d.ts +3 -1
  2. package/dist/dto/application/applicationEmbedded.dto.js +9 -1
  3. package/dist/dto/application/applicationEmbedded.dto.js.map +1 -1
  4. package/dist/dto/geridocPatient/geridocPatient.dto.d.ts +14 -0
  5. package/dist/dto/geridocPatient/geridocPatient.dto.js +50 -0
  6. package/dist/dto/geridocPatient/geridocPatient.dto.js.map +1 -0
  7. package/dist/dto/geridocPatient/geridocPatientEmbedded.dto.d.ts +6 -0
  8. package/dist/dto/geridocPatient/geridocPatientEmbedded.dto.js +43 -0
  9. package/dist/dto/geridocPatient/geridocPatientEmbedded.dto.js.map +1 -0
  10. package/dist/dto/geridocPatient/geridocPatientPage.dto.d.ts +12 -0
  11. package/dist/dto/geridocPatient/geridocPatientPage.dto.js +62 -0
  12. package/dist/dto/geridocPatient/geridocPatientPage.dto.js.map +1 -0
  13. package/dist/dto/geridocTherapyGoal/geridocTherapyGoal.dto.d.ts +14 -0
  14. package/dist/dto/geridocTherapyGoal/geridocTherapyGoal.dto.js +50 -0
  15. package/dist/dto/geridocTherapyGoal/geridocTherapyGoal.dto.js.map +1 -0
  16. package/dist/dto/geridocTherapyGoal/geridocTherapyGoalEmbedded.dto.d.ts +4 -0
  17. package/dist/dto/geridocTherapyGoal/geridocTherapyGoalEmbedded.dto.js +31 -0
  18. package/dist/dto/geridocTherapyGoal/geridocTherapyGoalEmbedded.dto.js.map +1 -0
  19. package/dist/dto/geridocTherapyGoal/geridocTherapyGoalPage.dto.d.ts +12 -0
  20. package/dist/dto/geridocTherapyGoal/geridocTherapyGoalPage.dto.js +62 -0
  21. package/dist/dto/geridocTherapyGoal/geridocTherapyGoalPage.dto.js.map +1 -0
  22. package/dist/index.d.ts +7 -1
  23. package/dist/index.js +15 -3
  24. package/dist/index.js.map +1 -1
  25. package/dist/tsconfig.build.tsbuildinfo +1 -1
  26. package/package.json +1 -1
@@ -5,7 +5,8 @@ import { ExtensionDto } from '../extension/extension.dto';
5
5
  import { ApplicationCalculatedDto } from './applicationCalculated.dto';
6
6
  import { ApplicationInsuranceDto } from '../applicationInsurance/applicationInsurance.dto';
7
7
  import { CareFacilityDto } from '../careFacility/careFacility.dto';
8
- import { TherapySummaryDto } from "../therapySummary/therapySummary.dto";
8
+ import { TherapySummaryDto } from '../therapySummary/therapySummary.dto';
9
+ import { GeridocPatientDto } from '../geridocPatient/geridocPatient.dto';
9
10
  export declare class ApplicationEmbeddedDto {
10
11
  patientInfo?: PatientInfoDto;
11
12
  extensions?: ExtensionDto[];
@@ -15,6 +16,7 @@ export declare class ApplicationEmbeddedDto {
15
16
  applicationInsurances?: ApplicationInsuranceDto[];
16
17
  calculated?: ApplicationCalculatedDto;
17
18
  therapySummary?: TherapySummaryDto;
19
+ geridocPatient?: GeridocPatientDto;
18
20
  createdBy?: UserDto;
19
21
  updatedBy?: UserDto;
20
22
  }
@@ -22,9 +22,10 @@ const applicationCalculated_dto_1 = require("./applicationCalculated.dto");
22
22
  const applicationInsurance_dto_1 = require("../applicationInsurance/applicationInsurance.dto");
23
23
  const careFacility_dto_1 = require("../careFacility/careFacility.dto");
24
24
  const therapySummary_dto_1 = require("../therapySummary/therapySummary.dto");
25
+ const geridocPatient_dto_1 = require("../geridocPatient/geridocPatient.dto");
25
26
  class ApplicationEmbeddedDto {
26
27
  static _OPENAPI_METADATA_FACTORY() {
27
- return { patientInfo: { required: false, type: () => require("../patient/patientInfo.dto").PatientInfoDto }, extensions: { required: false, type: () => [require("../extension/extension.dto").ExtensionDto] }, latestExtensionView: { required: false, type: () => require("../extension/extension.dto").ExtensionDto }, practitionerInfo: { required: false, type: () => require("../generalPractionerInfo/generalPractitionerInfo.dto").GeneralPractitionerInfoDto }, careFacility: { required: false, type: () => require("../careFacility/careFacility.dto").CareFacilityDto }, applicationInsurances: { required: false, type: () => [require("../applicationInsurance/applicationInsurance.dto").ApplicationInsuranceDto] }, calculated: { required: false, type: () => require("./applicationCalculated.dto").ApplicationCalculatedDto }, therapySummary: { required: false, type: () => require("../therapySummary/therapySummary.dto").TherapySummaryDto }, createdBy: { required: false, type: () => require("../user/user.dto").UserDto }, updatedBy: { required: false, type: () => require("../user/user.dto").UserDto } };
28
+ return { patientInfo: { required: false, type: () => require("../patient/patientInfo.dto").PatientInfoDto }, extensions: { required: false, type: () => [require("../extension/extension.dto").ExtensionDto] }, latestExtensionView: { required: false, type: () => require("../extension/extension.dto").ExtensionDto }, practitionerInfo: { required: false, type: () => require("../generalPractionerInfo/generalPractitionerInfo.dto").GeneralPractitionerInfoDto }, careFacility: { required: false, type: () => require("../careFacility/careFacility.dto").CareFacilityDto }, applicationInsurances: { required: false, type: () => [require("../applicationInsurance/applicationInsurance.dto").ApplicationInsuranceDto] }, calculated: { required: false, type: () => require("./applicationCalculated.dto").ApplicationCalculatedDto }, therapySummary: { required: false, type: () => require("../therapySummary/therapySummary.dto").TherapySummaryDto }, geridocPatient: { required: false, type: () => require("../geridocPatient/geridocPatient.dto").GeridocPatientDto }, createdBy: { required: false, type: () => require("../user/user.dto").UserDto }, updatedBy: { required: false, type: () => require("../user/user.dto").UserDto } };
28
29
  }
29
30
  }
30
31
  exports.ApplicationEmbeddedDto = ApplicationEmbeddedDto;
@@ -88,6 +89,13 @@ __decorate([
88
89
  (0, class_transformer_1.Expose)(),
89
90
  __metadata("design:type", therapySummary_dto_1.TherapySummaryDto)
90
91
  ], ApplicationEmbeddedDto.prototype, "therapySummary", void 0);
92
+ __decorate([
93
+ (0, nestjs_1.ApiProperty)({ type: () => geridocPatient_dto_1.GeridocPatientDto, required: false }),
94
+ (0, class_transformer_1.Type)(() => geridocPatient_dto_1.GeridocPatientDto),
95
+ (0, class_validator_1.IsOptional)(),
96
+ (0, class_transformer_1.Expose)(),
97
+ __metadata("design:type", geridocPatient_dto_1.GeridocPatientDto)
98
+ ], ApplicationEmbeddedDto.prototype, "geridocPatient", void 0);
91
99
  __decorate([
92
100
  (0, nestjs_1.ApiProperty)({ type: () => user_dto_1.UserDto, required: false }),
93
101
  (0, class_transformer_1.Type)(() => user_dto_1.UserDto),
@@ -1 +1 @@
1
- {"version":3,"file":"applicationEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/application/applicationEmbedded.dto.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"applicationEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/application/applicationEmbedded.dto.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,14 @@
1
+ import { GeridocPatientEmbeddedDto } from './geridocPatientEmbedded.dto';
2
+ declare const GeridocPatientDto_base: new () => {
3
+ createdAt: string;
4
+ updatedAt: string;
5
+ _embedded?: GeridocPatientEmbeddedDto;
6
+ };
7
+ export declare class GeridocPatientDto extends GeridocPatientDto_base {
8
+ id: string;
9
+ geridocCaseNumber: string;
10
+ applicationId: string;
11
+ static fromPlain(object: any): GeridocPatientDto;
12
+ static fromEntity(entity: any): GeridocPatientDto;
13
+ }
14
+ export {};
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GeridocPatientDto = void 0;
13
+ const openapi = require("@nestjs/swagger");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const nestjs_1 = require("../../nestjs");
16
+ const convertAndValidate_1 = require("../../util/convertAndValidate");
17
+ const base_dto_1 = require("../generic/base.dto");
18
+ const geridocPatientEmbedded_dto_1 = require("./geridocPatientEmbedded.dto");
19
+ const class_validator_1 = require("class-validator");
20
+ class GeridocPatientDto extends (0, base_dto_1.BaseDto)(geridocPatientEmbedded_dto_1.GeridocPatientEmbeddedDto) {
21
+ static fromPlain(object) {
22
+ return (0, convertAndValidate_1.convertAndValidate)(GeridocPatientDto, object);
23
+ }
24
+ static fromEntity(entity) {
25
+ return (0, convertAndValidate_1.convert)(GeridocPatientDto, entity);
26
+ }
27
+ static _OPENAPI_METADATA_FACTORY() {
28
+ return { id: { required: true, type: () => String, format: "uuid" }, geridocCaseNumber: { required: true, type: () => String }, applicationId: { required: true, type: () => String, format: "uuid" } };
29
+ }
30
+ }
31
+ exports.GeridocPatientDto = GeridocPatientDto;
32
+ __decorate([
33
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
34
+ (0, class_validator_1.IsUUID)(),
35
+ (0, class_transformer_1.Expose)(),
36
+ __metadata("design:type", String)
37
+ ], GeridocPatientDto.prototype, "id", void 0);
38
+ __decorate([
39
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
40
+ (0, class_validator_1.IsString)(),
41
+ (0, class_transformer_1.Expose)(),
42
+ __metadata("design:type", String)
43
+ ], GeridocPatientDto.prototype, "geridocCaseNumber", void 0);
44
+ __decorate([
45
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
46
+ (0, class_validator_1.IsUUID)(),
47
+ (0, class_transformer_1.Expose)(),
48
+ __metadata("design:type", String)
49
+ ], GeridocPatientDto.prototype, "applicationId", void 0);
50
+ //# sourceMappingURL=geridocPatient.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocPatient.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocPatient/geridocPatient.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,sEAA4E;AAC5E,kDAA8C;AAC9C,6EAAyE;AACzE,qDAAmD;AAEnD,MAAa,iBAAkB,SAAQ,IAAA,kBAAO,EAAC,sDAAyB,CAAC;IAgBjE,MAAM,CAAC,SAAS,CAAC,MAAW;QAClC,OAAO,IAAA,uCAAkB,EAAC,iBAAiB,EAAE,MAAM,CAAC,CAAC;IACtD,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,MAAW;QACnC,OAAO,IAAA,4BAAO,EAAC,iBAAiB,EAAE,MAAM,CAAC,CAAC;IAC3C,CAAC;;;;CACD;AAvBD,8CAuBC;AAnBA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7D,IAAA,wBAAM,GAAE;IACR,IAAA,0BAAM,GAAE;;6CACG;AAKZ;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;4DACkB;AAK3B;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7D,IAAA,wBAAM,GAAE;IACR,IAAA,0BAAM,GAAE;;wDACc"}
@@ -0,0 +1,6 @@
1
+ import { ApplicationDto } from '../application/application.dto';
2
+ import { GeridocTherapyGoalDto } from '../geridocTherapyGoal/geridocTherapyGoal.dto';
3
+ export declare class GeridocPatientEmbeddedDto {
4
+ application?: ApplicationDto;
5
+ therapyGoals?: GeridocTherapyGoalDto[];
6
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GeridocPatientEmbeddedDto = void 0;
13
+ const openapi = require("@nestjs/swagger");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const class_transformer_1 = require("class-transformer");
16
+ const class_validator_1 = require("class-validator");
17
+ const application_dto_1 = require("../application/application.dto");
18
+ const geridocTherapyGoal_dto_1 = require("../geridocTherapyGoal/geridocTherapyGoal.dto");
19
+ class GeridocPatientEmbeddedDto {
20
+ static _OPENAPI_METADATA_FACTORY() {
21
+ return { application: { required: false, type: () => require("../application/application.dto").ApplicationDto }, therapyGoals: { required: false, type: () => [require("../geridocTherapyGoal/geridocTherapyGoal.dto").GeridocTherapyGoalDto] } };
22
+ }
23
+ }
24
+ exports.GeridocPatientEmbeddedDto = GeridocPatientEmbeddedDto;
25
+ __decorate([
26
+ (0, nestjs_1.ApiProperty)({ type: () => application_dto_1.ApplicationDto, required: false }),
27
+ (0, class_validator_1.IsOptional)(),
28
+ (0, class_transformer_1.Type)(() => application_dto_1.ApplicationDto),
29
+ (0, class_transformer_1.Expose)(),
30
+ __metadata("design:type", application_dto_1.ApplicationDto)
31
+ ], GeridocPatientEmbeddedDto.prototype, "application", void 0);
32
+ __decorate([
33
+ (0, nestjs_1.ApiProperty)({
34
+ type: () => geridocTherapyGoal_dto_1.GeridocTherapyGoalDto,
35
+ isArray: true,
36
+ required: false,
37
+ }),
38
+ (0, class_validator_1.IsOptional)(),
39
+ (0, class_transformer_1.Type)(() => geridocTherapyGoal_dto_1.GeridocTherapyGoalDto),
40
+ (0, class_transformer_1.Expose)(),
41
+ __metadata("design:type", Array)
42
+ ], GeridocPatientEmbeddedDto.prototype, "therapyGoals", void 0);
43
+ //# sourceMappingURL=geridocPatientEmbedded.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocPatientEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocPatient/geridocPatientEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAAiD;AACjD,qDAA6C;AAC7C,oEAAgE;AAChE,yFAAqF;AAErF,MAAa,yBAAyB;;;;CAgBrC;AAhBD,8DAgBC;AAXA;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,gCAAc,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC5D,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gCAAc,CAAC;IAC1B,IAAA,0BAAM,GAAE;8BACK,gCAAc;8DAAC;AAU7B;IARC,IAAA,oBAAW,EAAC;QACZ,IAAI,EAAE,GAAG,EAAE,CAAC,8CAAqB;QACjC,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8CAAqB,CAAC;IACjC,IAAA,0BAAM,GAAE;;+DAC8B"}
@@ -0,0 +1,12 @@
1
+ import { PageDto } from '../generic/page.dto';
2
+ import { PageInfoDto } from '../generic/pageInfo.dto';
3
+ import { GeridocPatientDto } from './geridocPatient.dto';
4
+ declare class EmbeddedGeridocPatients {
5
+ geridocPatients?: GeridocPatientDto[];
6
+ }
7
+ export declare class GeridocPatientPageDto extends PageDto {
8
+ _embedded: EmbeddedGeridocPatients;
9
+ static fromPlain(object: any): GeridocPatientPageDto;
10
+ static fromEntityList(geridocPatients: any[], _page: PageInfoDto): unknown;
11
+ }
12
+ export {};
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.GeridocPatientPageDto = void 0;
16
+ const openapi = require("@nestjs/swagger");
17
+ const page_dto_1 = require("../generic/page.dto");
18
+ const class_transformer_1 = require("class-transformer");
19
+ const convertAndValidate_1 = require("../../util/convertAndValidate");
20
+ const transformEmbedded_1 = __importDefault(require("../../util/transformEmbedded"));
21
+ const nestjs_1 = require("../../nestjs");
22
+ const class_validator_1 = require("class-validator");
23
+ const geridocPatient_dto_1 = require("./geridocPatient.dto");
24
+ class EmbeddedGeridocPatients {
25
+ static _OPENAPI_METADATA_FACTORY() {
26
+ return { geridocPatients: { required: false, type: () => [require("./geridocPatient.dto").GeridocPatientDto] } };
27
+ }
28
+ }
29
+ __decorate([
30
+ (0, nestjs_1.ApiProperty)({
31
+ isArray: true,
32
+ type: () => geridocPatient_dto_1.GeridocPatientDto,
33
+ required: false,
34
+ }),
35
+ (0, class_transformer_1.Type)(() => geridocPatient_dto_1.GeridocPatientDto),
36
+ (0, class_validator_1.IsOptional)(),
37
+ (0, class_transformer_1.Expose)(),
38
+ __metadata("design:type", Array)
39
+ ], EmbeddedGeridocPatients.prototype, "geridocPatients", void 0);
40
+ class GeridocPatientPageDto extends page_dto_1.PageDto {
41
+ static fromPlain(object) {
42
+ return (0, convertAndValidate_1.convertAndValidate)(GeridocPatientPageDto, object);
43
+ }
44
+ static fromEntityList(geridocPatients, _page) {
45
+ return (0, convertAndValidate_1.convert)(GeridocPatientPageDto, {
46
+ geridocPatients,
47
+ _page,
48
+ });
49
+ }
50
+ static _OPENAPI_METADATA_FACTORY() {
51
+ return { _embedded: { required: true, type: () => EmbeddedGeridocPatients } };
52
+ }
53
+ }
54
+ exports.GeridocPatientPageDto = GeridocPatientPageDto;
55
+ __decorate([
56
+ (0, nestjs_1.ApiProperty)({ type: () => EmbeddedGeridocPatients, required: true }),
57
+ (0, class_transformer_1.Type)(() => EmbeddedGeridocPatients),
58
+ (0, transformEmbedded_1.default)(EmbeddedGeridocPatients),
59
+ (0, class_transformer_1.Expose)(),
60
+ __metadata("design:type", EmbeddedGeridocPatients)
61
+ ], GeridocPatientPageDto.prototype, "_embedded", void 0);
62
+ //# sourceMappingURL=geridocPatientPage.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocPatientPage.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocPatient/geridocPatientPage.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA8C;AAC9C,yDAAiD;AAEjD,sEAA4E;AAC5E,qFAA6D;AAC7D,yCAA2C;AAC3C,qDAA6C;AAC7C,6DAAyD;AAEzD,MAAM,uBAAuB;;;;CAU5B;AADA;IARC,IAAA,oBAAW,EAAC;QACZ,OAAO,EAAE,IAAI;QACb,IAAI,EAAE,GAAG,EAAE,CAAC,sCAAiB;QAC7B,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,sCAAiB,CAAC;IAC7B,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;gEAC6B;AAGvC,MAAa,qBAAsB,SAAQ,kBAAO;IAO1C,MAAM,CAAC,SAAS,CAAC,MAAW;QAClC,OAAO,IAAA,uCAAkB,EAAC,qBAAqB,EAAE,MAAM,CAAC,CAAC;IAC1D,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,eAAsB,EAAE,KAAkB;QACtE,OAAO,IAAA,4BAAO,EAAC,qBAAqB,EAAE;YACrC,eAAe;YACf,KAAK;SACL,CAAC,CAAC;IACJ,CAAC;;;;CACD;AAjBD,sDAiBC;AAZA;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,uBAAuB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACpE,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,uBAAuB,CAAC;IACnC,IAAA,2BAAiB,EAAC,uBAAuB,CAAC;IAC1C,IAAA,0BAAM,GAAE;8BACG,uBAAuB;wDAAC"}
@@ -0,0 +1,14 @@
1
+ import { GeridocTherapyGoalEmbeddedDto } from './geridocTherapyGoalEmbedded.dto';
2
+ declare const GeridocTherapyGoalDto_base: new () => {
3
+ createdAt: string;
4
+ updatedAt: string;
5
+ _embedded?: GeridocTherapyGoalEmbeddedDto;
6
+ };
7
+ export declare class GeridocTherapyGoalDto extends GeridocTherapyGoalDto_base {
8
+ id: string;
9
+ geridocPatientId: string;
10
+ goal: string;
11
+ static fromPlain(object: any): GeridocTherapyGoalDto;
12
+ static fromEntity(entity: any): GeridocTherapyGoalDto;
13
+ }
14
+ export {};
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GeridocTherapyGoalDto = void 0;
13
+ const openapi = require("@nestjs/swagger");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const nestjs_1 = require("../../nestjs");
16
+ const convertAndValidate_1 = require("../../util/convertAndValidate");
17
+ const base_dto_1 = require("../generic/base.dto");
18
+ const geridocTherapyGoalEmbedded_dto_1 = require("./geridocTherapyGoalEmbedded.dto");
19
+ const class_validator_1 = require("class-validator");
20
+ class GeridocTherapyGoalDto extends (0, base_dto_1.BaseDto)(geridocTherapyGoalEmbedded_dto_1.GeridocTherapyGoalEmbeddedDto) {
21
+ static fromPlain(object) {
22
+ return (0, convertAndValidate_1.convertAndValidate)(GeridocTherapyGoalDto, object);
23
+ }
24
+ static fromEntity(entity) {
25
+ return (0, convertAndValidate_1.convert)(GeridocTherapyGoalDto, entity);
26
+ }
27
+ static _OPENAPI_METADATA_FACTORY() {
28
+ return { id: { required: true, type: () => String, format: "uuid" }, geridocPatientId: { required: true, type: () => String, format: "uuid" }, goal: { required: true, type: () => String } };
29
+ }
30
+ }
31
+ exports.GeridocTherapyGoalDto = GeridocTherapyGoalDto;
32
+ __decorate([
33
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
34
+ (0, class_validator_1.IsUUID)(),
35
+ (0, class_transformer_1.Expose)(),
36
+ __metadata("design:type", String)
37
+ ], GeridocTherapyGoalDto.prototype, "id", void 0);
38
+ __decorate([
39
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
40
+ (0, class_validator_1.IsUUID)(),
41
+ (0, class_transformer_1.Expose)(),
42
+ __metadata("design:type", String)
43
+ ], GeridocTherapyGoalDto.prototype, "geridocPatientId", void 0);
44
+ __decorate([
45
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
46
+ (0, class_validator_1.IsString)(),
47
+ (0, class_transformer_1.Expose)(),
48
+ __metadata("design:type", String)
49
+ ], GeridocTherapyGoalDto.prototype, "goal", void 0);
50
+ //# sourceMappingURL=geridocTherapyGoal.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocTherapyGoal.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocTherapyGoal/geridocTherapyGoal.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,sEAA4E;AAC5E,kDAA8C;AAC9C,qFAAiF;AACjF,qDAAmD;AAEnD,MAAa,qBAAsB,SAAQ,IAAA,kBAAO,EACjD,8DAA6B,CAC7B;IAgBO,MAAM,CAAC,SAAS,CAAC,MAAW;QAClC,OAAO,IAAA,uCAAkB,EAAC,qBAAqB,EAAE,MAAM,CAAC,CAAC;IAC1D,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,MAAW;QACnC,OAAO,IAAA,4BAAO,EAAC,qBAAqB,EAAE,MAAM,CAAC,CAAC;IAC/C,CAAC;;;;CACD;AAzBD,sDAyBC;AAnBA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7D,IAAA,wBAAM,GAAE;IACR,IAAA,0BAAM,GAAE;;iDACG;AAKZ;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7D,IAAA,wBAAM,GAAE;IACR,IAAA,0BAAM,GAAE;;+DACiB;AAK1B;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;mDACK"}
@@ -0,0 +1,4 @@
1
+ import { GeridocPatientDto } from '../geridocPatient/geridocPatient.dto';
2
+ export declare class GeridocTherapyGoalEmbeddedDto {
3
+ geridocPatient?: GeridocPatientDto;
4
+ }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.GeridocTherapyGoalEmbeddedDto = void 0;
13
+ const openapi = require("@nestjs/swagger");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const class_transformer_1 = require("class-transformer");
16
+ const class_validator_1 = require("class-validator");
17
+ const geridocPatient_dto_1 = require("../geridocPatient/geridocPatient.dto");
18
+ class GeridocTherapyGoalEmbeddedDto {
19
+ static _OPENAPI_METADATA_FACTORY() {
20
+ return { geridocPatient: { required: false, type: () => require("../geridocPatient/geridocPatient.dto").GeridocPatientDto } };
21
+ }
22
+ }
23
+ exports.GeridocTherapyGoalEmbeddedDto = GeridocTherapyGoalEmbeddedDto;
24
+ __decorate([
25
+ (0, nestjs_1.ApiProperty)({ type: () => geridocPatient_dto_1.GeridocPatientDto, required: false }),
26
+ (0, class_validator_1.IsOptional)(),
27
+ (0, class_transformer_1.Type)(() => geridocPatient_dto_1.GeridocPatientDto),
28
+ (0, class_transformer_1.Expose)(),
29
+ __metadata("design:type", geridocPatient_dto_1.GeridocPatientDto)
30
+ ], GeridocTherapyGoalEmbeddedDto.prototype, "geridocPatient", void 0);
31
+ //# sourceMappingURL=geridocTherapyGoalEmbedded.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocTherapyGoalEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocTherapyGoal/geridocTherapyGoalEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAAiD;AACjD,qDAA6C;AAC7C,6EAAyE;AAEzE,MAAa,6BAA6B;;;;CAMzC;AAND,sEAMC;AADA;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,sCAAiB,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC/D,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,sCAAiB,CAAC;IAC7B,IAAA,0BAAM,GAAE;8BACQ,sCAAiB;qEAAC"}
@@ -0,0 +1,12 @@
1
+ import { PageDto } from '../generic/page.dto';
2
+ import { PageInfoDto } from '../generic/pageInfo.dto';
3
+ import { GeridocTherapyGoalDto } from './geridocTherapyGoal.dto';
4
+ declare class EmbeddedGeridocTherapyGoals {
5
+ geridocTherapyGoals?: GeridocTherapyGoalDto[];
6
+ }
7
+ export declare class GeridocTherapyGoalPageDto extends PageDto {
8
+ _embedded: EmbeddedGeridocTherapyGoals;
9
+ static fromPlain(object: any): GeridocTherapyGoalPageDto;
10
+ static fromEntityList(geridocTherapyGoals: any[], _page: PageInfoDto): unknown;
11
+ }
12
+ export {};
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ var __importDefault = (this && this.__importDefault) || function (mod) {
12
+ return (mod && mod.__esModule) ? mod : { "default": mod };
13
+ };
14
+ Object.defineProperty(exports, "__esModule", { value: true });
15
+ exports.GeridocTherapyGoalPageDto = void 0;
16
+ const openapi = require("@nestjs/swagger");
17
+ const page_dto_1 = require("../generic/page.dto");
18
+ const class_transformer_1 = require("class-transformer");
19
+ const convertAndValidate_1 = require("../../util/convertAndValidate");
20
+ const transformEmbedded_1 = __importDefault(require("../../util/transformEmbedded"));
21
+ const nestjs_1 = require("../../nestjs");
22
+ const class_validator_1 = require("class-validator");
23
+ const geridocTherapyGoal_dto_1 = require("./geridocTherapyGoal.dto");
24
+ class EmbeddedGeridocTherapyGoals {
25
+ static _OPENAPI_METADATA_FACTORY() {
26
+ return { geridocTherapyGoals: { required: false, type: () => [require("./geridocTherapyGoal.dto").GeridocTherapyGoalDto] } };
27
+ }
28
+ }
29
+ __decorate([
30
+ (0, nestjs_1.ApiProperty)({
31
+ isArray: true,
32
+ type: () => geridocTherapyGoal_dto_1.GeridocTherapyGoalDto,
33
+ required: false,
34
+ }),
35
+ (0, class_transformer_1.Type)(() => geridocTherapyGoal_dto_1.GeridocTherapyGoalDto),
36
+ (0, class_validator_1.IsOptional)(),
37
+ (0, class_transformer_1.Expose)(),
38
+ __metadata("design:type", Array)
39
+ ], EmbeddedGeridocTherapyGoals.prototype, "geridocTherapyGoals", void 0);
40
+ class GeridocTherapyGoalPageDto extends page_dto_1.PageDto {
41
+ static fromPlain(object) {
42
+ return (0, convertAndValidate_1.convertAndValidate)(GeridocTherapyGoalPageDto, object);
43
+ }
44
+ static fromEntityList(geridocTherapyGoals, _page) {
45
+ return (0, convertAndValidate_1.convert)(GeridocTherapyGoalPageDto, {
46
+ geridocTherapyGoals,
47
+ _page,
48
+ });
49
+ }
50
+ static _OPENAPI_METADATA_FACTORY() {
51
+ return { _embedded: { required: true, type: () => EmbeddedGeridocTherapyGoals } };
52
+ }
53
+ }
54
+ exports.GeridocTherapyGoalPageDto = GeridocTherapyGoalPageDto;
55
+ __decorate([
56
+ (0, nestjs_1.ApiProperty)({ type: () => EmbeddedGeridocTherapyGoals, required: true }),
57
+ (0, class_transformer_1.Type)(() => EmbeddedGeridocTherapyGoals),
58
+ (0, transformEmbedded_1.default)(EmbeddedGeridocTherapyGoals),
59
+ (0, class_transformer_1.Expose)(),
60
+ __metadata("design:type", EmbeddedGeridocTherapyGoals)
61
+ ], GeridocTherapyGoalPageDto.prototype, "_embedded", void 0);
62
+ //# sourceMappingURL=geridocTherapyGoalPage.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocTherapyGoalPage.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocTherapyGoal/geridocTherapyGoalPage.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA8C;AAC9C,yDAAiD;AAEjD,sEAA4E;AAC5E,qFAA6D;AAC7D,yCAA2C;AAC3C,qDAA6C;AAC7C,qEAAiE;AAEjE,MAAM,2BAA2B;;;;CAUhC;AADA;IARC,IAAA,oBAAW,EAAC;QACZ,OAAO,EAAE,IAAI;QACb,IAAI,EAAE,GAAG,EAAE,CAAC,8CAAqB;QACjC,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8CAAqB,CAAC;IACjC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;wEACqC;AAG/C,MAAa,yBAA0B,SAAQ,kBAAO;IAO9C,MAAM,CAAC,SAAS,CAAC,MAAW;QAClC,OAAO,IAAA,uCAAkB,EAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;IAC9D,CAAC;IAEM,MAAM,CAAC,cAAc,CAAC,mBAA0B,EAAE,KAAkB;QAC1E,OAAO,IAAA,4BAAO,EAAC,yBAAyB,EAAE;YACzC,mBAAmB;YACnB,KAAK;SACL,CAAC,CAAC;IACJ,CAAC;;;;CACD;AAjBD,8DAiBC;AAZA;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,2BAA2B,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACxE,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,2BAA2B,CAAC;IACvC,IAAA,2BAAiB,EAAC,2BAA2B,CAAC;IAC9C,IAAA,0BAAM,GAAE;8BACG,2BAA2B;4DAAC"}
package/dist/index.d.ts CHANGED
@@ -305,6 +305,12 @@ import { SupplyHealthDto } from './dto/crew/supplyHealth.dto';
305
305
  import { GeridocAppointmentDto } from './dto/geridocAppointment/geridocAppointment.dto';
306
306
  import { GeridocAppointmentEmbeddedDto } from './dto/geridocAppointment/geridocAppointmentEmbedded.dto';
307
307
  import { GeridocAppointmentPageDto } from './dto/geridocAppointment/geridocAppointmentPage.dto';
308
+ import { GeridocPatientDto } from './dto/geridocPatient/geridocPatient.dto';
309
+ import { GeridocPatientEmbeddedDto } from './dto/geridocPatient/geridocPatientEmbedded.dto';
310
+ import { GeridocPatientPageDto } from './dto/geridocPatient/geridocPatientPage.dto';
311
+ import { GeridocTherapyGoalDto } from './dto/geridocTherapyGoal/geridocTherapyGoal.dto';
312
+ import { GeridocTherapyGoalEmbeddedDto } from './dto/geridocTherapyGoal/geridocTherapyGoalEmbedded.dto';
313
+ import { GeridocTherapyGoalPageDto } from './dto/geridocTherapyGoal/geridocTherapyGoalPage.dto';
308
314
  import { TherapySummaryDto } from './dto/therapySummary/therapySummary.dto';
309
315
  import { TherapySummaryPageDto } from './dto/therapySummary/therapySummaryPage.dto';
310
316
  import { TherapySummaryEmbeddedDto } from './dto/therapySummary/therapySummaryEmbedded.dto';
@@ -319,4 +325,4 @@ import { CreateVideoCallDto } from './dto/videoCall/createVideoCall.dto';
319
325
  import { UpdateVideoCallDto } from './dto/videoCall/updateVideoCall.dto';
320
326
  import { BulkUpdateVideoCallDto } from './dto/videoCall/bulkUpdateVideoCall.dto';
321
327
  import { TimeOfDayEnum } from './enum/timeOfDay.enum';
322
- export { AddressDto, CreateAddressDto, UpdateAddressDto, GeolocationDto, ApplicationDto, ApplicationEmbeddedDto, ApplicationPageDto, CreateApplicationDto, UpdateApplicationDto, ApplicationInsuranceDto, ApplicationInsuranceEmbeddedDto, ApplicationInsurancePageDto, CreateApplicationInsuranceDto, UpdateApplicationInsuranceDto, BlackoutScheduleDto, BlackoutScheduleEmbeddedDto, BlackoutSchedulePageDto, CreateBlackoutScheduleDto, UpdateBlackoutScheduleDto, BlackoutTherapistDto, BlackoutTherapistEmbeddedDto, BlackoutTherapistPageDto, CreateBlackoutTherapistDto, UpdateBlackoutTherapistDto, BlockDto, BlockEmbeddedDto, BlockPageDto, CreateBlockDto, UpdateBlockDto, BlockCalculatedDto, ExtensionCalculatedDto, CommentDto, CommentEmbeddedDto, CommentPageDto, CreateCommentDto, UpdateCommentDto, CreateInsuranceCompanyDto, InsuranceCompanyDto, InsuranceCompanyEmbeddedDto, InsuranceCompanyPageDto, UpdateInsuranceCompanyDto, ContactInfoDto, ContactInfoEmbeddedDto, ContactInfoPageDto, CreateContactInfoDto, UpdateContactInfoDto, CreateDocumentDto, UpdateDocumentDto, DocumentDto, DocumentEmbeddedDto, DocumentPageDto, ExceptionDto, CreateExtensionDto, ExtensionDto, ExtensionEmbeddedDto, ExtensionPageDto, UpdateExtensionDto, CreateGeneralPractitionerInfoDto, GeneralPractitionerInfoDto, GeneralPractitionerInfoEmbeddedDto, GeneralPractitionerInfoPageDto, UpdateGeneralPractitionerInfoDto, BaseDto, CollectionFilterDto, FilterDto, PageDto, PageInfoDto, EmbeddedDto, CreateOptimizationDto, OptimizationDto, OptimizationBlockViewDto, OptimizationBlockViewEmbeddedDto, OptimizationUnsolvedBlockDto, OptimizationUnsolvedBlockEmbeddedDto, OptimizationUnsolvedBlockPageDto, OptimizationPageDto, OptimizationEmbeddedDto, UpdateOptimizationDto, OptimizedBlockDto, OptimizedBlockEmbeddedDto, OptimizedBlockPageDto, CreatePatientInfoDto, PatientInfoDto, PatientInfoEmbeddedDto, PatientInfoPageDto, UpdatePatientInfoDto, PatientSummaryViewDto, CreatePatientContactDto, PatientContactDto, PatientContactEmbeddedDto, PatientContactPageDto, UpdatePatientContactDto, CreateTherapistInfoDto, TherapistInfoDto, TherapistInfoEmbeddedDto, TherapistInfoPageDto, UpdateTherapistInfoDto, CreateTherapyPlanDto, TherapyPlanDto, TherapyPlanEmbeddedDto, TherapyPlanPageDto, UpdateTherapyPlanDto, CreateUserDto, UpdateUserDto, UserDto, UserEmbeddedDto, UserAzureJwtDataDto, UserPageDto, CreateUserAddressDto, UpdateUserAddressDto, UserAddressDto, UserAddressEmbeddedDto, UserAddressPageDto, CreateUserAddressScheduleDto, UpdateUserAddressScheduleDto, UserAddressScheduleDto, UserAddressScheduleEmbeddedDto, UserAddressSchedulePageDto, UserAddressTimeViewDto, UserAddressTimeViewEmbeddedDto, UserAddressTimeViewPageDto, CreateWorkingHourDto, UpdateWorkingHourDto, WorkingHourDto, WorkingHourEmbeddedDto, WorkingHourPageDto, CreatePatientPractitionerDto, UpdatePatientPractitionerDto, PatientPractitionerDto, PatientPractitionerEmbeddedDto, PatientPractitionerPageDto, ComponentDto, ComponentHealthDto, HealthDto, BlackoutTimeDto, BlackoutTimePageDto, CreateTeamDto, UpdateTeamDto, TeamDto, TeamEmbeddedDto, TeamPageDto, RegionDto, RegionPageDto, RegionEmbeddedDto, CreateRegionDto, UpdateRegionDto, CrewDto, CrewEmbeddedDto, CreateCrewDto, UpdateCrewDto, CrewPageDto, CrewTherapistInfoDto, CreateCrewTherapistInfoDto, UpdateCrewTherapistInfoDto, CrewTherapistInfoEmbeddedDto, CrewTherapistInfoPageDto, LatestApplicationDto, LatestApplicationEmbeddedDto, CreateInsuranceContactInfoDto, InsuranceContactInfoDto, InsuranceContactInfoEmbeddedDto, InsuranceContactInfoPageDto, UpdateInsuranceContactInfoDto, BulkUpdateThreadDto, CreateThreadDto, ThreadDto, ThreadEmbeddedDto, ThreadPageDto, UpdateThreadDto, BulkUpdateSubscriptionDto, CreateSubscriptionDto, SubscriptionDto, SubscriptionEmbeddedDto, SubscriptionPageDto, UpdateSubscriptionDto, SubscriptionCalculatedDto, CareFacilityDto, CareFacilityPageDto, CreateCareFacilityDto, UpdateCareFacilityDto, BulkUpdateCareFacilityDto, BulkUpdateWorkingHourOverrideDto, CreateWorkingHourOverrideDto, UpdateWorkingHourOverrideDto, WorkingHourOverrideDto, WorkingHourOverridePageDto, WorkingHourOverrideEmbeddedDto, CareFacilityEmbeddedDto, CareFacilityAddressDto, CreateCareFacilityAddressDto, UpdateCareFacilityAddressDto, BulkUpdateCareFacilityAddressDto, CareFacilityAddressEmbeddedDto, CareFacilityAddressPageDto, UserNotificationTokenDto, UserNotificationTokenEmbeddedDto, CreateUserNotificationTokenDto, UserNotificationTokenPageDto, AppointmentIssueDto, AppointmentIssueEmbeddedDto, AppointmentIssuePageDto, CreateAppointmentIssueDto, UpdateAppointmentIssueDto, BulkUpdateAppointmentIssueDto, BulkUpdateApplicationDto, BulkUpdateApplicationInsuranceDto, BulkUpdateBlackoutScheduleDto, BulkUpdateBlackoutTherapistDto, BulkUpdateBlockDto, BulkUpdateCommentDto, BulkUpdateInsuranceCompanyDto, BulkUpdateContactInfoDto, BulkUpdateCrewDto, BulkUpdateCrewTherapistInfoDto, BulkUpdateDocumentDto, BulkUpdateExtensionDto, BulkUpdateGeneralPractitionerInfoDto, BulkUpdateInsuranceContactInfoDto, BulkUpdateOptimizationDto, BulkUpdatePatientInfoDto, BulkUpdatePatientContactDto, BulkUpdatePatientPractitionerDto, BulkUpdateRegionDto, BulkUpdateTeamDto, BulkUpdateTherapistInfoDto, BulkUpdateTherapyPlanDto, BulkUpdateUserAddressDto, BulkUpdateUserAddressScheduleDto, BulkUpdateWorkingHourDto, BulkUpdateUserDto, AppointmentIssueValidateDto, BulkUpdateChatBotDto, CreateChatBotDto, UpdateChatBotDto, ChatBotDto, ChatBotPageDto, ChatBotEmbeddedDto, PartialAcceptOptimizationDto, GetSupplyHealthDto, SupplyHealthDto, GeridocAppointmentDto, GeridocAppointmentEmbeddedDto, GeridocAppointmentPageDto, TherapySummaryDto, TherapySummaryPageDto, TherapySummaryEmbeddedDto, UpdateTherapySummaryDto, BulkUpdateTherapySummaryDto, UserAddressTypeEnum, ApplicationStatusEnum, BlockStatusEnum, BlockTypeEnum, CareFacilityTypeEnum, CommentStatusEnum, CommunicationChannelEnum, CommentTypeEnum, ContactTypeEnum, DisciplineEnum, InstitutionTypeEnum, ApplicationCareDegreeEnum, PatientOverallConditionTypeEnum, OptimizationStatusEnum, PatientStatusEnum, BlackoutRepeatFrequencyEnum, AddressRepeatFrequencyEnum, PractitionerTypeEnum, RoleEnum, SolverStatusEnum, AppointmentListRecipientEnum, ExtensionStatusEnum, WorkingHourTypeEnum, DocumentStatusEnum, DocumentTypeEnum, EmploymentTypeEnum, BlackoutTypeEnum, PrivatePatientInsuranceTypeEnum, SolverVersionEnum, AppointmentIssueStatusEnum, BlockCancellationReasonEnum, AppointmentIssueTypeEnum, BlockFollowUpFlagTypeEnum, TimeOfDayEnum, NursingHomeDto, NursingHomePageDto, CreateNursingHomeDto, UpdateNursingHomeDto, NursingHomeEmbeddedDto, BulkUpdateNursingHomeDto, CreateWardDto, UpdateWardDto, WardDto, WardPageDto, WardEmbeddedDto, BulkUpdateWardDto, CreateDiagnosisDto, UpdateDiagnosisDto, BulkUpdateDiagnosisDto, DiagnosisDto, DiagnosisPageDto, DiagnosisEmbeddedDto, ValidationException, convertAndValidate, IsBiggerThan, IsEmptyAttribute, IsRequiredFields, IsRequiredFieldValue, IsSmallerThan, Default, TransformEmbedded, TransformFloat, TransformInteger, TransformTotal, WardTypeEnum, VideoCallQuestionTypeEnum, VideoCallStatusEnum, VideoCallDto, VideoCallEmbeddedDto, VideoCallPageDto, CreateVideoCallDto, UpdateVideoCallDto, BulkUpdateVideoCallDto, };
328
+ export { AddressDto, CreateAddressDto, UpdateAddressDto, GeolocationDto, ApplicationDto, ApplicationEmbeddedDto, ApplicationPageDto, CreateApplicationDto, UpdateApplicationDto, ApplicationInsuranceDto, ApplicationInsuranceEmbeddedDto, ApplicationInsurancePageDto, CreateApplicationInsuranceDto, UpdateApplicationInsuranceDto, BlackoutScheduleDto, BlackoutScheduleEmbeddedDto, BlackoutSchedulePageDto, CreateBlackoutScheduleDto, UpdateBlackoutScheduleDto, BlackoutTherapistDto, BlackoutTherapistEmbeddedDto, BlackoutTherapistPageDto, CreateBlackoutTherapistDto, UpdateBlackoutTherapistDto, BlockDto, BlockEmbeddedDto, BlockPageDto, CreateBlockDto, UpdateBlockDto, BlockCalculatedDto, ExtensionCalculatedDto, CommentDto, CommentEmbeddedDto, CommentPageDto, CreateCommentDto, UpdateCommentDto, CreateInsuranceCompanyDto, InsuranceCompanyDto, InsuranceCompanyEmbeddedDto, InsuranceCompanyPageDto, UpdateInsuranceCompanyDto, ContactInfoDto, ContactInfoEmbeddedDto, ContactInfoPageDto, CreateContactInfoDto, UpdateContactInfoDto, CreateDocumentDto, UpdateDocumentDto, DocumentDto, DocumentEmbeddedDto, DocumentPageDto, ExceptionDto, CreateExtensionDto, ExtensionDto, ExtensionEmbeddedDto, ExtensionPageDto, UpdateExtensionDto, CreateGeneralPractitionerInfoDto, GeneralPractitionerInfoDto, GeneralPractitionerInfoEmbeddedDto, GeneralPractitionerInfoPageDto, UpdateGeneralPractitionerInfoDto, BaseDto, CollectionFilterDto, FilterDto, PageDto, PageInfoDto, EmbeddedDto, CreateOptimizationDto, OptimizationDto, OptimizationBlockViewDto, OptimizationBlockViewEmbeddedDto, OptimizationUnsolvedBlockDto, OptimizationUnsolvedBlockEmbeddedDto, OptimizationUnsolvedBlockPageDto, OptimizationPageDto, OptimizationEmbeddedDto, UpdateOptimizationDto, OptimizedBlockDto, OptimizedBlockEmbeddedDto, OptimizedBlockPageDto, CreatePatientInfoDto, PatientInfoDto, PatientInfoEmbeddedDto, PatientInfoPageDto, UpdatePatientInfoDto, PatientSummaryViewDto, CreatePatientContactDto, PatientContactDto, PatientContactEmbeddedDto, PatientContactPageDto, UpdatePatientContactDto, CreateTherapistInfoDto, TherapistInfoDto, TherapistInfoEmbeddedDto, TherapistInfoPageDto, UpdateTherapistInfoDto, CreateTherapyPlanDto, TherapyPlanDto, TherapyPlanEmbeddedDto, TherapyPlanPageDto, UpdateTherapyPlanDto, CreateUserDto, UpdateUserDto, UserDto, UserEmbeddedDto, UserAzureJwtDataDto, UserPageDto, CreateUserAddressDto, UpdateUserAddressDto, UserAddressDto, UserAddressEmbeddedDto, UserAddressPageDto, CreateUserAddressScheduleDto, UpdateUserAddressScheduleDto, UserAddressScheduleDto, UserAddressScheduleEmbeddedDto, UserAddressSchedulePageDto, UserAddressTimeViewDto, UserAddressTimeViewEmbeddedDto, UserAddressTimeViewPageDto, CreateWorkingHourDto, UpdateWorkingHourDto, WorkingHourDto, WorkingHourEmbeddedDto, WorkingHourPageDto, CreatePatientPractitionerDto, UpdatePatientPractitionerDto, PatientPractitionerDto, PatientPractitionerEmbeddedDto, PatientPractitionerPageDto, ComponentDto, ComponentHealthDto, HealthDto, BlackoutTimeDto, BlackoutTimePageDto, CreateTeamDto, UpdateTeamDto, TeamDto, TeamEmbeddedDto, TeamPageDto, RegionDto, RegionPageDto, RegionEmbeddedDto, CreateRegionDto, UpdateRegionDto, CrewDto, CrewEmbeddedDto, CreateCrewDto, UpdateCrewDto, CrewPageDto, CrewTherapistInfoDto, CreateCrewTherapistInfoDto, UpdateCrewTherapistInfoDto, CrewTherapistInfoEmbeddedDto, CrewTherapistInfoPageDto, LatestApplicationDto, LatestApplicationEmbeddedDto, CreateInsuranceContactInfoDto, InsuranceContactInfoDto, InsuranceContactInfoEmbeddedDto, InsuranceContactInfoPageDto, UpdateInsuranceContactInfoDto, BulkUpdateThreadDto, CreateThreadDto, ThreadDto, ThreadEmbeddedDto, ThreadPageDto, UpdateThreadDto, BulkUpdateSubscriptionDto, CreateSubscriptionDto, SubscriptionDto, SubscriptionEmbeddedDto, SubscriptionPageDto, UpdateSubscriptionDto, SubscriptionCalculatedDto, CareFacilityDto, CareFacilityPageDto, CreateCareFacilityDto, UpdateCareFacilityDto, BulkUpdateCareFacilityDto, BulkUpdateWorkingHourOverrideDto, CreateWorkingHourOverrideDto, UpdateWorkingHourOverrideDto, WorkingHourOverrideDto, WorkingHourOverridePageDto, WorkingHourOverrideEmbeddedDto, CareFacilityEmbeddedDto, CareFacilityAddressDto, CreateCareFacilityAddressDto, UpdateCareFacilityAddressDto, BulkUpdateCareFacilityAddressDto, CareFacilityAddressEmbeddedDto, CareFacilityAddressPageDto, UserNotificationTokenDto, UserNotificationTokenEmbeddedDto, CreateUserNotificationTokenDto, UserNotificationTokenPageDto, AppointmentIssueDto, AppointmentIssueEmbeddedDto, AppointmentIssuePageDto, CreateAppointmentIssueDto, UpdateAppointmentIssueDto, BulkUpdateAppointmentIssueDto, BulkUpdateApplicationDto, BulkUpdateApplicationInsuranceDto, BulkUpdateBlackoutScheduleDto, BulkUpdateBlackoutTherapistDto, BulkUpdateBlockDto, BulkUpdateCommentDto, BulkUpdateInsuranceCompanyDto, BulkUpdateContactInfoDto, BulkUpdateCrewDto, BulkUpdateCrewTherapistInfoDto, BulkUpdateDocumentDto, BulkUpdateExtensionDto, BulkUpdateGeneralPractitionerInfoDto, BulkUpdateInsuranceContactInfoDto, BulkUpdateOptimizationDto, BulkUpdatePatientInfoDto, BulkUpdatePatientContactDto, BulkUpdatePatientPractitionerDto, BulkUpdateRegionDto, BulkUpdateTeamDto, BulkUpdateTherapistInfoDto, BulkUpdateTherapyPlanDto, BulkUpdateUserAddressDto, BulkUpdateUserAddressScheduleDto, BulkUpdateWorkingHourDto, BulkUpdateUserDto, AppointmentIssueValidateDto, BulkUpdateChatBotDto, CreateChatBotDto, UpdateChatBotDto, ChatBotDto, ChatBotPageDto, ChatBotEmbeddedDto, PartialAcceptOptimizationDto, GetSupplyHealthDto, SupplyHealthDto, GeridocAppointmentDto, GeridocAppointmentEmbeddedDto, GeridocAppointmentPageDto, GeridocPatientDto, GeridocPatientEmbeddedDto, GeridocPatientPageDto, GeridocTherapyGoalDto, GeridocTherapyGoalEmbeddedDto, GeridocTherapyGoalPageDto, TherapySummaryDto, TherapySummaryPageDto, TherapySummaryEmbeddedDto, UpdateTherapySummaryDto, BulkUpdateTherapySummaryDto, UserAddressTypeEnum, ApplicationStatusEnum, BlockStatusEnum, BlockTypeEnum, CareFacilityTypeEnum, CommentStatusEnum, CommunicationChannelEnum, CommentTypeEnum, ContactTypeEnum, DisciplineEnum, InstitutionTypeEnum, ApplicationCareDegreeEnum, PatientOverallConditionTypeEnum, OptimizationStatusEnum, PatientStatusEnum, BlackoutRepeatFrequencyEnum, AddressRepeatFrequencyEnum, PractitionerTypeEnum, RoleEnum, SolverStatusEnum, AppointmentListRecipientEnum, ExtensionStatusEnum, WorkingHourTypeEnum, DocumentStatusEnum, DocumentTypeEnum, EmploymentTypeEnum, BlackoutTypeEnum, PrivatePatientInsuranceTypeEnum, SolverVersionEnum, AppointmentIssueStatusEnum, BlockCancellationReasonEnum, AppointmentIssueTypeEnum, BlockFollowUpFlagTypeEnum, TimeOfDayEnum, NursingHomeDto, NursingHomePageDto, CreateNursingHomeDto, UpdateNursingHomeDto, NursingHomeEmbeddedDto, BulkUpdateNursingHomeDto, CreateWardDto, UpdateWardDto, WardDto, WardPageDto, WardEmbeddedDto, BulkUpdateWardDto, CreateDiagnosisDto, UpdateDiagnosisDto, BulkUpdateDiagnosisDto, DiagnosisDto, DiagnosisPageDto, DiagnosisEmbeddedDto, ValidationException, convertAndValidate, IsBiggerThan, IsEmptyAttribute, IsRequiredFields, IsRequiredFieldValue, IsSmallerThan, Default, TransformEmbedded, TransformFloat, TransformInteger, TransformTotal, WardTypeEnum, VideoCallQuestionTypeEnum, VideoCallStatusEnum, VideoCallDto, VideoCallEmbeddedDto, VideoCallPageDto, CreateVideoCallDto, UpdateVideoCallDto, BulkUpdateVideoCallDto, };
package/dist/index.js CHANGED
@@ -7,9 +7,9 @@ exports.DocumentEmbeddedDto = exports.DocumentDto = exports.UpdateDocumentDto =
7
7
  exports.TherapyPlanEmbeddedDto = exports.TherapyPlanDto = exports.CreateTherapyPlanDto = exports.UpdateTherapistInfoDto = exports.TherapistInfoPageDto = exports.TherapistInfoEmbeddedDto = exports.TherapistInfoDto = exports.CreateTherapistInfoDto = exports.UpdatePatientContactDto = exports.PatientContactPageDto = exports.PatientContactEmbeddedDto = exports.PatientContactDto = exports.CreatePatientContactDto = exports.PatientSummaryViewDto = exports.UpdatePatientInfoDto = exports.PatientInfoPageDto = exports.PatientInfoEmbeddedDto = exports.PatientInfoDto = exports.CreatePatientInfoDto = exports.OptimizedBlockPageDto = exports.OptimizedBlockEmbeddedDto = exports.OptimizedBlockDto = exports.UpdateOptimizationDto = exports.OptimizationEmbeddedDto = exports.OptimizationPageDto = exports.OptimizationUnsolvedBlockPageDto = exports.OptimizationUnsolvedBlockEmbeddedDto = exports.OptimizationUnsolvedBlockDto = exports.OptimizationBlockViewEmbeddedDto = exports.OptimizationBlockViewDto = exports.OptimizationDto = exports.CreateOptimizationDto = exports.EmbeddedDto = exports.PageInfoDto = exports.PageDto = exports.FilterDto = exports.CollectionFilterDto = exports.BaseDto = exports.UpdateGeneralPractitionerInfoDto = exports.GeneralPractitionerInfoPageDto = exports.GeneralPractitionerInfoEmbeddedDto = exports.GeneralPractitionerInfoDto = exports.CreateGeneralPractitionerInfoDto = exports.UpdateExtensionDto = exports.ExtensionPageDto = exports.ExtensionEmbeddedDto = exports.ExtensionDto = exports.CreateExtensionDto = exports.ExceptionDto = exports.DocumentPageDto = void 0;
8
8
  exports.UpdateCrewDto = exports.CreateCrewDto = exports.CrewEmbeddedDto = exports.CrewDto = exports.UpdateRegionDto = exports.CreateRegionDto = exports.RegionEmbeddedDto = exports.RegionPageDto = exports.RegionDto = exports.TeamPageDto = exports.TeamEmbeddedDto = exports.TeamDto = exports.UpdateTeamDto = exports.CreateTeamDto = exports.BlackoutTimePageDto = exports.BlackoutTimeDto = exports.HealthDto = exports.ComponentHealthDto = exports.ComponentDto = exports.PatientPractitionerPageDto = exports.PatientPractitionerEmbeddedDto = exports.PatientPractitionerDto = exports.UpdatePatientPractitionerDto = exports.CreatePatientPractitionerDto = exports.WorkingHourPageDto = exports.WorkingHourEmbeddedDto = exports.WorkingHourDto = exports.UpdateWorkingHourDto = exports.CreateWorkingHourDto = exports.UserAddressTimeViewPageDto = exports.UserAddressTimeViewEmbeddedDto = exports.UserAddressTimeViewDto = exports.UserAddressSchedulePageDto = exports.UserAddressScheduleEmbeddedDto = exports.UserAddressScheduleDto = exports.UpdateUserAddressScheduleDto = exports.CreateUserAddressScheduleDto = exports.UserAddressPageDto = exports.UserAddressEmbeddedDto = exports.UserAddressDto = exports.UpdateUserAddressDto = exports.CreateUserAddressDto = exports.UserPageDto = exports.UserAzureJwtDataDto = exports.UserEmbeddedDto = exports.UserDto = exports.UpdateUserDto = exports.CreateUserDto = exports.UpdateTherapyPlanDto = exports.TherapyPlanPageDto = void 0;
9
9
  exports.AppointmentIssueEmbeddedDto = exports.AppointmentIssueDto = exports.UserNotificationTokenPageDto = exports.CreateUserNotificationTokenDto = exports.UserNotificationTokenEmbeddedDto = exports.UserNotificationTokenDto = exports.CareFacilityAddressPageDto = exports.CareFacilityAddressEmbeddedDto = exports.BulkUpdateCareFacilityAddressDto = exports.UpdateCareFacilityAddressDto = exports.CreateCareFacilityAddressDto = exports.CareFacilityAddressDto = exports.CareFacilityEmbeddedDto = exports.WorkingHourOverrideEmbeddedDto = exports.WorkingHourOverridePageDto = exports.WorkingHourOverrideDto = exports.UpdateWorkingHourOverrideDto = exports.CreateWorkingHourOverrideDto = exports.BulkUpdateWorkingHourOverrideDto = exports.BulkUpdateCareFacilityDto = exports.UpdateCareFacilityDto = exports.CreateCareFacilityDto = exports.CareFacilityPageDto = exports.CareFacilityDto = exports.SubscriptionCalculatedDto = exports.UpdateSubscriptionDto = exports.SubscriptionPageDto = exports.SubscriptionEmbeddedDto = exports.SubscriptionDto = exports.CreateSubscriptionDto = exports.BulkUpdateSubscriptionDto = exports.UpdateThreadDto = exports.ThreadPageDto = exports.ThreadEmbeddedDto = exports.ThreadDto = exports.CreateThreadDto = exports.BulkUpdateThreadDto = exports.UpdateInsuranceContactInfoDto = exports.InsuranceContactInfoPageDto = exports.InsuranceContactInfoEmbeddedDto = exports.InsuranceContactInfoDto = exports.CreateInsuranceContactInfoDto = exports.LatestApplicationEmbeddedDto = exports.LatestApplicationDto = exports.CrewTherapistInfoPageDto = exports.CrewTherapistInfoEmbeddedDto = exports.UpdateCrewTherapistInfoDto = exports.CreateCrewTherapistInfoDto = exports.CrewTherapistInfoDto = exports.CrewPageDto = void 0;
10
- exports.ApplicationStatusEnum = exports.UserAddressTypeEnum = exports.BulkUpdateTherapySummaryDto = exports.UpdateTherapySummaryDto = exports.TherapySummaryEmbeddedDto = exports.TherapySummaryPageDto = exports.TherapySummaryDto = exports.GeridocAppointmentPageDto = exports.GeridocAppointmentEmbeddedDto = exports.GeridocAppointmentDto = exports.SupplyHealthDto = exports.GetSupplyHealthDto = exports.PartialAcceptOptimizationDto = exports.ChatBotEmbeddedDto = exports.ChatBotPageDto = exports.ChatBotDto = exports.UpdateChatBotDto = exports.CreateChatBotDto = exports.BulkUpdateChatBotDto = exports.AppointmentIssueValidateDto = exports.BulkUpdateUserDto = exports.BulkUpdateWorkingHourDto = exports.BulkUpdateUserAddressScheduleDto = exports.BulkUpdateUserAddressDto = exports.BulkUpdateTherapyPlanDto = exports.BulkUpdateTherapistInfoDto = exports.BulkUpdateTeamDto = exports.BulkUpdateRegionDto = exports.BulkUpdatePatientPractitionerDto = exports.BulkUpdatePatientContactDto = exports.BulkUpdatePatientInfoDto = exports.BulkUpdateOptimizationDto = exports.BulkUpdateInsuranceContactInfoDto = exports.BulkUpdateGeneralPractitionerInfoDto = exports.BulkUpdateExtensionDto = exports.BulkUpdateDocumentDto = exports.BulkUpdateCrewTherapistInfoDto = exports.BulkUpdateCrewDto = exports.BulkUpdateContactInfoDto = exports.BulkUpdateInsuranceCompanyDto = exports.BulkUpdateCommentDto = exports.BulkUpdateBlockDto = exports.BulkUpdateBlackoutTherapistDto = exports.BulkUpdateBlackoutScheduleDto = exports.BulkUpdateApplicationInsuranceDto = exports.BulkUpdateApplicationDto = exports.BulkUpdateAppointmentIssueDto = exports.UpdateAppointmentIssueDto = exports.CreateAppointmentIssueDto = exports.AppointmentIssuePageDto = void 0;
11
- exports.DiagnosisEmbeddedDto = exports.DiagnosisPageDto = exports.DiagnosisDto = exports.BulkUpdateDiagnosisDto = exports.UpdateDiagnosisDto = exports.CreateDiagnosisDto = exports.BulkUpdateWardDto = exports.WardEmbeddedDto = exports.WardPageDto = exports.WardDto = exports.UpdateWardDto = exports.CreateWardDto = exports.BulkUpdateNursingHomeDto = exports.NursingHomeEmbeddedDto = exports.UpdateNursingHomeDto = exports.CreateNursingHomeDto = exports.NursingHomePageDto = exports.NursingHomeDto = exports.TimeOfDayEnum = exports.BlockFollowUpFlagTypeEnum = exports.AppointmentIssueTypeEnum = exports.BlockCancellationReasonEnum = exports.AppointmentIssueStatusEnum = exports.SolverVersionEnum = exports.PrivatePatientInsuranceTypeEnum = exports.BlackoutTypeEnum = exports.EmploymentTypeEnum = exports.DocumentTypeEnum = exports.DocumentStatusEnum = exports.WorkingHourTypeEnum = exports.ExtensionStatusEnum = exports.AppointmentListRecipientEnum = exports.SolverStatusEnum = exports.RoleEnum = exports.PractitionerTypeEnum = exports.AddressRepeatFrequencyEnum = exports.BlackoutRepeatFrequencyEnum = exports.PatientStatusEnum = exports.OptimizationStatusEnum = exports.PatientOverallConditionTypeEnum = exports.ApplicationCareDegreeEnum = exports.InstitutionTypeEnum = exports.DisciplineEnum = exports.ContactTypeEnum = exports.CommentTypeEnum = exports.CommunicationChannelEnum = exports.CommentStatusEnum = exports.CareFacilityTypeEnum = exports.BlockTypeEnum = exports.BlockStatusEnum = void 0;
12
- exports.BulkUpdateVideoCallDto = exports.UpdateVideoCallDto = exports.CreateVideoCallDto = exports.VideoCallPageDto = exports.VideoCallEmbeddedDto = exports.VideoCallDto = exports.VideoCallStatusEnum = exports.VideoCallQuestionTypeEnum = exports.WardTypeEnum = exports.TransformTotal = exports.TransformInteger = exports.TransformFloat = exports.TransformEmbedded = exports.Default = exports.IsSmallerThan = exports.IsRequiredFieldValue = exports.IsRequiredFields = exports.IsEmptyAttribute = exports.IsBiggerThan = exports.convertAndValidate = exports.ValidationException = void 0;
10
+ exports.TherapySummaryDto = exports.GeridocTherapyGoalPageDto = exports.GeridocTherapyGoalEmbeddedDto = exports.GeridocTherapyGoalDto = exports.GeridocPatientPageDto = exports.GeridocPatientEmbeddedDto = exports.GeridocPatientDto = exports.GeridocAppointmentPageDto = exports.GeridocAppointmentEmbeddedDto = exports.GeridocAppointmentDto = exports.SupplyHealthDto = exports.GetSupplyHealthDto = exports.PartialAcceptOptimizationDto = exports.ChatBotEmbeddedDto = exports.ChatBotPageDto = exports.ChatBotDto = exports.UpdateChatBotDto = exports.CreateChatBotDto = exports.BulkUpdateChatBotDto = exports.AppointmentIssueValidateDto = exports.BulkUpdateUserDto = exports.BulkUpdateWorkingHourDto = exports.BulkUpdateUserAddressScheduleDto = exports.BulkUpdateUserAddressDto = exports.BulkUpdateTherapyPlanDto = exports.BulkUpdateTherapistInfoDto = exports.BulkUpdateTeamDto = exports.BulkUpdateRegionDto = exports.BulkUpdatePatientPractitionerDto = exports.BulkUpdatePatientContactDto = exports.BulkUpdatePatientInfoDto = exports.BulkUpdateOptimizationDto = exports.BulkUpdateInsuranceContactInfoDto = exports.BulkUpdateGeneralPractitionerInfoDto = exports.BulkUpdateExtensionDto = exports.BulkUpdateDocumentDto = exports.BulkUpdateCrewTherapistInfoDto = exports.BulkUpdateCrewDto = exports.BulkUpdateContactInfoDto = exports.BulkUpdateInsuranceCompanyDto = exports.BulkUpdateCommentDto = exports.BulkUpdateBlockDto = exports.BulkUpdateBlackoutTherapistDto = exports.BulkUpdateBlackoutScheduleDto = exports.BulkUpdateApplicationInsuranceDto = exports.BulkUpdateApplicationDto = exports.BulkUpdateAppointmentIssueDto = exports.UpdateAppointmentIssueDto = exports.CreateAppointmentIssueDto = exports.AppointmentIssuePageDto = void 0;
11
+ exports.BulkUpdateWardDto = exports.WardEmbeddedDto = exports.WardPageDto = exports.WardDto = exports.UpdateWardDto = exports.CreateWardDto = exports.BulkUpdateNursingHomeDto = exports.NursingHomeEmbeddedDto = exports.UpdateNursingHomeDto = exports.CreateNursingHomeDto = exports.NursingHomePageDto = exports.NursingHomeDto = exports.TimeOfDayEnum = exports.BlockFollowUpFlagTypeEnum = exports.AppointmentIssueTypeEnum = exports.BlockCancellationReasonEnum = exports.AppointmentIssueStatusEnum = exports.SolverVersionEnum = exports.PrivatePatientInsuranceTypeEnum = exports.BlackoutTypeEnum = exports.EmploymentTypeEnum = exports.DocumentTypeEnum = exports.DocumentStatusEnum = exports.WorkingHourTypeEnum = exports.ExtensionStatusEnum = exports.AppointmentListRecipientEnum = exports.SolverStatusEnum = exports.RoleEnum = exports.PractitionerTypeEnum = exports.AddressRepeatFrequencyEnum = exports.BlackoutRepeatFrequencyEnum = exports.PatientStatusEnum = exports.OptimizationStatusEnum = exports.PatientOverallConditionTypeEnum = exports.ApplicationCareDegreeEnum = exports.InstitutionTypeEnum = exports.DisciplineEnum = exports.ContactTypeEnum = exports.CommentTypeEnum = exports.CommunicationChannelEnum = exports.CommentStatusEnum = exports.CareFacilityTypeEnum = exports.BlockTypeEnum = exports.BlockStatusEnum = exports.ApplicationStatusEnum = exports.UserAddressTypeEnum = exports.BulkUpdateTherapySummaryDto = exports.UpdateTherapySummaryDto = exports.TherapySummaryEmbeddedDto = exports.TherapySummaryPageDto = void 0;
12
+ exports.BulkUpdateVideoCallDto = exports.UpdateVideoCallDto = exports.CreateVideoCallDto = exports.VideoCallPageDto = exports.VideoCallEmbeddedDto = exports.VideoCallDto = exports.VideoCallStatusEnum = exports.VideoCallQuestionTypeEnum = exports.WardTypeEnum = exports.TransformTotal = exports.TransformInteger = exports.TransformFloat = exports.TransformEmbedded = exports.Default = exports.IsSmallerThan = exports.IsRequiredFieldValue = exports.IsRequiredFields = exports.IsEmptyAttribute = exports.IsBiggerThan = exports.convertAndValidate = exports.ValidationException = exports.DiagnosisEmbeddedDto = exports.DiagnosisPageDto = exports.DiagnosisDto = exports.BulkUpdateDiagnosisDto = exports.UpdateDiagnosisDto = exports.CreateDiagnosisDto = void 0;
13
13
  const address_dto_1 = require("./dto/address/address.dto");
14
14
  Object.defineProperty(exports, "AddressDto", { enumerable: true, get: function () { return address_dto_1.AddressDto; } });
15
15
  const geolocation_dto_1 = require("./dto/address/geolocation.dto");
@@ -624,6 +624,18 @@ const geridocAppointmentEmbedded_dto_1 = require("./dto/geridocAppointment/gerid
624
624
  Object.defineProperty(exports, "GeridocAppointmentEmbeddedDto", { enumerable: true, get: function () { return geridocAppointmentEmbedded_dto_1.GeridocAppointmentEmbeddedDto; } });
625
625
  const geridocAppointmentPage_dto_1 = require("./dto/geridocAppointment/geridocAppointmentPage.dto");
626
626
  Object.defineProperty(exports, "GeridocAppointmentPageDto", { enumerable: true, get: function () { return geridocAppointmentPage_dto_1.GeridocAppointmentPageDto; } });
627
+ const geridocPatient_dto_1 = require("./dto/geridocPatient/geridocPatient.dto");
628
+ Object.defineProperty(exports, "GeridocPatientDto", { enumerable: true, get: function () { return geridocPatient_dto_1.GeridocPatientDto; } });
629
+ const geridocPatientEmbedded_dto_1 = require("./dto/geridocPatient/geridocPatientEmbedded.dto");
630
+ Object.defineProperty(exports, "GeridocPatientEmbeddedDto", { enumerable: true, get: function () { return geridocPatientEmbedded_dto_1.GeridocPatientEmbeddedDto; } });
631
+ const geridocPatientPage_dto_1 = require("./dto/geridocPatient/geridocPatientPage.dto");
632
+ Object.defineProperty(exports, "GeridocPatientPageDto", { enumerable: true, get: function () { return geridocPatientPage_dto_1.GeridocPatientPageDto; } });
633
+ const geridocTherapyGoal_dto_1 = require("./dto/geridocTherapyGoal/geridocTherapyGoal.dto");
634
+ Object.defineProperty(exports, "GeridocTherapyGoalDto", { enumerable: true, get: function () { return geridocTherapyGoal_dto_1.GeridocTherapyGoalDto; } });
635
+ const geridocTherapyGoalEmbedded_dto_1 = require("./dto/geridocTherapyGoal/geridocTherapyGoalEmbedded.dto");
636
+ Object.defineProperty(exports, "GeridocTherapyGoalEmbeddedDto", { enumerable: true, get: function () { return geridocTherapyGoalEmbedded_dto_1.GeridocTherapyGoalEmbeddedDto; } });
637
+ const geridocTherapyGoalPage_dto_1 = require("./dto/geridocTherapyGoal/geridocTherapyGoalPage.dto");
638
+ Object.defineProperty(exports, "GeridocTherapyGoalPageDto", { enumerable: true, get: function () { return geridocTherapyGoalPage_dto_1.GeridocTherapyGoalPageDto; } });
627
639
  const therapySummary_dto_1 = require("./dto/therapySummary/therapySummary.dto");
628
640
  Object.defineProperty(exports, "TherapySummaryDto", { enumerable: true, get: function () { return therapySummary_dto_1.TherapySummaryDto; } });
629
641
  const therapySummaryPage_dto_1 = require("./dto/therapySummary/therapySummaryPage.dto");