@blockscout/autoscout-types 1.7.2-alpha.1 → 1.8.0

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.
@@ -157,6 +157,7 @@ export interface CreateInstanceRequest {
157
157
  name: string;
158
158
  /** initial config */
159
159
  config: DeployConfig | undefined;
160
+ skip_validation_for_fields: string[];
160
161
  }
161
162
  export interface CreateInstanceResponse {
162
163
  instance_id: string;
@@ -169,6 +170,7 @@ export interface DeleteInstanceResponse {
169
170
  export interface UpdateConfigRequest {
170
171
  instance_id: string;
171
172
  config: DeployConfig | undefined;
173
+ skip_validation_for_fields: string[];
172
174
  }
173
175
  export interface UpdateConfigResponse {
174
176
  config: DeployConfig | undefined;
@@ -179,9 +181,11 @@ export interface UpdateConfigPartialRequest {
179
181
  config: {
180
182
  [key: string]: any;
181
183
  } | undefined;
184
+ skip_validation_for_fields: string[];
182
185
  }
183
186
  export interface RegenerateConfigBatchRequest {
184
187
  instance_ids: string[];
188
+ skip_validation_for_fields: string[];
185
189
  }
186
190
  export interface RegenerateConfigBatchResponse {
187
191
  total: number;
@@ -183,6 +183,7 @@ export interface CreateInstanceRequest {
183
183
  name: string;
184
184
  /** initial config */
185
185
  config: DeployConfig | undefined;
186
+ skip_validation_for_fields: string[];
186
187
  }
187
188
 
188
189
  export interface CreateInstanceResponse {
@@ -199,6 +200,7 @@ export interface DeleteInstanceResponse {
199
200
  export interface UpdateConfigRequest {
200
201
  instance_id: string;
201
202
  config: DeployConfig | undefined;
203
+ skip_validation_for_fields: string[];
202
204
  }
203
205
 
204
206
  export interface UpdateConfigResponse {
@@ -209,10 +211,12 @@ export interface UpdateConfigPartialRequest {
209
211
  instance_id: string;
210
212
  /** See `DeployConfig` for available fields */
211
213
  config: { [key: string]: any } | undefined;
214
+ skip_validation_for_fields: string[];
212
215
  }
213
216
 
214
217
  export interface RegenerateConfigBatchRequest {
215
218
  instance_ids: string[];
219
+ skip_validation_for_fields: string[];
216
220
  }
217
221
 
218
222
  export interface RegenerateConfigBatchResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/autoscout-types",
3
- "version": "1.7.2-alpha.1",
3
+ "version": "1.8.0",
4
4
  "description": "TypeScript definitions for Autoscout microservice",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",