@blockscout/autoscout-types 1.1.0-alpha.0 → 1.1.0-alpha.1

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.
@@ -273,9 +273,12 @@ export interface CreateStripeDepositResponse {
273
273
  url: string;
274
274
  }
275
275
  export interface ListExternalDepositsRequest {
276
+ page?: number | undefined;
277
+ per_page?: number | undefined;
276
278
  }
277
279
  export interface ListExternalDepositsResponse {
278
280
  items: Deposit[];
281
+ pagination: PaginationResult | undefined;
279
282
  }
280
283
  export interface Autoscout {
281
284
  GetConfigSchema(request: GetConfigSchemaRequest): Promise<ConfigSchema>;
@@ -333,10 +333,13 @@ export interface CreateStripeDepositResponse {
333
333
  }
334
334
 
335
335
  export interface ListExternalDepositsRequest {
336
+ page?: number | undefined;
337
+ per_page?: number | undefined;
336
338
  }
337
339
 
338
340
  export interface ListExternalDepositsResponse {
339
341
  items: Deposit[];
342
+ pagination: PaginationResult | undefined;
340
343
  }
341
344
 
342
345
  export interface Autoscout {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/autoscout-types",
3
- "version": "1.1.0-alpha.0",
3
+ "version": "1.1.0-alpha.1",
4
4
  "description": "TypeScript definitions for Autoscout microservice",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",