@likewatt/models 1.86.0 → 1.88.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/Site.d.ts +7 -0
- package/dist/core/Site.js +9 -0
- package/dist/core/TypeORM/EnedisReportHistory.d.ts +24 -0
- package/dist/core/TypeORM/EnedisReportHistory.js +48 -1
- package/dist/core/internal/extraction-data.model.d.ts +43 -0
- package/dist/core/internal/extraction-data.model.js +78 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/core/Site.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { BuildingDataStatus } from './enums/BuildingDataStatus';
|
|
|
12
12
|
import { RetryHint } from './enums/RetryHint';
|
|
13
13
|
import { Comments } from './internal/comments';
|
|
14
14
|
import { Rates } from './internal/rates';
|
|
15
|
+
import { ExtractionData } from './internal/extraction-data.model';
|
|
15
16
|
export declare class Site {
|
|
16
17
|
readonly _id: string;
|
|
17
18
|
country: string;
|
|
@@ -62,6 +63,12 @@ export declare class Site {
|
|
|
62
63
|
* UNRECOVERABLE errors (the latter has its own UI flow — fix input).
|
|
63
64
|
*/
|
|
64
65
|
automaticUpdateRetryExhausted?: boolean | null;
|
|
66
|
+
/**
|
|
67
|
+
* Etat d'erreur/retry d'extraction par pipeline (aujourd'hui `injection`).
|
|
68
|
+
* Isolé des champs `automaticUpdate*` ci-dessus, qui restent dédiés au
|
|
69
|
+
* pipeline soutirage.
|
|
70
|
+
*/
|
|
71
|
+
extractionData?: ExtractionData;
|
|
65
72
|
scenario?: string;
|
|
66
73
|
user?: string;
|
|
67
74
|
profile?: Profiles;
|
package/dist/core/Site.js
CHANGED
|
@@ -28,6 +28,7 @@ const BuildingDataStatus_1 = require("./enums/BuildingDataStatus");
|
|
|
28
28
|
const RetryHint_1 = require("./enums/RetryHint");
|
|
29
29
|
const comments_1 = require("./internal/comments");
|
|
30
30
|
const rates_1 = require("./internal/rates");
|
|
31
|
+
const extraction_data_model_1 = require("./internal/extraction-data.model");
|
|
31
32
|
let Site = class Site {
|
|
32
33
|
};
|
|
33
34
|
exports.Site = Site;
|
|
@@ -248,6 +249,14 @@ __decorate([
|
|
|
248
249
|
(0, class_validator_1.IsBoolean)(),
|
|
249
250
|
__metadata("design:type", Object)
|
|
250
251
|
], Site.prototype, "automaticUpdateRetryExhausted", void 0);
|
|
252
|
+
__decorate([
|
|
253
|
+
(0, swagger_1.ApiPropertyOptional)({ type: extraction_data_model_1.ExtractionData }),
|
|
254
|
+
(0, mongoose_1.Prop)({ type: extraction_data_model_1.ExtractionDataSchema, required: false }),
|
|
255
|
+
(0, class_validator_1.IsOptional)(),
|
|
256
|
+
(0, class_validator_1.ValidateNested)(),
|
|
257
|
+
(0, class_transformer_1.Type)(() => extraction_data_model_1.ExtractionData),
|
|
258
|
+
__metadata("design:type", extraction_data_model_1.ExtractionData)
|
|
259
|
+
], Site.prototype, "extractionData", void 0);
|
|
251
260
|
__decorate([
|
|
252
261
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
253
262
|
(0, mongoose_1.Prop)({ type: String, ref: 'Scenario' }),
|
|
@@ -8,12 +8,36 @@ export declare enum EnedisReportOperationType {
|
|
|
8
8
|
CREATION = "CREATION",
|
|
9
9
|
UPDATE = "UPDATE"
|
|
10
10
|
}
|
|
11
|
+
/** Sens de l'énergie de l'extraction : soutirage (conso) ou injection (prod). */
|
|
12
|
+
export declare enum ExtractionSens {
|
|
13
|
+
SOUTIRAGE = "SOUTIRAGE",
|
|
14
|
+
INJECTION = "INJECTION"
|
|
15
|
+
}
|
|
16
|
+
/** Nature de la donnée récupérée : courbe de charge, index, ou hybride (courbe + reconstruction index). */
|
|
17
|
+
export declare enum ExtractionType {
|
|
18
|
+
COURBE = "COURBE",
|
|
19
|
+
INDEX = "INDEX",
|
|
20
|
+
HYBRIDE = "HYBRIDE"
|
|
21
|
+
}
|
|
22
|
+
/** Fournisseur de données à l'origine de l'extraction. */
|
|
23
|
+
export declare enum ExtractionSource {
|
|
24
|
+
ENEDIS = "ENEDIS",
|
|
25
|
+
STRASBOURG = "STRASBOURG"
|
|
26
|
+
}
|
|
11
27
|
export declare class EnedisReportHistory {
|
|
12
28
|
uid: string;
|
|
13
29
|
siteId: string;
|
|
14
30
|
user: string;
|
|
15
31
|
reportOperation: EnedisReportOperationType;
|
|
16
32
|
acquisitionMethod: EnedisReportAcquisitionMethod;
|
|
33
|
+
/** Sens de l'énergie : soutirage (défaut, historique) ou injection. */
|
|
34
|
+
sens: ExtractionSens;
|
|
35
|
+
/** Nature de la donnée (courbe / index / hybride). Null si non renseigné. */
|
|
36
|
+
extractionType?: ExtractionType | null;
|
|
37
|
+
/** Fournisseur (ENEDIS / STRASBOURG). Null si non renseigné. */
|
|
38
|
+
source?: ExtractionSource | null;
|
|
39
|
+
/** Identifiant du point de livraison : PRM (Enedis) ou RTPL (Strasbourg). */
|
|
40
|
+
pdl?: string;
|
|
17
41
|
affairID: string;
|
|
18
42
|
md5Hash: string;
|
|
19
43
|
error: boolean;
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.EnedisReportHistory = exports.EnedisReportOperationType = exports.EnedisReportAcquisitionMethod = void 0;
|
|
12
|
+
exports.EnedisReportHistory = exports.ExtractionSource = exports.ExtractionType = exports.ExtractionSens = exports.EnedisReportOperationType = exports.EnedisReportAcquisitionMethod = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
14
|
const UsersFilters_1 = require("./UsersFilters");
|
|
15
15
|
var EnedisReportAcquisitionMethod;
|
|
@@ -23,6 +23,25 @@ var EnedisReportOperationType;
|
|
|
23
23
|
EnedisReportOperationType["CREATION"] = "CREATION";
|
|
24
24
|
EnedisReportOperationType["UPDATE"] = "UPDATE";
|
|
25
25
|
})(EnedisReportOperationType || (exports.EnedisReportOperationType = EnedisReportOperationType = {}));
|
|
26
|
+
/** Sens de l'énergie de l'extraction : soutirage (conso) ou injection (prod). */
|
|
27
|
+
var ExtractionSens;
|
|
28
|
+
(function (ExtractionSens) {
|
|
29
|
+
ExtractionSens["SOUTIRAGE"] = "SOUTIRAGE";
|
|
30
|
+
ExtractionSens["INJECTION"] = "INJECTION";
|
|
31
|
+
})(ExtractionSens || (exports.ExtractionSens = ExtractionSens = {}));
|
|
32
|
+
/** Nature de la donnée récupérée : courbe de charge, index, ou hybride (courbe + reconstruction index). */
|
|
33
|
+
var ExtractionType;
|
|
34
|
+
(function (ExtractionType) {
|
|
35
|
+
ExtractionType["COURBE"] = "COURBE";
|
|
36
|
+
ExtractionType["INDEX"] = "INDEX";
|
|
37
|
+
ExtractionType["HYBRIDE"] = "HYBRIDE";
|
|
38
|
+
})(ExtractionType || (exports.ExtractionType = ExtractionType = {}));
|
|
39
|
+
/** Fournisseur de données à l'origine de l'extraction. */
|
|
40
|
+
var ExtractionSource;
|
|
41
|
+
(function (ExtractionSource) {
|
|
42
|
+
ExtractionSource["ENEDIS"] = "ENEDIS";
|
|
43
|
+
ExtractionSource["STRASBOURG"] = "STRASBOURG";
|
|
44
|
+
})(ExtractionSource || (exports.ExtractionSource = ExtractionSource = {}));
|
|
26
45
|
let EnedisReportHistory = class EnedisReportHistory {
|
|
27
46
|
};
|
|
28
47
|
exports.EnedisReportHistory = EnedisReportHistory;
|
|
@@ -54,6 +73,34 @@ __decorate([
|
|
|
54
73
|
}),
|
|
55
74
|
__metadata("design:type", String)
|
|
56
75
|
], EnedisReportHistory.prototype, "acquisitionMethod", void 0);
|
|
76
|
+
__decorate([
|
|
77
|
+
(0, typeorm_1.Column)({
|
|
78
|
+
type: 'enum',
|
|
79
|
+
enum: ExtractionSens,
|
|
80
|
+
default: ExtractionSens.SOUTIRAGE,
|
|
81
|
+
}),
|
|
82
|
+
__metadata("design:type", String)
|
|
83
|
+
], EnedisReportHistory.prototype, "sens", void 0);
|
|
84
|
+
__decorate([
|
|
85
|
+
(0, typeorm_1.Column)({
|
|
86
|
+
type: 'enum',
|
|
87
|
+
enum: ExtractionType,
|
|
88
|
+
nullable: true,
|
|
89
|
+
}),
|
|
90
|
+
__metadata("design:type", Object)
|
|
91
|
+
], EnedisReportHistory.prototype, "extractionType", void 0);
|
|
92
|
+
__decorate([
|
|
93
|
+
(0, typeorm_1.Column)({
|
|
94
|
+
type: 'enum',
|
|
95
|
+
enum: ExtractionSource,
|
|
96
|
+
nullable: true,
|
|
97
|
+
}),
|
|
98
|
+
__metadata("design:type", Object)
|
|
99
|
+
], EnedisReportHistory.prototype, "source", void 0);
|
|
100
|
+
__decorate([
|
|
101
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
102
|
+
__metadata("design:type", String)
|
|
103
|
+
], EnedisReportHistory.prototype, "pdl", void 0);
|
|
57
104
|
__decorate([
|
|
58
105
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
59
106
|
__metadata("design:type", String)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { RetryHint } from '../enums/RetryHint';
|
|
2
|
+
/**
|
|
3
|
+
* Etat d'erreur/retry d'un pipeline d'extraction Enedis pour un site.
|
|
4
|
+
* Mêmes champs que les colonnes legacy `automaticUpdate*` (qui restent dédiées
|
|
5
|
+
* au pipeline soutirage pour compat), mais isolés par pipeline sous
|
|
6
|
+
* `extractionData` afin que injection et soutirage ne se marchent pas dessus.
|
|
7
|
+
*/
|
|
8
|
+
export declare class ExtractionPipelineState {
|
|
9
|
+
error?: string | null;
|
|
10
|
+
/**
|
|
11
|
+
* Code d'erreur structuré (ex. 'SGT500', 'NO_INJECTION_DATA', 'NETWORK').
|
|
12
|
+
* Source de vérité pour le classifier de retry côté front.
|
|
13
|
+
*/
|
|
14
|
+
errorCode?: string | null;
|
|
15
|
+
errorHint?: RetryHint | null;
|
|
16
|
+
retryAt?: Date | null;
|
|
17
|
+
retryExhausted?: boolean | null;
|
|
18
|
+
}
|
|
19
|
+
export declare const ExtractionPipelineStateSchema: import("mongoose").Schema<ExtractionPipelineState, import("mongoose").Model<ExtractionPipelineState, any, any, any, import("mongoose").Document<unknown, any, ExtractionPipelineState, any, {}> & ExtractionPipelineState & {
|
|
20
|
+
_id: import("mongoose").Types.ObjectId;
|
|
21
|
+
} & {
|
|
22
|
+
__v: number;
|
|
23
|
+
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ExtractionPipelineState, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<ExtractionPipelineState>, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").FlatRecord<ExtractionPipelineState> & {
|
|
24
|
+
_id: import("mongoose").Types.ObjectId;
|
|
25
|
+
} & {
|
|
26
|
+
__v: number;
|
|
27
|
+
}>;
|
|
28
|
+
/**
|
|
29
|
+
* Etat d'extraction par pipeline. Aujourd'hui seul `injection` est peuplé
|
|
30
|
+
* (le soutirage utilise encore les champs `automaticUpdate*` au niveau du site).
|
|
31
|
+
*/
|
|
32
|
+
export declare class ExtractionData {
|
|
33
|
+
injection?: ExtractionPipelineState;
|
|
34
|
+
}
|
|
35
|
+
export declare const ExtractionDataSchema: import("mongoose").Schema<ExtractionData, import("mongoose").Model<ExtractionData, any, any, any, import("mongoose").Document<unknown, any, ExtractionData, any, {}> & ExtractionData & {
|
|
36
|
+
_id: import("mongoose").Types.ObjectId;
|
|
37
|
+
} & {
|
|
38
|
+
__v: number;
|
|
39
|
+
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, ExtractionData, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<ExtractionData>, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").FlatRecord<ExtractionData> & {
|
|
40
|
+
_id: import("mongoose").Types.ObjectId;
|
|
41
|
+
} & {
|
|
42
|
+
__v: number;
|
|
43
|
+
}>;
|
|
@@ -0,0 +1,78 @@
|
|
|
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.ExtractionDataSchema = exports.ExtractionData = exports.ExtractionPipelineStateSchema = exports.ExtractionPipelineState = void 0;
|
|
13
|
+
const mongoose_1 = require("@nestjs/mongoose");
|
|
14
|
+
const class_validator_1 = require("class-validator");
|
|
15
|
+
const class_transformer_1 = require("class-transformer");
|
|
16
|
+
const RetryHint_1 = require("../enums/RetryHint");
|
|
17
|
+
/**
|
|
18
|
+
* Etat d'erreur/retry d'un pipeline d'extraction Enedis pour un site.
|
|
19
|
+
* Mêmes champs que les colonnes legacy `automaticUpdate*` (qui restent dédiées
|
|
20
|
+
* au pipeline soutirage pour compat), mais isolés par pipeline sous
|
|
21
|
+
* `extractionData` afin que injection et soutirage ne se marchent pas dessus.
|
|
22
|
+
*/
|
|
23
|
+
let ExtractionPipelineState = class ExtractionPipelineState {
|
|
24
|
+
};
|
|
25
|
+
exports.ExtractionPipelineState = ExtractionPipelineState;
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, mongoose_1.Prop)({ type: String, required: false }),
|
|
28
|
+
(0, class_validator_1.IsOptional)(),
|
|
29
|
+
(0, class_validator_1.IsString)(),
|
|
30
|
+
__metadata("design:type", Object)
|
|
31
|
+
], ExtractionPipelineState.prototype, "error", void 0);
|
|
32
|
+
__decorate([
|
|
33
|
+
(0, mongoose_1.Prop)({ type: String, required: false }),
|
|
34
|
+
(0, class_validator_1.IsOptional)(),
|
|
35
|
+
(0, class_validator_1.IsString)(),
|
|
36
|
+
__metadata("design:type", Object)
|
|
37
|
+
], ExtractionPipelineState.prototype, "errorCode", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, mongoose_1.Prop)({ type: String, enum: RetryHint_1.RetryHint, required: false }),
|
|
40
|
+
(0, class_validator_1.IsOptional)(),
|
|
41
|
+
(0, class_validator_1.IsEnum)(RetryHint_1.RetryHint),
|
|
42
|
+
__metadata("design:type", Object)
|
|
43
|
+
], ExtractionPipelineState.prototype, "errorHint", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, mongoose_1.Prop)({ type: Date, required: false }),
|
|
46
|
+
(0, class_validator_1.IsOptional)(),
|
|
47
|
+
(0, class_validator_1.IsDate)(),
|
|
48
|
+
(0, class_transformer_1.Type)(() => Date),
|
|
49
|
+
__metadata("design:type", Object)
|
|
50
|
+
], ExtractionPipelineState.prototype, "retryAt", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, mongoose_1.Prop)({ type: Boolean, required: false }),
|
|
53
|
+
(0, class_validator_1.IsOptional)(),
|
|
54
|
+
(0, class_validator_1.IsBoolean)(),
|
|
55
|
+
__metadata("design:type", Object)
|
|
56
|
+
], ExtractionPipelineState.prototype, "retryExhausted", void 0);
|
|
57
|
+
exports.ExtractionPipelineState = ExtractionPipelineState = __decorate([
|
|
58
|
+
(0, mongoose_1.Schema)({ _id: false })
|
|
59
|
+
], ExtractionPipelineState);
|
|
60
|
+
exports.ExtractionPipelineStateSchema = mongoose_1.SchemaFactory.createForClass(ExtractionPipelineState);
|
|
61
|
+
/**
|
|
62
|
+
* Etat d'extraction par pipeline. Aujourd'hui seul `injection` est peuplé
|
|
63
|
+
* (le soutirage utilise encore les champs `automaticUpdate*` au niveau du site).
|
|
64
|
+
*/
|
|
65
|
+
let ExtractionData = class ExtractionData {
|
|
66
|
+
};
|
|
67
|
+
exports.ExtractionData = ExtractionData;
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, mongoose_1.Prop)({ type: exports.ExtractionPipelineStateSchema, required: false }),
|
|
70
|
+
(0, class_validator_1.IsOptional)(),
|
|
71
|
+
(0, class_validator_1.ValidateNested)(),
|
|
72
|
+
(0, class_transformer_1.Type)(() => ExtractionPipelineState),
|
|
73
|
+
__metadata("design:type", ExtractionPipelineState)
|
|
74
|
+
], ExtractionData.prototype, "injection", void 0);
|
|
75
|
+
exports.ExtractionData = ExtractionData = __decorate([
|
|
76
|
+
(0, mongoose_1.Schema)({ _id: false })
|
|
77
|
+
], ExtractionData);
|
|
78
|
+
exports.ExtractionDataSchema = mongoose_1.SchemaFactory.createForClass(ExtractionData);
|
package/dist/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export * from './core/TypeORM/TempoHistory';
|
|
|
27
27
|
export * from './core/TypeORM/UsersFilters';
|
|
28
28
|
export * from './core/TypeORM/KoncileOcr';
|
|
29
29
|
export * from './core/TypeORM/WebhookOutput';
|
|
30
|
-
export { EnedisReportAcquisitionMethod, EnedisReportOperationType, } from './core/TypeORM/EnedisReportHistory';
|
|
30
|
+
export { EnedisReportAcquisitionMethod, EnedisReportOperationType, ExtractionSens, ExtractionType, ExtractionSource, } from './core/TypeORM/EnedisReportHistory';
|
|
31
31
|
export * from './core/internal/enums';
|
|
32
32
|
export * from './core/enums/BuildingDataStatus';
|
|
33
33
|
export * from './core/enums/FileType';
|
|
@@ -43,6 +43,7 @@ export * from './core/internal/chart-theme';
|
|
|
43
43
|
export * from './core/internal/conversion-params';
|
|
44
44
|
export * from './core/internal/customer-infos.model';
|
|
45
45
|
export * from './core/internal/data-source-history';
|
|
46
|
+
export * from './core/internal/extraction-data.model';
|
|
46
47
|
export * from './core/internal/default-ppa-tarif';
|
|
47
48
|
export * from './core/internal/ecs-params';
|
|
48
49
|
export * from './core/internal/electrolyse-params';
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.EnedisReportOperationType = exports.EnedisReportAcquisitionMethod = void 0;
|
|
17
|
+
exports.ExtractionSource = exports.ExtractionType = exports.ExtractionSens = exports.EnedisReportOperationType = exports.EnedisReportAcquisitionMethod = void 0;
|
|
18
18
|
// Main entities
|
|
19
19
|
__exportStar(require("./core/CollectiveSite"), exports);
|
|
20
20
|
__exportStar(require("./core/Scenario"), exports);
|
|
@@ -50,6 +50,9 @@ __exportStar(require("./core/TypeORM/WebhookOutput"), exports);
|
|
|
50
50
|
var EnedisReportHistory_1 = require("./core/TypeORM/EnedisReportHistory");
|
|
51
51
|
Object.defineProperty(exports, "EnedisReportAcquisitionMethod", { enumerable: true, get: function () { return EnedisReportHistory_1.EnedisReportAcquisitionMethod; } });
|
|
52
52
|
Object.defineProperty(exports, "EnedisReportOperationType", { enumerable: true, get: function () { return EnedisReportHistory_1.EnedisReportOperationType; } });
|
|
53
|
+
Object.defineProperty(exports, "ExtractionSens", { enumerable: true, get: function () { return EnedisReportHistory_1.ExtractionSens; } });
|
|
54
|
+
Object.defineProperty(exports, "ExtractionType", { enumerable: true, get: function () { return EnedisReportHistory_1.ExtractionType; } });
|
|
55
|
+
Object.defineProperty(exports, "ExtractionSource", { enumerable: true, get: function () { return EnedisReportHistory_1.ExtractionSource; } });
|
|
53
56
|
// Enums
|
|
54
57
|
__exportStar(require("./core/internal/enums"), exports);
|
|
55
58
|
__exportStar(require("./core/enums/BuildingDataStatus"), exports);
|
|
@@ -68,6 +71,7 @@ __exportStar(require("./core/internal/chart-theme"), exports);
|
|
|
68
71
|
__exportStar(require("./core/internal/conversion-params"), exports);
|
|
69
72
|
__exportStar(require("./core/internal/customer-infos.model"), exports);
|
|
70
73
|
__exportStar(require("./core/internal/data-source-history"), exports);
|
|
74
|
+
__exportStar(require("./core/internal/extraction-data.model"), exports);
|
|
71
75
|
__exportStar(require("./core/internal/default-ppa-tarif"), exports);
|
|
72
76
|
__exportStar(require("./core/internal/ecs-params"), exports);
|
|
73
77
|
__exportStar(require("./core/internal/electrolyse-params"), exports);
|