@epilot/pricing-client 3.35.14-beta.1 → 3.35.14-beta.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 CHANGED
@@ -2053,6 +2053,10 @@ declare namespace Components {
2053
2053
  * EUR
2054
2054
  */
2055
2055
  Currency;
2056
+ /**
2057
+ * The cashback period, for now it's limited to either 0 months or 12 months
2058
+ */
2059
+ cashback_period?: "0" | "12";
2056
2060
  active?: boolean;
2057
2061
  /**
2058
2062
  * The prices associated with the coupon. Will hold price entities if hydrated, relations otherwise.
package/dist/openapi.json CHANGED
@@ -5033,6 +5033,14 @@
5033
5033
  }
5034
5034
  ]
5035
5035
  },
5036
+ "cashback_period": {
5037
+ "type": "string",
5038
+ "description": "The cashback period, for now it's limited to either 0 months or 12 months",
5039
+ "enum": [
5040
+ "0",
5041
+ "12"
5042
+ ]
5043
+ },
5036
5044
  "active": {
5037
5045
  "type": "boolean"
5038
5046
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.35.14-beta.1",
3
+ "version": "3.35.14-beta.2",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",