@likewatt/models 1.37.0 → 1.38.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/core/Scenario.d.ts +1 -0
- package/dist/core/Scenario.js +7 -0
- package/package.json +1 -1
package/dist/core/Scenario.d.ts
CHANGED
|
@@ -131,6 +131,7 @@ export declare class ConfigSite {
|
|
|
131
131
|
demandMultiplierSlots?: DemandMultiplierSlot[];
|
|
132
132
|
demandMultiplierUnit?: string;
|
|
133
133
|
distributionKey?: DistributionKey[];
|
|
134
|
+
distribKeys?: string;
|
|
134
135
|
priorityStage?: number;
|
|
135
136
|
rateOfGrowth?: RateOfGrowth[];
|
|
136
137
|
settings: Record<string, unknown>;
|
package/dist/core/Scenario.js
CHANGED
|
@@ -371,6 +371,13 @@ __decorate([
|
|
|
371
371
|
(0, class_validator_1.IsArray)(),
|
|
372
372
|
__metadata("design:type", Array)
|
|
373
373
|
], ConfigSite.prototype, "distributionKey", void 0);
|
|
374
|
+
__decorate([
|
|
375
|
+
(0, swagger_1.ApiPropertyOptional)({ example: 1 }),
|
|
376
|
+
(0, mongoose_1.Prop)(),
|
|
377
|
+
(0, class_validator_1.IsOptional)(),
|
|
378
|
+
(0, class_validator_1.IsString)(),
|
|
379
|
+
__metadata("design:type", String)
|
|
380
|
+
], ConfigSite.prototype, "distribKeys", void 0);
|
|
374
381
|
__decorate([
|
|
375
382
|
(0, swagger_1.ApiPropertyOptional)({ example: 1 }),
|
|
376
383
|
(0, mongoose_1.Prop)(),
|