@epilot/pricing-client 3.27.6 → 3.27.7

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
@@ -1166,10 +1166,7 @@ declare namespace Components {
1166
1166
  * The type of energy to compute the price
1167
1167
  */
1168
1168
  type: "gas";
1169
- /**
1170
- * The concession type for gas
1171
- */
1172
- concession_type?: "standard" | "special";
1169
+ concession_type?: /* The concession type for gas */ GasConcessionType;
1173
1170
  }
1174
1171
  /**
1175
1172
  * The compute price payload for power
@@ -1469,6 +1466,10 @@ declare namespace Components {
1469
1466
  _title?: string;
1470
1467
  $relation?: EntityRelation;
1471
1468
  }
1469
+ /**
1470
+ * The concession type for gas
1471
+ */
1472
+ export type GasConcessionType = "standard" | "special";
1472
1473
  export type IntegrationCredentialsResult = /* The basic auth credentials */ BasicAuthCredentials;
1473
1474
  export type IntegrationId = "enet" | "getag";
1474
1475
  /**
@@ -2127,6 +2128,7 @@ declare namespace Components {
2127
2128
  type?: TypeGetAg;
2128
2129
  tariff_type?: TariffTypeGetAg;
2129
2130
  consumption_type?: ConsumptionTypeGetAg;
2131
+ concession_type?: /* The concession type for gas */ GasConcessionType;
2130
2132
  /**
2131
2133
  * Defines an array of tiers. Each tier has an upper bound, an unit amount and a flat fee.
2132
2134
  *
package/dist/openapi.json CHANGED
@@ -2831,12 +2831,7 @@
2831
2831
  ]
2832
2832
  },
2833
2833
  "concession_type": {
2834
- "description": "The concession type for gas",
2835
- "type": "string",
2836
- "enum": [
2837
- "standard",
2838
- "special"
2839
- ]
2834
+ "$ref": "#/components/schemas/GasConcessionType"
2840
2835
  }
2841
2836
  },
2842
2837
  "description": "The compute price payload for gas"
@@ -2890,6 +2885,14 @@
2890
2885
  }
2891
2886
  ]
2892
2887
  },
2888
+ "GasConcessionType": {
2889
+ "description": "The concession type for gas",
2890
+ "type": "string",
2891
+ "enum": [
2892
+ "standard",
2893
+ "special"
2894
+ ]
2895
+ },
2893
2896
  "ComputedPriceBreakdown": {
2894
2897
  "type": "object",
2895
2898
  "description": "Price breakdown",
@@ -4662,6 +4665,13 @@
4662
4665
  "consumption_type": {
4663
4666
  "$ref": "#/components/schemas/ConsumptionTypeGetAg"
4664
4667
  },
4668
+ "concession_type": {
4669
+ "oneOf": [
4670
+ {
4671
+ "$ref": "#/components/schemas/GasConcessionType"
4672
+ }
4673
+ ]
4674
+ },
4665
4675
  "markup_tiers": {
4666
4676
  "description": "Defines an array of tiers. Each tier has an upper bound, an unit amount and a flat fee.\n",
4667
4677
  "type": "array",
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.27.6",
3
+ "version": "3.27.7",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "author": "epilot GmbH",
8
- "license": "MIT",
8
+ "license": "MIT",
9
9
  "repository": {
10
10
  "type": "git",
11
11
  "url": "git+https://github.com/epilot-dev/sdk-js.git",