sdk: Update

This commit is contained in:
Koushik Dutta
2025-02-19 14:28:56 -08:00
parent 5006bb90fc
commit bb82eb6bde
6 changed files with 15 additions and 7 deletions

4
sdk/package-lock.json generated
View File

@@ -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",

View File

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

View File

@@ -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"
}
}

View File

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

View File

@@ -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:

View File

@@ -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",