Skip to content

Commit a95b77f

Browse files
committed
sdk: add cluster worker address
1 parent 3ff75f0 commit a95b77f

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

sdk/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scrypted/sdk",
3-
"version": "0.3.111",
3+
"version": "0.3.112",
44
"description": "",
55
"main": "dist/src/index.js",
66
"exports": {

sdk/types/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scrypted/types",
3-
"version": "0.3.103",
3+
"version": "0.3.104",
44
"description": "",
55
"main": "dist/index.js",
66
"author": "",

sdk/types/scrypted_python/scrypted_sdk/types.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,7 @@ class ClusterForkInterfaceOptions(TypedDict):
467467

468468
class ClusterWorker(TypedDict):
469469

470+
address: str
470471
forks: list[ClusterFork]
471472
id: str
472473
labels: list[str]
@@ -956,7 +957,7 @@ class TamperState(TypedDict):
956957
pass
957958

958959

959-
TYPES_VERSION = "0.3.103"
960+
TYPES_VERSION = "0.3.104"
960961

961962

962963
class AirPurifier:

sdk/types/src/types.input.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2713,6 +2713,7 @@ export interface ClusterWorker {
27132713
labels: string[];
27142714
forks: ClusterFork[];
27152715
mode: 'server' | 'client';
2716+
address: string;
27162717
}
27172718

27182719
export interface ClusterManager {

0 commit comments

Comments
 (0)