@epilot/pricing-client 3.9.0 → 3.9.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
@@ -174,6 +174,10 @@ declare namespace Components {
174
174
  * The unit amount value
175
175
  */
176
176
  unit_amount?: number;
177
+ /**
178
+ * The unit gross amount value.
179
+ */
180
+ unit_amount_gross?: number;
177
181
  /**
178
182
  * Total before any (discounts or) taxes are applied.
179
183
  */
@@ -703,6 +707,10 @@ declare namespace Components {
703
707
  * The unit amount value
704
708
  */
705
709
  unit_amount?: number;
710
+ /**
711
+ * The unit gross amount value.
712
+ */
713
+ unit_amount_gross?: number;
706
714
  /**
707
715
  * Total before any (discounts or) taxes are applied.
708
716
  */
@@ -1755,6 +1763,10 @@ declare namespace Components {
1755
1763
  * The unit amount value
1756
1764
  */
1757
1765
  unit_amount?: number;
1766
+ /**
1767
+ * The unit gross amount value.
1768
+ */
1769
+ unit_amount_gross?: number;
1758
1770
  /**
1759
1771
  * Total before any (discounts or) taxes are applied.
1760
1772
  */
@@ -2015,6 +2027,10 @@ declare namespace Components {
2015
2027
  * The unit amount value
2016
2028
  */
2017
2029
  unit_amount?: number;
2030
+ /**
2031
+ * The unit gross amount value.
2032
+ */
2033
+ unit_amount_gross?: number;
2018
2034
  unit_amount_currency?: /**
2019
2035
  * Three-letter ISO currency code, in lowercase. Must be a supported currency.
2020
2036
  * ISO 4217 CURRENCY CODES as specified in the documentation: https://www.iso.org/iso-4217-currency-codes.html
@@ -2271,6 +2287,10 @@ declare namespace Components {
2271
2287
  * Total of all items after (discounts and) taxes are applied.
2272
2288
  */
2273
2289
  amount_total?: number;
2290
+ /**
2291
+ * The unit gross amount value.
2292
+ */
2293
+ unit_amount_gross?: number;
2274
2294
  total_details?: /* The total details with tax (and discount) aggregated totals. */ TotalDetails;
2275
2295
  }
2276
2296
  /**
@@ -2384,6 +2404,10 @@ declare namespace Components {
2384
2404
  * Total of all items, with same recurrence, after (discounts and) taxes are applied.
2385
2405
  */
2386
2406
  amount_total: number;
2407
+ /**
2408
+ * The unit gross amount value.
2409
+ */
2410
+ unit_amount_gross?: number;
2387
2411
  /**
2388
2412
  * Total of all items taxes, with same recurrence.
2389
2413
  */
@@ -2409,6 +2433,10 @@ declare namespace Components {
2409
2433
  * Total of all items, with same recurrence, after (discounts and) taxes are applied.
2410
2434
  */
2411
2435
  amount_total: number;
2436
+ /**
2437
+ * The unit gross amount value.
2438
+ */
2439
+ unit_amount_gross?: number;
2412
2440
  /**
2413
2441
  * Total of all items taxes, with same recurrence.
2414
2442
  */
package/dist/openapi.json CHANGED
@@ -2313,6 +2313,10 @@
2313
2313
  "type": "integer",
2314
2314
  "description": "The unit amount value"
2315
2315
  },
2316
+ "unit_amount_gross": {
2317
+ "type": "integer",
2318
+ "description": "The unit gross amount value."
2319
+ },
2316
2320
  "unit_amount_currency": {
2317
2321
  "$ref": "#/components/schemas/Currency"
2318
2322
  },
@@ -2430,6 +2434,10 @@
2430
2434
  "type": "integer",
2431
2435
  "description": "Total of all items, with same recurrence, after (discounts and) taxes are applied."
2432
2436
  },
2437
+ "unit_amount_gross": {
2438
+ "type": "integer",
2439
+ "description": "The unit gross amount value."
2440
+ },
2433
2441
  "amount_tax": {
2434
2442
  "type": "integer",
2435
2443
  "description": "Total of all items taxes, with same recurrence."
@@ -2647,6 +2655,11 @@
2647
2655
  "description": "The unit amount value",
2648
2656
  "readOnly": true
2649
2657
  },
2658
+ "unit_amount_gross": {
2659
+ "type": "integer",
2660
+ "description": "The unit gross amount value.",
2661
+ "readOnly": true
2662
+ },
2650
2663
  "amount_subtotal": {
2651
2664
  "type": "integer",
2652
2665
  "description": "Total before any (discounts or) taxes are applied.",
@@ -2847,6 +2860,10 @@
2847
2860
  "type": "integer",
2848
2861
  "description": "Total of all items, with same recurrence, after (discounts and) taxes are applied."
2849
2862
  },
2863
+ "unit_amount_gross": {
2864
+ "type": "integer",
2865
+ "description": "The unit gross amount value."
2866
+ },
2850
2867
  "amount_tax": {
2851
2868
  "type": "integer",
2852
2869
  "description": "Total of all items taxes, with same recurrence."
@@ -2925,6 +2942,10 @@
2925
2942
  "type": "integer",
2926
2943
  "description": "Total of all items after (discounts and) taxes are applied."
2927
2944
  },
2945
+ "unit_amount_gross": {
2946
+ "type": "integer",
2947
+ "description": "The unit gross amount value."
2948
+ },
2928
2949
  "total_details": {
2929
2950
  "$ref": "#/components/schemas/TotalDetails"
2930
2951
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.9.0",
3
+ "version": "3.9.1",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",