@more-life/types-more-life-react 0.81.0 → 0.82.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 (32) hide show
  1. package/dist/dto/application/extensionApplication.dto.d.ts +12 -0
  2. package/dist/dto/application/extensionApplication.dto.js +37 -0
  3. package/dist/dto/application/extensionApplication.dto.js.map +1 -0
  4. package/dist/dto/application/extensionApplicationEmbedded.dto.d.ts +10 -0
  5. package/dist/dto/application/extensionApplicationEmbedded.dto.js +48 -0
  6. package/dist/dto/application/extensionApplicationEmbedded.dto.js.map +1 -0
  7. package/dist/dto/geridocAssessment/geridocAssessment.dto.d.ts +14 -0
  8. package/dist/dto/geridocAssessment/geridocAssessment.dto.js +46 -0
  9. package/dist/dto/geridocAssessment/geridocAssessment.dto.js.map +1 -0
  10. package/dist/dto/geridocAssessment/geridocAssessmentEmbedded.dto.d.ts +4 -0
  11. package/dist/dto/geridocAssessment/geridocAssessmentEmbedded.dto.js +28 -0
  12. package/dist/dto/geridocAssessment/geridocAssessmentEmbedded.dto.js.map +1 -0
  13. package/dist/dto/geridocAssessmentValue/geridocAssessmentValue.dto.d.ts +14 -0
  14. package/dist/dto/geridocAssessmentValue/geridocAssessmentValue.dto.js +46 -0
  15. package/dist/dto/geridocAssessmentValue/geridocAssessmentValue.dto.js.map +1 -0
  16. package/dist/dto/geridocAssessmentValue/geridocAssessmentValueEmbedded.dto.d.ts +4 -0
  17. package/dist/dto/geridocAssessmentValue/geridocAssessmentValueEmbedded.dto.js +28 -0
  18. package/dist/dto/geridocAssessmentValue/geridocAssessmentValueEmbedded.dto.js.map +1 -0
  19. package/dist/dto/geridocDoctorReport/geridocDoctorReport.dto.d.ts +15 -0
  20. package/dist/dto/geridocDoctorReport/geridocDoctorReport.dto.js +52 -0
  21. package/dist/dto/geridocDoctorReport/geridocDoctorReport.dto.js.map +1 -0
  22. package/dist/dto/geridocDoctorReport/geridocDoctorReportEmbedded.dto.d.ts +4 -0
  23. package/dist/dto/geridocDoctorReport/geridocDoctorReportEmbedded.dto.js +28 -0
  24. package/dist/dto/geridocDoctorReport/geridocDoctorReportEmbedded.dto.js.map +1 -0
  25. package/dist/dto/geridocPatient/geridocPatientEmbedded.dto.d.ts +6 -0
  26. package/dist/dto/geridocPatient/geridocPatientEmbedded.dto.js +34 -0
  27. package/dist/dto/geridocPatient/geridocPatientEmbedded.dto.js.map +1 -1
  28. package/dist/index.d.ts +9 -1
  29. package/dist/index.js +18 -2
  30. package/dist/index.js.map +1 -1
  31. package/dist/tsconfig.tsbuildinfo +1 -1
  32. package/package.json +1 -1
@@ -0,0 +1,12 @@
1
+ import { ExtensionApplicationEmbeddedDto } from "./extensionApplicationEmbedded.dto";
2
+ declare const ExtensionApplicationDto_base: new () => {
3
+ createdAt: string;
4
+ updatedAt: string;
5
+ _embedded?: ExtensionApplicationEmbeddedDto;
6
+ };
7
+ export declare class ExtensionApplicationDto extends ExtensionApplicationDto_base {
8
+ patientInfoId: string;
9
+ applicationId?: string;
10
+ geridocPatientId: string;
11
+ }
12
+ export {};
@@ -0,0 +1,37 @@
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.ExtensionApplicationDto = void 0;
13
+ const nestjs_1 = require("../../nestjs");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const base_dto_1 = require("../generic/base.dto");
16
+ const extensionApplicationEmbedded_dto_1 = require("./extensionApplicationEmbedded.dto");
17
+ const class_validator_1 = require("class-validator");
18
+ class ExtensionApplicationDto extends (0, base_dto_1.BaseDto)(extensionApplicationEmbedded_dto_1.ExtensionApplicationEmbeddedDto) {
19
+ }
20
+ __decorate([
21
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
22
+ (0, class_transformer_1.Expose)(),
23
+ __metadata("design:type", String)
24
+ ], ExtensionApplicationDto.prototype, "patientInfoId", void 0);
25
+ __decorate([
26
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: false }),
27
+ (0, class_validator_1.IsOptional)(),
28
+ (0, class_transformer_1.Expose)(),
29
+ __metadata("design:type", String)
30
+ ], ExtensionApplicationDto.prototype, "applicationId", void 0);
31
+ __decorate([
32
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
33
+ (0, class_transformer_1.Expose)(),
34
+ __metadata("design:type", String)
35
+ ], ExtensionApplicationDto.prototype, "geridocPatientId", void 0);
36
+ exports.ExtensionApplicationDto = ExtensionApplicationDto;
37
+ //# sourceMappingURL=extensionApplication.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extensionApplication.dto.js","sourceRoot":"","sources":["../../../src/dto/application/extensionApplication.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAAyC;AACzC,yDAAyC;AACzC,kDAA4C;AAC5C,yFAAmF;AACnF,qDAA2C;AAE3C,MAAa,uBAAwB,SAAQ,IAAA,kBAAO,EAAC,kEAA+B,CAAC;CAapF;AAZG;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;8DACc;AAEvB;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9D,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;8DACc;AAEvB;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;iEACgB;AAZ7B,0DAaC"}
@@ -0,0 +1,10 @@
1
+ import { PatientInfoDto } from "../patient/patientInfo.dto";
2
+ import { ApplicationDto } from "./application.dto";
3
+ import { GeridocPatientDto } from "../geridocPatient/geridocPatient.dto";
4
+ import { TherapySummaryDto } from "../therapySummary/therapySummary.dto";
5
+ export declare class ExtensionApplicationEmbeddedDto {
6
+ patientInfo: PatientInfoDto;
7
+ application?: ApplicationDto;
8
+ geridocPatient: GeridocPatientDto;
9
+ therapySummary: TherapySummaryDto;
10
+ }
@@ -0,0 +1,48 @@
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.ExtensionApplicationEmbeddedDto = void 0;
13
+ const nestjs_1 = require("../../nestjs");
14
+ const patientInfo_dto_1 = require("../patient/patientInfo.dto");
15
+ const class_transformer_1 = require("class-transformer");
16
+ const class_validator_1 = require("class-validator");
17
+ const application_dto_1 = require("./application.dto");
18
+ const geridocPatient_dto_1 = require("../geridocPatient/geridocPatient.dto");
19
+ const therapySummary_dto_1 = require("../therapySummary/therapySummary.dto");
20
+ class ExtensionApplicationEmbeddedDto {
21
+ }
22
+ __decorate([
23
+ (0, nestjs_1.ApiProperty)({ type: () => patientInfo_dto_1.PatientInfoDto, required: true }),
24
+ (0, class_transformer_1.Type)(() => patientInfo_dto_1.PatientInfoDto),
25
+ (0, class_transformer_1.Expose)(),
26
+ __metadata("design:type", patientInfo_dto_1.PatientInfoDto)
27
+ ], ExtensionApplicationEmbeddedDto.prototype, "patientInfo", void 0);
28
+ __decorate([
29
+ (0, nestjs_1.ApiProperty)({ type: () => application_dto_1.ApplicationDto, required: false }),
30
+ (0, class_transformer_1.Type)(() => application_dto_1.ApplicationDto),
31
+ (0, class_validator_1.IsOptional)(),
32
+ (0, class_transformer_1.Expose)(),
33
+ __metadata("design:type", application_dto_1.ApplicationDto)
34
+ ], ExtensionApplicationEmbeddedDto.prototype, "application", void 0);
35
+ __decorate([
36
+ (0, nestjs_1.ApiProperty)({ type: () => geridocPatient_dto_1.GeridocPatientDto, required: true }),
37
+ (0, class_transformer_1.Type)(() => geridocPatient_dto_1.GeridocPatientDto),
38
+ (0, class_transformer_1.Expose)(),
39
+ __metadata("design:type", geridocPatient_dto_1.GeridocPatientDto)
40
+ ], ExtensionApplicationEmbeddedDto.prototype, "geridocPatient", void 0);
41
+ __decorate([
42
+ (0, nestjs_1.ApiProperty)({ type: () => therapySummary_dto_1.TherapySummaryDto, required: true }),
43
+ (0, class_transformer_1.Type)(() => therapySummary_dto_1.TherapySummaryDto),
44
+ (0, class_transformer_1.Expose)(),
45
+ __metadata("design:type", therapySummary_dto_1.TherapySummaryDto)
46
+ ], ExtensionApplicationEmbeddedDto.prototype, "therapySummary", void 0);
47
+ exports.ExtensionApplicationEmbeddedDto = ExtensionApplicationEmbeddedDto;
48
+ //# sourceMappingURL=extensionApplicationEmbedded.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extensionApplicationEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/application/extensionApplicationEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAAyC;AACzC,gEAA0D;AAC1D,yDAA+C;AAC/C,qDAA2C;AAC3C,uDAAiD;AACjD,6EAAuE;AACvE,6EAAuE;AAEvE,MAAa,+BAA+B;CAqB3C;AApBG;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,gCAAc,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC3D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gCAAc,CAAC;IAC1B,IAAA,0BAAM,GAAE;8BACK,gCAAc;oEAAC;AAE7B;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,gCAAc,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC5D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gCAAc,CAAC;IAC1B,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;8BACK,gCAAc;oEAAC;AAE7B;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,sCAAiB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,sCAAiB,CAAC;IAC7B,IAAA,0BAAM,GAAE;8BACQ,sCAAiB;uEAAC;AAEnC;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,sCAAiB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,sCAAiB,CAAC;IAC7B,IAAA,0BAAM,GAAE;8BACQ,sCAAiB;uEAAC;AApBvC,0EAqBC"}
@@ -0,0 +1,14 @@
1
+ import { GeridocAssessmentEmbeddedDto } from './geridocAssessmentEmbedded.dto';
2
+ declare const GeridocAssessmentDto_base: new () => {
3
+ createdAt: string;
4
+ updatedAt: string;
5
+ _embedded?: GeridocAssessmentEmbeddedDto;
6
+ };
7
+ export declare class GeridocAssessmentDto extends GeridocAssessmentDto_base {
8
+ id: string;
9
+ geridocPatientId: string;
10
+ assessmentRaw: string;
11
+ static fromPlain(object: any): GeridocAssessmentDto;
12
+ static fromEntity(entity: any): GeridocAssessmentDto;
13
+ }
14
+ export {};
@@ -0,0 +1,46 @@
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.GeridocAssessmentDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const convertAndValidate_1 = require("../../util/convertAndValidate");
16
+ const base_dto_1 = require("../generic/base.dto");
17
+ const geridocAssessmentEmbedded_dto_1 = require("./geridocAssessmentEmbedded.dto");
18
+ const class_validator_1 = require("class-validator");
19
+ class GeridocAssessmentDto extends (0, base_dto_1.BaseDto)(geridocAssessmentEmbedded_dto_1.GeridocAssessmentEmbeddedDto) {
20
+ static fromPlain(object) {
21
+ return (0, convertAndValidate_1.convertAndValidate)(GeridocAssessmentDto, object);
22
+ }
23
+ static fromEntity(entity) {
24
+ return (0, convertAndValidate_1.convert)(GeridocAssessmentDto, entity);
25
+ }
26
+ }
27
+ __decorate([
28
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
29
+ (0, class_validator_1.IsUUID)(),
30
+ (0, class_transformer_1.Expose)(),
31
+ __metadata("design:type", String)
32
+ ], GeridocAssessmentDto.prototype, "id", void 0);
33
+ __decorate([
34
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
35
+ (0, class_validator_1.IsUUID)(),
36
+ (0, class_transformer_1.Expose)(),
37
+ __metadata("design:type", String)
38
+ ], GeridocAssessmentDto.prototype, "geridocPatientId", void 0);
39
+ __decorate([
40
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
41
+ (0, class_validator_1.IsString)(),
42
+ (0, class_transformer_1.Expose)(),
43
+ __metadata("design:type", String)
44
+ ], GeridocAssessmentDto.prototype, "assessmentRaw", void 0);
45
+ exports.GeridocAssessmentDto = GeridocAssessmentDto;
46
+ //# sourceMappingURL=geridocAssessment.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocAssessment.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocAssessment/geridocAssessment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,sEAA4E;AAC5E,kDAA8C;AAC9C,mFAA+E;AAC/E,qDAAmD;AAEnD,MAAa,oBAAqB,SAAQ,IAAA,kBAAO,EAChD,4DAA4B,CAC5B;IAgBO,MAAM,CAAC,SAAS,CAAC,MAAW;QAClC,OAAO,IAAA,uCAAkB,EAAC,oBAAoB,EAAE,MAAM,CAAC,CAAC;IACzD,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,MAAW;QACnC,OAAO,IAAA,4BAAO,EAAC,oBAAoB,EAAE,MAAM,CAAC,CAAC;IAC9C,CAAC;CACD;AAtBA;IAAC,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;;gDACG;AAEZ;IAAC,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;;8DACiB;AAE1B;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;2DACc;AAhBxB,oDAyBC"}
@@ -0,0 +1,4 @@
1
+ import { GeridocPatientDto } from '../geridocPatient/geridocPatient.dto';
2
+ export declare class GeridocAssessmentEmbeddedDto {
3
+ geridocPatient?: GeridocPatientDto;
4
+ }
@@ -0,0 +1,28 @@
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.GeridocAssessmentEmbeddedDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const class_validator_1 = require("class-validator");
16
+ const geridocPatient_dto_1 = require("../geridocPatient/geridocPatient.dto");
17
+ const class_transformer_2 = require("class-transformer");
18
+ class GeridocAssessmentEmbeddedDto {
19
+ }
20
+ __decorate([
21
+ (0, nestjs_1.ApiProperty)({ type: () => geridocPatient_dto_1.GeridocPatientDto, required: false }),
22
+ (0, class_validator_1.IsOptional)(),
23
+ (0, class_transformer_2.Type)(() => geridocPatient_dto_1.GeridocPatientDto),
24
+ (0, class_transformer_1.Expose)(),
25
+ __metadata("design:type", geridocPatient_dto_1.GeridocPatientDto)
26
+ ], GeridocAssessmentEmbeddedDto.prototype, "geridocPatient", void 0);
27
+ exports.GeridocAssessmentEmbeddedDto = GeridocAssessmentEmbeddedDto;
28
+ //# sourceMappingURL=geridocAssessmentEmbedded.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocAssessmentEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocAssessment/geridocAssessmentEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,qDAA6C;AAC7C,6EAAyE;AACzE,yDAAyC;AAEzC,MAAa,4BAA4B;CAMxC;AALA;IAAC,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;oEAAC;AALpC,oEAMC"}
@@ -0,0 +1,14 @@
1
+ import { GeridocAssessmentValueEmbeddedDto } from './geridocAssessmentValueEmbedded.dto';
2
+ declare const GeridocAssessmentValueDto_base: new () => {
3
+ createdAt: string;
4
+ updatedAt: string;
5
+ _embedded?: GeridocAssessmentValueEmbeddedDto;
6
+ };
7
+ export declare class GeridocAssessmentValueDto extends GeridocAssessmentValueDto_base {
8
+ id: string;
9
+ geridocPatientId: string;
10
+ assessmentValue: Record<string, any>;
11
+ static fromPlain(object: any): GeridocAssessmentValueDto;
12
+ static fromEntity(entity: any): GeridocAssessmentValueDto;
13
+ }
14
+ export {};
@@ -0,0 +1,46 @@
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.GeridocAssessmentValueDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const convertAndValidate_1 = require("../../util/convertAndValidate");
16
+ const base_dto_1 = require("../generic/base.dto");
17
+ const geridocAssessmentValueEmbedded_dto_1 = require("./geridocAssessmentValueEmbedded.dto");
18
+ const class_validator_1 = require("class-validator");
19
+ class GeridocAssessmentValueDto extends (0, base_dto_1.BaseDto)(geridocAssessmentValueEmbedded_dto_1.GeridocAssessmentValueEmbeddedDto) {
20
+ static fromPlain(object) {
21
+ return (0, convertAndValidate_1.convertAndValidate)(GeridocAssessmentValueDto, object);
22
+ }
23
+ static fromEntity(entity) {
24
+ return (0, convertAndValidate_1.convert)(GeridocAssessmentValueDto, entity);
25
+ }
26
+ }
27
+ __decorate([
28
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
29
+ (0, class_validator_1.IsUUID)(),
30
+ (0, class_transformer_1.Expose)(),
31
+ __metadata("design:type", String)
32
+ ], GeridocAssessmentValueDto.prototype, "id", void 0);
33
+ __decorate([
34
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
35
+ (0, class_validator_1.IsUUID)(),
36
+ (0, class_transformer_1.Expose)(),
37
+ __metadata("design:type", String)
38
+ ], GeridocAssessmentValueDto.prototype, "geridocPatientId", void 0);
39
+ __decorate([
40
+ (0, nestjs_1.ApiProperty)({ type: Object, required: true }),
41
+ (0, class_validator_1.IsObject)(),
42
+ (0, class_transformer_1.Expose)(),
43
+ __metadata("design:type", Object)
44
+ ], GeridocAssessmentValueDto.prototype, "assessmentValue", void 0);
45
+ exports.GeridocAssessmentValueDto = GeridocAssessmentValueDto;
46
+ //# sourceMappingURL=geridocAssessmentValue.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocAssessmentValue.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocAssessmentValue/geridocAssessmentValue.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,sEAA4E;AAC5E,kDAA8C;AAC9C,6FAAyF;AACzF,qDAAmD;AAEnD,MAAa,yBAA0B,SAAQ,IAAA,kBAAO,EACrD,sEAAiC,CACjC;IAgBO,MAAM,CAAC,SAAS,CAAC,MAAW;QAClC,OAAO,IAAA,uCAAkB,EAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;IAC9D,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,MAAW;QACnC,OAAO,IAAA,4BAAO,EAAC,yBAAyB,EAAE,MAAM,CAAC,CAAC;IACnD,CAAC;CACD;AAtBA;IAAC,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;;qDACG;AAEZ;IAAC,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;;mEACiB;AAE1B;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;kEAC6B;AAhBvC,8DAyBC"}
@@ -0,0 +1,4 @@
1
+ import { GeridocPatientDto } from '../geridocPatient/geridocPatient.dto';
2
+ export declare class GeridocAssessmentValueEmbeddedDto {
3
+ geridocPatient?: GeridocPatientDto;
4
+ }
@@ -0,0 +1,28 @@
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.GeridocAssessmentValueEmbeddedDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const class_validator_1 = require("class-validator");
16
+ const geridocPatient_dto_1 = require("../geridocPatient/geridocPatient.dto");
17
+ const class_transformer_2 = require("class-transformer");
18
+ class GeridocAssessmentValueEmbeddedDto {
19
+ }
20
+ __decorate([
21
+ (0, nestjs_1.ApiProperty)({ type: () => geridocPatient_dto_1.GeridocPatientDto, required: false }),
22
+ (0, class_validator_1.IsOptional)(),
23
+ (0, class_transformer_2.Type)(() => geridocPatient_dto_1.GeridocPatientDto),
24
+ (0, class_transformer_1.Expose)(),
25
+ __metadata("design:type", geridocPatient_dto_1.GeridocPatientDto)
26
+ ], GeridocAssessmentValueEmbeddedDto.prototype, "geridocPatient", void 0);
27
+ exports.GeridocAssessmentValueEmbeddedDto = GeridocAssessmentValueEmbeddedDto;
28
+ //# sourceMappingURL=geridocAssessmentValueEmbedded.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocAssessmentValueEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocAssessmentValue/geridocAssessmentValueEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,qDAA6C;AAC7C,6EAAyE;AACzE,yDAAyC;AAEzC,MAAa,iCAAiC;CAM7C;AALA;IAAC,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;yEAAC;AALpC,8EAMC"}
@@ -0,0 +1,15 @@
1
+ import { GeridocDoctorReportEmbeddedDto } from './geridocDoctorReportEmbedded.dto';
2
+ declare const GeridocDoctorReportDto_base: new () => {
3
+ createdAt: string;
4
+ updatedAt: string;
5
+ _embedded?: GeridocDoctorReportEmbeddedDto;
6
+ };
7
+ export declare class GeridocDoctorReportDto extends GeridocDoctorReportDto_base {
8
+ id: string;
9
+ geridocPatientId: string;
10
+ type: string;
11
+ reportRaw: string;
12
+ static fromPlain(object: any): GeridocDoctorReportDto;
13
+ static fromEntity(entity: any): GeridocDoctorReportDto;
14
+ }
15
+ export {};
@@ -0,0 +1,52 @@
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.GeridocDoctorReportDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const convertAndValidate_1 = require("../../util/convertAndValidate");
16
+ const base_dto_1 = require("../generic/base.dto");
17
+ const geridocDoctorReportEmbedded_dto_1 = require("./geridocDoctorReportEmbedded.dto");
18
+ const class_validator_1 = require("class-validator");
19
+ class GeridocDoctorReportDto extends (0, base_dto_1.BaseDto)(geridocDoctorReportEmbedded_dto_1.GeridocDoctorReportEmbeddedDto) {
20
+ static fromPlain(object) {
21
+ return (0, convertAndValidate_1.convertAndValidate)(GeridocDoctorReportDto, object);
22
+ }
23
+ static fromEntity(entity) {
24
+ return (0, convertAndValidate_1.convert)(GeridocDoctorReportDto, entity);
25
+ }
26
+ }
27
+ __decorate([
28
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
29
+ (0, class_validator_1.IsUUID)(),
30
+ (0, class_transformer_1.Expose)(),
31
+ __metadata("design:type", String)
32
+ ], GeridocDoctorReportDto.prototype, "id", void 0);
33
+ __decorate([
34
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
35
+ (0, class_validator_1.IsUUID)(),
36
+ (0, class_transformer_1.Expose)(),
37
+ __metadata("design:type", String)
38
+ ], GeridocDoctorReportDto.prototype, "geridocPatientId", void 0);
39
+ __decorate([
40
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
41
+ (0, class_validator_1.IsString)(),
42
+ (0, class_transformer_1.Expose)(),
43
+ __metadata("design:type", String)
44
+ ], GeridocDoctorReportDto.prototype, "type", void 0);
45
+ __decorate([
46
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
47
+ (0, class_validator_1.IsString)(),
48
+ (0, class_transformer_1.Expose)(),
49
+ __metadata("design:type", String)
50
+ ], GeridocDoctorReportDto.prototype, "reportRaw", void 0);
51
+ exports.GeridocDoctorReportDto = GeridocDoctorReportDto;
52
+ //# sourceMappingURL=geridocDoctorReport.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocDoctorReport.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocDoctorReport/geridocDoctorReport.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,sEAA4E;AAC5E,kDAA8C;AAC9C,uFAAmF;AACnF,qDAAmD;AAEnD,MAAa,sBAAuB,SAAQ,IAAA,kBAAO,EAClD,gEAA8B,CAC9B;IAqBO,MAAM,CAAC,SAAS,CAAC,MAAW;QAClC,OAAO,IAAA,uCAAkB,EAAC,sBAAsB,EAAE,MAAM,CAAC,CAAC;IAC3D,CAAC;IAEM,MAAM,CAAC,UAAU,CAAC,MAAW;QACnC,OAAO,IAAA,4BAAO,EAAC,sBAAsB,EAAE,MAAM,CAAC,CAAC;IAChD,CAAC;CACD;AA3BA;IAAC,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;;kDACG;AAEZ;IAAC,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;;gEACiB;AAE1B;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;oDACK;AAEd;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;yDACU;AArBpB,wDA8BC"}
@@ -0,0 +1,4 @@
1
+ import { GeridocPatientDto } from '../geridocPatient/geridocPatient.dto';
2
+ export declare class GeridocDoctorReportEmbeddedDto {
3
+ geridocPatient?: GeridocPatientDto;
4
+ }
@@ -0,0 +1,28 @@
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.GeridocDoctorReportEmbeddedDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const class_validator_1 = require("class-validator");
16
+ const geridocPatient_dto_1 = require("../geridocPatient/geridocPatient.dto");
17
+ const class_transformer_2 = require("class-transformer");
18
+ class GeridocDoctorReportEmbeddedDto {
19
+ }
20
+ __decorate([
21
+ (0, nestjs_1.ApiProperty)({ type: () => geridocPatient_dto_1.GeridocPatientDto, required: false }),
22
+ (0, class_validator_1.IsOptional)(),
23
+ (0, class_transformer_2.Type)(() => geridocPatient_dto_1.GeridocPatientDto),
24
+ (0, class_transformer_1.Expose)(),
25
+ __metadata("design:type", geridocPatient_dto_1.GeridocPatientDto)
26
+ ], GeridocDoctorReportEmbeddedDto.prototype, "geridocPatient", void 0);
27
+ exports.GeridocDoctorReportEmbeddedDto = GeridocDoctorReportEmbeddedDto;
28
+ //# sourceMappingURL=geridocDoctorReportEmbedded.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"geridocDoctorReportEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/geridocDoctorReport/geridocDoctorReportEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,qDAA6C;AAC7C,6EAAyE;AACzE,yDAAyC;AAEzC,MAAa,8BAA8B;CAM1C;AALA;IAAC,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;sEAAC;AALpC,wEAMC"}
@@ -2,9 +2,15 @@ import { ApplicationDto } from '../application/application.dto';
2
2
  import { GeridocTherapyGoalDto } from '../geridocTherapyGoal/geridocTherapyGoal.dto';
3
3
  import { GeridocDiagnosisDto } from '../geridocDiagnosis/geridocDiagnosis.dto';
4
4
  import { GeridocMedicationDto } from '../geridocMedication/geridocMedication.dto';
5
+ import { GeridocDoctorReportDto } from "../geridocDoctorReport/geridocDoctorReport.dto";
6
+ import { GeridocAssessmentDto } from "../geridocAssessment/geridocAssessment.dto";
7
+ import { GeridocAssessmentValueDto } from "../geridocAssessmentValue/geridocAssessmentValue.dto";
5
8
  export declare class GeridocPatientEmbeddedDto {
6
9
  application?: ApplicationDto;
7
10
  therapyGoals?: GeridocTherapyGoalDto[];
8
11
  diagnosis?: GeridocDiagnosisDto[];
9
12
  medications?: GeridocMedicationDto[];
13
+ doctorReports?: GeridocDoctorReportDto[];
14
+ assessment?: GeridocAssessmentDto;
15
+ assessmentValue?: GeridocAssessmentValueDto;
10
16
  }
@@ -17,6 +17,9 @@ const application_dto_1 = require("../application/application.dto");
17
17
  const geridocTherapyGoal_dto_1 = require("../geridocTherapyGoal/geridocTherapyGoal.dto");
18
18
  const geridocDiagnosis_dto_1 = require("../geridocDiagnosis/geridocDiagnosis.dto");
19
19
  const geridocMedication_dto_1 = require("../geridocMedication/geridocMedication.dto");
20
+ const geridocDoctorReport_dto_1 = require("../geridocDoctorReport/geridocDoctorReport.dto");
21
+ const geridocAssessment_dto_1 = require("../geridocAssessment/geridocAssessment.dto");
22
+ const geridocAssessmentValue_dto_1 = require("../geridocAssessmentValue/geridocAssessmentValue.dto");
20
23
  class GeridocPatientEmbeddedDto {
21
24
  }
22
25
  __decorate([
@@ -59,5 +62,36 @@ __decorate([
59
62
  (0, class_transformer_1.Expose)(),
60
63
  __metadata("design:type", Array)
61
64
  ], GeridocPatientEmbeddedDto.prototype, "medications", void 0);
65
+ __decorate([
66
+ (0, nestjs_1.ApiProperty)({
67
+ type: () => geridocDoctorReport_dto_1.GeridocDoctorReportDto,
68
+ isArray: true,
69
+ required: false,
70
+ }),
71
+ (0, class_validator_1.IsOptional)(),
72
+ (0, class_transformer_1.Type)(() => geridocDoctorReport_dto_1.GeridocDoctorReportDto),
73
+ (0, class_transformer_1.Expose)(),
74
+ __metadata("design:type", Array)
75
+ ], GeridocPatientEmbeddedDto.prototype, "doctorReports", void 0);
76
+ __decorate([
77
+ (0, nestjs_1.ApiProperty)({
78
+ type: () => geridocAssessment_dto_1.GeridocAssessmentDto,
79
+ required: false,
80
+ }),
81
+ (0, class_validator_1.IsOptional)(),
82
+ (0, class_transformer_1.Type)(() => geridocAssessment_dto_1.GeridocAssessmentDto),
83
+ (0, class_transformer_1.Expose)(),
84
+ __metadata("design:type", geridocAssessment_dto_1.GeridocAssessmentDto)
85
+ ], GeridocPatientEmbeddedDto.prototype, "assessment", void 0);
86
+ __decorate([
87
+ (0, nestjs_1.ApiProperty)({
88
+ type: () => geridocAssessmentValue_dto_1.GeridocAssessmentValueDto,
89
+ required: false,
90
+ }),
91
+ (0, class_validator_1.IsOptional)(),
92
+ (0, class_transformer_1.Type)(() => geridocAssessmentValue_dto_1.GeridocAssessmentValueDto),
93
+ (0, class_transformer_1.Expose)(),
94
+ __metadata("design:type", geridocAssessmentValue_dto_1.GeridocAssessmentValueDto)
95
+ ], GeridocPatientEmbeddedDto.prototype, "assessmentValue", void 0);
62
96
  exports.GeridocPatientEmbeddedDto = GeridocPatientEmbeddedDto;
63
97
  //# sourceMappingURL=geridocPatientEmbedded.dto.js.map
@@ -1 +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;AACrF,mFAA+E;AAC/E,sFAAkF;AAElF,MAAa,yBAAyB;CAoCrC;AAnCA;IAAC,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;AAE7B;IAAC,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;AAEvC;IAAC,IAAA,oBAAW,EAAC;QACZ,IAAI,EAAE,GAAG,EAAE,CAAC,0CAAmB;QAC/B,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,0CAAmB,CAAC;IAC/B,IAAA,0BAAM,GAAE;;4DACyB;AAElC;IAAC,IAAA,oBAAW,EAAC;QACZ,IAAI,EAAE,GAAG,EAAE,CAAC,4CAAoB;QAChC,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,4CAAoB,CAAC;IAChC,IAAA,0BAAM,GAAE;;8DAC4B;AAnCtC,8DAoCC"}
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;AACrF,mFAA+E;AAC/E,sFAAkF;AAClF,4FAAsF;AACtF,sFAAgF;AAChF,qGAA+F;AAE/F,MAAa,yBAAyB;CAgErC;AA/DA;IAAC,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;AAE7B;IAAC,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;AAEvC;IAAC,IAAA,oBAAW,EAAC;QACZ,IAAI,EAAE,GAAG,EAAE,CAAC,0CAAmB;QAC/B,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,0CAAmB,CAAC;IAC/B,IAAA,0BAAM,GAAE;;4DACyB;AAElC;IAAC,IAAA,oBAAW,EAAC;QACZ,IAAI,EAAE,GAAG,EAAE,CAAC,4CAAoB;QAChC,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,4CAAoB,CAAC;IAChC,IAAA,0BAAM,GAAE;;8DAC4B;AAErC;IAAC,IAAA,oBAAW,EAAC;QACZ,IAAI,EAAE,GAAG,EAAE,CAAC,gDAAsB;QAClC,OAAO,EAAE,IAAI;QACb,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gDAAsB,CAAC;IAClC,IAAA,0BAAM,GAAE;;gEACgC;AAEzC;IAAC,IAAA,oBAAW,EAAC;QACZ,IAAI,EAAE,GAAG,EAAE,CAAC,4CAAoB;QAChC,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,4CAAoB,CAAC;IAChC,IAAA,0BAAM,GAAE;8BACI,4CAAoB;6DAAC;AAElC;IAAC,IAAA,oBAAW,EAAC;QACZ,IAAI,EAAE,GAAG,EAAE,CAAC,sDAAyB;QACrC,QAAQ,EAAE,KAAK;KACf,CAAC;IACD,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,sDAAyB,CAAC;IACrC,IAAA,0BAAM,GAAE;8BACS,sDAAyB;kEAAC;AA/D7C,8DAgEC"}
package/dist/index.d.ts CHANGED
@@ -333,4 +333,12 @@ import { BulkUpdateVideoCallDto } from './dto/videoCall/bulkUpdateVideoCall.dto'
333
333
  import { TimeOfDayEnum } from './enum/timeOfDay.enum';
334
334
  import { GeridocMedicationTypeEnum } from "./enum/geridocMedicationType.enum";
335
335
  import { TherapySummaryTypeEnum } from "./enum/therapySummaryType.enum";
336
- 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, GeridocDiagnosisDto, GeridocDiagnosisEmbeddedDto, GeridocDiagnosisPageDto, GeridocMedicationDto, GeridocMedicationEmbeddedDto, GeridocMedicationPageDto, 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, GeridocMedicationTypeEnum, TherapySummaryTypeEnum, ValidationException, convertAndValidate, IsBiggerThan, IsEmptyAttribute, IsRequiredFields, IsRequiredFieldValue, IsSmallerThan, Default, TransformEmbedded, TransformFloat, TransformInteger, TransformTotal, WardTypeEnum, VideoCallQuestionTypeEnum, VideoCallStatusEnum, VideoCallDto, VideoCallEmbeddedDto, VideoCallPageDto, CreateVideoCallDto, UpdateVideoCallDto, BulkUpdateVideoCallDto, };
336
+ import { GeridocAssessmentDto } from "./dto/geridocAssessment/geridocAssessment.dto";
337
+ import { GeridocAssessmentEmbeddedDto } from "./dto/geridocAssessment/geridocAssessmentEmbedded.dto";
338
+ import { GeridocDoctorReportDto } from "./dto/geridocDoctorReport/geridocDoctorReport.dto";
339
+ import { GeridocDoctorReportEmbeddedDto } from "./dto/geridocDoctorReport/geridocDoctorReportEmbedded.dto";
340
+ import { GeridocAssessmentValueDto } from "./dto/geridocAssessmentValue/geridocAssessmentValue.dto";
341
+ import { GeridocAssessmentValueEmbeddedDto } from "./dto/geridocAssessmentValue/geridocAssessmentValueEmbedded.dto";
342
+ import { ExtensionApplicationDto } from "./dto/application/extensionApplication.dto";
343
+ import { ExtensionApplicationEmbeddedDto } from "./dto/application/extensionApplicationEmbedded.dto";
344
+ 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, GeridocDiagnosisDto, GeridocDiagnosisEmbeddedDto, GeridocDiagnosisPageDto, GeridocMedicationDto, GeridocMedicationEmbeddedDto, GeridocMedicationPageDto, TherapySummaryDto, TherapySummaryPageDto, TherapySummaryEmbeddedDto, UpdateTherapySummaryDto, BulkUpdateTherapySummaryDto, GeridocAssessmentDto, GeridocAssessmentEmbeddedDto, GeridocDoctorReportDto, GeridocDoctorReportEmbeddedDto, GeridocAssessmentValueDto, GeridocAssessmentValueEmbeddedDto, ExtensionApplicationDto, ExtensionApplicationEmbeddedDto, 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, GeridocMedicationTypeEnum, TherapySummaryTypeEnum, ValidationException, convertAndValidate, IsBiggerThan, IsEmptyAttribute, IsRequiredFields, IsRequiredFieldValue, IsSmallerThan, Default, TransformEmbedded, TransformFloat, TransformInteger, TransformTotal, WardTypeEnum, VideoCallQuestionTypeEnum, VideoCallStatusEnum, VideoCallDto, VideoCallEmbeddedDto, VideoCallPageDto, CreateVideoCallDto, UpdateVideoCallDto, BulkUpdateVideoCallDto, };