sdk: add col

This commit is contained in:
Koushik Dutta
2025-02-25 21:14:14 -08:00
parent 992fe98f5e
commit 133cbcf5f5
6 changed files with 11 additions and 7 deletions

4
sdk/package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/sdk",
"version": "0.3.124",
"version": "0.3.125",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@scrypted/sdk",
"version": "0.3.124",
"version": "0.3.125",
"license": "ISC",
"dependencies": {
"@babel/preset-typescript": "^7.26.0",

View File

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

View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/types",
"version": "0.3.114",
"version": "0.3.115",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/types",
"version": "0.3.114",
"version": "0.3.115",
"license": "ISC"
}
}

View File

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

View File

@@ -520,6 +520,8 @@ class DeviceCreatorSettings(TypedDict):
class DeviceInformation(TypedDict):
col1: str
col2: str
deeplink: Any
firmware: str
ip: str
@@ -975,7 +977,7 @@ class TamperState(TypedDict):
pass
TYPES_VERSION = "0.3.114"
TYPES_VERSION = "0.3.115"
class AirPurifier:

View File

@@ -1953,6 +1953,8 @@ export interface DeviceInformation {
apple?: string;
android?: string;
};
col1?: string;
col2?: string;
}
/**
* Device objects are created by DeviceProviders when new devices are discover and synced to Scrypted via the DeviceManager.