sdk: update

This commit is contained in:
Koushik Dutta
2023-04-29 11:30:42 -07:00
parent 02d5b429b7
commit 015794c1d1
6 changed files with 9 additions and 12 deletions

4
sdk/package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/sdk",
"version": "0.2.97",
"version": "0.2.99",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/sdk",
"version": "0.2.97",
"version": "0.2.99",
"license": "ISC",
"dependencies": {
"@babel/preset-typescript": "^7.18.6",

View File

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

View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/types",
"version": "0.2.87",
"version": "0.2.89",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/types",
"version": "0.2.87",
"version": "0.2.89",
"license": "ISC",
"devDependencies": {
"@types/rimraf": "^3.0.2",

View File

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

View File

@@ -312,9 +312,6 @@ class MediaStreamSource(TypedDict):
class MediaStreamTool(TypedDict):
pass
class Point(TypedDict):
pass
class AdoptDevice(TypedDict):
nativeId: str
settings: DeviceCreatorSettings
@@ -711,16 +708,16 @@ class VideoClip(TypedDict):
pass
class VideoClipOptions(TypedDict):
aspectRatio: float
count: float
endTime: float
reverseOrder: bool
startId: str
startTime: float
thumbnailSize: Point
pass
class VideoClipThumbnailOptions(TypedDict):
thumbnailSize: Point
aspectRatio: float
pass
class VideoFrameGeneratorOptions(TypedDict):

View File

@@ -745,7 +745,7 @@ export interface VideoClipOptions extends VideoClipThumbnailOptions {
}
export interface VideoClipThumbnailOptions {
thumbnailSize?: Point;
aspectRatio?: number;
}
export interface VideoClips {