@epilot/pricing-client 3.12.0 → 3.14.0

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
@@ -2291,7 +2291,19 @@ declare namespace Components {
2291
2291
  * The unit gross amount value.
2292
2292
  */
2293
2293
  unit_amount_gross?: number;
2294
+ /**
2295
+ * This is the sum of all the price item tax amounts.
2296
+ */
2297
+ amount_tax?: number;
2294
2298
  total_details?: /* The total details with tax (and discount) aggregated totals. */ TotalDetails;
2299
+ currency?: /**
2300
+ * Three-letter ISO currency code, in lowercase. Must be a supported currency.
2301
+ * ISO 4217 CURRENCY CODES as specified in the documentation: https://www.iso.org/iso-4217-currency-codes.html
2302
+ *
2303
+ * example:
2304
+ * EUR
2305
+ */
2306
+ Currency;
2295
2307
  }
2296
2308
  /**
2297
2309
  * The product entity
package/dist/openapi.json CHANGED
@@ -2968,8 +2968,15 @@
2968
2968
  "type": "integer",
2969
2969
  "description": "The unit gross amount value."
2970
2970
  },
2971
+ "amount_tax": {
2972
+ "type": "integer",
2973
+ "description": "This is the sum of all the price item tax amounts."
2974
+ },
2971
2975
  "total_details": {
2972
2976
  "$ref": "#/components/schemas/TotalDetails"
2977
+ },
2978
+ "currency": {
2979
+ "$ref": "#/components/schemas/Currency"
2973
2980
  }
2974
2981
  }
2975
2982
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.12.0",
3
+ "version": "3.14.0",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",