From d7af1bf898398b98f3cbc5d70825bcfbb241ef57 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Wed, 18 May 2022 18:11:27 -0700 Subject: [PATCH] mqtt/sdk: update and publish --- plugins/mqtt/package-lock.json | 4 ++-- plugins/mqtt/package.json | 2 +- sdk/gen/types.input.ts | 2 +- sdk/types/index.d.ts | 2 +- sdk/types/index.ts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/mqtt/package-lock.json b/plugins/mqtt/package-lock.json index 140244e32..1376fffaa 100644 --- a/plugins/mqtt/package-lock.json +++ b/plugins/mqtt/package-lock.json @@ -1,12 +1,12 @@ { "name": "@scrypted/mqtt", - "version": "0.0.51", + "version": "0.0.52", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@scrypted/mqtt", - "version": "0.0.51", + "version": "0.0.52", "dependencies": { "@types/node": "^16.6.1", "aedes": "^0.46.1", diff --git a/plugins/mqtt/package.json b/plugins/mqtt/package.json index 00a54f675..9312e1343 100644 --- a/plugins/mqtt/package.json +++ b/plugins/mqtt/package.json @@ -39,5 +39,5 @@ "@scrypted/common": "file:../../common", "@types/nunjucks": "^3.2.0" }, - "version": "0.0.51" + "version": "0.0.52" } diff --git a/sdk/gen/types.input.ts b/sdk/gen/types.input.ts index 1e353e2b0..1b7fbf338 100644 --- a/sdk/gen/types.input.ts +++ b/sdk/gen/types.input.ts @@ -738,7 +738,7 @@ export interface Settings { export interface BinarySensor { binaryState?: boolean; } -export type TamperState = 'intrusion' | 'motion' | 'magnetic' | 'cover' | true; +export type TamperState = 'intrusion' | 'motion' | 'magnetic' | 'cover' | true | false; export interface TamperSensor { tampered?: TamperState; } diff --git a/sdk/types/index.d.ts b/sdk/types/index.d.ts index 5fabcd026..aa120225c 100644 --- a/sdk/types/index.d.ts +++ b/sdk/types/index.d.ts @@ -839,7 +839,7 @@ export interface Settings { export interface BinarySensor { binaryState?: boolean; } -export declare type TamperState = 'intrusion' | 'motion' | 'magnetic' | 'cover' | true; +export declare type TamperState = 'intrusion' | 'motion' | 'magnetic' | 'cover' | true | false; export interface TamperSensor { tampered?: TamperState; } diff --git a/sdk/types/index.ts b/sdk/types/index.ts index ee67cf21c..e0e2f93d7 100644 --- a/sdk/types/index.ts +++ b/sdk/types/index.ts @@ -1482,7 +1482,7 @@ export interface Settings { export interface BinarySensor { binaryState?: boolean; } -export type TamperState = 'intrusion' | 'motion' | 'magnetic' | 'cover' | true; +export type TamperState = 'intrusion' | 'motion' | 'magnetic' | 'cover' | true | false; export interface TamperSensor { tampered?: TamperState; }