waldur-js-client 8.0.7-dev.20 → 8.0.7-dev.21

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.
@@ -11044,6 +11044,22 @@ export type OfferingComponent = {
11044
11044
  overage_component?: string | null;
11045
11045
  min_prepaid_duration?: number | null;
11046
11046
  max_prepaid_duration?: number | null;
11047
+ /**
11048
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
11049
+ */
11050
+ prepaid_duration_step?: number | null;
11051
+ /**
11052
+ * Minimum number of months allowed for a renewal.
11053
+ */
11054
+ min_renewal_duration?: number | null;
11055
+ /**
11056
+ * Maximum number of months allowed for a renewal.
11057
+ */
11058
+ max_renewal_duration?: number | null;
11059
+ /**
11060
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11061
+ */
11062
+ renewal_duration_step?: number | null;
11047
11063
  };
11048
11064
  export type OfferingComponentLimitRequest = {
11049
11065
  /**
@@ -11090,6 +11106,22 @@ export type OfferingComponentRequest = {
11090
11106
  overage_component?: string | null;
11091
11107
  min_prepaid_duration?: number | null;
11092
11108
  max_prepaid_duration?: number | null;
11109
+ /**
11110
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
11111
+ */
11112
+ prepaid_duration_step?: number | null;
11113
+ /**
11114
+ * Minimum number of months allowed for a renewal.
11115
+ */
11116
+ min_renewal_duration?: number | null;
11117
+ /**
11118
+ * Maximum number of months allowed for a renewal.
11119
+ */
11120
+ max_renewal_duration?: number | null;
11121
+ /**
11122
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11123
+ */
11124
+ renewal_duration_step?: number | null;
11093
11125
  };
11094
11126
  export type OfferingComponentStat = {
11095
11127
  readonly period: string;
@@ -24079,6 +24111,22 @@ export type UpdateOfferingComponentRequest = {
24079
24111
  overage_component?: string | null;
24080
24112
  min_prepaid_duration?: number | null;
24081
24113
  max_prepaid_duration?: number | null;
24114
+ /**
24115
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
24116
+ */
24117
+ prepaid_duration_step?: number | null;
24118
+ /**
24119
+ * Minimum number of months allowed for a renewal.
24120
+ */
24121
+ min_renewal_duration?: number | null;
24122
+ /**
24123
+ * Maximum number of months allowed for a renewal.
24124
+ */
24125
+ max_renewal_duration?: number | null;
24126
+ /**
24127
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
24128
+ */
24129
+ renewal_duration_step?: number | null;
24082
24130
  };
24083
24131
  export type UpdatePoolMember = {
24084
24132
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.7-dev.20",
3
+ "version": "8.0.7-dev.21",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",