@norskvideo/norsk-studio-alpha 1.27.0-2025-10-13-680fc249 → 1.27.0-2025-10-15-50193579
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/client/info.js +39325 -0
- package/client/processor.audioLevel/styles.css +165 -0
- package/client/shared/style.css +1627 -0
- package/client/shared/tailwind.css +31 -0
- package/client/style.css +1753 -0
- package/client/util.aiChat/styles.css +371 -0
- package/lib/output.tams/types.yaml +266 -0
- package/lib/processor.actionReplay/types.yaml +78 -0
- package/lib/processor.audioLevel/types.yaml +81 -0
- package/lib/processor.delayAll/types.yaml +23 -0
- package/lib/processor.whisper-transcribe/types.yaml +29 -0
- package/lib/util.agent/types.yaml +426 -0
- package/lib/util.aiChat/types.yaml +141 -0
- package/lib/util.timestamps/types.yaml +70 -0
- package/package.json +5 -4
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# This file has been generated, please edit types.source.yaml instead
|
|
2
|
+
|
|
3
|
+
openapi: 3.0.0
|
|
4
|
+
info:
|
|
5
|
+
title: Timestamp Output
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
components:
|
|
8
|
+
schemas:
|
|
9
|
+
TimestampOutputSettings:
|
|
10
|
+
type: object
|
|
11
|
+
properties:
|
|
12
|
+
id:
|
|
13
|
+
type: string
|
|
14
|
+
displayName:
|
|
15
|
+
type: string
|
|
16
|
+
required:
|
|
17
|
+
- id
|
|
18
|
+
- displayName
|
|
19
|
+
TimestampCollection: &a1
|
|
20
|
+
type: object
|
|
21
|
+
properties:
|
|
22
|
+
key:
|
|
23
|
+
type: string
|
|
24
|
+
timestamps:
|
|
25
|
+
type: array
|
|
26
|
+
items:
|
|
27
|
+
type: object
|
|
28
|
+
properties:
|
|
29
|
+
ts:
|
|
30
|
+
type: number
|
|
31
|
+
wall:
|
|
32
|
+
type: number
|
|
33
|
+
required:
|
|
34
|
+
- ts
|
|
35
|
+
- wall
|
|
36
|
+
startTimestamp:
|
|
37
|
+
type: number
|
|
38
|
+
startTimeMs:
|
|
39
|
+
type: number
|
|
40
|
+
required:
|
|
41
|
+
- key
|
|
42
|
+
- timestamps
|
|
43
|
+
- startTimestamp
|
|
44
|
+
- startTimeMs
|
|
45
|
+
TimestampOutputState:
|
|
46
|
+
type: object
|
|
47
|
+
properties:
|
|
48
|
+
timestamps:
|
|
49
|
+
type: array
|
|
50
|
+
items: *a1
|
|
51
|
+
required:
|
|
52
|
+
- timestamps
|
|
53
|
+
TimestampOutputEvent:
|
|
54
|
+
type: object
|
|
55
|
+
properties:
|
|
56
|
+
type:
|
|
57
|
+
const: new-timestamp
|
|
58
|
+
key:
|
|
59
|
+
type: string
|
|
60
|
+
value:
|
|
61
|
+
type: number
|
|
62
|
+
wallMs:
|
|
63
|
+
type: number
|
|
64
|
+
required:
|
|
65
|
+
- type
|
|
66
|
+
- key
|
|
67
|
+
- value
|
|
68
|
+
- wallMs
|
|
69
|
+
TimestampOutputCommand:
|
|
70
|
+
type: object
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@norskvideo/norsk-studio-alpha",
|
|
3
|
-
"version": "1.27.0-2025-10-
|
|
3
|
+
"version": "1.27.0-2025-10-15-50193579",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rm -rf lib client build && make clean",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"@apidevtools/json-schema-ref-parser": "^12.0.1",
|
|
26
26
|
"@norskvideo/norsk-player": "1.0.4",
|
|
27
27
|
"@norskvideo/norsk-player-react": "*",
|
|
28
|
-
"@norskvideo/norsk-sdk": "^1.0.402-2025-10-
|
|
29
|
-
"@norskvideo/norsk-studio": "1.27.0-2025-10-
|
|
30
|
-
"@norskvideo/norsk-studio-built-ins": "1.27.0-2025-10-
|
|
28
|
+
"@norskvideo/norsk-sdk": "^1.0.402-2025-10-15-a3f2bd39",
|
|
29
|
+
"@norskvideo/norsk-studio": "1.27.0-2025-10-15-50193579",
|
|
30
|
+
"@norskvideo/norsk-studio-built-ins": "1.27.0-2025-10-15-50193579",
|
|
31
31
|
"@norskvideo/webrtc-client": "^0.1.2",
|
|
32
32
|
"@react-icons/all-files": "^4.1.0",
|
|
33
33
|
"chart.js": "^4.4.2",
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"hls-parser": "^0.10.8",
|
|
61
61
|
"mocha": "^10.4.0",
|
|
62
62
|
"npm-run-all": "^4.1.5",
|
|
63
|
+
"openapi-typescript": "^7.3.0",
|
|
63
64
|
"puppeteer": "^21.5.2",
|
|
64
65
|
"tailwindcss": "^3.4.1",
|
|
65
66
|
"typescript": "^5.4.5"
|