@blockscout/autoscout-types 1.9.2 → 1.9.3
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/dist/v1/autoscout.d.ts +2 -2
- package/dist/v1/autoscout.ts +2 -2
- package/package.json +1 -1
package/dist/v1/autoscout.d.ts
CHANGED
|
@@ -269,8 +269,8 @@ export interface ListInstancesResponse {
|
|
|
269
269
|
pagination: PaginationResult | undefined;
|
|
270
270
|
}
|
|
271
271
|
export interface SearchInstancesRequest {
|
|
272
|
-
|
|
273
|
-
|
|
272
|
+
instance_private_id?: number | undefined;
|
|
273
|
+
instance_public_id?: string | undefined;
|
|
274
274
|
instance_slug?: string | undefined;
|
|
275
275
|
user_id?: number | undefined;
|
|
276
276
|
user_email?: string | undefined;
|
package/dist/v1/autoscout.ts
CHANGED
|
@@ -315,8 +315,8 @@ export interface ListInstancesResponse {
|
|
|
315
315
|
}
|
|
316
316
|
|
|
317
317
|
export interface SearchInstancesRequest {
|
|
318
|
-
|
|
319
|
-
|
|
318
|
+
instance_private_id?: number | undefined;
|
|
319
|
+
instance_public_id?: string | undefined;
|
|
320
320
|
instance_slug?: string | undefined;
|
|
321
321
|
user_id?: number | undefined;
|
|
322
322
|
user_email?: string | undefined;
|