sdk: update

This commit is contained in:
Koushik Dutta
2024-09-10 13:21:54 -07:00
parent 3d558e3119
commit d672e2271d
6 changed files with 13 additions and 8 deletions

4
sdk/package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/sdk",
"version": "0.3.61",
"version": "0.3.62",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/sdk",
"version": "0.3.61",
"version": "0.3.62",
"license": "ISC",
"dependencies": {
"@babel/preset-typescript": "^7.24.7",

View File

@@ -1,6 +1,6 @@
{
"name": "@scrypted/sdk",
"version": "0.3.61",
"version": "0.3.62",
"description": "",
"main": "dist/src/index.js",
"exports": {

View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/types",
"version": "0.3.57",
"version": "0.3.58",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/types",
"version": "0.3.57",
"version": "0.3.58",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.1.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@scrypted/types",
"version": "0.3.57",
"version": "0.3.58",
"description": "",
"main": "dist/index.js",
"author": "",

View File

@@ -852,10 +852,11 @@ class Setting(TypedDict):
choices: list[str]
combobox: bool
console: bool # Flag that hte UI should open the console.
description: str
deviceFilter: str
group: str
immediate: bool # Flat that the UI should immediately apply this setting.
immediate: bool # Flag that the UI should immediately apply this setting.
key: str
multiple: bool
placeholder: str

View File

@@ -2197,9 +2197,13 @@ export interface Setting {
deviceFilter?: string;
multiple?: boolean;
/**
* Flat that the UI should immediately apply this setting.
* Flag that the UI should immediately apply this setting.
*/
immediate?: boolean;
/**
* Flag that hte UI should open the console.
*/
console?: boolean;
value?: SettingValue;
}