@epilot/pricing-client 3.12.0 → 3.13.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
@@ -2292,6 +2292,14 @@ declare namespace Components {
2292
2292
  */
2293
2293
  unit_amount_gross?: number;
2294
2294
  total_details?: /* The total details with tax (and discount) aggregated totals. */ TotalDetails;
2295
+ currency?: /**
2296
+ * Three-letter ISO currency code, in lowercase. Must be a supported currency.
2297
+ * ISO 4217 CURRENCY CODES as specified in the documentation: https://www.iso.org/iso-4217-currency-codes.html
2298
+ *
2299
+ * example:
2300
+ * EUR
2301
+ */
2302
+ Currency;
2295
2303
  }
2296
2304
  /**
2297
2305
  * The product entity
package/dist/openapi.json CHANGED
@@ -2970,6 +2970,9 @@
2970
2970
  },
2971
2971
  "total_details": {
2972
2972
  "$ref": "#/components/schemas/TotalDetails"
2973
+ },
2974
+ "currency": {
2975
+ "$ref": "#/components/schemas/Currency"
2973
2976
  }
2974
2977
  }
2975
2978
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.12.0",
3
+ "version": "3.13.0",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",