@epilot/pricing-client 3.23.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 +13 -1
- package/dist/openapi.json +24 -1
- 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
|
*/
|
|
@@ -2642,6 +2642,18 @@ declare namespace Components {
|
|
|
2642
2642
|
display_mode?: PriceTierDisplayMode;
|
|
2643
2643
|
}
|
|
2644
2644
|
export type PriceTierDisplayMode = "hidden" | "on_request";
|
|
2645
|
+
export interface PriceTierEnhanced {
|
|
2646
|
+
up_to?: number | null;
|
|
2647
|
+
flat_fee_amount?: number;
|
|
2648
|
+
flat_fee_amount_decimal?: string;
|
|
2649
|
+
unit_amount?: number;
|
|
2650
|
+
unit_amount_decimal?: string;
|
|
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;
|
|
2656
|
+
}
|
|
2645
2657
|
/**
|
|
2646
2658
|
* The result from the calculation of a set of price items.
|
|
2647
2659
|
*/
|
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": {
|
|
@@ -4464,6 +4465,28 @@
|
|
|
4464
4465
|
}
|
|
4465
4466
|
}
|
|
4466
4467
|
},
|
|
4468
|
+
"PriceTierEnhanced": {
|
|
4469
|
+
"allOf": [
|
|
4470
|
+
{
|
|
4471
|
+
"$ref": "#/components/schemas/PriceTier"
|
|
4472
|
+
}
|
|
4473
|
+
],
|
|
4474
|
+
"type": "object",
|
|
4475
|
+
"properties": {
|
|
4476
|
+
"unit_amount_gross": {
|
|
4477
|
+
"type": "number"
|
|
4478
|
+
},
|
|
4479
|
+
"unit_amount_gross_decimal": {
|
|
4480
|
+
"type": "string"
|
|
4481
|
+
},
|
|
4482
|
+
"flat_fee_amount_gross": {
|
|
4483
|
+
"type": "number"
|
|
4484
|
+
},
|
|
4485
|
+
"flat_fee_amount_gross_decimal": {
|
|
4486
|
+
"type": "string"
|
|
4487
|
+
}
|
|
4488
|
+
}
|
|
4489
|
+
},
|
|
4467
4490
|
"PriceTierDisplayMode": {
|
|
4468
4491
|
"type": "string",
|
|
4469
4492
|
"enum": [
|