Skip to content

Commit b796dc9

Browse files
jannoteelemGitHub Enterprise
authored and
GitHub Enterprise
committedAug 23, 2024·
FRIDGE-1580 Export WorkspaceOptions and update changelog (#427)
1 parent 8a155ef commit b796dc9

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
 

‎CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Bug fixes
44
----------
55
- Stop reconnecting after `Worker.disconnect` has been called.
66

7+
New Features
8+
----------
9+
- Export `WorkspaceOptions` type
10+
11+
Maintenance
12+
----------
13+
- Upgraded `ws` dependency
714

815
2.0.10
916
==========

‎types.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,12 @@ export interface WorkerOptions {
337337
enableVersionCheck?: boolean;
338338
}
339339

340+
export interface WorkspaceOptions {
341+
region?: string;
342+
pageSize?: number;
343+
logLevel?: "error" | "warn" | "info" | "debug" | "trace" | "silent";
344+
}
345+
340346
export interface TaskOptions {
341347
attributes?: any;
342348
taskChannelUniqueName?: string;

0 commit comments

Comments
 (0)
Please sign in to comment.