@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 +8 -0
- package/dist/openapi.json +3 -0
- package/package.json +1 -1
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