qovery-typescript-axios 1.1.829 → 1.1.831

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}
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}
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}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.829",
3
+ "version": "v1.1.831",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {