qovery-typescript-axios 1.1.830 → 1.1.832

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/api.ts CHANGED
@@ -858,11 +858,11 @@ export interface AlertingConfig {
858
858
  */
859
859
  'enabled': boolean;
860
860
  /**
861
- *
862
- * @type {string}
861
+ * Key-value pairs of default labels to be applied to alert rules
862
+ * @type {{ [key: string]: string; }}
863
863
  * @memberof AlertingConfig
864
864
  */
865
- 'default_rule_labels'?: string;
865
+ 'default_rule_labels'?: { [key: string]: string; } | null;
866
866
  /**
867
867
  *
868
868
  * @type {string}
@@ -15272,6 +15272,12 @@ export interface Organization {
15272
15272
  * @memberof Organization
15273
15273
  */
15274
15274
  'owner'?: string;
15275
+ /**
15276
+ * If set, indicates a billing-related restriction on the organization. \'NO_CREDIT_CARD\' means the organization is on a free trial without a credit card — managed cluster creation and deployments on managed clusters are blocked, but demo cluster usage is allowed. Any other value blocks all deployments. null means no restriction.
15277
+ * @type {string}
15278
+ * @memberof Organization
15279
+ */
15280
+ 'billing_deployment_restriction'?: string | null;
15275
15281
  /**
15276
15282
  *
15277
15283
  * @type {OrganizationAllOfOrganizationPlan}
package/dist/api.d.ts CHANGED
@@ -801,11 +801,13 @@ export interface AlertingConfig {
801
801
  */
802
802
  'enabled': boolean;
803
803
  /**
804
- *
805
- * @type {string}
804
+ * Key-value pairs of default labels to be applied to alert rules
805
+ * @type {{ [key: string]: string; }}
806
806
  * @memberof AlertingConfig
807
807
  */
808
- 'default_rule_labels'?: string;
808
+ 'default_rule_labels'?: {
809
+ [key: string]: string;
810
+ } | null;
809
811
  /**
810
812
  *
811
813
  * @type {string}
@@ -14817,6 +14819,12 @@ export interface Organization {
14817
14819
  * @memberof Organization
14818
14820
  */
14819
14821
  'owner'?: string;
14822
+ /**
14823
+ * If set, indicates a billing-related restriction on the organization. \'NO_CREDIT_CARD\' means the organization is on a free trial without a credit card — managed cluster creation and deployments on managed clusters are blocked, but demo cluster usage is allowed. Any other value blocks all deployments. null means no restriction.
14824
+ * @type {string}
14825
+ * @memberof Organization
14826
+ */
14827
+ 'billing_deployment_restriction'?: string | null;
14820
14828
  /**
14821
14829
  *
14822
14830
  * @type {OrganizationAllOfOrganizationPlan}
package/dist/esm/api.d.ts CHANGED
@@ -801,11 +801,13 @@ export interface AlertingConfig {
801
801
  */
802
802
  'enabled': boolean;
803
803
  /**
804
- *
805
- * @type {string}
804
+ * Key-value pairs of default labels to be applied to alert rules
805
+ * @type {{ [key: string]: string; }}
806
806
  * @memberof AlertingConfig
807
807
  */
808
- 'default_rule_labels'?: string;
808
+ 'default_rule_labels'?: {
809
+ [key: string]: string;
810
+ } | null;
809
811
  /**
810
812
  *
811
813
  * @type {string}
@@ -14817,6 +14819,12 @@ export interface Organization {
14817
14819
  * @memberof Organization
14818
14820
  */
14819
14821
  'owner'?: string;
14822
+ /**
14823
+ * If set, indicates a billing-related restriction on the organization. \'NO_CREDIT_CARD\' means the organization is on a free trial without a credit card — managed cluster creation and deployments on managed clusters are blocked, but demo cluster usage is allowed. Any other value blocks all deployments. null means no restriction.
14824
+ * @type {string}
14825
+ * @memberof Organization
14826
+ */
14827
+ 'billing_deployment_restriction'?: string | null;
14820
14828
  /**
14821
14829
  *
14822
14830
  * @type {OrganizationAllOfOrganizationPlan}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.830",
3
+ "version": "v1.1.832",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {