From 44ff285148a85e4563f47fc8315971b03763e6e2 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Sat, 13 Nov 2021 21:32:51 -0800 Subject: [PATCH] core: path fix --- plugins/core/package.json | 2 +- plugins/core/src/converters.ts | 2 +- plugins/core/src/main.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/core/package.json b/plugins/core/package.json index 126fcea93..301feb8eb 100644 --- a/plugins/core/package.json +++ b/plugins/core/package.json @@ -1,6 +1,6 @@ { "name": "@scrypted/core", - "version": "0.0.139", + "version": "0.0.141", "description": "Scrypted Core plugin. Provides the UI, websocket, and engine.io APIs.", "author": "Scrypted", "license": "Apache-2.0", diff --git a/plugins/core/src/converters.ts b/plugins/core/src/converters.ts index 3c96b972a..aca00a2e9 100644 --- a/plugins/core/src/converters.ts +++ b/plugins/core/src/converters.ts @@ -1,4 +1,4 @@ -import { BufferConverter, HttpRequest, HttpRequestHandler, HttpResponse, ScryptedDeviceBase, ScryptedMimeTypes } from "@scrypted/sdk"; +import { MediaStreamUrl, BufferConverter, FFMpegInput, HttpRequest, HttpRequestHandler, HttpResponse, ScryptedDeviceBase, ScryptedMimeTypes } from "@scrypted/sdk"; import sdk from "@scrypted/sdk"; import mimeTypes from "mime-types"; diff --git a/plugins/core/src/main.ts b/plugins/core/src/main.ts index 407555adb..2ec289364 100644 --- a/plugins/core/src/main.ts +++ b/plugins/core/src/main.ts @@ -17,7 +17,7 @@ import { Automation } from './automation'; import { AggregateDevice, createAggregateDevice } from './aggregate'; import net from 'net'; import { Script } from './script'; -import { addBuiltins } from "../../../common/src/wrtc-converters"; +import { addBuiltins } from "../../../common/src/wrtc-convertors"; import { updatePluginsData } from './update-plugins'; addBuiltins(console, mediaManager);