Skip to content

Commit 72e2323

Browse files
fix: TypeScript add missing option in fetchWorkerpoolOrderbook (#481)
1 parent 2854ef9 commit 72e2323

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

docs/classes/IExecOrderbookModule.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@ console.log('total orders:', count);
295295
| `options.pageSize?` | `number` | size of the page to fetch |
296296
| `options.requester?` | `string` | include orders restricted to specified requester (use `'any'` to include any requester) |
297297
| `options.workerpool?` | `string` | filter by workerpool |
298+
| `options.workerpoolOwner?` | `string` | filter by workerpool owner |
298299
299300
#### Returns
300301

src/lib/IExecOrderbookModule.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,10 @@ export default class IExecOrderbookModule extends IExecModule {
399399
* filter by workerpool
400400
*/
401401
workerpool?: Addressish;
402+
/**
403+
* filter by workerpool owner
404+
*/
405+
workerpoolOwner?: Addressish;
402406
/**
403407
* filter by category
404408
*/

0 commit comments

Comments
 (0)