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 +3 -3
- package/dist/api.d.ts +5 -3
- package/dist/esm/api.d.ts +5 -3
- package/package.json +1 -1
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'?:
|
|
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'?:
|
|
808
|
+
'default_rule_labels'?: {
|
|
809
|
+
[key: string]: string;
|
|
810
|
+
} | null;
|
|
809
811
|
/**
|
|
810
812
|
*
|
|
811
813
|
* @type {string}
|