@likewatt/models 1.87.0 → 1.89.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 +2 -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/enums/InvoiceRatesOption.d.ts +6 -0
- package/dist/core/enums/InvoiceRatesOption.js +10 -0
- package/dist/core/internal/invoiceOcrResult.d.ts +21 -0
- package/dist/core/internal/invoiceOcrResult.js +73 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +6 -1
- package/package.json +1 -1
package/dist/core/Site.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { RetryHint } from './enums/RetryHint';
|
|
|
13
13
|
import { Comments } from './internal/comments';
|
|
14
14
|
import { Rates } from './internal/rates';
|
|
15
15
|
import { ExtractionData } from './internal/extraction-data.model';
|
|
16
|
+
import { InvoiceOcrResult } from './internal/invoiceOcrResult';
|
|
16
17
|
export declare class Site {
|
|
17
18
|
readonly _id: string;
|
|
18
19
|
country: string;
|
|
@@ -131,6 +132,7 @@ export declare class Site {
|
|
|
131
132
|
hasAnalysis: boolean;
|
|
132
133
|
hasContractData: boolean;
|
|
133
134
|
scenarioOption?: string;
|
|
135
|
+
invoiceData?: InvoiceOcrResult;
|
|
134
136
|
createdAt?: Date | string;
|
|
135
137
|
updatedAt?: Date | string;
|
|
136
138
|
}
|
package/dist/core/Site.js
CHANGED
|
@@ -29,6 +29,7 @@ const RetryHint_1 = require("./enums/RetryHint");
|
|
|
29
29
|
const comments_1 = require("./internal/comments");
|
|
30
30
|
const rates_1 = require("./internal/rates");
|
|
31
31
|
const extraction_data_model_1 = require("./internal/extraction-data.model");
|
|
32
|
+
const invoiceOcrResult_1 = require("./internal/invoiceOcrResult");
|
|
32
33
|
let Site = class Site {
|
|
33
34
|
};
|
|
34
35
|
exports.Site = Site;
|
|
@@ -686,6 +687,14 @@ __decorate([
|
|
|
686
687
|
(0, class_validator_1.IsString)(),
|
|
687
688
|
__metadata("design:type", String)
|
|
688
689
|
], Site.prototype, "scenarioOption", void 0);
|
|
690
|
+
__decorate([
|
|
691
|
+
(0, swagger_1.ApiPropertyOptional)({ type: invoiceOcrResult_1.InvoiceOcrResult }),
|
|
692
|
+
(0, mongoose_1.Prop)({ type: invoiceOcrResult_1.InvoiceOcrResultSchema, required: false }),
|
|
693
|
+
(0, class_validator_1.IsOptional)(),
|
|
694
|
+
(0, class_validator_1.ValidateNested)(),
|
|
695
|
+
(0, class_transformer_1.Type)(() => invoiceOcrResult_1.InvoiceOcrResult),
|
|
696
|
+
__metadata("design:type", invoiceOcrResult_1.InvoiceOcrResult)
|
|
697
|
+
], Site.prototype, "invoiceData", void 0);
|
|
689
698
|
__decorate([
|
|
690
699
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
691
700
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -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,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InvoiceRatesOption = void 0;
|
|
4
|
+
var InvoiceRatesOption;
|
|
5
|
+
(function (InvoiceRatesOption) {
|
|
6
|
+
InvoiceRatesOption["BASE"] = "BASE";
|
|
7
|
+
InvoiceRatesOption["HPHC"] = "HP/HC";
|
|
8
|
+
InvoiceRatesOption["TEMPO"] = "TEMPO";
|
|
9
|
+
InvoiceRatesOption["WE"] = "WE";
|
|
10
|
+
})(InvoiceRatesOption || (exports.InvoiceRatesOption = InvoiceRatesOption = {}));
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { InvoiceRatesOption } from '../enums/InvoiceRatesOption';
|
|
2
|
+
import { EnergyPrice } from './energy-price.model';
|
|
3
|
+
import { EnergyPriceTempo } from './energy-price-tempo.model';
|
|
4
|
+
export declare class InvoiceOcrResult {
|
|
5
|
+
documentId?: number;
|
|
6
|
+
enedisNumber?: string;
|
|
7
|
+
ratesOption?: InvoiceRatesOption;
|
|
8
|
+
energyPrices?: EnergyPrice[];
|
|
9
|
+
energyPricesTempo?: EnergyPriceTempo[];
|
|
10
|
+
energyPricesWe?: EnergyPrice[];
|
|
11
|
+
subscriptionRates?: number;
|
|
12
|
+
}
|
|
13
|
+
export declare const InvoiceOcrResultSchema: import("mongoose").Schema<InvoiceOcrResult, import("mongoose").Model<InvoiceOcrResult, any, any, any, import("mongoose").Document<unknown, any, InvoiceOcrResult, any, {}> & InvoiceOcrResult & {
|
|
14
|
+
_id: import("mongoose").Types.ObjectId;
|
|
15
|
+
} & {
|
|
16
|
+
__v: number;
|
|
17
|
+
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, InvoiceOcrResult, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<InvoiceOcrResult>, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").FlatRecord<InvoiceOcrResult> & {
|
|
18
|
+
_id: import("mongoose").Types.ObjectId;
|
|
19
|
+
} & {
|
|
20
|
+
__v: number;
|
|
21
|
+
}>;
|
|
@@ -0,0 +1,73 @@
|
|
|
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.InvoiceOcrResultSchema = exports.InvoiceOcrResult = 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 InvoiceRatesOption_1 = require("../enums/InvoiceRatesOption");
|
|
17
|
+
const energy_price_model_1 = require("./energy-price.model");
|
|
18
|
+
const energy_price_tempo_model_1 = require("./energy-price-tempo.model");
|
|
19
|
+
let InvoiceOcrResult = class InvoiceOcrResult {
|
|
20
|
+
};
|
|
21
|
+
exports.InvoiceOcrResult = InvoiceOcrResult;
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, mongoose_1.Prop)({ required: false }),
|
|
24
|
+
(0, class_validator_1.IsNumber)(),
|
|
25
|
+
(0, class_validator_1.IsOptional)(),
|
|
26
|
+
__metadata("design:type", Number)
|
|
27
|
+
], InvoiceOcrResult.prototype, "documentId", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, mongoose_1.Prop)({ required: false }),
|
|
30
|
+
(0, class_validator_1.IsString)(),
|
|
31
|
+
(0, class_validator_1.IsOptional)(),
|
|
32
|
+
__metadata("design:type", String)
|
|
33
|
+
], InvoiceOcrResult.prototype, "enedisNumber", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, mongoose_1.Prop)({ type: String, enum: InvoiceRatesOption_1.InvoiceRatesOption, required: false }),
|
|
36
|
+
(0, class_validator_1.IsEnum)(InvoiceRatesOption_1.InvoiceRatesOption),
|
|
37
|
+
(0, class_validator_1.IsOptional)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], InvoiceOcrResult.prototype, "ratesOption", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, mongoose_1.Prop)({ type: [energy_price_model_1.EnergyPriceSchema], required: false }),
|
|
42
|
+
(0, class_validator_1.IsArray)(),
|
|
43
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
44
|
+
(0, class_transformer_1.Type)(() => energy_price_model_1.EnergyPrice),
|
|
45
|
+
(0, class_validator_1.IsOptional)(),
|
|
46
|
+
__metadata("design:type", Array)
|
|
47
|
+
], InvoiceOcrResult.prototype, "energyPrices", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, mongoose_1.Prop)({ type: [energy_price_tempo_model_1.EnergyPriceTempoSchema], required: false }),
|
|
50
|
+
(0, class_validator_1.IsArray)(),
|
|
51
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
52
|
+
(0, class_transformer_1.Type)(() => energy_price_tempo_model_1.EnergyPriceTempo),
|
|
53
|
+
(0, class_validator_1.IsOptional)(),
|
|
54
|
+
__metadata("design:type", Array)
|
|
55
|
+
], InvoiceOcrResult.prototype, "energyPricesTempo", void 0);
|
|
56
|
+
__decorate([
|
|
57
|
+
(0, mongoose_1.Prop)({ type: [energy_price_model_1.EnergyPriceSchema], required: false }),
|
|
58
|
+
(0, class_validator_1.IsArray)(),
|
|
59
|
+
(0, class_validator_1.ValidateNested)({ each: true }),
|
|
60
|
+
(0, class_transformer_1.Type)(() => energy_price_model_1.EnergyPrice),
|
|
61
|
+
(0, class_validator_1.IsOptional)(),
|
|
62
|
+
__metadata("design:type", Array)
|
|
63
|
+
], InvoiceOcrResult.prototype, "energyPricesWe", void 0);
|
|
64
|
+
__decorate([
|
|
65
|
+
(0, mongoose_1.Prop)({ required: false }),
|
|
66
|
+
(0, class_validator_1.IsNumber)(),
|
|
67
|
+
(0, class_validator_1.IsOptional)(),
|
|
68
|
+
__metadata("design:type", Number)
|
|
69
|
+
], InvoiceOcrResult.prototype, "subscriptionRates", void 0);
|
|
70
|
+
exports.InvoiceOcrResult = InvoiceOcrResult = __decorate([
|
|
71
|
+
(0, mongoose_1.Schema)({ _id: false })
|
|
72
|
+
], InvoiceOcrResult);
|
|
73
|
+
exports.InvoiceOcrResultSchema = mongoose_1.SchemaFactory.createForClass(InvoiceOcrResult);
|
package/dist/index.d.ts
CHANGED
|
@@ -27,13 +27,14 @@ 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';
|
|
34
34
|
export * from './core/enums/ImageryQuality';
|
|
35
35
|
export * from './core/enums/RetryHint';
|
|
36
36
|
export * from './core/enums/BannerSeverity';
|
|
37
|
+
export * from './core/enums/InvoiceRatesOption';
|
|
37
38
|
export * from './core/internal/microservice-error';
|
|
38
39
|
export * from './core/internal/battery-params';
|
|
39
40
|
export * from './core/internal/bounding-box';
|
|
@@ -57,6 +58,7 @@ export * from './core/internal/generator-params';
|
|
|
57
58
|
export * from './core/internal/grid-params';
|
|
58
59
|
export * from './core/internal/h2-storage-params';
|
|
59
60
|
export * from './core/internal/imagery-date';
|
|
61
|
+
export * from './core/internal/invoiceOcrResult';
|
|
60
62
|
export * from './core/internal/lat-lng';
|
|
61
63
|
export * from './core/internal/power-cost-config';
|
|
62
64
|
export * from './core/internal/pv-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);
|
|
@@ -57,6 +60,7 @@ __exportStar(require("./core/enums/FileType"), exports);
|
|
|
57
60
|
__exportStar(require("./core/enums/ImageryQuality"), exports);
|
|
58
61
|
__exportStar(require("./core/enums/RetryHint"), exports);
|
|
59
62
|
__exportStar(require("./core/enums/BannerSeverity"), exports);
|
|
63
|
+
__exportStar(require("./core/enums/InvoiceRatesOption"), exports);
|
|
60
64
|
// Error types
|
|
61
65
|
__exportStar(require("./core/internal/microservice-error"), exports);
|
|
62
66
|
// Sub-models
|
|
@@ -82,6 +86,7 @@ __exportStar(require("./core/internal/generator-params"), exports);
|
|
|
82
86
|
__exportStar(require("./core/internal/grid-params"), exports);
|
|
83
87
|
__exportStar(require("./core/internal/h2-storage-params"), exports);
|
|
84
88
|
__exportStar(require("./core/internal/imagery-date"), exports);
|
|
89
|
+
__exportStar(require("./core/internal/invoiceOcrResult"), exports);
|
|
85
90
|
__exportStar(require("./core/internal/lat-lng"), exports);
|
|
86
91
|
__exportStar(require("./core/internal/power-cost-config"), exports);
|
|
87
92
|
__exportStar(require("./core/internal/pv-params"), exports);
|