@powercalc/power-router 1.1.33 → 1.1.35
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/config/types.json +32 -7
- package/package.json +1 -1
- package/src/router/config/types.json +32 -7
package/dist/config/types.json
CHANGED
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
"price": {
|
|
3
3
|
"name": "Price",
|
|
4
4
|
"psrType": "X99",
|
|
5
|
-
"co2Footprint":
|
|
5
|
+
"co2Footprint": 0,
|
|
6
6
|
"color": "pink",
|
|
7
7
|
"yAxis": "price",
|
|
8
|
+
"type": "price",
|
|
8
9
|
"abbr": "PR"
|
|
9
10
|
},
|
|
10
11
|
"naturalGasPrice": {
|
|
@@ -13,10 +14,33 @@
|
|
|
13
14
|
"co2Footprint": 0,
|
|
14
15
|
"color": "purple",
|
|
15
16
|
"yAxis": "price",
|
|
17
|
+
"type": "price",
|
|
16
18
|
"stack": "naturalGasPrice",
|
|
17
19
|
"abbr": "NP"
|
|
18
20
|
},
|
|
21
|
+
"dieselPrice": {
|
|
22
|
+
"name": "Diesel Price",
|
|
23
|
+
"psrType": "X91",
|
|
24
|
+
"co2Footprint": 0,
|
|
25
|
+
"color": "blue",
|
|
26
|
+
"yAxis": "price",
|
|
27
|
+
"type": "price",
|
|
28
|
+
"stack": "naturalGasPrice",
|
|
29
|
+
"abbr": "DP"
|
|
30
|
+
},
|
|
31
|
+
"gasolinePrice": {
|
|
32
|
+
"name": "Gasoline Price",
|
|
33
|
+
"psrType": "X91",
|
|
34
|
+
"co2Footprint": 0,
|
|
35
|
+
"color": "red",
|
|
36
|
+
"yAxis": "price",
|
|
37
|
+
"type": "price",
|
|
38
|
+
"stack": "naturalGasPrice",
|
|
39
|
+
"abbr": "GP"
|
|
40
|
+
},
|
|
41
|
+
|
|
19
42
|
|
|
43
|
+
|
|
20
44
|
"consumption": {
|
|
21
45
|
"name": "Consumption",
|
|
22
46
|
"psrType": "A05",
|
|
@@ -275,7 +299,7 @@
|
|
|
275
299
|
"co2Footprint": 0,
|
|
276
300
|
"color": "blue",
|
|
277
301
|
"abbr": "PC",
|
|
278
|
-
"type": "
|
|
302
|
+
"type": "charge"
|
|
279
303
|
},
|
|
280
304
|
"hydroPumpedStorageDischarge": {
|
|
281
305
|
"name": "Hydro Pumped Storage Discharge",
|
|
@@ -283,7 +307,7 @@
|
|
|
283
307
|
"co2Footprint": 0,
|
|
284
308
|
"color": "blue",
|
|
285
309
|
"abbr": "PD",
|
|
286
|
-
"type": "
|
|
310
|
+
"type": "discharge"
|
|
287
311
|
},
|
|
288
312
|
|
|
289
313
|
"battery": {
|
|
@@ -301,7 +325,7 @@
|
|
|
301
325
|
"co2Footprint": 0,
|
|
302
326
|
"color": "#ff008c",
|
|
303
327
|
"abbr": "BG",
|
|
304
|
-
"type": "
|
|
328
|
+
"type": "charge"
|
|
305
329
|
},
|
|
306
330
|
|
|
307
331
|
"batteryDischarge": {
|
|
@@ -310,7 +334,7 @@
|
|
|
310
334
|
"co2Footprint": 0,
|
|
311
335
|
"color": "#ff008c",
|
|
312
336
|
"abbr": "BD",
|
|
313
|
-
"type": "
|
|
337
|
+
"type": "discharge"
|
|
314
338
|
},
|
|
315
339
|
|
|
316
340
|
|
|
@@ -329,7 +353,7 @@
|
|
|
329
353
|
"co2Footprint": null,
|
|
330
354
|
"color": "#F86612_stripes",
|
|
331
355
|
"abbr": "HG",
|
|
332
|
-
"type": "
|
|
356
|
+
"type": "charge"
|
|
333
357
|
},
|
|
334
358
|
|
|
335
359
|
|
|
@@ -339,7 +363,7 @@
|
|
|
339
363
|
"co2Footprint": null,
|
|
340
364
|
"color": "#F86612_stripes",
|
|
341
365
|
"abbr": "HD",
|
|
342
|
-
"type": "
|
|
366
|
+
"type": "discharge"
|
|
343
367
|
},
|
|
344
368
|
|
|
345
369
|
|
|
@@ -452,6 +476,7 @@
|
|
|
452
476
|
},
|
|
453
477
|
"curtailment": {
|
|
454
478
|
"name": "Curtailment",
|
|
479
|
+
"type": "curtailment",
|
|
455
480
|
"psrType": "X42",
|
|
456
481
|
"co2Footprint": 0,
|
|
457
482
|
"color": "#cfcfcf",
|
package/package.json
CHANGED
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
"price": {
|
|
3
3
|
"name": "Price",
|
|
4
4
|
"psrType": "X99",
|
|
5
|
-
"co2Footprint":
|
|
5
|
+
"co2Footprint": 0,
|
|
6
6
|
"color": "pink",
|
|
7
7
|
"yAxis": "price",
|
|
8
|
+
"type": "price",
|
|
8
9
|
"abbr": "PR"
|
|
9
10
|
},
|
|
10
11
|
"naturalGasPrice": {
|
|
@@ -13,10 +14,33 @@
|
|
|
13
14
|
"co2Footprint": 0,
|
|
14
15
|
"color": "purple",
|
|
15
16
|
"yAxis": "price",
|
|
17
|
+
"type": "price",
|
|
16
18
|
"stack": "naturalGasPrice",
|
|
17
19
|
"abbr": "NP"
|
|
18
20
|
},
|
|
21
|
+
"dieselPrice": {
|
|
22
|
+
"name": "Diesel Price",
|
|
23
|
+
"psrType": "X91",
|
|
24
|
+
"co2Footprint": 0,
|
|
25
|
+
"color": "blue",
|
|
26
|
+
"yAxis": "price",
|
|
27
|
+
"type": "price",
|
|
28
|
+
"stack": "naturalGasPrice",
|
|
29
|
+
"abbr": "DP"
|
|
30
|
+
},
|
|
31
|
+
"gasolinePrice": {
|
|
32
|
+
"name": "Gasoline Price",
|
|
33
|
+
"psrType": "X91",
|
|
34
|
+
"co2Footprint": 0,
|
|
35
|
+
"color": "red",
|
|
36
|
+
"yAxis": "price",
|
|
37
|
+
"type": "price",
|
|
38
|
+
"stack": "naturalGasPrice",
|
|
39
|
+
"abbr": "GP"
|
|
40
|
+
},
|
|
41
|
+
|
|
19
42
|
|
|
43
|
+
|
|
20
44
|
"consumption": {
|
|
21
45
|
"name": "Consumption",
|
|
22
46
|
"psrType": "A05",
|
|
@@ -275,7 +299,7 @@
|
|
|
275
299
|
"co2Footprint": 0,
|
|
276
300
|
"color": "blue",
|
|
277
301
|
"abbr": "PC",
|
|
278
|
-
"type": "
|
|
302
|
+
"type": "charge"
|
|
279
303
|
},
|
|
280
304
|
"hydroPumpedStorageDischarge": {
|
|
281
305
|
"name": "Hydro Pumped Storage Discharge",
|
|
@@ -283,7 +307,7 @@
|
|
|
283
307
|
"co2Footprint": 0,
|
|
284
308
|
"color": "blue",
|
|
285
309
|
"abbr": "PD",
|
|
286
|
-
"type": "
|
|
310
|
+
"type": "discharge"
|
|
287
311
|
},
|
|
288
312
|
|
|
289
313
|
"battery": {
|
|
@@ -301,7 +325,7 @@
|
|
|
301
325
|
"co2Footprint": 0,
|
|
302
326
|
"color": "#ff008c",
|
|
303
327
|
"abbr": "BG",
|
|
304
|
-
"type": "
|
|
328
|
+
"type": "charge"
|
|
305
329
|
},
|
|
306
330
|
|
|
307
331
|
"batteryDischarge": {
|
|
@@ -310,7 +334,7 @@
|
|
|
310
334
|
"co2Footprint": 0,
|
|
311
335
|
"color": "#ff008c",
|
|
312
336
|
"abbr": "BD",
|
|
313
|
-
"type": "
|
|
337
|
+
"type": "discharge"
|
|
314
338
|
},
|
|
315
339
|
|
|
316
340
|
|
|
@@ -329,7 +353,7 @@
|
|
|
329
353
|
"co2Footprint": null,
|
|
330
354
|
"color": "#F86612_stripes",
|
|
331
355
|
"abbr": "HG",
|
|
332
|
-
"type": "
|
|
356
|
+
"type": "charge"
|
|
333
357
|
},
|
|
334
358
|
|
|
335
359
|
|
|
@@ -339,7 +363,7 @@
|
|
|
339
363
|
"co2Footprint": null,
|
|
340
364
|
"color": "#F86612_stripes",
|
|
341
365
|
"abbr": "HD",
|
|
342
|
-
"type": "
|
|
366
|
+
"type": "discharge"
|
|
343
367
|
},
|
|
344
368
|
|
|
345
369
|
|
|
@@ -452,6 +476,7 @@
|
|
|
452
476
|
},
|
|
453
477
|
"curtailment": {
|
|
454
478
|
"name": "Curtailment",
|
|
479
|
+
"type": "curtailment",
|
|
455
480
|
"psrType": "X42",
|
|
456
481
|
"co2Footprint": 0,
|
|
457
482
|
"color": "#cfcfcf",
|