@epilot/pricing-client 3.17.3 → 3.17.4

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
@@ -2553,6 +2553,10 @@ declare namespace Components {
2553
2553
  * Total of all items after (discounts and) taxes are applied.
2554
2554
  */
2555
2555
  amount_total: number;
2556
+ /**
2557
+ * Total of all items before (discounts or) taxes are applied.
2558
+ */
2559
+ amount_subtotal: number;
2556
2560
  /**
2557
2561
  * Total of all items taxes, with same recurrence.
2558
2562
  */
package/dist/openapi.json CHANGED
@@ -2933,6 +2933,10 @@
2933
2933
  "type": "integer",
2934
2934
  "description": "Total of all items after (discounts and) taxes are applied."
2935
2935
  },
2936
+ "amount_subtotal": {
2937
+ "type": "integer",
2938
+ "description": "Total of all items before (discounts or) taxes are applied."
2939
+ },
2936
2940
  "amount_tax": {
2937
2941
  "type": "integer",
2938
2942
  "description": "Total of all items taxes, with same recurrence."
@@ -2943,7 +2947,8 @@
2943
2947
  }
2944
2948
  },
2945
2949
  "required": [
2946
- "amount_total"
2950
+ "amount_total",
2951
+ "amount_subtotal"
2947
2952
  ]
2948
2953
  },
2949
2954
  "TotalDetails": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.17.3",
3
+ "version": "3.17.4",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",