Skip to content

Commit

Permalink
FRIDGE-1580 Export WorkspaceOptions and update changelog (#427)
Browse files Browse the repository at this point in the history
  • Loading branch information
jannoteelem authored and GitHub Enterprise committed Aug 23, 2024
1 parent 8a155ef commit b796dc9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Bug fixes
----------
- Stop reconnecting after `Worker.disconnect` has been called.

New Features
----------
- Export `WorkspaceOptions` type

Maintenance
----------
- Upgraded `ws` dependency

2.0.10
==========
Expand Down
6 changes: 6 additions & 0 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,12 @@ export interface WorkerOptions {
enableVersionCheck?: boolean;
}

export interface WorkspaceOptions {
region?: string;
pageSize?: number;
logLevel?: "error" | "warn" | "info" | "debug" | "trace" | "silent";
}

export interface TaskOptions {
attributes?: any;
taskChannelUniqueName?: string;
Expand Down

0 comments on commit b796dc9

Please sign in to comment.