@epilot/pricing-client 3.27.7 → 3.27.8
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 +6 -0
- package/dist/openapi.json +19 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1204,6 +1204,7 @@ declare namespace Components {
|
|
|
1204
1204
|
* The type of energy to compute the price
|
|
1205
1205
|
*/
|
|
1206
1206
|
type: "power";
|
|
1207
|
+
meter_type?: /* The meter type for power */ PowerMeterType;
|
|
1207
1208
|
}
|
|
1208
1209
|
export interface ComputePriceResult {
|
|
1209
1210
|
/**
|
|
@@ -1921,6 +1922,10 @@ declare namespace Components {
|
|
|
1921
1922
|
[name: string]: any;
|
|
1922
1923
|
};
|
|
1923
1924
|
}
|
|
1925
|
+
/**
|
|
1926
|
+
* The meter type for power
|
|
1927
|
+
*/
|
|
1928
|
+
export type PowerMeterType = "classic" | "smart" | "digital";
|
|
1924
1929
|
/**
|
|
1925
1930
|
* The price entity schema for simple pricing
|
|
1926
1931
|
* example:
|
|
@@ -2129,6 +2134,7 @@ declare namespace Components {
|
|
|
2129
2134
|
tariff_type?: TariffTypeGetAg;
|
|
2130
2135
|
consumption_type?: ConsumptionTypeGetAg;
|
|
2131
2136
|
concession_type?: /* The concession type for gas */ GasConcessionType;
|
|
2137
|
+
meter_type?: /* The meter type for power */ PowerMeterType;
|
|
2132
2138
|
/**
|
|
2133
2139
|
* Defines an array of tiers. Each tier has an upper bound, an unit amount and a flat fee.
|
|
2134
2140
|
*
|
package/dist/openapi.json
CHANGED
|
@@ -2809,6 +2809,9 @@
|
|
|
2809
2809
|
"enum": [
|
|
2810
2810
|
"power"
|
|
2811
2811
|
]
|
|
2812
|
+
},
|
|
2813
|
+
"meter_type": {
|
|
2814
|
+
"$ref": "#/components/schemas/PowerMeterType"
|
|
2812
2815
|
}
|
|
2813
2816
|
},
|
|
2814
2817
|
"description": "The compute price payload for power"
|
|
@@ -2893,6 +2896,15 @@
|
|
|
2893
2896
|
"special"
|
|
2894
2897
|
]
|
|
2895
2898
|
},
|
|
2899
|
+
"PowerMeterType": {
|
|
2900
|
+
"type": "string",
|
|
2901
|
+
"description": "The meter type for power",
|
|
2902
|
+
"enum": [
|
|
2903
|
+
"classic",
|
|
2904
|
+
"smart",
|
|
2905
|
+
"digital"
|
|
2906
|
+
]
|
|
2907
|
+
},
|
|
2896
2908
|
"ComputedPriceBreakdown": {
|
|
2897
2909
|
"type": "object",
|
|
2898
2910
|
"description": "Price breakdown",
|
|
@@ -4672,6 +4684,13 @@
|
|
|
4672
4684
|
}
|
|
4673
4685
|
]
|
|
4674
4686
|
},
|
|
4687
|
+
"meter_type": {
|
|
4688
|
+
"oneOf": [
|
|
4689
|
+
{
|
|
4690
|
+
"$ref": "#/components/schemas/PowerMeterType"
|
|
4691
|
+
}
|
|
4692
|
+
]
|
|
4693
|
+
},
|
|
4675
4694
|
"markup_tiers": {
|
|
4676
4695
|
"description": "Defines an array of tiers. Each tier has an upper bound, an unit amount and a flat fee.\n",
|
|
4677
4696
|
"type": "array",
|