@epilot/pricing-client 3.45.0 → 3.46.0

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
@@ -281,22 +281,22 @@ declare namespace Components {
281
281
  /**
282
282
  * Use if type is set to fixed. The fixed amount in cents to be discounted, represented as a whole integer.
283
283
  */
284
- fixed_value?: number | null;
284
+ fixed_value?: number;
285
285
  /**
286
286
  * Use if type is set to fixed. The unit amount in cents to be discounted, represented as a decimal string with at most 12 decimal places.
287
287
  */
288
- fixed_value_decimal?: string | null;
288
+ fixed_value_decimal?: string;
289
289
  /**
290
290
  * Use if type is set to fixed. Three-letter ISO currency code, in lowercase.
291
291
  */
292
- fixed_value_currency?: null & (/* Use if type is set to fixed. Three-letter ISO currency code, in lowercase. */ /**
292
+ fixed_value_currency?: /* Use if type is set to fixed. Three-letter ISO currency code, in lowercase. */ /**
293
293
  * Three-letter ISO currency code, in lowercase. Must be a supported currency.
294
294
  * ISO 4217 CURRENCY CODES as specified in the documentation: https://www.iso.org/iso-4217-currency-codes.html
295
295
  *
296
296
  * example:
297
297
  * EUR
298
298
  */
299
- Currency);
299
+ Currency;
300
300
  /**
301
301
  * The cashback period, for now it's limited to either 0 months or 12 months
302
302
  */
@@ -2304,22 +2304,22 @@ declare namespace Components {
2304
2304
  /**
2305
2305
  * Use if type is set to fixed. The fixed amount in cents to be discounted, represented as a whole integer.
2306
2306
  */
2307
- fixed_value?: number | null;
2307
+ fixed_value?: number;
2308
2308
  /**
2309
2309
  * Use if type is set to fixed. The unit amount in cents to be discounted, represented as a decimal string with at most 12 decimal places.
2310
2310
  */
2311
- fixed_value_decimal?: string | null;
2311
+ fixed_value_decimal?: string;
2312
2312
  /**
2313
2313
  * Use if type is set to fixed. Three-letter ISO currency code, in lowercase.
2314
2314
  */
2315
- fixed_value_currency?: null & (/* Use if type is set to fixed. Three-letter ISO currency code, in lowercase. */ /**
2315
+ fixed_value_currency?: /* Use if type is set to fixed. Three-letter ISO currency code, in lowercase. */ /**
2316
2316
  * Three-letter ISO currency code, in lowercase. Must be a supported currency.
2317
2317
  * ISO 4217 CURRENCY CODES as specified in the documentation: https://www.iso.org/iso-4217-currency-codes.html
2318
2318
  *
2319
2319
  * example:
2320
2320
  * EUR
2321
2321
  */
2322
- Currency);
2322
+ Currency;
2323
2323
  /**
2324
2324
  * The cashback period, for now it's limited to either 0 months or 12 months
2325
2325
  */
@@ -2424,22 +2424,22 @@ declare namespace Components {
2424
2424
  /**
2425
2425
  * Use if type is set to fixed. The fixed amount in cents to be discounted, represented as a whole integer.
2426
2426
  */
2427
- fixed_value?: number | null;
2427
+ fixed_value?: number;
2428
2428
  /**
2429
2429
  * Use if type is set to fixed. The unit amount in cents to be discounted, represented as a decimal string with at most 12 decimal places.
2430
2430
  */
2431
- fixed_value_decimal?: string | null;
2431
+ fixed_value_decimal?: string;
2432
2432
  /**
2433
2433
  * Use if type is set to fixed. Three-letter ISO currency code, in lowercase.
2434
2434
  */
2435
- fixed_value_currency?: null & (/* Use if type is set to fixed. Three-letter ISO currency code, in lowercase. */ /**
2435
+ fixed_value_currency?: /* Use if type is set to fixed. Three-letter ISO currency code, in lowercase. */ /**
2436
2436
  * Three-letter ISO currency code, in lowercase. Must be a supported currency.
2437
2437
  * ISO 4217 CURRENCY CODES as specified in the documentation: https://www.iso.org/iso-4217-currency-codes.html
2438
2438
  *
2439
2439
  * example:
2440
2440
  * EUR
2441
2441
  */
2442
- Currency);
2442
+ Currency;
2443
2443
  /**
2444
2444
  * The cashback period, for now it's limited to either 0 months or 12 months
2445
2445
  */
package/dist/openapi.json CHANGED
@@ -5501,13 +5501,11 @@
5501
5501
  },
5502
5502
  "fixed_value": {
5503
5503
  "description": "Use if type is set to fixed. The fixed amount in cents to be discounted, represented as a whole integer.",
5504
- "type": "number",
5505
- "nullable": true
5504
+ "type": "number"
5506
5505
  },
5507
5506
  "fixed_value_decimal": {
5508
5507
  "description": "Use if type is set to fixed. The unit amount in cents to be discounted, represented as a decimal string with at most 12 decimal places.",
5509
- "type": "string",
5510
- "nullable": true
5508
+ "type": "string"
5511
5509
  },
5512
5510
  "fixed_value_currency": {
5513
5511
  "description": "Use if type is set to fixed. Three-letter ISO currency code, in lowercase.",
@@ -5515,8 +5513,7 @@
5515
5513
  {
5516
5514
  "$ref": "#/components/schemas/Currency"
5517
5515
  }
5518
- ],
5519
- "nullable": true
5516
+ ]
5520
5517
  },
5521
5518
  "cashback_period": {
5522
5519
  "type": "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.45.0",
3
+ "version": "3.46.0",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",