@epilot/pricing-client 3.27.0 → 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 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
@@ -1996,6 +1997,7 @@ declare namespace Components {
1996
1997
  * The unit of measurement used for display purposes and possibly for calculations when the price is variable.
1997
1998
  */
1998
1999
  unit?: /* The unit of measurement used for display purposes and possibly for calculations when the price is variable. */ ("kw" | "kwh" | "m" | "m2" | "l" | "cubic-meter" | "cubic-meter-h" | "ls" | "a" | "kva" | "w" | "wp" | "kwp") | string;
2000
+ get_ag?: PriceGetAg;
1999
2001
  /**
2000
2002
  * The price creation date
2001
2003
  */
@@ -2048,6 +2050,8 @@ declare namespace Components {
2048
2050
  */
2049
2051
  MarkupPricingModel;
2050
2052
  type?: TypeGetAg;
2053
+ tariff_type?: TariffTypeGetAg;
2054
+ consumption_type?: ConsumptionTypeGetAg;
2051
2055
  /**
2052
2056
  * Defines an array of tiers. Each tier has an upper bound, an unit amount and a flat fee.
2053
2057
  *
@@ -2624,6 +2628,7 @@ declare namespace Components {
2624
2628
  * The unit of measurement used for display purposes and possibly for calculations when the price is variable.
2625
2629
  */
2626
2630
  unit?: /* The unit of measurement used for display purposes and possibly for calculations when the price is variable. */ ("kw" | "kwh" | "m" | "m2" | "l" | "cubic-meter" | "cubic-meter-h" | "ls" | "a" | "kva" | "w" | "wp" | "kwp") | string;
2631
+ get_ag?: PriceGetAg;
2627
2632
  /**
2628
2633
  * The price creation date
2629
2634
  */
@@ -3047,6 +3052,7 @@ declare namespace Components {
3047
3052
  */
3048
3053
  street: string;
3049
3054
  }
3055
+ export type TariffTypeGetAg = "HT" | "NT";
3050
3056
  /**
3051
3057
  * the tax configuration
3052
3058
  * example:
package/dist/openapi.json CHANGED
@@ -2235,6 +2235,9 @@
2235
2235
  }
2236
2236
  ]
2237
2237
  },
2238
+ "get_ag": {
2239
+ "$ref": "#/components/schemas/PriceGetAg"
2240
+ },
2238
2241
  "_created_at": {
2239
2242
  "description": "The price creation date",
2240
2243
  "type": "string"
@@ -4569,6 +4572,22 @@
4569
4572
  "work_price"
4570
4573
  ]
4571
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
+ },
4572
4591
  "PriceGetAg": {
4573
4592
  "type": "object",
4574
4593
  "properties": {
@@ -4581,6 +4600,12 @@
4581
4600
  "type": {
4582
4601
  "$ref": "#/components/schemas/TypeGetAg"
4583
4602
  },
4603
+ "tariff_type": {
4604
+ "$ref": "#/components/schemas/TariffTypeGetAg"
4605
+ },
4606
+ "consumption_type": {
4607
+ "$ref": "#/components/schemas/ConsumptionTypeGetAg"
4608
+ },
4584
4609
  "markup_tiers": {
4585
4610
  "description": "Defines an array of tiers. Each tier has an upper bound, an unit amount and a flat fee.\n",
4586
4611
  "type": "array",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.27.0",
3
+ "version": "3.27.2",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",