@epilot/pricing-client 3.15.2 → 3.15.3

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
@@ -2511,7 +2511,7 @@ declare namespace Components {
2511
2511
  /**
2512
2512
  * Total of all items before (discounts or) taxes are applied, as a string with all the decimal places.
2513
2513
  */
2514
- amount_subtotal_decimal?: string;
2514
+ amount_subtotal_decimal: string;
2515
2515
  /**
2516
2516
  * Total of all items after (discounts and) taxes are applied.
2517
2517
  */
@@ -2519,7 +2519,7 @@ declare namespace Components {
2519
2519
  /**
2520
2520
  * Total of all items after (discounts and) taxes are applied, as a string with all the decimal places.
2521
2521
  */
2522
- amount_total_decimal?: string;
2522
+ amount_total_decimal: string;
2523
2523
  /**
2524
2524
  * The price type.
2525
2525
  */
package/dist/openapi.json CHANGED
@@ -2453,7 +2453,9 @@
2453
2453
  },
2454
2454
  "required": [
2455
2455
  "amount_subtotal",
2456
- "amount_total"
2456
+ "amount_total",
2457
+ "amount_subtotal_decimal",
2458
+ "amount_total_decimal"
2457
2459
  ]
2458
2460
  },
2459
2461
  "Cart": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.15.2",
3
+ "version": "3.15.3",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",