@epilot/pricing-client 3.36.0 → 3.36.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
@@ -1039,11 +1039,11 @@ declare namespace Components {
1039
1039
  /**
1040
1040
  * The cashback period, for now it's limited to either 0 months or 12 months
1041
1041
  */
1042
- cashback_period?: "0" | "12";
1042
+ cashback_period: "0" | "12";
1043
1043
  /**
1044
1044
  * The sum of all cashbacks for a specific cashback period
1045
1045
  */
1046
- amount_total?: number;
1046
+ amount_total: number;
1047
1047
  }
1048
1048
  /**
1049
1049
  * A catalog search payload
@@ -2881,7 +2881,7 @@ declare namespace Components {
2881
2881
  /**
2882
2882
  * Defines the way the price amount is display in epilot journeys.
2883
2883
  */
2884
- price_display_in_journeys?: "show_price" | "show_as_starting_price" | "show_as_on_request";
2884
+ price_display_in_journeys?: "show_price" | "show_as_starting_price" | "show_as_on_request" | "estimated_price";
2885
2885
  /**
2886
2886
  * The billing period duration
2887
2887
  */
@@ -3722,7 +3722,7 @@ declare namespace Components {
3722
3722
  /**
3723
3723
  * Defines the way the price amount is display in epilot journeys.
3724
3724
  */
3725
- price_display_in_journeys?: "show_price" | "show_as_starting_price" | "show_as_on_request";
3725
+ price_display_in_journeys?: "show_price" | "show_as_starting_price" | "show_as_on_request" | "estimated_price";
3726
3726
  /**
3727
3727
  * The billing period duration
3728
3728
  */
package/dist/openapi.json CHANGED
@@ -2345,7 +2345,8 @@
2345
2345
  "enum": [
2346
2346
  "show_price",
2347
2347
  "show_as_starting_price",
2348
- "show_as_on_request"
2348
+ "show_as_on_request",
2349
+ "estimated_price"
2349
2350
  ]
2350
2351
  },
2351
2352
  "billing_duration_amount": {
@@ -4301,7 +4302,11 @@
4301
4302
  "type": "integer",
4302
4303
  "description": "The sum of all cashbacks for a specific cashback period"
4303
4304
  }
4304
- }
4305
+ },
4306
+ "required": [
4307
+ "cashback_period",
4308
+ "amount_total"
4309
+ ]
4305
4310
  },
4306
4311
  "RecurrenceAmountWithTax": {
4307
4312
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/pricing-client",
3
- "version": "3.36.0",
3
+ "version": "3.36.1",
4
4
  "description": "Client for epilot Pricing APIs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",