diff --git a/sdk/gen/types.input.ts b/sdk/gen/types.input.ts index 861d87f0c..adf09c543 100644 --- a/sdk/gen/types.input.ts +++ b/sdk/gen/types.input.ts @@ -1609,6 +1609,7 @@ export enum ScryptedMimeTypes { export type RequestMediaStream = (options?: RequestMediaStreamOptions) => Promise; export interface FFmpegTranscode { + videoDecoderArguments?: string[]; videoTranscodeArguments?: string[]; audioTranscodeArguments?: string[]; } diff --git a/sdk/types/index.d.ts b/sdk/types/index.d.ts index b705dcf47..0de39e4cd 100644 --- a/sdk/types/index.d.ts +++ b/sdk/types/index.d.ts @@ -1,5 +1,5 @@ /// -export declare const TYPES_VERSION = "0.0.57"; +export declare const TYPES_VERSION = "0.0.58"; export interface DeviceState { id?: string; info?: DeviceInformation; @@ -1636,6 +1636,7 @@ export declare enum ScryptedMimeTypes { } export declare type RequestMediaStream = (options?: RequestMediaStreamOptions) => Promise; export interface FFmpegTranscode { + videoDecoderArguments?: string[]; videoTranscodeArguments?: string[]; audioTranscodeArguments?: string[]; } diff --git a/sdk/types/index.js b/sdk/types/index.js index 392613764..3af21f5bb 100644 --- a/sdk/types/index.js +++ b/sdk/types/index.js @@ -1,7 +1,7 @@ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ScryptedMimeTypes = exports.ScryptedInterface = exports.MediaPlayerState = exports.SecuritySystemObstruction = exports.SecuritySystemMode = exports.AirQuality = exports.LockState = exports.ThermostatMode = exports.TemperatureUnit = exports.FanMode = exports.HumidityMode = exports.ScryptedDeviceType = exports.ScryptedInterfaceDescriptors = exports.ScryptedInterfaceProperty = exports.DeviceBase = exports.TYPES_VERSION = void 0; -exports.TYPES_VERSION = "0.0.57"; +exports.TYPES_VERSION = "0.0.58"; class DeviceBase { } exports.DeviceBase = DeviceBase; diff --git a/sdk/types/index.ts b/sdk/types/index.ts index 464357778..652769529 100644 --- a/sdk/types/index.ts +++ b/sdk/types/index.ts @@ -1,5 +1,5 @@ -export const TYPES_VERSION = "0.0.57"; +export const TYPES_VERSION = "0.0.58"; export interface DeviceState { @@ -2373,6 +2373,7 @@ export enum ScryptedMimeTypes { export type RequestMediaStream = (options?: RequestMediaStreamOptions) => Promise; export interface FFmpegTranscode { + videoDecoderArguments?: string[]; videoTranscodeArguments?: string[]; audioTranscodeArguments?: string[]; }