@norskvideo/norsk-studio-built-ins 1.26.0-2025-02-27-9ab5dbcd → 1.26.0-2025-02-27-d5701429
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/input.rtmp/runtime.d.ts +2 -2
- package/lib/input.rtmp/runtime.js +10 -34
- package/lib/input.rtmp/runtime.js.map +1 -1
- package/lib/input.srt-listener/runtime.d.ts +2 -2
- package/lib/input.srt-listener/runtime.js +9 -33
- package/lib/input.srt-listener/runtime.js.map +1 -1
- package/lib/output.autoCmaf/runtime.js +7 -30
- package/lib/output.autoCmaf/runtime.js.map +1 -1
- package/lib/output.preview/runtime.d.ts +5 -2
- package/lib/output.preview/runtime.js +7 -15
- package/lib/output.preview/runtime.js.map +1 -1
- package/lib/output.rtmp/runtime.js +7 -16
- package/lib/output.rtmp/runtime.js.map +1 -1
- package/lib/output.srt/runtime.js +7 -30
- package/lib/output.srt/runtime.js.map +1 -1
- package/lib/output.whep/runtime.d.ts +2 -2
- package/lib/output.whep/runtime.js +7 -30
- package/lib/output.whep/runtime.js.map +1 -1
- package/lib/processor.browserOverlay/runtime.d.ts +2 -2
- package/lib/processor.browserOverlay/runtime.js +14 -28
- package/lib/processor.browserOverlay/runtime.js.map +1 -1
- package/lib/processor.onscreenGraphic/runtime.js +22 -44
- package/lib/processor.onscreenGraphic/runtime.js.map +1 -1
- package/package.json +4 -3
- package/lib/shared/api.d.ts +0 -35
- package/lib/shared/api.js +0 -34
- package/lib/shared/api.js.map +0 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@norskvideo/norsk-studio-built-ins",
|
3
|
-
"version": "1.26.0-2025-02-27-
|
3
|
+
"version": "1.26.0-2025-02-27-d5701429",
|
4
4
|
"description": "",
|
5
5
|
"scripts": {
|
6
6
|
"clean": "rm -rf lib",
|
@@ -22,7 +22,7 @@
|
|
22
22
|
"license": "MIT",
|
23
23
|
"dependencies": {
|
24
24
|
"@norskvideo/norsk-sdk": "^1.0.401-2025-02-27-ac804321",
|
25
|
-
"@norskvideo/norsk-studio": "^1.26.0-2025-02-27-
|
25
|
+
"@norskvideo/norsk-studio": "^1.26.0-2025-02-27-07a0da81",
|
26
26
|
"@norskvideo/webrtc-client": "^0.1.2",
|
27
27
|
"body-parser": "^1.20.2",
|
28
28
|
"cors": "^2.8.5",
|
@@ -30,7 +30,8 @@
|
|
30
30
|
"express-ws": "^5.0.2",
|
31
31
|
"json-refs": "^3.0.15",
|
32
32
|
"jsonwebtoken": "^9.0.2",
|
33
|
-
"multer": "^1.4.5-lts.1"
|
33
|
+
"multer": "^1.4.5-lts.1",
|
34
|
+
"fast-xml-parser": "^4.4.1"
|
34
35
|
},
|
35
36
|
"main": "lib/index.js",
|
36
37
|
"devDependencies": {
|
package/lib/shared/api.d.ts
DELETED
@@ -1,35 +0,0 @@
|
|
1
|
-
import { OpenAPIV3 } from 'openapi-types';
|
2
|
-
export type Transmuted<T> = {
|
3
|
-
[Key in keyof T]: OpenAPIV3.PathItemObject;
|
4
|
-
};
|
5
|
-
export declare function coreInfo<T>(path: keyof T, op: OpenAPIV3.OperationObject): {
|
6
|
-
url: keyof T;
|
7
|
-
summary: string | undefined;
|
8
|
-
description: string | undefined;
|
9
|
-
requestBody: OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject | undefined;
|
10
|
-
responses: OpenAPIV3.ResponsesObject;
|
11
|
-
};
|
12
|
-
export declare function get<T>(path: keyof T, paths: Transmuted<T>): {
|
13
|
-
method: "GET";
|
14
|
-
url: keyof T;
|
15
|
-
summary: string | undefined;
|
16
|
-
description: string | undefined;
|
17
|
-
requestBody: OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject | undefined;
|
18
|
-
responses: OpenAPIV3.ResponsesObject;
|
19
|
-
};
|
20
|
-
export declare function post<T>(path: keyof T, paths: Transmuted<T>): {
|
21
|
-
method: "POST";
|
22
|
-
url: keyof T;
|
23
|
-
summary: string | undefined;
|
24
|
-
description: string | undefined;
|
25
|
-
requestBody: OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject | undefined;
|
26
|
-
responses: OpenAPIV3.ResponsesObject;
|
27
|
-
};
|
28
|
-
export declare function delete_<T>(path: keyof T, paths: Transmuted<T>): {
|
29
|
-
method: "DELETE";
|
30
|
-
url: keyof T;
|
31
|
-
summary: string | undefined;
|
32
|
-
description: string | undefined;
|
33
|
-
requestBody: OpenAPIV3.ReferenceObject | OpenAPIV3.RequestBodyObject | undefined;
|
34
|
-
responses: OpenAPIV3.ResponsesObject;
|
35
|
-
};
|
package/lib/shared/api.js
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.coreInfo = coreInfo;
|
4
|
-
exports.get = get;
|
5
|
-
exports.post = post;
|
6
|
-
exports.delete_ = delete_;
|
7
|
-
function coreInfo(path, op) {
|
8
|
-
return {
|
9
|
-
url: path,
|
10
|
-
summary: op.summary,
|
11
|
-
description: op.description,
|
12
|
-
requestBody: op.requestBody,
|
13
|
-
responses: op.responses,
|
14
|
-
};
|
15
|
-
}
|
16
|
-
function get(path, paths) {
|
17
|
-
return {
|
18
|
-
...coreInfo(path, paths[path]['get']),
|
19
|
-
method: 'GET',
|
20
|
-
};
|
21
|
-
}
|
22
|
-
function post(path, paths) {
|
23
|
-
return {
|
24
|
-
...coreInfo(path, paths[path]['post']),
|
25
|
-
method: 'POST',
|
26
|
-
};
|
27
|
-
}
|
28
|
-
function delete_(path, paths) {
|
29
|
-
return {
|
30
|
-
...coreInfo(path, paths[path]['delete']),
|
31
|
-
method: 'DELETE',
|
32
|
-
};
|
33
|
-
}
|
34
|
-
//# sourceMappingURL=api.js.map
|
package/lib/shared/api.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/shared/api.ts"],"names":[],"mappings":";;AAMA,4BAQC;AAED,kBAKC;AAED,oBAKC;AAED,0BAKC;AA7BD,SAAgB,QAAQ,CAAI,IAAa,EAAE,EAA6B;IACtE,OAAO;QACL,GAAG,EAAE,IAAI;QACT,OAAO,EAAE,EAAE,CAAC,OAAO;QACnB,WAAW,EAAE,EAAE,CAAC,WAAW;QAC3B,WAAW,EAAE,EAAE,CAAC,WAAW;QAC3B,SAAS,EAAE,EAAE,CAAC,SAAS;KACxB,CAAA;AACH,CAAC;AAED,SAAgB,GAAG,CAAI,IAAa,EAAE,KAAoB;IACxD,OAAO;QACL,GAAG,QAAQ,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,CAAE,CAAC;QACtC,MAAM,EAAE,KAAc;KACvB,CAAA;AACH,CAAC;AAED,SAAgB,IAAI,CAAI,IAAa,EAAE,KAAoB;IACzD,OAAO;QACL,GAAG,QAAQ,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,MAAM,CAAE,CAAC;QACvC,MAAM,EAAE,MAAe;KACxB,CAAA;AACH,CAAC;AAED,SAAgB,OAAO,CAAI,IAAa,EAAE,KAAoB;IAC5D,OAAO;QACL,GAAG,QAAQ,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAE,CAAC;QACzC,MAAM,EAAE,QAAiB;KAC1B,CAAA;AACH,CAAC"}
|