@powsybl/network-map-layers 3.2.0 → 3.3.1
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/index.d.cts +3 -11
- package/dist/index.d.ts +3 -11
- package/dist/powsybl-network-map-layers.cjs +369 -2192
- package/dist/powsybl-network-map-layers.js +364 -2187
- package/package.json +15 -9
package/dist/index.d.cts
CHANGED
|
@@ -450,18 +450,10 @@ declare type _LineLayerProps = {
|
|
|
450
450
|
};
|
|
451
451
|
|
|
452
452
|
declare type LinesStatus = {
|
|
453
|
-
operatingStatus:
|
|
453
|
+
operatingStatus: LineStatus | undefined;
|
|
454
454
|
};
|
|
455
455
|
|
|
456
|
-
|
|
457
|
-
* Copyright (c) 2023, RTE (http://www.rte-france.com)
|
|
458
|
-
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
459
|
-
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
460
|
-
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
461
|
-
*/
|
|
462
|
-
declare type LineStatus = any;
|
|
463
|
-
|
|
464
|
-
declare enum LineStatus_2 {
|
|
456
|
+
declare enum LineStatus {
|
|
465
457
|
PLANNED_OUTAGE = "PLANNED_OUTAGE",
|
|
466
458
|
FORCED_OUTAGE = "FORCED_OUTAGE",
|
|
467
459
|
IN_OPERATION = "IN_OPERATION"
|
|
@@ -610,7 +602,7 @@ declare type MetaVoltageLevelsByNominalVoltage = {
|
|
|
610
602
|
};
|
|
611
603
|
|
|
612
604
|
declare type OperatingStatus = {
|
|
613
|
-
status:
|
|
605
|
+
status: LineStatus;
|
|
614
606
|
printPosition: Position;
|
|
615
607
|
offset: [number, number];
|
|
616
608
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -450,18 +450,10 @@ declare type _LineLayerProps = {
|
|
|
450
450
|
};
|
|
451
451
|
|
|
452
452
|
declare type LinesStatus = {
|
|
453
|
-
operatingStatus:
|
|
453
|
+
operatingStatus: LineStatus | undefined;
|
|
454
454
|
};
|
|
455
455
|
|
|
456
|
-
|
|
457
|
-
* Copyright (c) 2023, RTE (http://www.rte-france.com)
|
|
458
|
-
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
459
|
-
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
460
|
-
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
461
|
-
*/
|
|
462
|
-
declare type LineStatus = any;
|
|
463
|
-
|
|
464
|
-
declare enum LineStatus_2 {
|
|
456
|
+
declare enum LineStatus {
|
|
465
457
|
PLANNED_OUTAGE = "PLANNED_OUTAGE",
|
|
466
458
|
FORCED_OUTAGE = "FORCED_OUTAGE",
|
|
467
459
|
IN_OPERATION = "IN_OPERATION"
|
|
@@ -610,7 +602,7 @@ declare type MetaVoltageLevelsByNominalVoltage = {
|
|
|
610
602
|
};
|
|
611
603
|
|
|
612
604
|
declare type OperatingStatus = {
|
|
613
|
-
status:
|
|
605
|
+
status: LineStatus;
|
|
614
606
|
printPosition: Position;
|
|
615
607
|
offset: [number, number];
|
|
616
608
|
};
|