@epilot/pricing-client 3.8.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
  */
@@ -337,6 +341,10 @@ declare namespace Components {
337
341
  */
338
342
  _product?: {
339
343
  [name: string]: any;
344
+ /**
345
+ * The description for the product
346
+ */
347
+ description?: string;
340
348
  /**
341
349
  * The product code
342
350
  */
@@ -699,6 +707,10 @@ declare namespace Components {
699
707
  * The unit amount value
700
708
  */
701
709
  unit_amount?: number;
710
+ /**
711
+ * The unit gross amount value.
712
+ */
713
+ unit_amount_gross?: number;
702
714
  /**
703
715
  * Total before any (discounts or) taxes are applied.
704
716
  */
@@ -868,6 +880,10 @@ declare namespace Components {
868
880
  */
869
881
  _product?: {
870
882
  [name: string]: any;
883
+ /**
884
+ * The description for the product
885
+ */
886
+ description?: string;
871
887
  /**
872
888
  * The product code
873
889
  */
@@ -1747,6 +1763,10 @@ declare namespace Components {
1747
1763
  * The unit amount value
1748
1764
  */
1749
1765
  unit_amount?: number;
1766
+ /**
1767
+ * The unit gross amount value.
1768
+ */
1769
+ unit_amount_gross?: number;
1750
1770
  /**
1751
1771
  * Total before any (discounts or) taxes are applied.
1752
1772
  */
@@ -1917,6 +1937,10 @@ declare namespace Components {
1917
1937
  */
1918
1938
  _product?: {
1919
1939
  [name: string]: any;
1940
+ /**
1941
+ * The description for the product
1942
+ */
1943
+ description?: string;
1920
1944
  /**
1921
1945
  * The product code
1922
1946
  */
@@ -2003,6 +2027,10 @@ declare namespace Components {
2003
2027
  * The unit amount value
2004
2028
  */
2005
2029
  unit_amount?: number;
2030
+ /**
2031
+ * The unit gross amount value.
2032
+ */
2033
+ unit_amount_gross?: number;
2006
2034
  unit_amount_currency?: /**
2007
2035
  * Three-letter ISO currency code, in lowercase. Must be a supported currency.
2008
2036
  * ISO 4217 CURRENCY CODES as specified in the documentation: https://www.iso.org/iso-4217-currency-codes.html
@@ -2259,6 +2287,10 @@ declare namespace Components {
2259
2287
  * Total of all items after (discounts and) taxes are applied.
2260
2288
  */
2261
2289
  amount_total?: number;
2290
+ /**
2291
+ * The unit gross amount value.
2292
+ */
2293
+ unit_amount_gross?: number;
2262
2294
  total_details?: /* The total details with tax (and discount) aggregated totals. */ TotalDetails;
2263
2295
  }
2264
2296
  /**
@@ -2270,6 +2302,10 @@ declare namespace Components {
2270
2302
  */
2271
2303
  export interface Product {
2272
2304
  [name: string]: any;
2305
+ /**
2306
+ * The description for the product
2307
+ */
2308
+ description?: string;
2273
2309
  /**
2274
2310
  * The product code
2275
2311
  */
@@ -2368,6 +2404,10 @@ declare namespace Components {
2368
2404
  * Total of all items, with same recurrence, after (discounts and) taxes are applied.
2369
2405
  */
2370
2406
  amount_total: number;
2407
+ /**
2408
+ * The unit gross amount value.
2409
+ */
2410
+ unit_amount_gross?: number;
2371
2411
  /**
2372
2412
  * Total of all items taxes, with same recurrence.
2373
2413
  */
@@ -2393,6 +2433,10 @@ declare namespace Components {
2393
2433
  * Total of all items, with same recurrence, after (discounts and) taxes are applied.
2394
2434
  */
2395
2435
  amount_total: number;
2436
+ /**
2437
+ * The unit gross amount value.
2438
+ */
2439
+ unit_amount_gross?: number;
2396
2440
  /**
2397
2441
  * Total of all items taxes, with same recurrence.
2398
2442
  */
package/dist/openapi.json CHANGED
@@ -933,6 +933,10 @@
933
933
  "$ref": "#/components/examples/product"
934
934
  },
935
935
  "properties": {
936
+ "description": {
937
+ "type": "string",
938
+ "description": "The description for the product"
939
+ },
936
940
  "code": {
937
941
  "type": "string",
938
942
  "description": "The product code"
@@ -2309,6 +2313,10 @@
2309
2313
  "type": "integer",
2310
2314
  "description": "The unit amount value"
2311
2315
  },
2316
+ "unit_amount_gross": {
2317
+ "type": "integer",
2318
+ "description": "The unit gross amount value."
2319
+ },
2312
2320
  "unit_amount_currency": {
2313
2321
  "$ref": "#/components/schemas/Currency"
2314
2322
  },
@@ -2426,6 +2434,10 @@
2426
2434
  "type": "integer",
2427
2435
  "description": "Total of all items, with same recurrence, after (discounts and) taxes are applied."
2428
2436
  },
2437
+ "unit_amount_gross": {
2438
+ "type": "integer",
2439
+ "description": "The unit gross amount value."
2440
+ },
2429
2441
  "amount_tax": {
2430
2442
  "type": "integer",
2431
2443
  "description": "Total of all items taxes, with same recurrence."
@@ -2643,6 +2655,11 @@
2643
2655
  "description": "The unit amount value",
2644
2656
  "readOnly": true
2645
2657
  },
2658
+ "unit_amount_gross": {
2659
+ "type": "integer",
2660
+ "description": "The unit gross amount value.",
2661
+ "readOnly": true
2662
+ },
2646
2663
  "amount_subtotal": {
2647
2664
  "type": "integer",
2648
2665
  "description": "Total before any (discounts or) taxes are applied.",
@@ -2843,6 +2860,10 @@
2843
2860
  "type": "integer",
2844
2861
  "description": "Total of all items, with same recurrence, after (discounts and) taxes are applied."
2845
2862
  },
2863
+ "unit_amount_gross": {
2864
+ "type": "integer",
2865
+ "description": "The unit gross amount value."
2866
+ },
2846
2867
  "amount_tax": {
2847
2868
  "type": "integer",
2848
2869
  "description": "Total of all items taxes, with same recurrence."
@@ -2921,6 +2942,10 @@
2921
2942
  "type": "integer",
2922
2943
  "description": "Total of all items after (discounts and) taxes are applied."
2923
2944
  },
2945
+ "unit_amount_gross": {
2946
+ "type": "integer",
2947
+ "description": "The unit gross amount value."
2948
+ },
2924
2949
  "total_details": {
2925
2950
  "$ref": "#/components/schemas/TotalDetails"
2926
2951
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.8.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",