@epilot/pricing-client 3.47.9-alpha.1 → 3.47.9-alpha.2
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 +6 -6
- package/dist/openapi.json +3 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -309,8 +309,8 @@ declare namespace Components {
|
|
|
309
309
|
_updated_at: string; // date-time
|
|
310
310
|
name: string | null;
|
|
311
311
|
description?: string | null;
|
|
312
|
-
type
|
|
313
|
-
category
|
|
312
|
+
type: "fixed" | "percentage";
|
|
313
|
+
category: "discount" | "cashback";
|
|
314
314
|
/**
|
|
315
315
|
* Use if type is set to percentage. The percentage to be discounted, represented as a whole integer.
|
|
316
316
|
*/
|
|
@@ -2328,8 +2328,8 @@ declare namespace Components {
|
|
|
2328
2328
|
_updated_at: string; // date-time
|
|
2329
2329
|
name: string | null;
|
|
2330
2330
|
description?: string | null;
|
|
2331
|
-
type
|
|
2332
|
-
category
|
|
2331
|
+
type: "fixed" | "percentage";
|
|
2332
|
+
category: "discount" | "cashback";
|
|
2333
2333
|
/**
|
|
2334
2334
|
* Use if type is set to percentage. The percentage to be discounted, represented as a whole integer.
|
|
2335
2335
|
*/
|
|
@@ -2508,8 +2508,8 @@ declare namespace Components {
|
|
|
2508
2508
|
_updated_at: string; // date-time
|
|
2509
2509
|
name: string | null;
|
|
2510
2510
|
description?: string | null;
|
|
2511
|
-
type
|
|
2512
|
-
category
|
|
2511
|
+
type: "fixed" | "percentage";
|
|
2512
|
+
category: "discount" | "cashback";
|
|
2513
2513
|
/**
|
|
2514
2514
|
* Use if type is set to percentage. The percentage to be discounted, represented as a whole integer.
|
|
2515
2515
|
*/
|
package/dist/openapi.json
CHANGED