@tolinax/ayoune-interfaces 2024.4.34 → 2024.4.36

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.
@@ -33,9 +33,9 @@ interface ScrapeConfig {
33
33
  credentials?: string;
34
34
  credentials_file?: string;
35
35
  };
36
- oauth2: any;
37
- follow_redirects: boolean;
38
- enable_http2: boolean;
36
+ oauth2?: any;
37
+ follow_redirects?: boolean;
38
+ enable_http2?: boolean;
39
39
  tls_config?: TLSConfig;
40
40
  proxy_url?: string;
41
41
  no_proxy?: string;
@@ -151,10 +151,10 @@ interface GlobalConfig {
151
151
  }
152
152
  interface PromConfig {
153
153
  global: GlobalConfig;
154
- rule_files?: string[];
155
- scrape_config_files?: string[];
156
- scrape_configs?: ScrapeConfig[];
157
154
  alerting?: Alerting;
155
+ scrape_configs?: ScrapeConfig[];
156
+ scrape_config_files?: string[];
157
+ rule_files?: string[];
158
158
  remote_write?: RemoteWrite[];
159
159
  remote_read?: RemoteRead[];
160
160
  storage?: Storage;
@@ -81,17 +81,18 @@ export interface IaYOUneApiAction extends IDefaultFields {
81
81
  deprecated?: boolean;
82
82
  headers: IHeader[];
83
83
  excludedDefaultParams: IExcludedDefaultParams[];
84
+ excludeAllDefaultParams?: boolean;
84
85
  query: IQueryParams[];
85
86
  params: IParam[];
86
87
  body?: string;
87
88
  answer?: string;
88
89
  answerType?: string;
90
+ singleAnswer?: boolean;
89
91
  internal?: boolean;
90
92
  lockWrites?: boolean;
91
93
  useBasicAuth?: boolean;
92
94
  basicAuth?: IBasicAuth;
93
95
  debug?: boolean;
94
- excludeAllDefaultParams?: boolean;
95
96
  responses: IOpenApiSpec;
96
97
  }
97
98
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.4.34",
3
+ "version": "2024.4.36",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",