@more-life/types-more-life-nest 0.65.0 → 0.67.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.
@@ -8,30 +8,17 @@ export declare class CreateOptimizationDto {
8
8
  precedencePriorityMultiplier?: number;
9
9
  precedencePriorityOffset?: number;
10
10
  maximumPriority?: number;
11
- perDayOptimization?: boolean;
12
- perDayOptimizationSolveTime?: number;
13
11
  fairWorkloadPerTrip?: boolean;
14
- perDayFairWorkloadPerTrip?: boolean;
15
12
  fairWorkloadPerResource?: boolean;
16
- perDayFairWorkloadPerResource?: boolean;
17
13
  explanationEnabled?: boolean;
18
- perDayExplanationEnabled?: boolean;
19
14
  asapWeight: number;
20
- perDayAsapWeight: number;
21
15
  partialPlanning: boolean;
22
- perDayPartialPlanning: boolean;
23
16
  workloadSensitivity: number;
24
- perDayWorkloadSensitivity: number;
25
17
  workloadSpreadWeight: number;
26
- perDayWorkloadSpreadWeight: number;
27
18
  travelTimeWeight: number;
28
- perDayTravelTimeWeight: number;
29
19
  priorityWeight: number;
30
- perDayPriorityWeight: number;
31
20
  plannedWeight: number;
32
- perDayPlannedWeight: number;
33
21
  minimizeResourcesWeight: number;
34
- perDayMinimizeResourcesWeight: number;
35
22
  solverVersion: SolverVersionEnum;
36
23
  disciplineTagBudget: number;
37
24
  disciplineTagEnabled: boolean;
@@ -41,6 +28,11 @@ export declare class CreateOptimizationDto {
41
28
  minWorkTimePercent: number;
42
29
  adaptiveTargetPercentage: boolean;
43
30
  urgencyEnabled: boolean;
31
+ enableTherapyBalancing: boolean;
32
+ proximityPlanning: boolean;
33
+ proximityRadius: number;
34
+ proximityDistanceType: string;
35
+ proximityWeight: number;
44
36
  specificTargetPercentage: Record<DisciplineEnum, number>;
45
37
  static fromPlain(object: any): CreateOptimizationDto;
46
38
  }
@@ -21,7 +21,7 @@ class CreateOptimizationDto {
21
21
  return (0, convertAndValidate_1.convertAndValidate)(CreateOptimizationDto, object);
22
22
  }
23
23
  static _OPENAPI_METADATA_FACTORY() {
24
- return { week: { required: true, type: () => Number, maximum: 53, minimum: 1 }, year: { required: true, type: () => Number, minimum: 2022, maximum: 2099, minimum: 1 }, teamId: { required: true, type: () => String }, solveTime: { required: false, type: () => Number }, precedencePriorityMultiplier: { required: false, type: () => Number }, precedencePriorityOffset: { required: false, type: () => Number }, maximumPriority: { required: false, type: () => Number }, perDayOptimization: { required: false, type: () => Boolean }, perDayOptimizationSolveTime: { required: false, type: () => Number }, fairWorkloadPerTrip: { required: false, type: () => Boolean }, perDayFairWorkloadPerTrip: { required: false, type: () => Boolean }, fairWorkloadPerResource: { required: false, type: () => Boolean }, perDayFairWorkloadPerResource: { required: false, type: () => Boolean }, explanationEnabled: { required: false, type: () => Boolean }, perDayExplanationEnabled: { required: false, type: () => Boolean }, asapWeight: { required: true, type: () => Number }, perDayAsapWeight: { required: true, type: () => Number }, partialPlanning: { required: true, type: () => Boolean }, perDayPartialPlanning: { required: true, type: () => Boolean }, workloadSensitivity: { required: true, type: () => Number }, perDayWorkloadSensitivity: { required: true, type: () => Number }, workloadSpreadWeight: { required: true, type: () => Number }, perDayWorkloadSpreadWeight: { required: true, type: () => Number }, travelTimeWeight: { required: true, type: () => Number }, perDayTravelTimeWeight: { required: true, type: () => Number }, priorityWeight: { required: true, type: () => Number }, perDayPriorityWeight: { required: true, type: () => Number }, plannedWeight: { required: true, type: () => Number }, perDayPlannedWeight: { required: true, type: () => Number }, minimizeResourcesWeight: { required: true, type: () => Number }, perDayMinimizeResourcesWeight: { required: true, type: () => Number }, solverVersion: { required: true, enum: require("../../enum/solverVersion.enum").SolverVersionEnum, enum: Object.values(solverVersion_enum_1.SolverVersionEnum) }, disciplineTagBudget: { required: true, type: () => Number }, disciplineTagEnabled: { required: true, type: () => Boolean }, admissionPriorityOffset: { required: true, type: () => Number }, rolloverPriorityOffset: { required: true, type: () => Number }, enableConstraints: { required: true, type: () => Boolean }, minWorkTimePercent: { required: true, type: () => Number }, adaptiveTargetPercentage: { required: true, type: () => Boolean }, urgencyEnabled: { required: true, type: () => Boolean }, specificTargetPercentage: { required: true, type: () => Object } };
24
+ return { week: { required: true, type: () => Number, maximum: 53, minimum: 1 }, year: { required: true, type: () => Number, minimum: 2022, maximum: 2099, minimum: 1 }, teamId: { required: true, type: () => String }, solveTime: { required: false, type: () => Number }, precedencePriorityMultiplier: { required: false, type: () => Number }, precedencePriorityOffset: { required: false, type: () => Number }, maximumPriority: { required: false, type: () => Number }, fairWorkloadPerTrip: { required: false, type: () => Boolean }, fairWorkloadPerResource: { required: false, type: () => Boolean }, explanationEnabled: { required: false, type: () => Boolean }, asapWeight: { required: true, type: () => Number }, partialPlanning: { required: true, type: () => Boolean }, workloadSensitivity: { required: true, type: () => Number }, workloadSpreadWeight: { required: true, type: () => Number }, travelTimeWeight: { required: true, type: () => Number }, priorityWeight: { required: true, type: () => Number }, plannedWeight: { required: true, type: () => Number }, minimizeResourcesWeight: { required: true, type: () => Number }, solverVersion: { required: true, enum: require("../../enum/solverVersion.enum").SolverVersionEnum, enum: Object.values(solverVersion_enum_1.SolverVersionEnum) }, disciplineTagBudget: { required: true, type: () => Number }, disciplineTagEnabled: { required: true, type: () => Boolean }, admissionPriorityOffset: { required: true, type: () => Number }, rolloverPriorityOffset: { required: true, type: () => Number }, enableConstraints: { required: true, type: () => Boolean }, minWorkTimePercent: { required: true, type: () => Number }, adaptiveTargetPercentage: { required: true, type: () => Boolean }, urgencyEnabled: { required: true, type: () => Boolean }, enableTherapyBalancing: { required: true, type: () => Boolean }, proximityPlanning: { required: true, type: () => Boolean }, proximityRadius: { required: true, type: () => Number }, proximityDistanceType: { required: true, type: () => String }, proximityWeight: { required: true, type: () => Number }, specificTargetPercentage: { required: true, type: () => Object } };
25
25
  }
26
26
  }
27
27
  __decorate([
@@ -75,20 +75,6 @@ __decorate([
75
75
  (0, class_transformer_1.Expose)(),
76
76
  __metadata("design:type", Number)
77
77
  ], CreateOptimizationDto.prototype, "maximumPriority", void 0);
78
- __decorate([
79
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
80
- (0, class_validator_1.IsBoolean)(),
81
- (0, class_transformer_1.Expose)(),
82
- (0, class_validator_1.IsOptional)(),
83
- __metadata("design:type", Boolean)
84
- ], CreateOptimizationDto.prototype, "perDayOptimization", void 0);
85
- __decorate([
86
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
87
- (0, class_validator_1.IsNumber)(),
88
- (0, class_validator_1.IsOptional)(),
89
- (0, class_transformer_1.Expose)(),
90
- __metadata("design:type", Number)
91
- ], CreateOptimizationDto.prototype, "perDayOptimizationSolveTime", void 0);
92
78
  __decorate([
93
79
  (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
94
80
  (0, class_validator_1.IsBoolean)(),
@@ -96,13 +82,6 @@ __decorate([
96
82
  (0, class_transformer_1.Expose)(),
97
83
  __metadata("design:type", Boolean)
98
84
  ], CreateOptimizationDto.prototype, "fairWorkloadPerTrip", void 0);
99
- __decorate([
100
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
101
- (0, class_validator_1.IsBoolean)(),
102
- (0, class_validator_1.IsOptional)(),
103
- (0, class_transformer_1.Expose)(),
104
- __metadata("design:type", Boolean)
105
- ], CreateOptimizationDto.prototype, "perDayFairWorkloadPerTrip", void 0);
106
85
  __decorate([
107
86
  (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
108
87
  (0, class_validator_1.IsBoolean)(),
@@ -110,13 +89,6 @@ __decorate([
110
89
  (0, class_transformer_1.Expose)(),
111
90
  __metadata("design:type", Boolean)
112
91
  ], CreateOptimizationDto.prototype, "fairWorkloadPerResource", void 0);
113
- __decorate([
114
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
115
- (0, class_validator_1.IsBoolean)(),
116
- (0, class_validator_1.IsOptional)(),
117
- (0, class_transformer_1.Expose)(),
118
- __metadata("design:type", Boolean)
119
- ], CreateOptimizationDto.prototype, "perDayFairWorkloadPerResource", void 0);
120
92
  __decorate([
121
93
  (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
122
94
  (0, class_validator_1.IsBoolean)(),
@@ -124,13 +96,6 @@ __decorate([
124
96
  (0, class_transformer_1.Expose)(),
125
97
  __metadata("design:type", Boolean)
126
98
  ], CreateOptimizationDto.prototype, "explanationEnabled", void 0);
127
- __decorate([
128
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
129
- (0, class_validator_1.IsBoolean)(),
130
- (0, class_validator_1.IsOptional)(),
131
- (0, class_transformer_1.Expose)(),
132
- __metadata("design:type", Boolean)
133
- ], CreateOptimizationDto.prototype, "perDayExplanationEnabled", void 0);
134
99
  __decorate([
135
100
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
136
101
  (0, class_validator_1.IsNumber)(),
@@ -138,13 +103,6 @@ __decorate([
138
103
  (0, class_transformer_1.Expose)(),
139
104
  __metadata("design:type", Number)
140
105
  ], CreateOptimizationDto.prototype, "asapWeight", void 0);
141
- __decorate([
142
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
143
- (0, class_validator_1.IsNumber)(),
144
- (0, class_validator_1.IsOptional)(),
145
- (0, class_transformer_1.Expose)(),
146
- __metadata("design:type", Number)
147
- ], CreateOptimizationDto.prototype, "perDayAsapWeight", void 0);
148
106
  __decorate([
149
107
  (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
150
108
  (0, class_validator_1.IsBoolean)(),
@@ -152,13 +110,6 @@ __decorate([
152
110
  (0, class_transformer_1.Expose)(),
153
111
  __metadata("design:type", Boolean)
154
112
  ], CreateOptimizationDto.prototype, "partialPlanning", void 0);
155
- __decorate([
156
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
157
- (0, class_validator_1.IsBoolean)(),
158
- (0, class_validator_1.IsOptional)(),
159
- (0, class_transformer_1.Expose)(),
160
- __metadata("design:type", Boolean)
161
- ], CreateOptimizationDto.prototype, "perDayPartialPlanning", void 0);
162
113
  __decorate([
163
114
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
164
115
  (0, class_validator_1.IsNumber)(),
@@ -166,13 +117,6 @@ __decorate([
166
117
  (0, class_transformer_1.Expose)(),
167
118
  __metadata("design:type", Number)
168
119
  ], CreateOptimizationDto.prototype, "workloadSensitivity", void 0);
169
- __decorate([
170
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
171
- (0, class_validator_1.IsNumber)(),
172
- (0, class_validator_1.IsOptional)(),
173
- (0, class_transformer_1.Expose)(),
174
- __metadata("design:type", Number)
175
- ], CreateOptimizationDto.prototype, "perDayWorkloadSensitivity", void 0);
176
120
  __decorate([
177
121
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
178
122
  (0, class_validator_1.IsNumber)(),
@@ -180,13 +124,6 @@ __decorate([
180
124
  (0, class_transformer_1.Expose)(),
181
125
  __metadata("design:type", Number)
182
126
  ], CreateOptimizationDto.prototype, "workloadSpreadWeight", void 0);
183
- __decorate([
184
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
185
- (0, class_validator_1.IsNumber)(),
186
- (0, class_validator_1.IsOptional)(),
187
- (0, class_transformer_1.Expose)(),
188
- __metadata("design:type", Number)
189
- ], CreateOptimizationDto.prototype, "perDayWorkloadSpreadWeight", void 0);
190
127
  __decorate([
191
128
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
192
129
  (0, class_validator_1.IsNumber)(),
@@ -194,13 +131,6 @@ __decorate([
194
131
  (0, class_transformer_1.Expose)(),
195
132
  __metadata("design:type", Number)
196
133
  ], CreateOptimizationDto.prototype, "travelTimeWeight", void 0);
197
- __decorate([
198
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
199
- (0, class_validator_1.IsNumber)(),
200
- (0, class_validator_1.IsOptional)(),
201
- (0, class_transformer_1.Expose)(),
202
- __metadata("design:type", Number)
203
- ], CreateOptimizationDto.prototype, "perDayTravelTimeWeight", void 0);
204
134
  __decorate([
205
135
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
206
136
  (0, class_validator_1.IsNumber)(),
@@ -208,13 +138,6 @@ __decorate([
208
138
  (0, class_transformer_1.Expose)(),
209
139
  __metadata("design:type", Number)
210
140
  ], CreateOptimizationDto.prototype, "priorityWeight", void 0);
211
- __decorate([
212
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
213
- (0, class_validator_1.IsNumber)(),
214
- (0, class_validator_1.IsOptional)(),
215
- (0, class_transformer_1.Expose)(),
216
- __metadata("design:type", Number)
217
- ], CreateOptimizationDto.prototype, "perDayPriorityWeight", void 0);
218
141
  __decorate([
219
142
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
220
143
  (0, class_validator_1.IsNumber)(),
@@ -222,13 +145,6 @@ __decorate([
222
145
  (0, class_transformer_1.Expose)(),
223
146
  __metadata("design:type", Number)
224
147
  ], CreateOptimizationDto.prototype, "plannedWeight", void 0);
225
- __decorate([
226
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
227
- (0, class_validator_1.IsNumber)(),
228
- (0, class_validator_1.IsOptional)(),
229
- (0, class_transformer_1.Expose)(),
230
- __metadata("design:type", Number)
231
- ], CreateOptimizationDto.prototype, "perDayPlannedWeight", void 0);
232
148
  __decorate([
233
149
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
234
150
  (0, class_validator_1.IsNumber)(),
@@ -236,13 +152,6 @@ __decorate([
236
152
  (0, class_transformer_1.Expose)(),
237
153
  __metadata("design:type", Number)
238
154
  ], CreateOptimizationDto.prototype, "minimizeResourcesWeight", void 0);
239
- __decorate([
240
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
241
- (0, class_validator_1.IsNumber)(),
242
- (0, class_validator_1.IsOptional)(),
243
- (0, class_transformer_1.Expose)(),
244
- __metadata("design:type", Number)
245
- ], CreateOptimizationDto.prototype, "perDayMinimizeResourcesWeight", void 0);
246
155
  __decorate([
247
156
  (0, nestjs_1.ApiProperty)({
248
157
  enum: solverVersion_enum_1.SolverVersionEnum,
@@ -336,6 +245,41 @@ __decorate([
336
245
  (0, class_transformer_1.Expose)(),
337
246
  __metadata("design:type", Boolean)
338
247
  ], CreateOptimizationDto.prototype, "urgencyEnabled", void 0);
248
+ __decorate([
249
+ (0, nestjs_1.ApiProperty)({ type: Boolean, required: false, description: 'Enable therapy balancing feature for the optimization', default: false }),
250
+ (0, class_validator_1.IsBoolean)(),
251
+ (0, class_validator_1.IsOptional)(),
252
+ (0, class_transformer_1.Expose)(),
253
+ __metadata("design:type", Boolean)
254
+ ], CreateOptimizationDto.prototype, "enableTherapyBalancing", void 0);
255
+ __decorate([
256
+ (0, nestjs_1.ApiProperty)({ type: Boolean, required: false, description: 'Enable proximity planning feature for the optimization', default: false }),
257
+ (0, class_validator_1.IsBoolean)(),
258
+ (0, class_validator_1.IsOptional)(),
259
+ (0, class_transformer_1.Expose)(),
260
+ __metadata("design:type", Boolean)
261
+ ], CreateOptimizationDto.prototype, "proximityPlanning", void 0);
262
+ __decorate([
263
+ (0, nestjs_1.ApiProperty)({ type: Number, required: false, description: 'Proximity radius in meters', default: 500 }),
264
+ (0, class_validator_1.IsNumber)(),
265
+ (0, class_validator_1.IsOptional)(),
266
+ (0, class_transformer_1.Expose)(),
267
+ __metadata("design:type", Number)
268
+ ], CreateOptimizationDto.prototype, "proximityRadius", void 0);
269
+ __decorate([
270
+ (0, nestjs_1.ApiProperty)({ type: String, required: false, description: 'Proximity distance type (REAL or MANHATTAN)', default: 'REAL' }),
271
+ (0, class_validator_1.IsString)(),
272
+ (0, class_validator_1.IsOptional)(),
273
+ (0, class_transformer_1.Expose)(),
274
+ __metadata("design:type", String)
275
+ ], CreateOptimizationDto.prototype, "proximityDistanceType", void 0);
276
+ __decorate([
277
+ (0, nestjs_1.ApiProperty)({ type: Number, required: false, description: 'Weight for proximity optimization', default: 10 }),
278
+ (0, class_validator_1.IsNumber)(),
279
+ (0, class_validator_1.IsOptional)(),
280
+ (0, class_transformer_1.Expose)(),
281
+ __metadata("design:type", Number)
282
+ ], CreateOptimizationDto.prototype, "proximityWeight", void 0);
339
283
  __decorate([
340
284
  (0, nestjs_1.ApiProperty)({ type: Object, required: false }),
341
285
  (0, class_validator_1.IsOptional)(),
@@ -1 +1 @@
1
- {"version":3,"file":"createOptimization.dto.js","sourceRoot":"","sources":["../../../src/dto/optimization/createOptimization.dto.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"createOptimization.dto.js","sourceRoot":"","sources":["../../../src/dto/optimization/createOptimization.dto.ts"],"names":[],"mappings":"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"}
@@ -25,32 +25,17 @@ export declare class OptimizationDto extends OptimizationDto_base {
25
25
  precedencePriorityMultiplier?: number;
26
26
  precedencePriorityOffset?: number;
27
27
  maximumPriority?: number;
28
- perDayOptimization: boolean;
29
- perDayOptimizationSolveTime?: number;
30
- perDaySolverIds: string[];
31
28
  fairWorkloadPerTrip: boolean;
32
- perDayFairWorkloadPerTrip: boolean;
33
29
  fairWorkloadPerResource: boolean;
34
- perDayFairWorkloadPerResource: boolean;
35
30
  explanationEnabled: boolean;
36
- perDayExplanationEnabled: boolean;
37
31
  asapWeight: number;
38
- perDayAsapWeight: number;
39
32
  partialPlanning: boolean;
40
- perDayPartialPlanning: boolean;
41
33
  workloadSensitivity: number;
42
- perDayWorkloadSensitivity: number;
43
34
  workloadSpreadWeight: number;
44
- perDayWorkloadSpreadWeight: number;
45
35
  travelTimeWeight: number;
46
- perDayTravelTimeWeight: number;
47
36
  priorityWeight: number;
48
- perDayPriorityWeight: number;
49
37
  plannedWeight: number;
50
- perDayPlannedWeight: number;
51
38
  minimizeResourcesWeight: number;
52
- perDayMinimizeResourcesWeight: number;
53
- perDaySolverStatus: SolverStatusEnum[];
54
39
  disciplineTagBudget: number;
55
40
  disciplineTagEnabled: boolean;
56
41
  admissionPriorityOffset: number;
@@ -59,6 +44,11 @@ export declare class OptimizationDto extends OptimizationDto_base {
59
44
  minWorkTimePercent: number;
60
45
  adaptiveTargetPercentage: boolean;
61
46
  urgencyEnabled: boolean;
47
+ enableTherapyBalancing: boolean;
48
+ proximityPlanning: boolean;
49
+ proximityRadius: number;
50
+ proximityDistanceType: string;
51
+ proximityWeight: number;
62
52
  specificTargetPercentage: Record<DisciplineEnum, number>;
63
53
  requestedAt: string;
64
54
  static fromEntity(entity: any): OptimizationDto;
@@ -24,7 +24,7 @@ class OptimizationDto extends (0, base_dto_1.BaseDto)(optimizationEmbedded_dto_1
24
24
  return (0, convertAndValidate_1.convertAndValidate)(OptimizationDto, entity);
25
25
  }
26
26
  static _OPENAPI_METADATA_FACTORY() {
27
- return { id: { required: true, type: () => String }, week: { required: true, type: () => Number }, year: { required: true, type: () => Number }, solverStatus: { required: true, enum: require("../../enum/solverStatus.enum").SolverStatusEnum }, status: { required: true, enum: require("../../enum/optimizationStatus.enum").OptimizationStatusEnum }, solverVersion: { required: true, enum: require("../../enum/solverVersion.enum").SolverVersionEnum }, solverId: { required: true, type: () => String }, teamId: { required: true, type: () => String }, errorMessage: { required: false, type: () => String }, from: { required: true, type: () => String }, to: { required: true, type: () => String }, hasConstraintViolations: { required: true, type: () => Boolean }, solveTime: { required: false, type: () => Number }, precedencePriorityMultiplier: { required: false, type: () => Number }, precedencePriorityOffset: { required: false, type: () => Number }, maximumPriority: { required: false, type: () => Number }, perDayOptimization: { required: true, type: () => Boolean }, perDayOptimizationSolveTime: { required: false, type: () => Number }, perDaySolverIds: { required: true, type: () => [String] }, fairWorkloadPerTrip: { required: true, type: () => Boolean }, perDayFairWorkloadPerTrip: { required: true, type: () => Boolean }, fairWorkloadPerResource: { required: true, type: () => Boolean }, perDayFairWorkloadPerResource: { required: true, type: () => Boolean }, explanationEnabled: { required: true, type: () => Boolean }, perDayExplanationEnabled: { required: true, type: () => Boolean }, asapWeight: { required: true, type: () => Number }, perDayAsapWeight: { required: true, type: () => Number }, partialPlanning: { required: true, type: () => Boolean }, perDayPartialPlanning: { required: true, type: () => Boolean }, workloadSensitivity: { required: true, type: () => Number }, perDayWorkloadSensitivity: { required: true, type: () => Number }, workloadSpreadWeight: { required: true, type: () => Number }, perDayWorkloadSpreadWeight: { required: true, type: () => Number }, travelTimeWeight: { required: true, type: () => Number }, perDayTravelTimeWeight: { required: true, type: () => Number }, priorityWeight: { required: true, type: () => Number }, perDayPriorityWeight: { required: true, type: () => Number }, plannedWeight: { required: true, type: () => Number }, perDayPlannedWeight: { required: true, type: () => Number }, minimizeResourcesWeight: { required: true, type: () => Number }, perDayMinimizeResourcesWeight: { required: true, type: () => Number }, perDaySolverStatus: { required: true, enum: require("../../enum/solverStatus.enum").SolverStatusEnum, isArray: true }, disciplineTagBudget: { required: true, type: () => Number }, disciplineTagEnabled: { required: true, type: () => Boolean }, admissionPriorityOffset: { required: true, type: () => Number }, rolloverPriorityOffset: { required: true, type: () => Number }, enableConstraints: { required: true, type: () => Boolean }, minWorkTimePercent: { required: true, type: () => Number }, adaptiveTargetPercentage: { required: true, type: () => Boolean }, urgencyEnabled: { required: true, type: () => Boolean }, specificTargetPercentage: { required: true, type: () => Object }, requestedAt: { required: true, type: () => String } };
27
+ return { id: { required: true, type: () => String }, week: { required: true, type: () => Number }, year: { required: true, type: () => Number }, solverStatus: { required: true, enum: require("../../enum/solverStatus.enum").SolverStatusEnum }, status: { required: true, enum: require("../../enum/optimizationStatus.enum").OptimizationStatusEnum }, solverVersion: { required: true, enum: require("../../enum/solverVersion.enum").SolverVersionEnum }, solverId: { required: true, type: () => String }, teamId: { required: true, type: () => String }, errorMessage: { required: false, type: () => String }, from: { required: true, type: () => String }, to: { required: true, type: () => String }, hasConstraintViolations: { required: true, type: () => Boolean }, solveTime: { required: false, type: () => Number }, precedencePriorityMultiplier: { required: false, type: () => Number }, precedencePriorityOffset: { required: false, type: () => Number }, maximumPriority: { required: false, type: () => Number }, fairWorkloadPerTrip: { required: true, type: () => Boolean }, fairWorkloadPerResource: { required: true, type: () => Boolean }, explanationEnabled: { required: true, type: () => Boolean }, asapWeight: { required: true, type: () => Number }, partialPlanning: { required: true, type: () => Boolean }, workloadSensitivity: { required: true, type: () => Number }, workloadSpreadWeight: { required: true, type: () => Number }, travelTimeWeight: { required: true, type: () => Number }, priorityWeight: { required: true, type: () => Number }, plannedWeight: { required: true, type: () => Number }, minimizeResourcesWeight: { required: true, type: () => Number }, disciplineTagBudget: { required: true, type: () => Number }, disciplineTagEnabled: { required: true, type: () => Boolean }, admissionPriorityOffset: { required: true, type: () => Number }, rolloverPriorityOffset: { required: true, type: () => Number }, enableConstraints: { required: true, type: () => Boolean }, minWorkTimePercent: { required: true, type: () => Number }, adaptiveTargetPercentage: { required: true, type: () => Boolean }, urgencyEnabled: { required: true, type: () => Boolean }, enableTherapyBalancing: { required: true, type: () => Boolean }, proximityPlanning: { required: true, type: () => Boolean }, proximityRadius: { required: true, type: () => Number }, proximityDistanceType: { required: true, type: () => String }, proximityWeight: { required: true, type: () => Number }, specificTargetPercentage: { required: true, type: () => Object }, requestedAt: { required: true, type: () => String } };
28
28
  }
29
29
  }
30
30
  __decorate([
@@ -119,141 +119,61 @@ __decorate([
119
119
  (0, class_transformer_1.Expose)(),
120
120
  __metadata("design:type", Number)
121
121
  ], OptimizationDto.prototype, "maximumPriority", void 0);
122
- __decorate([
123
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
124
- (0, class_transformer_1.Expose)(),
125
- __metadata("design:type", Boolean)
126
- ], OptimizationDto.prototype, "perDayOptimization", void 0);
127
- __decorate([
128
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
129
- (0, class_transformer_1.Expose)(),
130
- __metadata("design:type", Number)
131
- ], OptimizationDto.prototype, "perDayOptimizationSolveTime", void 0);
132
- __decorate([
133
- (0, nestjs_1.ApiProperty)({ type: String, required: false, isArray: true }),
134
- (0, class_transformer_1.Expose)(),
135
- __metadata("design:type", Array)
136
- ], OptimizationDto.prototype, "perDaySolverIds", void 0);
137
122
  __decorate([
138
123
  (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
139
124
  (0, class_transformer_1.Expose)(),
140
125
  __metadata("design:type", Boolean)
141
126
  ], OptimizationDto.prototype, "fairWorkloadPerTrip", void 0);
142
- __decorate([
143
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
144
- (0, class_transformer_1.Expose)(),
145
- __metadata("design:type", Boolean)
146
- ], OptimizationDto.prototype, "perDayFairWorkloadPerTrip", void 0);
147
127
  __decorate([
148
128
  (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
149
129
  (0, class_transformer_1.Expose)(),
150
130
  __metadata("design:type", Boolean)
151
131
  ], OptimizationDto.prototype, "fairWorkloadPerResource", void 0);
152
- __decorate([
153
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
154
- (0, class_transformer_1.Expose)(),
155
- __metadata("design:type", Boolean)
156
- ], OptimizationDto.prototype, "perDayFairWorkloadPerResource", void 0);
157
132
  __decorate([
158
133
  (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
159
134
  (0, class_transformer_1.Expose)(),
160
135
  __metadata("design:type", Boolean)
161
136
  ], OptimizationDto.prototype, "explanationEnabled", void 0);
162
- __decorate([
163
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
164
- (0, class_transformer_1.Expose)(),
165
- __metadata("design:type", Boolean)
166
- ], OptimizationDto.prototype, "perDayExplanationEnabled", void 0);
167
137
  __decorate([
168
138
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
169
139
  (0, class_transformer_1.Expose)(),
170
140
  __metadata("design:type", Number)
171
141
  ], OptimizationDto.prototype, "asapWeight", void 0);
172
- __decorate([
173
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
174
- (0, class_transformer_1.Expose)(),
175
- __metadata("design:type", Number)
176
- ], OptimizationDto.prototype, "perDayAsapWeight", void 0);
177
142
  __decorate([
178
143
  (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
179
144
  (0, class_transformer_1.Expose)(),
180
145
  __metadata("design:type", Boolean)
181
146
  ], OptimizationDto.prototype, "partialPlanning", void 0);
182
- __decorate([
183
- (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
184
- (0, class_transformer_1.Expose)(),
185
- __metadata("design:type", Boolean)
186
- ], OptimizationDto.prototype, "perDayPartialPlanning", void 0);
187
147
  __decorate([
188
148
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
189
149
  (0, class_transformer_1.Expose)(),
190
150
  __metadata("design:type", Number)
191
151
  ], OptimizationDto.prototype, "workloadSensitivity", void 0);
192
- __decorate([
193
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
194
- (0, class_transformer_1.Expose)(),
195
- __metadata("design:type", Number)
196
- ], OptimizationDto.prototype, "perDayWorkloadSensitivity", void 0);
197
152
  __decorate([
198
153
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
199
154
  (0, class_transformer_1.Expose)(),
200
155
  __metadata("design:type", Number)
201
156
  ], OptimizationDto.prototype, "workloadSpreadWeight", void 0);
202
- __decorate([
203
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
204
- (0, class_transformer_1.Expose)(),
205
- __metadata("design:type", Number)
206
- ], OptimizationDto.prototype, "perDayWorkloadSpreadWeight", void 0);
207
157
  __decorate([
208
158
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
209
159
  (0, class_transformer_1.Expose)(),
210
160
  __metadata("design:type", Number)
211
161
  ], OptimizationDto.prototype, "travelTimeWeight", void 0);
212
- __decorate([
213
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
214
- (0, class_transformer_1.Expose)(),
215
- __metadata("design:type", Number)
216
- ], OptimizationDto.prototype, "perDayTravelTimeWeight", void 0);
217
162
  __decorate([
218
163
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
219
164
  (0, class_transformer_1.Expose)(),
220
165
  __metadata("design:type", Number)
221
166
  ], OptimizationDto.prototype, "priorityWeight", void 0);
222
- __decorate([
223
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
224
- (0, class_transformer_1.Expose)(),
225
- __metadata("design:type", Number)
226
- ], OptimizationDto.prototype, "perDayPriorityWeight", void 0);
227
167
  __decorate([
228
168
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
229
169
  (0, class_transformer_1.Expose)(),
230
170
  __metadata("design:type", Number)
231
171
  ], OptimizationDto.prototype, "plannedWeight", void 0);
232
- __decorate([
233
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
234
- (0, class_transformer_1.Expose)(),
235
- __metadata("design:type", Number)
236
- ], OptimizationDto.prototype, "perDayPlannedWeight", void 0);
237
172
  __decorate([
238
173
  (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
239
174
  (0, class_transformer_1.Expose)(),
240
175
  __metadata("design:type", Number)
241
176
  ], OptimizationDto.prototype, "minimizeResourcesWeight", void 0);
242
- __decorate([
243
- (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
244
- (0, class_transformer_1.Expose)(),
245
- __metadata("design:type", Number)
246
- ], OptimizationDto.prototype, "perDayMinimizeResourcesWeight", void 0);
247
- __decorate([
248
- (0, nestjs_1.ApiProperty)({
249
- enum: solverStatus_enum_1.SolverStatusEnum,
250
- enumName: 'solver_status',
251
- required: false,
252
- isArray: true,
253
- }),
254
- (0, class_transformer_1.Expose)(),
255
- __metadata("design:type", Array)
256
- ], OptimizationDto.prototype, "perDaySolverStatus", void 0);
257
177
  __decorate([
258
178
  (0, nestjs_1.ApiProperty)({
259
179
  type: Number,
@@ -312,6 +232,31 @@ __decorate([
312
232
  (0, class_transformer_1.Expose)(),
313
233
  __metadata("design:type", Boolean)
314
234
  ], OptimizationDto.prototype, "urgencyEnabled", void 0);
235
+ __decorate([
236
+ (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
237
+ (0, class_transformer_1.Expose)(),
238
+ __metadata("design:type", Boolean)
239
+ ], OptimizationDto.prototype, "enableTherapyBalancing", void 0);
240
+ __decorate([
241
+ (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
242
+ (0, class_transformer_1.Expose)(),
243
+ __metadata("design:type", Boolean)
244
+ ], OptimizationDto.prototype, "proximityPlanning", void 0);
245
+ __decorate([
246
+ (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
247
+ (0, class_transformer_1.Expose)(),
248
+ __metadata("design:type", Number)
249
+ ], OptimizationDto.prototype, "proximityRadius", void 0);
250
+ __decorate([
251
+ (0, nestjs_1.ApiProperty)({ type: String, required: false }),
252
+ (0, class_transformer_1.Expose)(),
253
+ __metadata("design:type", String)
254
+ ], OptimizationDto.prototype, "proximityDistanceType", void 0);
255
+ __decorate([
256
+ (0, nestjs_1.ApiProperty)({ type: Number, required: false }),
257
+ (0, class_transformer_1.Expose)(),
258
+ __metadata("design:type", Number)
259
+ ], OptimizationDto.prototype, "proximityWeight", void 0);
315
260
  __decorate([
316
261
  (0, nestjs_1.ApiProperty)({ type: Object, required: false, isArray: false }),
317
262
  (0, class_transformer_1.Expose)(),
@@ -1 +1 @@
1
- {"version":3,"file":"optimization.dto.js","sourceRoot":"","sources":["../../../src/dto/optimization/optimization.dto.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"optimization.dto.js","sourceRoot":"","sources":["../../../src/dto/optimization/optimization.dto.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ import { UpdateTherapySummaryDto } from "./updateTherapySummary.dto";
2
+ declare class BulkUpdateTherapySummaryItemDto extends UpdateTherapySummaryDto {
3
+ id: string;
4
+ }
5
+ export declare class BulkUpdateTherapySummaryDto {
6
+ items: BulkUpdateTherapySummaryItemDto[];
7
+ static fromPlain(object: any): BulkUpdateTherapySummaryDto;
8
+ }
9
+ export {};
@@ -0,0 +1,47 @@
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.BulkUpdateTherapySummaryDto = void 0;
13
+ const openapi = require("@nestjs/swagger");
14
+ const updateTherapySummary_dto_1 = require("./updateTherapySummary.dto");
15
+ const nestjs_1 = require("../../nestjs");
16
+ const class_transformer_1 = require("class-transformer");
17
+ const convertAndValidate_1 = require("../../util/convertAndValidate");
18
+ class BulkUpdateTherapySummaryItemDto extends updateTherapySummary_dto_1.UpdateTherapySummaryDto {
19
+ static _OPENAPI_METADATA_FACTORY() {
20
+ return { id: { required: true, type: () => String } };
21
+ }
22
+ }
23
+ __decorate([
24
+ (0, nestjs_1.ApiProperty)({ type: String, format: 'uuid', required: true }),
25
+ (0, class_transformer_1.Expose)(),
26
+ __metadata("design:type", String)
27
+ ], BulkUpdateTherapySummaryItemDto.prototype, "id", void 0);
28
+ class BulkUpdateTherapySummaryDto {
29
+ static fromPlain(object) {
30
+ return (0, convertAndValidate_1.convertAndValidate)(BulkUpdateTherapySummaryDto, object);
31
+ }
32
+ static _OPENAPI_METADATA_FACTORY() {
33
+ return { items: { required: true, type: () => [BulkUpdateTherapySummaryItemDto] } };
34
+ }
35
+ }
36
+ __decorate([
37
+ (0, nestjs_1.ApiProperty)({
38
+ isArray: true,
39
+ type: BulkUpdateTherapySummaryItemDto,
40
+ required: true,
41
+ }),
42
+ (0, class_transformer_1.Type)(() => BulkUpdateTherapySummaryItemDto),
43
+ (0, class_transformer_1.Expose)(),
44
+ __metadata("design:type", Array)
45
+ ], BulkUpdateTherapySummaryDto.prototype, "items", void 0);
46
+ exports.BulkUpdateTherapySummaryDto = BulkUpdateTherapySummaryDto;
47
+ //# sourceMappingURL=bulkUpdateTherapySummary.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bulkUpdateTherapySummary.dto.js","sourceRoot":"","sources":["../../../src/dto/therapySummary/bulkUpdateTherapySummary.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yEAAmE;AACnE,yCAAyC;AACzC,yDAA+C;AAC/C,sEAAiE;AAEjE,MAAM,+BAAgC,SAAQ,kDAAuB;;;;CAIpE;AAHG;IAAC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;2DACG;AAGhB,MAAa,2BAA2B;IAU7B,MAAM,CAAC,SAAS,CAAC,MAAW;QAC/B,OAAO,IAAA,uCAAkB,EAAC,2BAA2B,EAAE,MAAM,CAAC,CAAC;IACnE,CAAC;;;;CACJ;AAZG;IAAC,IAAA,oBAAW,EAAC;QACT,OAAO,EAAE,IAAI;QACb,IAAI,EAAE,+BAA+B;QACrC,QAAQ,EAAE,IAAI;KACjB,CAAC;IACD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,+BAA+B,CAAC;IAC3C,IAAA,0BAAM,GAAE;;0DACiC;AAR9C,kEAaC"}