diff --git a/sdk/package-lock.json b/sdk/package-lock.json index 2e1061a45..9f0f8fd94 100644 --- a/sdk/package-lock.json +++ b/sdk/package-lock.json @@ -1,12 +1,12 @@ { "name": "@scrypted/sdk", - "version": "0.3.118", + "version": "0.3.119", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@scrypted/sdk", - "version": "0.3.118", + "version": "0.3.119", "license": "ISC", "dependencies": { "@babel/preset-typescript": "^7.26.0", diff --git a/sdk/package.json b/sdk/package.json index b6928245a..4a748ba0d 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@scrypted/sdk", - "version": "0.3.118", + "version": "0.3.119", "description": "", "main": "dist/src/index.js", "exports": { diff --git a/sdk/types/package-lock.json b/sdk/types/package-lock.json index 4bbe83dd3..4557c8b37 100644 --- a/sdk/types/package-lock.json +++ b/sdk/types/package-lock.json @@ -1,12 +1,12 @@ { "name": "@scrypted/types", - "version": "0.3.109", + "version": "0.3.110", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@scrypted/types", - "version": "0.3.109", + "version": "0.3.110", "license": "ISC" } } diff --git a/sdk/types/package.json b/sdk/types/package.json index 7c2955a23..809ac41af 100644 --- a/sdk/types/package.json +++ b/sdk/types/package.json @@ -1,6 +1,6 @@ { "name": "@scrypted/types", - "version": "0.3.109", + "version": "0.3.110", "description": "", "main": "dist/index.js", "author": "", diff --git a/sdk/types/scrypted_python/scrypted_sdk/types.py b/sdk/types/scrypted_python/scrypted_sdk/types.py index c928b4d80..bc3056858 100644 --- a/sdk/types/scrypted_python/scrypted_sdk/types.py +++ b/sdk/types/scrypted_python/scrypted_sdk/types.py @@ -84,6 +84,7 @@ class ScryptedDeviceType(str, Enum): Event = "Event" Fan = "Fan" Garage = "Garage" + Internal = "Internal" Irrigation = "Irrigation" Light = "Light" Lock = "Lock" @@ -971,7 +972,7 @@ class TamperState(TypedDict): pass -TYPES_VERSION = "0.3.109" +TYPES_VERSION = "0.3.110" class AirPurifier: diff --git a/sdk/types/src/types.input.ts b/sdk/types/src/types.input.ts index 1b893169f..74c32969e 100644 --- a/sdk/types/src/types.input.ts +++ b/sdk/types/src/types.input.ts @@ -98,7 +98,14 @@ export interface EventListenerRegister { * @category Core Reference */ export enum ScryptedDeviceType { + /** + * @deprecated + */ Builtin = "Builtin", + /** + * Internal devices will not show up in device lists unless explicitly searched. + */ + Internal = "Internal", Camera = "Camera", Fan = "Fan", Light = "Light",