@@ -71,7 +71,7 @@ current IExecConfig
7171
7272### fetchAppOrderbook
7373
74- ▸ ** fetchAppOrderbook** (` appAddress ` , ` options? ` ): ` Promise ` <[ ` PaginableOrders ` ] ( ../interfaces/internal_.PaginableOrders.md ) <[ ` PublishedApporder ` ] ( ../interfaces/internal_.PublishedApporder.md ) \>\>
74+ ▸ ** fetchAppOrderbook** (` appAddressOrOptions ` , ` options? ` ): ` Promise ` <[ ` PaginableOrders ` ] ( ../interfaces/internal_.PaginableOrders.md ) <[ ` PublishedApporder ` ] ( ../interfaces/internal_.PublishedApporder.md ) \>\>
7575
7676find the cheapest orders for the specified app.
7777
@@ -88,8 +88,8 @@ console.log('total orders:', count);
8888
8989| Name | Type | Description |
9090| :------ | :------ | :------ |
91- | ` appAddress ` | ` string` | - |
92- | ` options? ` | ` Object ` | - |
91+ | ` appAddressOrOptions ` | ` string` \| { ` app ? ` : ` string ` ; ` appOwner ? ` : ` string ` ; ` dataset ? ` : ` string ` ; ` isDatasetStrict ? ` : ` boolean ` ; ` isRequesterStrict ? ` : ` boolean ` ; ` isWorkerpoolStrict ? ` : ` boolean ` ; ` maxTag ? ` : [ ` Tag ` ](../modules.md#tag) \| ` string ` [] ; ` minTag ? ` : [ ` Tag ` ](../modules.md#tag) \| ` string ` [] ; ` minVolume ? ` : [ ` BNish ` ](../modules.md#bnish) ; ` page ? ` : ` number ` ; ` pageSize ? ` : ` number ` ; ` requester ? ` : ` string ` ; ` workerpool ? ` : ` string ` } | - |
92+ | ` options? ` | ` Object ` | ** ` Deprecated ` ** use first parameter instead migration: replace ` fetchAppOrderbook (appAddress, options) ` by ` fetchAppOrderbook ({ app : appAddress, ... options }) ` |
9393| ` options .dataset ? ` | ` string` | include orders restricted to specified dataset (use ` ' any' ` to include any dataset) |
9494| ` options .isDatasetStrict ? ` | ` boolean` | filters out orders allowing “any” dataset (default: ` false ` ) |
9595| ` options .isRequesterStrict ? ` | ` boolean` | filters out orders allowing “any” requester (default: ` false ` ) |
135135
136136### fetchDatasetOrderbook
137137
138- ▸ **fetchDatasetOrderbook**(` datasetAddress ` , ` options? ` ): ` Promise ` <[` PaginableOrders` ](../interfaces/internal_.PaginableOrders.md)<[` PublishedDatasetorder` ](../interfaces/internal_.PublishedDatasetorder.md)\>\>
138+ ▸ **fetchDatasetOrderbook**(` datasetAddressOrOptions ` , ` options? ` ): ` Promise ` <[` PaginableOrders` ](../interfaces/internal_.PaginableOrders.md)<[` PublishedDatasetorder` ](../interfaces/internal_.PublishedDatasetorder.md)\>\>
139139
140140find the cheapest orders for the specified dataset.
141141
@@ -152,8 +152,8 @@ console.log('total orders:', count);
152152
153153| Name | Type | Description |
154154| :------ | :------ | :------ |
155- | ` datasetAddress ` | ` string` | - |
156- | ` options? ` | ` Object ` | - |
155+ | ` datasetAddressOrOptions ` | ` string` \| { ` app ? ` : ` string ` ; ` dataset ? ` : ` string ` ; ` datasetOwner ? ` : ` string ` ; ` isAppStrict ? ` : ` boolean ` ; ` isRequesterStrict ? ` : ` boolean ` ; ` isWorkerpoolStrict ? ` : ` boolean ` ; ` maxTag ? ` : [ ` Tag ` ](../modules.md#tag) \| ` string ` [] ; ` minTag ? ` : [ ` Tag ` ](../modules.md#tag) \| ` string ` [] ; ` minVolume ? ` : [ ` BNish ` ](../modules.md#bnish) ; ` page ? ` : ` number ` ; ` pageSize ? ` : ` number ` ; ` requester ? ` : ` string ` ; ` workerpool ? ` : ` string ` } | - |
156+ | ` options? ` | ` Object ` | ** ` Deprecated ` ** use first parameter instead migration: replace ` fetchDatasetOrderbook (datasetAddress, options) ` by ` fetchDatasetOrderbook ({ dataset : datasetAddress, ... options }) ` |
157157| ` options .app ? ` | ` string` | include orders restricted to specified app (use ` ' any' ` to include any app) |
158158| ` options .isAppStrict ? ` | ` boolean` | filters out orders allowing “any” app (default: ` false ` ) |
159159| ` options .isRequesterStrict ? ` | ` boolean` | filters out orders allowing “any” requester (default: ` false ` ) |
0 commit comments