@epilot/pricing-client 3.24.0 → 3.24.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/openapi.d.ts +5 -1
- package/dist/openapi.json +6 -12
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1098,7 +1098,7 @@ declare namespace Components {
|
|
|
1098
1098
|
/**
|
|
1099
1099
|
* The consumption type
|
|
1100
1100
|
*/
|
|
1101
|
-
consumption_type?: "household" | "heating_pump" | "night_storage_heating";
|
|
1101
|
+
consumption_type?: "household" | "heating_pump" | "night_storage_heating" | "night_storage_heating_common_meter";
|
|
1102
1102
|
/**
|
|
1103
1103
|
* The monthly consumption to compute the price in kWh (to be deprecated in favor of consumption_HT)
|
|
1104
1104
|
*/
|
|
@@ -2649,6 +2649,10 @@ declare namespace Components {
|
|
|
2649
2649
|
unit_amount?: number;
|
|
2650
2650
|
unit_amount_decimal?: string;
|
|
2651
2651
|
display_mode?: PriceTierDisplayMode;
|
|
2652
|
+
unit_amount_gross?: number;
|
|
2653
|
+
unit_amount_gross_decimal?: string;
|
|
2654
|
+
flat_fee_amount_gross?: number;
|
|
2655
|
+
flat_fee_amount_gross_decimal?: string;
|
|
2652
2656
|
}
|
|
2653
2657
|
/**
|
|
2654
2658
|
* The result from the calculation of a set of price items.
|
package/dist/openapi.json
CHANGED
|
@@ -2716,7 +2716,8 @@
|
|
|
2716
2716
|
"enum": [
|
|
2717
2717
|
"household",
|
|
2718
2718
|
"heating_pump",
|
|
2719
|
-
"night_storage_heating"
|
|
2719
|
+
"night_storage_heating",
|
|
2720
|
+
"night_storage_heating_common_meter"
|
|
2720
2721
|
]
|
|
2721
2722
|
},
|
|
2722
2723
|
"consumption": {
|
|
@@ -4472,24 +4473,17 @@
|
|
|
4472
4473
|
],
|
|
4473
4474
|
"type": "object",
|
|
4474
4475
|
"properties": {
|
|
4475
|
-
"
|
|
4476
|
-
"type": "number",
|
|
4477
|
-
"nullable": true
|
|
4478
|
-
},
|
|
4479
|
-
"flat_fee_amount": {
|
|
4476
|
+
"unit_amount_gross": {
|
|
4480
4477
|
"type": "number"
|
|
4481
4478
|
},
|
|
4482
|
-
"
|
|
4479
|
+
"unit_amount_gross_decimal": {
|
|
4483
4480
|
"type": "string"
|
|
4484
4481
|
},
|
|
4485
|
-
"
|
|
4482
|
+
"flat_fee_amount_gross": {
|
|
4486
4483
|
"type": "number"
|
|
4487
4484
|
},
|
|
4488
|
-
"
|
|
4485
|
+
"flat_fee_amount_gross_decimal": {
|
|
4489
4486
|
"type": "string"
|
|
4490
|
-
},
|
|
4491
|
-
"display_mode": {
|
|
4492
|
-
"$ref": "#/components/schemas/PriceTierDisplayMode"
|
|
4493
4487
|
}
|
|
4494
4488
|
}
|
|
4495
4489
|
},
|