@more-life/types-more-life-nest 0.71.1 → 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.
- package/dist/dto/application/applicationEmbedded.dto.d.ts +3 -1
- package/dist/dto/application/applicationEmbedded.dto.js +9 -1
- package/dist/dto/application/applicationEmbedded.dto.js.map +1 -1
- package/dist/dto/block/updateBlock.dto.d.ts +2 -0
- package/dist/dto/block/updateBlock.dto.js +17 -1
- package/dist/dto/block/updateBlock.dto.js.map +1 -1
- package/dist/dto/geridocPatient/geridocPatient.dto.d.ts +14 -0
- package/dist/dto/geridocPatient/geridocPatient.dto.js +50 -0
- package/dist/dto/geridocPatient/geridocPatient.dto.js.map +1 -0
- package/dist/dto/geridocPatient/geridocPatientEmbedded.dto.d.ts +6 -0
- package/dist/dto/geridocPatient/geridocPatientEmbedded.dto.js +43 -0
- package/dist/dto/geridocPatient/geridocPatientEmbedded.dto.js.map +1 -0
- package/dist/dto/geridocPatient/geridocPatientPage.dto.d.ts +12 -0
- package/dist/dto/geridocPatient/geridocPatientPage.dto.js +62 -0
- package/dist/dto/geridocPatient/geridocPatientPage.dto.js.map +1 -0
- package/dist/dto/geridocTherapyGoal/geridocTherapyGoal.dto.d.ts +14 -0
- package/dist/dto/geridocTherapyGoal/geridocTherapyGoal.dto.js +50 -0
- package/dist/dto/geridocTherapyGoal/geridocTherapyGoal.dto.js.map +1 -0
- package/dist/dto/geridocTherapyGoal/geridocTherapyGoalEmbedded.dto.d.ts +4 -0
- package/dist/dto/geridocTherapyGoal/geridocTherapyGoalEmbedded.dto.js +31 -0
- package/dist/dto/geridocTherapyGoal/geridocTherapyGoalEmbedded.dto.js.map +1 -0
- package/dist/dto/geridocTherapyGoal/geridocTherapyGoalPage.dto.d.ts +12 -0
- package/dist/dto/geridocTherapyGoal/geridocTherapyGoalPage.dto.js +62 -0
- package/dist/dto/geridocTherapyGoal/geridocTherapyGoalPage.dto.js.map +1 -0
- package/dist/index.d.ts +7 -1
- package/dist/index.js +15 -3
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- 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
|
|
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":";;;;;;;;;;;;;AAAA,qDAA6C;AAC7C,yDAAiD;AACjD,yCAA2C;AAC3C,sGAAkG;AAClG,gEAA4D;AAC5D,+CAA2C;AAC3C,8DAA0D;AAC1D,2EAAuE;AACvE,+FAA2F;AAC3F,uEAAmE;AACnE,
|
|
1
|
+
{"version":3,"file":"applicationEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/application/applicationEmbedded.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -26,7 +26,7 @@ class UpdateBlockDto {
|
|
|
26
26
|
return (0, convertAndValidate_1.convertAndValidate)(UpdateBlockDto, object);
|
|
27
27
|
}
|
|
28
28
|
static _OPENAPI_METADATA_FACTORY() {
|
|
29
|
-
return { appointmentNumber: { required: false, type: () => Number, nullable: true, minimum: 1 }, preferredWeek: { required: false, type: () => Number, nullable: true, maximum: 53, minimum: 1 }, preferredYear: { required: false, type: () => Number, nullable: true, minimum: 2020, maximum: 2099, minimum: 1 }, type: { required: false, nullable: true, enum: require("../../enum/blockType.enum").BlockTypeEnum, enum: Object.values(blockType_enum_1.BlockTypeEnum) }, status: { required: false, nullable: true, enum: require("../../enum/blockStatus.enum").BlockStatusEnum, enum: Object.values(blockStatus_enum_1.BlockStatusEnum) }, disciplines: { required: false, type: () => Object, enum: Object.values(discipline_enum_1.DisciplineEnum) }, duration: { required: false, type: () => Number, minimum: 1 }, plannedDuration: { required: false, type: () => Number, minimum: 1 }, patientInfoId: { required: false, type: () => String, nullable: true, format: "uuid" }, therapistInfoId: { required: false, type: () => String, nullable: true, format: "uuid" }, applicationId: { required: false, type: () => String, nullable: true, format: "uuid" }, extensionId: { required: false, type: () => String, nullable: true, format: "uuid" }, from: { required: false, type: () => String, nullable: true }, concludedAt: { required: false, type: () => String, nullable: true }, arrivedAt: { required: false, type: () => String, nullable: true }, cancellationReason: { required: false, nullable: true, enum: require("../../enum/blockCancellationReason").BlockCancellationReasonEnum }, isAdmission: { required: false, type: () => Boolean }, isDecommission: { required: false, type: () => Boolean }, comment: { required: false, type: () => String }, address: { required: false, type: () => require("../address/updateAddress.dto").UpdateAddressDto }, followUpFlag: { required: false, nullable: true, enum: require("../../enum/blockFollowUpFlagType.enum").BlockFollowUpFlagTypeEnum, isArray: true, enum: Object.values(blockFollowUpFlagType_enum_1.BlockFollowUpFlagTypeEnum) } };
|
|
29
|
+
return { appointmentNumber: { required: false, type: () => Number, nullable: true, minimum: 1 }, preferredWeek: { required: false, type: () => Number, nullable: true, maximum: 53, minimum: 1 }, preferredYear: { required: false, type: () => Number, nullable: true, minimum: 2020, maximum: 2099, minimum: 1 }, type: { required: false, nullable: true, enum: require("../../enum/blockType.enum").BlockTypeEnum, enum: Object.values(blockType_enum_1.BlockTypeEnum) }, status: { required: false, nullable: true, enum: require("../../enum/blockStatus.enum").BlockStatusEnum, enum: Object.values(blockStatus_enum_1.BlockStatusEnum) }, disciplines: { required: false, type: () => Object, enum: Object.values(discipline_enum_1.DisciplineEnum) }, duration: { required: false, type: () => Number, minimum: 1 }, plannedDuration: { required: false, type: () => Number, minimum: 1 }, patientInfoId: { required: false, type: () => String, nullable: true, format: "uuid" }, therapistInfoId: { required: false, type: () => String, nullable: true, format: "uuid" }, applicationId: { required: false, type: () => String, nullable: true, format: "uuid" }, extensionId: { required: false, type: () => String, nullable: true, format: "uuid" }, from: { required: false, type: () => String, nullable: true }, concludedAt: { required: false, type: () => String, nullable: true }, arrivedAt: { required: false, type: () => String, nullable: true }, cancellationReason: { required: false, nullable: true, enum: require("../../enum/blockCancellationReason").BlockCancellationReasonEnum }, isAdmission: { required: false, type: () => Boolean }, isDecommission: { required: false, type: () => Boolean }, comment: { required: false, type: () => String }, address: { required: false, type: () => require("../address/updateAddress.dto").UpdateAddressDto }, followUpFlag: { required: false, nullable: true, enum: require("../../enum/blockFollowUpFlagType.enum").BlockFollowUpFlagTypeEnum, isArray: true, enum: Object.values(blockFollowUpFlagType_enum_1.BlockFollowUpFlagTypeEnum) }, driveTimeFromPrevious: { required: false, type: () => Number, minimum: 1 }, driveTimeToNext: { required: false, type: () => Number, minimum: 1 } };
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
exports.UpdateBlockDto = UpdateBlockDto;
|
|
@@ -187,4 +187,20 @@ __decorate([
|
|
|
187
187
|
(0, class_transformer_1.Expose)(),
|
|
188
188
|
__metadata("design:type", Array)
|
|
189
189
|
], UpdateBlockDto.prototype, "followUpFlag", void 0);
|
|
190
|
+
__decorate([
|
|
191
|
+
(0, nestjs_1.ApiProperty)({ type: Number, required: false }),
|
|
192
|
+
(0, class_validator_1.IsOptional)(),
|
|
193
|
+
(0, class_validator_1.IsInt)(),
|
|
194
|
+
(0, class_validator_1.IsPositive)(),
|
|
195
|
+
(0, class_transformer_1.Expose)(),
|
|
196
|
+
__metadata("design:type", Number)
|
|
197
|
+
], UpdateBlockDto.prototype, "driveTimeFromPrevious", void 0);
|
|
198
|
+
__decorate([
|
|
199
|
+
(0, nestjs_1.ApiProperty)({ type: Number, required: false }),
|
|
200
|
+
(0, class_validator_1.IsOptional)(),
|
|
201
|
+
(0, class_validator_1.IsInt)(),
|
|
202
|
+
(0, class_validator_1.IsPositive)(),
|
|
203
|
+
(0, class_transformer_1.Expose)(),
|
|
204
|
+
__metadata("design:type", Number)
|
|
205
|
+
], UpdateBlockDto.prototype, "driveTimeToNext", void 0);
|
|
190
206
|
//# sourceMappingURL=updateBlock.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updateBlock.dto.js","sourceRoot":"","sources":["../../../src/dto/block/updateBlock.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAAiD;AACjD,qDAWyB;AACzB,kEAA8D;AAC9D,8DAA0D;AAC1D,sEAAmE;AACnE,oEAAgE;AAChE,gEAA4D;AAC5D,gFAAiF;AACjF,sFAAkF;AAElF,MAAa,cAAc;
|
|
1
|
+
{"version":3,"file":"updateBlock.dto.js","sourceRoot":"","sources":["../../../src/dto/block/updateBlock.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,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, };
|