@epilot/pricing-client 3.13.0 → 3.14.1

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
@@ -182,6 +182,10 @@ declare namespace Components {
182
182
  * Total before any (discounts or) taxes are applied.
183
183
  */
184
184
  amount_subtotal?: number;
185
+ /**
186
+ * Total tax amount for this line item.
187
+ */
188
+ amount_tax?: number;
185
189
  /**
186
190
  * Net unit amount without taxes or discounts.
187
191
  */
@@ -715,6 +719,10 @@ declare namespace Components {
715
719
  * Total before any (discounts or) taxes are applied.
716
720
  */
717
721
  amount_subtotal?: number;
722
+ /**
723
+ * Total tax amount for this line item.
724
+ */
725
+ amount_tax?: number;
718
726
  /**
719
727
  * Net unit amount without taxes or discounts.
720
728
  */
@@ -1771,6 +1779,10 @@ declare namespace Components {
1771
1779
  * Total before any (discounts or) taxes are applied.
1772
1780
  */
1773
1781
  amount_subtotal?: number;
1782
+ /**
1783
+ * Total tax amount for this line item.
1784
+ */
1785
+ amount_tax?: number;
1774
1786
  /**
1775
1787
  * Net unit amount without taxes or discounts.
1776
1788
  */
@@ -2291,6 +2303,10 @@ declare namespace Components {
2291
2303
  * The unit gross amount value.
2292
2304
  */
2293
2305
  unit_amount_gross?: number;
2306
+ /**
2307
+ * This is the sum of all the price item tax amounts.
2308
+ */
2309
+ amount_tax?: number;
2294
2310
  total_details?: /* The total details with tax (and discount) aggregated totals. */ TotalDetails;
2295
2311
  currency?: /**
2296
2312
  * Three-letter ISO currency code, in lowercase. Must be a supported currency.
package/dist/openapi.json CHANGED
@@ -2676,6 +2676,10 @@
2676
2676
  "description": "Total before any (discounts or) taxes are applied.",
2677
2677
  "readOnly": true
2678
2678
  },
2679
+ "amount_tax": {
2680
+ "type": "integer",
2681
+ "description": "Total tax amount for this line item."
2682
+ },
2679
2683
  "unit_amount_net": {
2680
2684
  "type": "integer",
2681
2685
  "description": "Net unit amount without taxes or discounts.",
@@ -2968,6 +2972,10 @@
2968
2972
  "type": "integer",
2969
2973
  "description": "The unit gross amount value."
2970
2974
  },
2975
+ "amount_tax": {
2976
+ "type": "integer",
2977
+ "description": "This is the sum of all the price item tax amounts."
2978
+ },
2971
2979
  "total_details": {
2972
2980
  "$ref": "#/components/schemas/TotalDetails"
2973
2981
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.13.0",
3
+ "version": "3.14.1",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",