@likewatt/models 1.0.27 → 1.0.29
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/ScenarioDefaultValue.d.ts +94 -0
- package/dist/core/ScenarioDefaultValue.js +238 -0
- package/dist/core/internal/battery-params.d.ts +23 -0
- package/dist/core/internal/battery-params.js +94 -0
- package/dist/core/internal/conversion-params.d.ts +20 -0
- package/dist/core/internal/conversion-params.js +76 -0
- package/dist/core/internal/default-ppa-tarif.d.ts +14 -0
- package/dist/core/internal/default-ppa-tarif.js +40 -0
- package/dist/core/internal/ecs-params.d.ts +21 -0
- package/dist/core/internal/ecs-params.js +82 -0
- package/dist/core/internal/electrolyse-params.d.ts +21 -0
- package/dist/core/internal/electrolyse-params.js +82 -0
- package/dist/core/internal/energy-inflation-rate.d.ts +14 -0
- package/dist/core/internal/energy-inflation-rate.js +40 -0
- package/dist/core/internal/fuel-cell-params.d.ts +23 -0
- package/dist/core/internal/fuel-cell-params.js +94 -0
- package/dist/core/internal/generator-params.d.ts +23 -0
- package/dist/core/internal/generator-params.js +94 -0
- package/dist/core/internal/grid-params.d.ts +18 -0
- package/dist/core/internal/grid-params.js +113 -0
- package/dist/core/internal/h2-storage-params.d.ts +21 -0
- package/dist/core/internal/h2-storage-params.js +82 -0
- package/dist/core/internal/optimization-params.d.ts +17 -0
- package/dist/core/internal/optimization-params.js +58 -0
- package/dist/core/internal/power-cost-config.d.ts +16 -0
- package/dist/core/internal/power-cost-config.js +52 -0
- package/dist/core/internal/pv-params.d.ts +38 -0
- package/dist/core/internal/pv-params.js +227 -0
- package/dist/core/internal/pv2-paramsSchema.d.ts +48 -0
- package/dist/core/internal/pv2-paramsSchema.js +234 -0
- package/dist/core/internal/rate-of-growth-params.d.ts +14 -0
- package/dist/core/internal/rate-of-growth-params.js +40 -0
- package/dist/core/internal/scenario-params.d.ts +18 -0
- package/dist/core/internal/scenario-params.js +64 -0
- package/dist/core/internal/station-params.d.ts +12 -0
- package/dist/core/internal/station-params.js +28 -0
- package/dist/core/internal/thermal-storage-params.d.ts +20 -0
- package/dist/core/internal/thermal-storage-params.js +76 -0
- package/dist/core/internal/tracker.d.ts +18 -0
- package/dist/core/internal/tracker.js +62 -0
- package/dist/core/internal/vs-params.d.ts +19 -0
- package/dist/core/internal/vs-params.js +70 -0
- package/dist/core/internal/wind-turbine-params.d.ts +29 -0
- package/dist/core/internal/wind-turbine-params.js +130 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Types, Document } from 'mongoose';
|
|
2
|
+
import { DefaultPPATarif } from './internal/default-ppa-tarif';
|
|
3
|
+
import { PowerCostConfig } from './internal/power-cost-config';
|
|
4
|
+
import { BatteryParams } from './internal/battery-params';
|
|
5
|
+
import { ConversionParams } from './internal/conversion-params';
|
|
6
|
+
import { FuelCellParams } from './internal/fuel-cell-params';
|
|
7
|
+
import { GeneratorParams } from './internal/generator-params';
|
|
8
|
+
import { GridParams } from './internal/grid-params';
|
|
9
|
+
import { PVParams } from './internal/pv-params';
|
|
10
|
+
import { PV2Params } from './internal/pv2-paramsSchema';
|
|
11
|
+
import { VSParams } from './internal/vs-params';
|
|
12
|
+
import { WindTurbineParams } from './internal/wind-turbine-params';
|
|
13
|
+
import { ElectrolyseParams } from './internal/electrolyse-params';
|
|
14
|
+
import { ECSParams } from './internal/ecs-params';
|
|
15
|
+
import { H2StorageParams } from './internal/h2-storage-params';
|
|
16
|
+
import { RateOfGrowth } from './internal/rate-of-growth-params';
|
|
17
|
+
import { ScenarioParams } from './internal/scenario-params';
|
|
18
|
+
import { StationParams } from './internal/station-params';
|
|
19
|
+
import { ThermalStorageParams } from './internal/thermal-storage-params';
|
|
20
|
+
import { OptimizationParams } from './internal/optimization-params';
|
|
21
|
+
export declare enum FinancingType {
|
|
22
|
+
INVESTMENT = "Investissement",
|
|
23
|
+
LEASING = "Location",
|
|
24
|
+
PPA = "PPA"
|
|
25
|
+
}
|
|
26
|
+
export declare enum TrackerType {
|
|
27
|
+
OFF = "OFF",
|
|
28
|
+
SINGLE_AXIS = "SINGLE_AXIS",
|
|
29
|
+
DUAL_AXIS = "DUAL_AXIS"
|
|
30
|
+
}
|
|
31
|
+
export declare enum UseCase {
|
|
32
|
+
AOVS = "AOVS",
|
|
33
|
+
AUTOCONSOMMATION = "AUTOCONSOMMATION",
|
|
34
|
+
VENTE_TOTALE = "VENTE_TOTALE"
|
|
35
|
+
}
|
|
36
|
+
export declare enum ConsumptionReference {
|
|
37
|
+
REFERENCE = "REFERENCE",
|
|
38
|
+
CUSTOM = "CUSTOM"
|
|
39
|
+
}
|
|
40
|
+
export declare class ScenarioDefaultValue {
|
|
41
|
+
readonly _id: Types.ObjectId;
|
|
42
|
+
defaultPPATarif: DefaultPPATarif;
|
|
43
|
+
VERSION: number;
|
|
44
|
+
version: number;
|
|
45
|
+
SURPLUS_COSTS: PowerCostConfig[];
|
|
46
|
+
FULL_PRODUCTION_COSTS: PowerCostConfig[];
|
|
47
|
+
paramsBattery: BatteryParams;
|
|
48
|
+
paramsConversion: ConversionParams;
|
|
49
|
+
paramsFuelCell: FuelCellParams;
|
|
50
|
+
paramsGen: GeneratorParams;
|
|
51
|
+
paramsGrid: GridParams;
|
|
52
|
+
paramsOptimization: OptimizationParams;
|
|
53
|
+
paramsPV: PVParams;
|
|
54
|
+
paramsPV2: PV2Params;
|
|
55
|
+
paramsVS: VSParams;
|
|
56
|
+
paramsWindTurbine: WindTurbineParams;
|
|
57
|
+
paramsElectrolyse: ElectrolyseParams;
|
|
58
|
+
paramsStockageH2: H2StorageParams;
|
|
59
|
+
paramsECS: ECSParams;
|
|
60
|
+
paramsStockageThermal: ThermalStorageParams;
|
|
61
|
+
paramsStation: StationParams;
|
|
62
|
+
paramsScenario: ScenarioParams;
|
|
63
|
+
financingType?: string;
|
|
64
|
+
scenarioConfigSite?: {
|
|
65
|
+
rateOfGrowth: RateOfGrowth[];
|
|
66
|
+
demandMultiplierSlots: Array<{
|
|
67
|
+
months: Array<{
|
|
68
|
+
month: number;
|
|
69
|
+
year: number;
|
|
70
|
+
}>;
|
|
71
|
+
id: string;
|
|
72
|
+
days: number[];
|
|
73
|
+
startHour: number;
|
|
74
|
+
endHour: number;
|
|
75
|
+
demandMultiplier: number;
|
|
76
|
+
}>;
|
|
77
|
+
};
|
|
78
|
+
name?: string;
|
|
79
|
+
description?: string;
|
|
80
|
+
isActive?: boolean;
|
|
81
|
+
createdBy?: string;
|
|
82
|
+
createdAt?: Date;
|
|
83
|
+
updatedAt?: Date;
|
|
84
|
+
}
|
|
85
|
+
export type ScenarioDefaultValueDocument = ScenarioDefaultValue & Document;
|
|
86
|
+
export declare const ScenarioDefaultValueSchema: import("mongoose").Schema<ScenarioDefaultValue, import("mongoose").Model<ScenarioDefaultValue, any, any, any, Document<unknown, any, ScenarioDefaultValue, any> & ScenarioDefaultValue & Required<{
|
|
87
|
+
_id: Types.ObjectId;
|
|
88
|
+
}> & {
|
|
89
|
+
__v: number;
|
|
90
|
+
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ScenarioDefaultValue, Document<unknown, {}, import("mongoose").FlatRecord<ScenarioDefaultValue>, {}> & import("mongoose").FlatRecord<ScenarioDefaultValue> & Required<{
|
|
91
|
+
_id: Types.ObjectId;
|
|
92
|
+
}> & {
|
|
93
|
+
__v: number;
|
|
94
|
+
}>;
|
|
@@ -0,0 +1,238 @@
|
|
|
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.ScenarioDefaultValueSchema = exports.ScenarioDefaultValue = exports.ConsumptionReference = exports.UseCase = exports.TrackerType = exports.FinancingType = void 0;
|
|
13
|
+
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const mongoose_2 = require("mongoose");
|
|
16
|
+
const class_validator_1 = require("class-validator");
|
|
17
|
+
const default_ppa_tarif_1 = require("./internal/default-ppa-tarif");
|
|
18
|
+
const power_cost_config_1 = require("./internal/power-cost-config");
|
|
19
|
+
const battery_params_1 = require("./internal/battery-params");
|
|
20
|
+
const conversion_params_1 = require("./internal/conversion-params");
|
|
21
|
+
const fuel_cell_params_1 = require("./internal/fuel-cell-params");
|
|
22
|
+
const generator_params_1 = require("./internal/generator-params");
|
|
23
|
+
const grid_params_1 = require("./internal/grid-params");
|
|
24
|
+
const pv_params_1 = require("./internal/pv-params");
|
|
25
|
+
const pv2_paramsSchema_1 = require("./internal/pv2-paramsSchema");
|
|
26
|
+
const vs_params_1 = require("./internal/vs-params");
|
|
27
|
+
const wind_turbine_params_1 = require("./internal/wind-turbine-params");
|
|
28
|
+
const electrolyse_params_1 = require("./internal/electrolyse-params");
|
|
29
|
+
const ecs_params_1 = require("./internal/ecs-params");
|
|
30
|
+
const h2_storage_params_1 = require("./internal/h2-storage-params");
|
|
31
|
+
const scenario_params_1 = require("./internal/scenario-params");
|
|
32
|
+
const station_params_1 = require("./internal/station-params");
|
|
33
|
+
const thermal_storage_params_1 = require("./internal/thermal-storage-params");
|
|
34
|
+
const optimization_params_1 = require("./internal/optimization-params");
|
|
35
|
+
// Enums
|
|
36
|
+
var FinancingType;
|
|
37
|
+
(function (FinancingType) {
|
|
38
|
+
FinancingType["INVESTMENT"] = "Investissement";
|
|
39
|
+
FinancingType["LEASING"] = "Location";
|
|
40
|
+
FinancingType["PPA"] = "PPA";
|
|
41
|
+
})(FinancingType || (exports.FinancingType = FinancingType = {}));
|
|
42
|
+
var TrackerType;
|
|
43
|
+
(function (TrackerType) {
|
|
44
|
+
TrackerType["OFF"] = "OFF";
|
|
45
|
+
TrackerType["SINGLE_AXIS"] = "SINGLE_AXIS";
|
|
46
|
+
TrackerType["DUAL_AXIS"] = "DUAL_AXIS";
|
|
47
|
+
})(TrackerType || (exports.TrackerType = TrackerType = {}));
|
|
48
|
+
var UseCase;
|
|
49
|
+
(function (UseCase) {
|
|
50
|
+
UseCase["AOVS"] = "AOVS";
|
|
51
|
+
UseCase["AUTOCONSOMMATION"] = "AUTOCONSOMMATION";
|
|
52
|
+
UseCase["VENTE_TOTALE"] = "VENTE_TOTALE";
|
|
53
|
+
})(UseCase || (exports.UseCase = UseCase = {}));
|
|
54
|
+
var ConsumptionReference;
|
|
55
|
+
(function (ConsumptionReference) {
|
|
56
|
+
ConsumptionReference["REFERENCE"] = "REFERENCE";
|
|
57
|
+
ConsumptionReference["CUSTOM"] = "CUSTOM";
|
|
58
|
+
})(ConsumptionReference || (exports.ConsumptionReference = ConsumptionReference = {}));
|
|
59
|
+
let ScenarioDefaultValue = class ScenarioDefaultValue {
|
|
60
|
+
};
|
|
61
|
+
exports.ScenarioDefaultValue = ScenarioDefaultValue;
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, swagger_1.ApiProperty)({
|
|
64
|
+
description: 'Identifiant unique MongoDB',
|
|
65
|
+
example: '2M61PGSm7lRpqXeaDacbAYOLTYG3',
|
|
66
|
+
type: mongoose_2.Types.ObjectId,
|
|
67
|
+
readOnly: true,
|
|
68
|
+
}),
|
|
69
|
+
__metadata("design:type", mongoose_2.Types.ObjectId)
|
|
70
|
+
], ScenarioDefaultValue.prototype, "_id", void 0);
|
|
71
|
+
__decorate([
|
|
72
|
+
(0, swagger_1.ApiProperty)({ type: default_ppa_tarif_1.DefaultPPATarif }),
|
|
73
|
+
(0, mongoose_1.Prop)({ type: default_ppa_tarif_1.DefaultPPATarif, required: true }),
|
|
74
|
+
__metadata("design:type", default_ppa_tarif_1.DefaultPPATarif)
|
|
75
|
+
], ScenarioDefaultValue.prototype, "defaultPPATarif", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, swagger_1.ApiProperty)(),
|
|
78
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
79
|
+
__metadata("design:type", Number)
|
|
80
|
+
], ScenarioDefaultValue.prototype, "VERSION", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
(0, swagger_1.ApiProperty)(),
|
|
83
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
84
|
+
__metadata("design:type", Number)
|
|
85
|
+
], ScenarioDefaultValue.prototype, "version", void 0);
|
|
86
|
+
__decorate([
|
|
87
|
+
(0, swagger_1.ApiProperty)({ type: [power_cost_config_1.PowerCostConfig] }),
|
|
88
|
+
(0, mongoose_1.Prop)({ type: [power_cost_config_1.PowerCostConfig], required: true }),
|
|
89
|
+
(0, class_validator_1.IsArray)(),
|
|
90
|
+
__metadata("design:type", Array)
|
|
91
|
+
], ScenarioDefaultValue.prototype, "SURPLUS_COSTS", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, swagger_1.ApiProperty)({ type: [power_cost_config_1.PowerCostConfig] }),
|
|
94
|
+
(0, mongoose_1.Prop)({ type: [power_cost_config_1.PowerCostConfig], required: true }),
|
|
95
|
+
(0, class_validator_1.IsArray)(),
|
|
96
|
+
__metadata("design:type", Array)
|
|
97
|
+
], ScenarioDefaultValue.prototype, "FULL_PRODUCTION_COSTS", void 0);
|
|
98
|
+
__decorate([
|
|
99
|
+
(0, swagger_1.ApiProperty)({ type: battery_params_1.BatteryParams }),
|
|
100
|
+
(0, mongoose_1.Prop)({ type: battery_params_1.BatteryParams, required: true }),
|
|
101
|
+
__metadata("design:type", battery_params_1.BatteryParams)
|
|
102
|
+
], ScenarioDefaultValue.prototype, "paramsBattery", void 0);
|
|
103
|
+
__decorate([
|
|
104
|
+
(0, swagger_1.ApiProperty)({ type: conversion_params_1.ConversionParams }),
|
|
105
|
+
(0, mongoose_1.Prop)({ type: conversion_params_1.ConversionParams, required: true }),
|
|
106
|
+
__metadata("design:type", conversion_params_1.ConversionParams)
|
|
107
|
+
], ScenarioDefaultValue.prototype, "paramsConversion", void 0);
|
|
108
|
+
__decorate([
|
|
109
|
+
(0, swagger_1.ApiProperty)({ type: fuel_cell_params_1.FuelCellParams }),
|
|
110
|
+
(0, mongoose_1.Prop)({ type: fuel_cell_params_1.FuelCellParams, required: true }),
|
|
111
|
+
__metadata("design:type", fuel_cell_params_1.FuelCellParams)
|
|
112
|
+
], ScenarioDefaultValue.prototype, "paramsFuelCell", void 0);
|
|
113
|
+
__decorate([
|
|
114
|
+
(0, swagger_1.ApiProperty)({ type: generator_params_1.GeneratorParams }),
|
|
115
|
+
(0, mongoose_1.Prop)({ type: generator_params_1.GeneratorParams, required: true }),
|
|
116
|
+
__metadata("design:type", generator_params_1.GeneratorParams)
|
|
117
|
+
], ScenarioDefaultValue.prototype, "paramsGen", void 0);
|
|
118
|
+
__decorate([
|
|
119
|
+
(0, swagger_1.ApiProperty)({ type: grid_params_1.GridParams }),
|
|
120
|
+
(0, mongoose_1.Prop)({ type: grid_params_1.GridParams, required: true }),
|
|
121
|
+
__metadata("design:type", grid_params_1.GridParams)
|
|
122
|
+
], ScenarioDefaultValue.prototype, "paramsGrid", void 0);
|
|
123
|
+
__decorate([
|
|
124
|
+
(0, swagger_1.ApiProperty)({ type: optimization_params_1.OptimizationParams }),
|
|
125
|
+
(0, mongoose_1.Prop)({ type: optimization_params_1.OptimizationParams, required: true }),
|
|
126
|
+
__metadata("design:type", optimization_params_1.OptimizationParams)
|
|
127
|
+
], ScenarioDefaultValue.prototype, "paramsOptimization", void 0);
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, swagger_1.ApiProperty)({ type: pv_params_1.PVParams }),
|
|
130
|
+
(0, mongoose_1.Prop)({ type: pv_params_1.PVParams, required: true }),
|
|
131
|
+
__metadata("design:type", pv_params_1.PVParams)
|
|
132
|
+
], ScenarioDefaultValue.prototype, "paramsPV", void 0);
|
|
133
|
+
__decorate([
|
|
134
|
+
(0, swagger_1.ApiProperty)({ type: pv2_paramsSchema_1.PV2Params }),
|
|
135
|
+
(0, mongoose_1.Prop)({ type: pv2_paramsSchema_1.PV2Params, required: true }),
|
|
136
|
+
__metadata("design:type", pv2_paramsSchema_1.PV2Params)
|
|
137
|
+
], ScenarioDefaultValue.prototype, "paramsPV2", void 0);
|
|
138
|
+
__decorate([
|
|
139
|
+
(0, swagger_1.ApiProperty)({ type: vs_params_1.VSParams }),
|
|
140
|
+
(0, mongoose_1.Prop)({ type: vs_params_1.VSParams, required: true }),
|
|
141
|
+
__metadata("design:type", vs_params_1.VSParams)
|
|
142
|
+
], ScenarioDefaultValue.prototype, "paramsVS", void 0);
|
|
143
|
+
__decorate([
|
|
144
|
+
(0, swagger_1.ApiProperty)({ type: wind_turbine_params_1.WindTurbineParams }),
|
|
145
|
+
(0, mongoose_1.Prop)({ type: wind_turbine_params_1.WindTurbineParams, required: true }),
|
|
146
|
+
__metadata("design:type", wind_turbine_params_1.WindTurbineParams)
|
|
147
|
+
], ScenarioDefaultValue.prototype, "paramsWindTurbine", void 0);
|
|
148
|
+
__decorate([
|
|
149
|
+
(0, swagger_1.ApiProperty)({ type: electrolyse_params_1.ElectrolyseParams }),
|
|
150
|
+
(0, mongoose_1.Prop)({ type: electrolyse_params_1.ElectrolyseParams, required: true }),
|
|
151
|
+
__metadata("design:type", electrolyse_params_1.ElectrolyseParams)
|
|
152
|
+
], ScenarioDefaultValue.prototype, "paramsElectrolyse", void 0);
|
|
153
|
+
__decorate([
|
|
154
|
+
(0, swagger_1.ApiProperty)({ type: h2_storage_params_1.H2StorageParams }),
|
|
155
|
+
(0, mongoose_1.Prop)({ type: h2_storage_params_1.H2StorageParams, required: true }),
|
|
156
|
+
__metadata("design:type", h2_storage_params_1.H2StorageParams)
|
|
157
|
+
], ScenarioDefaultValue.prototype, "paramsStockageH2", void 0);
|
|
158
|
+
__decorate([
|
|
159
|
+
(0, swagger_1.ApiProperty)({ type: ecs_params_1.ECSParams }),
|
|
160
|
+
(0, mongoose_1.Prop)({ type: ecs_params_1.ECSParams, required: true }),
|
|
161
|
+
__metadata("design:type", ecs_params_1.ECSParams)
|
|
162
|
+
], ScenarioDefaultValue.prototype, "paramsECS", void 0);
|
|
163
|
+
__decorate([
|
|
164
|
+
(0, swagger_1.ApiProperty)({ type: thermal_storage_params_1.ThermalStorageParams }),
|
|
165
|
+
(0, mongoose_1.Prop)({ type: thermal_storage_params_1.ThermalStorageParams, required: true }),
|
|
166
|
+
__metadata("design:type", thermal_storage_params_1.ThermalStorageParams)
|
|
167
|
+
], ScenarioDefaultValue.prototype, "paramsStockageThermal", void 0);
|
|
168
|
+
__decorate([
|
|
169
|
+
(0, swagger_1.ApiProperty)({ type: station_params_1.StationParams }),
|
|
170
|
+
(0, mongoose_1.Prop)({ type: station_params_1.StationParams, required: true }),
|
|
171
|
+
__metadata("design:type", station_params_1.StationParams)
|
|
172
|
+
], ScenarioDefaultValue.prototype, "paramsStation", void 0);
|
|
173
|
+
__decorate([
|
|
174
|
+
(0, swagger_1.ApiProperty)({ type: scenario_params_1.ScenarioParams }),
|
|
175
|
+
(0, mongoose_1.Prop)({ type: scenario_params_1.ScenarioParams, required: true }),
|
|
176
|
+
__metadata("design:type", scenario_params_1.ScenarioParams)
|
|
177
|
+
], ScenarioDefaultValue.prototype, "paramsScenario", void 0);
|
|
178
|
+
__decorate([
|
|
179
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
|
180
|
+
(0, mongoose_1.Prop)(),
|
|
181
|
+
(0, class_validator_1.IsOptional)(),
|
|
182
|
+
(0, class_validator_1.IsString)(),
|
|
183
|
+
__metadata("design:type", String)
|
|
184
|
+
], ScenarioDefaultValue.prototype, "financingType", void 0);
|
|
185
|
+
__decorate([
|
|
186
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
|
187
|
+
(0, mongoose_1.Prop)(),
|
|
188
|
+
(0, class_validator_1.IsOptional)(),
|
|
189
|
+
__metadata("design:type", Object)
|
|
190
|
+
], ScenarioDefaultValue.prototype, "scenarioConfigSite", void 0);
|
|
191
|
+
__decorate([
|
|
192
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
|
193
|
+
(0, mongoose_1.Prop)(),
|
|
194
|
+
(0, class_validator_1.IsOptional)(),
|
|
195
|
+
(0, class_validator_1.IsString)(),
|
|
196
|
+
__metadata("design:type", String)
|
|
197
|
+
], ScenarioDefaultValue.prototype, "name", void 0);
|
|
198
|
+
__decorate([
|
|
199
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
|
200
|
+
(0, mongoose_1.Prop)(),
|
|
201
|
+
(0, class_validator_1.IsOptional)(),
|
|
202
|
+
(0, class_validator_1.IsString)(),
|
|
203
|
+
__metadata("design:type", String)
|
|
204
|
+
], ScenarioDefaultValue.prototype, "description", void 0);
|
|
205
|
+
__decorate([
|
|
206
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
|
207
|
+
(0, mongoose_1.Prop)(),
|
|
208
|
+
(0, class_validator_1.IsOptional)(),
|
|
209
|
+
(0, class_validator_1.IsBoolean)(),
|
|
210
|
+
__metadata("design:type", Boolean)
|
|
211
|
+
], ScenarioDefaultValue.prototype, "isActive", void 0);
|
|
212
|
+
__decorate([
|
|
213
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
|
214
|
+
(0, mongoose_1.Prop)(),
|
|
215
|
+
(0, class_validator_1.IsOptional)(),
|
|
216
|
+
(0, class_validator_1.IsString)(),
|
|
217
|
+
__metadata("design:type", String)
|
|
218
|
+
], ScenarioDefaultValue.prototype, "createdBy", void 0);
|
|
219
|
+
__decorate([
|
|
220
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
|
221
|
+
(0, mongoose_1.Prop)({ type: Date, default: Date.now }),
|
|
222
|
+
(0, class_validator_1.IsOptional)(),
|
|
223
|
+
__metadata("design:type", Date)
|
|
224
|
+
], ScenarioDefaultValue.prototype, "createdAt", void 0);
|
|
225
|
+
__decorate([
|
|
226
|
+
(0, swagger_1.ApiPropertyOptional)(),
|
|
227
|
+
(0, mongoose_1.Prop)({ type: Date, default: Date.now }),
|
|
228
|
+
(0, class_validator_1.IsOptional)(),
|
|
229
|
+
__metadata("design:type", Date)
|
|
230
|
+
], ScenarioDefaultValue.prototype, "updatedAt", void 0);
|
|
231
|
+
exports.ScenarioDefaultValue = ScenarioDefaultValue = __decorate([
|
|
232
|
+
(0, mongoose_1.Schema)({
|
|
233
|
+
id: false,
|
|
234
|
+
toJSON: { virtuals: true, versionKey: false },
|
|
235
|
+
toObject: { virtuals: true, versionKey: false },
|
|
236
|
+
})
|
|
237
|
+
], ScenarioDefaultValue);
|
|
238
|
+
exports.ScenarioDefaultValueSchema = mongoose_1.SchemaFactory.createForClass(ScenarioDefaultValue);
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export declare class BatteryParams {
|
|
2
|
+
batteryLifespan: number;
|
|
3
|
+
batteryMaxSoc: number;
|
|
4
|
+
batteryMinSoc: number;
|
|
5
|
+
batteryYield: number;
|
|
6
|
+
batteryCapexTot: number;
|
|
7
|
+
batteryOpexTot: number;
|
|
8
|
+
batteryCapexTableA: number[];
|
|
9
|
+
batteryCapexTableV: number[];
|
|
10
|
+
batteryOpex: number[];
|
|
11
|
+
batteryDegradRate: number;
|
|
12
|
+
batteryLeasingLifespan: number;
|
|
13
|
+
batteryDepreciationDuration: number;
|
|
14
|
+
}
|
|
15
|
+
export declare const BatteryParamsSchema: import("mongoose").Schema<BatteryParams, import("mongoose").Model<BatteryParams, any, any, any, import("mongoose").Document<unknown, any, BatteryParams, any> & BatteryParams & {
|
|
16
|
+
_id: import("mongoose").Types.ObjectId;
|
|
17
|
+
} & {
|
|
18
|
+
__v: number;
|
|
19
|
+
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, BatteryParams, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<BatteryParams>, {}> & import("mongoose").FlatRecord<BatteryParams> & {
|
|
20
|
+
_id: import("mongoose").Types.ObjectId;
|
|
21
|
+
} & {
|
|
22
|
+
__v: number;
|
|
23
|
+
}>;
|
|
@@ -0,0 +1,94 @@
|
|
|
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.BatteryParamsSchema = exports.BatteryParams = void 0;
|
|
13
|
+
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const class_validator_1 = require("class-validator");
|
|
16
|
+
let BatteryParams = class BatteryParams {
|
|
17
|
+
};
|
|
18
|
+
exports.BatteryParams = BatteryParams;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, swagger_1.ApiProperty)(),
|
|
21
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
22
|
+
(0, class_validator_1.IsNumber)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], BatteryParams.prototype, "batteryLifespan", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, swagger_1.ApiProperty)(),
|
|
27
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
28
|
+
(0, class_validator_1.IsNumber)(),
|
|
29
|
+
__metadata("design:type", Number)
|
|
30
|
+
], BatteryParams.prototype, "batteryMaxSoc", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, swagger_1.ApiProperty)(),
|
|
33
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
34
|
+
(0, class_validator_1.IsNumber)(),
|
|
35
|
+
__metadata("design:type", Number)
|
|
36
|
+
], BatteryParams.prototype, "batteryMinSoc", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, swagger_1.ApiProperty)(),
|
|
39
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
40
|
+
(0, class_validator_1.IsNumber)(),
|
|
41
|
+
__metadata("design:type", Number)
|
|
42
|
+
], BatteryParams.prototype, "batteryYield", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, swagger_1.ApiProperty)(),
|
|
45
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
46
|
+
(0, class_validator_1.IsNumber)(),
|
|
47
|
+
__metadata("design:type", Number)
|
|
48
|
+
], BatteryParams.prototype, "batteryCapexTot", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, swagger_1.ApiProperty)(),
|
|
51
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
52
|
+
(0, class_validator_1.IsNumber)(),
|
|
53
|
+
__metadata("design:type", Number)
|
|
54
|
+
], BatteryParams.prototype, "batteryOpexTot", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, swagger_1.ApiProperty)(),
|
|
57
|
+
(0, mongoose_1.Prop)({ type: [Number], required: true }),
|
|
58
|
+
(0, class_validator_1.IsArray)(),
|
|
59
|
+
__metadata("design:type", Array)
|
|
60
|
+
], BatteryParams.prototype, "batteryCapexTableA", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, swagger_1.ApiProperty)(),
|
|
63
|
+
(0, mongoose_1.Prop)({ type: [Number], required: true }),
|
|
64
|
+
(0, class_validator_1.IsArray)(),
|
|
65
|
+
__metadata("design:type", Array)
|
|
66
|
+
], BatteryParams.prototype, "batteryCapexTableV", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, swagger_1.ApiProperty)(),
|
|
69
|
+
(0, mongoose_1.Prop)({ type: [Number], required: true }),
|
|
70
|
+
(0, class_validator_1.IsArray)(),
|
|
71
|
+
__metadata("design:type", Array)
|
|
72
|
+
], BatteryParams.prototype, "batteryOpex", void 0);
|
|
73
|
+
__decorate([
|
|
74
|
+
(0, swagger_1.ApiProperty)(),
|
|
75
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
76
|
+
(0, class_validator_1.IsNumber)(),
|
|
77
|
+
__metadata("design:type", Number)
|
|
78
|
+
], BatteryParams.prototype, "batteryDegradRate", void 0);
|
|
79
|
+
__decorate([
|
|
80
|
+
(0, swagger_1.ApiProperty)(),
|
|
81
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
82
|
+
(0, class_validator_1.IsNumber)(),
|
|
83
|
+
__metadata("design:type", Number)
|
|
84
|
+
], BatteryParams.prototype, "batteryLeasingLifespan", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
(0, swagger_1.ApiProperty)(),
|
|
87
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
88
|
+
(0, class_validator_1.IsNumber)(),
|
|
89
|
+
__metadata("design:type", Number)
|
|
90
|
+
], BatteryParams.prototype, "batteryDepreciationDuration", void 0);
|
|
91
|
+
exports.BatteryParams = BatteryParams = __decorate([
|
|
92
|
+
(0, mongoose_1.Schema)({ _id: false })
|
|
93
|
+
], BatteryParams);
|
|
94
|
+
exports.BatteryParamsSchema = mongoose_1.SchemaFactory.createForClass(BatteryParams);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare class ConversionParams {
|
|
2
|
+
conversionCapexTot: number;
|
|
3
|
+
conversionOpexTot: number;
|
|
4
|
+
conversionCapexTableA: number[];
|
|
5
|
+
conversionCapexTableV: number[];
|
|
6
|
+
conversionLifespan: number;
|
|
7
|
+
conversionYield: number;
|
|
8
|
+
conversionOpex: number[];
|
|
9
|
+
conversionLeasingLifespan: number;
|
|
10
|
+
conversionDepreciationDuration: number;
|
|
11
|
+
}
|
|
12
|
+
export declare const ConversionParamsSchema: import("mongoose").Schema<ConversionParams, import("mongoose").Model<ConversionParams, any, any, any, import("mongoose").Document<unknown, any, ConversionParams, any> & ConversionParams & {
|
|
13
|
+
_id: import("mongoose").Types.ObjectId;
|
|
14
|
+
} & {
|
|
15
|
+
__v: number;
|
|
16
|
+
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ConversionParams, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<ConversionParams>, {}> & import("mongoose").FlatRecord<ConversionParams> & {
|
|
17
|
+
_id: import("mongoose").Types.ObjectId;
|
|
18
|
+
} & {
|
|
19
|
+
__v: number;
|
|
20
|
+
}>;
|
|
@@ -0,0 +1,76 @@
|
|
|
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.ConversionParamsSchema = exports.ConversionParams = void 0;
|
|
13
|
+
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const class_validator_1 = require("class-validator");
|
|
16
|
+
let ConversionParams = class ConversionParams {
|
|
17
|
+
};
|
|
18
|
+
exports.ConversionParams = ConversionParams;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, swagger_1.ApiProperty)(),
|
|
21
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
22
|
+
(0, class_validator_1.IsNumber)(),
|
|
23
|
+
__metadata("design:type", Number)
|
|
24
|
+
], ConversionParams.prototype, "conversionCapexTot", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, swagger_1.ApiProperty)(),
|
|
27
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
28
|
+
(0, class_validator_1.IsNumber)(),
|
|
29
|
+
__metadata("design:type", Number)
|
|
30
|
+
], ConversionParams.prototype, "conversionOpexTot", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, swagger_1.ApiProperty)(),
|
|
33
|
+
(0, mongoose_1.Prop)({ type: [Number], required: true }),
|
|
34
|
+
(0, class_validator_1.IsArray)(),
|
|
35
|
+
__metadata("design:type", Array)
|
|
36
|
+
], ConversionParams.prototype, "conversionCapexTableA", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, swagger_1.ApiProperty)(),
|
|
39
|
+
(0, mongoose_1.Prop)({ type: [Number], required: true }),
|
|
40
|
+
(0, class_validator_1.IsArray)(),
|
|
41
|
+
__metadata("design:type", Array)
|
|
42
|
+
], ConversionParams.prototype, "conversionCapexTableV", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, swagger_1.ApiProperty)(),
|
|
45
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
46
|
+
(0, class_validator_1.IsNumber)(),
|
|
47
|
+
__metadata("design:type", Number)
|
|
48
|
+
], ConversionParams.prototype, "conversionLifespan", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, swagger_1.ApiProperty)(),
|
|
51
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
52
|
+
(0, class_validator_1.IsNumber)(),
|
|
53
|
+
__metadata("design:type", Number)
|
|
54
|
+
], ConversionParams.prototype, "conversionYield", void 0);
|
|
55
|
+
__decorate([
|
|
56
|
+
(0, swagger_1.ApiProperty)(),
|
|
57
|
+
(0, mongoose_1.Prop)({ type: [Number], required: true }),
|
|
58
|
+
(0, class_validator_1.IsArray)(),
|
|
59
|
+
__metadata("design:type", Array)
|
|
60
|
+
], ConversionParams.prototype, "conversionOpex", void 0);
|
|
61
|
+
__decorate([
|
|
62
|
+
(0, swagger_1.ApiProperty)(),
|
|
63
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
64
|
+
(0, class_validator_1.IsNumber)(),
|
|
65
|
+
__metadata("design:type", Number)
|
|
66
|
+
], ConversionParams.prototype, "conversionLeasingLifespan", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, swagger_1.ApiProperty)(),
|
|
69
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
70
|
+
(0, class_validator_1.IsNumber)(),
|
|
71
|
+
__metadata("design:type", Number)
|
|
72
|
+
], ConversionParams.prototype, "conversionDepreciationDuration", void 0);
|
|
73
|
+
exports.ConversionParams = ConversionParams = __decorate([
|
|
74
|
+
(0, mongoose_1.Schema)({ _id: false })
|
|
75
|
+
], ConversionParams);
|
|
76
|
+
exports.ConversionParamsSchema = mongoose_1.SchemaFactory.createForClass(ConversionParams);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare class DefaultPPATarif {
|
|
2
|
+
siteId: string;
|
|
3
|
+
ppaPrice: number;
|
|
4
|
+
name: string;
|
|
5
|
+
}
|
|
6
|
+
export declare const DefaultPPATarifSchema: import("mongoose").Schema<DefaultPPATarif, import("mongoose").Model<DefaultPPATarif, any, any, any, import("mongoose").Document<unknown, any, DefaultPPATarif, any> & DefaultPPATarif & {
|
|
7
|
+
_id: import("mongoose").Types.ObjectId;
|
|
8
|
+
} & {
|
|
9
|
+
__v: number;
|
|
10
|
+
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, DefaultPPATarif, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<DefaultPPATarif>, {}> & import("mongoose").FlatRecord<DefaultPPATarif> & {
|
|
11
|
+
_id: import("mongoose").Types.ObjectId;
|
|
12
|
+
} & {
|
|
13
|
+
__v: number;
|
|
14
|
+
}>;
|
|
@@ -0,0 +1,40 @@
|
|
|
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.DefaultPPATarifSchema = exports.DefaultPPATarif = void 0;
|
|
13
|
+
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
+
const swagger_1 = require("@nestjs/swagger");
|
|
15
|
+
const class_validator_1 = require("class-validator");
|
|
16
|
+
let DefaultPPATarif = class DefaultPPATarif {
|
|
17
|
+
};
|
|
18
|
+
exports.DefaultPPATarif = DefaultPPATarif;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, swagger_1.ApiProperty)(),
|
|
21
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
22
|
+
(0, class_validator_1.IsString)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], DefaultPPATarif.prototype, "siteId", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, swagger_1.ApiProperty)(),
|
|
27
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
28
|
+
(0, class_validator_1.IsNumber)(),
|
|
29
|
+
__metadata("design:type", Number)
|
|
30
|
+
], DefaultPPATarif.prototype, "ppaPrice", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, swagger_1.ApiProperty)(),
|
|
33
|
+
(0, mongoose_1.Prop)({ required: true }),
|
|
34
|
+
(0, class_validator_1.IsString)(),
|
|
35
|
+
__metadata("design:type", String)
|
|
36
|
+
], DefaultPPATarif.prototype, "name", void 0);
|
|
37
|
+
exports.DefaultPPATarif = DefaultPPATarif = __decorate([
|
|
38
|
+
(0, mongoose_1.Schema)({ _id: false })
|
|
39
|
+
], DefaultPPATarif);
|
|
40
|
+
exports.DefaultPPATarifSchema = mongoose_1.SchemaFactory.createForClass(DefaultPPATarif);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare class ECSParams {
|
|
2
|
+
power: number;
|
|
3
|
+
lifespan: number;
|
|
4
|
+
capexTot: number;
|
|
5
|
+
averageConso: number;
|
|
6
|
+
opexTot: number;
|
|
7
|
+
capexTableA: number[];
|
|
8
|
+
capexTableV: number[];
|
|
9
|
+
opex: number[];
|
|
10
|
+
leasingLifespan: number;
|
|
11
|
+
depreciationDuration: number;
|
|
12
|
+
}
|
|
13
|
+
export declare const ECSParamsSchema: import("mongoose").Schema<ECSParams, import("mongoose").Model<ECSParams, any, any, any, import("mongoose").Document<unknown, any, ECSParams, any> & ECSParams & {
|
|
14
|
+
_id: import("mongoose").Types.ObjectId;
|
|
15
|
+
} & {
|
|
16
|
+
__v: number;
|
|
17
|
+
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ECSParams, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<ECSParams>, {}> & import("mongoose").FlatRecord<ECSParams> & {
|
|
18
|
+
_id: import("mongoose").Types.ObjectId;
|
|
19
|
+
} & {
|
|
20
|
+
__v: number;
|
|
21
|
+
}>;
|