@likewatt/models-front 1.15.0 → 1.16.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/User.type.d.ts +6 -0
- package/dist/core/User.type.js +4 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/scenario/{EnergyInflationRate.types.d.ts → EnergyInflationRates.types.d.ts} +1 -1
- package/dist/scenario/GridParams.types.d.ts +2 -2
- package/package.json +1 -1
- /package/dist/scenario/{EnergyInflationRate.types.js → EnergyInflationRates.types.js} +0 -0
package/dist/core/User.type.d.ts
CHANGED
|
@@ -16,6 +16,11 @@ export declare class WebhookParams {
|
|
|
16
16
|
token?: string;
|
|
17
17
|
apiKey?: string;
|
|
18
18
|
}
|
|
19
|
+
export declare class UsersList {
|
|
20
|
+
status: string;
|
|
21
|
+
email: number;
|
|
22
|
+
uid?: string;
|
|
23
|
+
}
|
|
19
24
|
export declare class MultiLicences {
|
|
20
25
|
BTINF: number;
|
|
21
26
|
BTINFACC: number;
|
|
@@ -74,6 +79,7 @@ export declare class User {
|
|
|
74
79
|
synthesis_fi: string[];
|
|
75
80
|
siteTag: SiteTag;
|
|
76
81
|
rights: Rights;
|
|
82
|
+
usersList: UsersList[];
|
|
77
83
|
webhook?: WebhookParams;
|
|
78
84
|
tokenData?: tokenData;
|
|
79
85
|
createdAt: Date;
|
package/dist/core/User.type.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.User = exports.ManagerLicenses = exports.MultiLicences = exports.WebhookParams = exports.tokenData = exports.Rights = exports.SiteTag = void 0;
|
|
3
|
+
exports.User = exports.ManagerLicenses = exports.MultiLicences = exports.UsersList = exports.WebhookParams = exports.tokenData = exports.Rights = exports.SiteTag = void 0;
|
|
4
4
|
class SiteTag {
|
|
5
5
|
}
|
|
6
6
|
exports.SiteTag = SiteTag;
|
|
@@ -13,6 +13,9 @@ exports.tokenData = tokenData;
|
|
|
13
13
|
class WebhookParams {
|
|
14
14
|
}
|
|
15
15
|
exports.WebhookParams = WebhookParams;
|
|
16
|
+
class UsersList {
|
|
17
|
+
}
|
|
18
|
+
exports.UsersList = UsersList;
|
|
16
19
|
class MultiLicences {
|
|
17
20
|
}
|
|
18
21
|
exports.MultiLicences = MultiLicences;
|
package/dist/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export * from './scenario/ConversionParams.types';
|
|
|
13
13
|
export * from './scenario/DefaultPPATarif.types';
|
|
14
14
|
export * from './scenario/ECSParams.types';
|
|
15
15
|
export * from './scenario/ElectrolyseParams.types';
|
|
16
|
-
export * from './scenario/
|
|
16
|
+
export * from './scenario/EnergyInflationRates.types';
|
|
17
17
|
export * from './scenario/FinancingType.types';
|
|
18
18
|
export * from './scenario/FuelCellParams.types';
|
|
19
19
|
export * from './scenario/GeneratorParams.types';
|
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ __exportStar(require("./scenario/ConversionParams.types"), exports);
|
|
|
31
31
|
__exportStar(require("./scenario/DefaultPPATarif.types"), exports);
|
|
32
32
|
__exportStar(require("./scenario/ECSParams.types"), exports);
|
|
33
33
|
__exportStar(require("./scenario/ElectrolyseParams.types"), exports);
|
|
34
|
-
__exportStar(require("./scenario/
|
|
34
|
+
__exportStar(require("./scenario/EnergyInflationRates.types"), exports);
|
|
35
35
|
__exportStar(require("./scenario/FinancingType.types"), exports);
|
|
36
36
|
__exportStar(require("./scenario/FuelCellParams.types"), exports);
|
|
37
37
|
__exportStar(require("./scenario/GeneratorParams.types"), exports);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EnergyInflationRates } from './EnergyInflationRates.types';
|
|
2
2
|
export interface GridParams {
|
|
3
3
|
ACI: number;
|
|
4
4
|
energyInflation: number;
|
|
@@ -14,5 +14,5 @@ export interface GridParams {
|
|
|
14
14
|
demandMultiplier: number;
|
|
15
15
|
includeTVA: number;
|
|
16
16
|
includeTURPE: number;
|
|
17
|
-
energyInflationRates:
|
|
17
|
+
energyInflationRates: EnergyInflationRates[];
|
|
18
18
|
}
|
package/package.json
CHANGED
|
File without changes
|