@epilot/pricing-client 3.27.1 → 3.27.2
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 +4 -0
- package/dist/openapi.json +22 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1216,6 +1216,7 @@ declare namespace Components {
|
|
|
1216
1216
|
export interface ComputedPriceComponents {
|
|
1217
1217
|
[name: string]: /* The computed price */ ComputedBasePrice;
|
|
1218
1218
|
}
|
|
1219
|
+
export type ConsumptionTypeGetAg = "household" | "heating_pump" | "night_storage_heating" | "night_storage_heating_common_meter";
|
|
1219
1220
|
/**
|
|
1220
1221
|
* Three-letter ISO currency code, in lowercase. Must be a supported currency.
|
|
1221
1222
|
* ISO 4217 CURRENCY CODES as specified in the documentation: https://www.iso.org/iso-4217-currency-codes.html
|
|
@@ -2049,6 +2050,8 @@ declare namespace Components {
|
|
|
2049
2050
|
*/
|
|
2050
2051
|
MarkupPricingModel;
|
|
2051
2052
|
type?: TypeGetAg;
|
|
2053
|
+
tariff_type?: TariffTypeGetAg;
|
|
2054
|
+
consumption_type?: ConsumptionTypeGetAg;
|
|
2052
2055
|
/**
|
|
2053
2056
|
* Defines an array of tiers. Each tier has an upper bound, an unit amount and a flat fee.
|
|
2054
2057
|
*
|
|
@@ -3049,6 +3052,7 @@ declare namespace Components {
|
|
|
3049
3052
|
*/
|
|
3050
3053
|
street: string;
|
|
3051
3054
|
}
|
|
3055
|
+
export type TariffTypeGetAg = "HT" | "NT";
|
|
3052
3056
|
/**
|
|
3053
3057
|
* the tax configuration
|
|
3054
3058
|
* example:
|
package/dist/openapi.json
CHANGED
|
@@ -4572,6 +4572,22 @@
|
|
|
4572
4572
|
"work_price"
|
|
4573
4573
|
]
|
|
4574
4574
|
},
|
|
4575
|
+
"TariffTypeGetAg": {
|
|
4576
|
+
"type": "string",
|
|
4577
|
+
"enum": [
|
|
4578
|
+
"HT",
|
|
4579
|
+
"NT"
|
|
4580
|
+
]
|
|
4581
|
+
},
|
|
4582
|
+
"ConsumptionTypeGetAg": {
|
|
4583
|
+
"type": "string",
|
|
4584
|
+
"enum": [
|
|
4585
|
+
"household",
|
|
4586
|
+
"heating_pump",
|
|
4587
|
+
"night_storage_heating",
|
|
4588
|
+
"night_storage_heating_common_meter"
|
|
4589
|
+
]
|
|
4590
|
+
},
|
|
4575
4591
|
"PriceGetAg": {
|
|
4576
4592
|
"type": "object",
|
|
4577
4593
|
"properties": {
|
|
@@ -4584,6 +4600,12 @@
|
|
|
4584
4600
|
"type": {
|
|
4585
4601
|
"$ref": "#/components/schemas/TypeGetAg"
|
|
4586
4602
|
},
|
|
4603
|
+
"tariff_type": {
|
|
4604
|
+
"$ref": "#/components/schemas/TariffTypeGetAg"
|
|
4605
|
+
},
|
|
4606
|
+
"consumption_type": {
|
|
4607
|
+
"$ref": "#/components/schemas/ConsumptionTypeGetAg"
|
|
4608
|
+
},
|
|
4587
4609
|
"markup_tiers": {
|
|
4588
4610
|
"description": "Defines an array of tiers. Each tier has an upper bound, an unit amount and a flat fee.\n",
|
|
4589
4611
|
"type": "array",
|