@hed-hog/studio 0.0.292 → 0.0.293
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/hedhog/table/capture_agent.yaml +47 -47
- package/hedhog/table/edit_composition.yaml +66 -66
- package/hedhog/table/edit_pipeline.yaml +45 -45
- package/hedhog/table/edit_stage_execution.yaml +45 -45
- package/hedhog/table/editor_delivery_package.yaml +62 -62
- package/hedhog/table/ingestion_job.yaml +73 -73
- package/hedhog/table/media_asset.yaml +129 -129
- package/hedhog/table/participant_command_ack.yaml +31 -31
- package/hedhog/table/participant_recording.yaml +66 -66
- package/hedhog/table/production_binding.yaml +33 -33
- package/hedhog/table/production_project.yaml +103 -103
- package/hedhog/table/publication_target.yaml +43 -43
- package/hedhog/table/recorded_file.yaml +73 -73
- package/hedhog/table/recording_command.yaml +71 -71
- package/hedhog/table/recording_incident.yaml +64 -64
- package/hedhog/table/recording_session.yaml +85 -85
- package/hedhog/table/scene.yaml +63 -63
- package/hedhog/table/scene_take.yaml +82 -82
- package/hedhog/table/session_participant.yaml +54 -54
- package/hedhog/table/storage_profile.yaml +74 -74
- package/hedhog/table/sync_marker.yaml +43 -43
- package/package.json +4 -4
- package/src/index.ts +4 -4
- package/src/language/en.json +8 -8
- package/src/studio.module.ts +20 -20
|
@@ -1,130 +1,130 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: production_project_id
|
|
4
|
-
type: fk
|
|
5
|
-
isNullable: true
|
|
6
|
-
references:
|
|
7
|
-
table: production_project
|
|
8
|
-
column: id
|
|
9
|
-
onDelete: SET NULL
|
|
10
|
-
onUpdate: CASCADE
|
|
11
|
-
- name: scene_id
|
|
12
|
-
type: fk
|
|
13
|
-
isNullable: true
|
|
14
|
-
references:
|
|
15
|
-
table: scene
|
|
16
|
-
column: id
|
|
17
|
-
onDelete: SET NULL
|
|
18
|
-
onUpdate: CASCADE
|
|
19
|
-
- name: scene_take_id
|
|
20
|
-
type: fk
|
|
21
|
-
isNullable: true
|
|
22
|
-
references:
|
|
23
|
-
table: scene_take
|
|
24
|
-
column: id
|
|
25
|
-
onDelete: SET NULL
|
|
26
|
-
onUpdate: CASCADE
|
|
27
|
-
- name: participant_recording_id
|
|
28
|
-
type: fk
|
|
29
|
-
isNullable: true
|
|
30
|
-
references:
|
|
31
|
-
table: participant_recording
|
|
32
|
-
column: id
|
|
33
|
-
onDelete: SET NULL
|
|
34
|
-
onUpdate: CASCADE
|
|
35
|
-
- name: ingestion_job_id
|
|
36
|
-
type: fk
|
|
37
|
-
isNullable: true
|
|
38
|
-
references:
|
|
39
|
-
table: ingestion_job
|
|
40
|
-
column: id
|
|
41
|
-
onDelete: SET NULL
|
|
42
|
-
onUpdate: CASCADE
|
|
43
|
-
- name: related_file_id
|
|
44
|
-
type: fk
|
|
45
|
-
isNullable: true
|
|
46
|
-
references:
|
|
47
|
-
table: file
|
|
48
|
-
column: id
|
|
49
|
-
onDelete: SET NULL
|
|
50
|
-
onUpdate: CASCADE
|
|
51
|
-
- name: asset_origin_type
|
|
52
|
-
type: enum
|
|
53
|
-
values: [uploaded_raw, generated_proxy, generated_waveform, final_render, subtitle, thumbnail, metadata]
|
|
54
|
-
default: uploaded_raw
|
|
55
|
-
- name: asset_type
|
|
56
|
-
type: enum
|
|
57
|
-
values: [camera_video, screen_capture, microphone_audio, system_audio, mixed_audio, composition_project, subtitle, thumbnail, final_video, other]
|
|
58
|
-
default: other
|
|
59
|
-
- name: provider_type
|
|
60
|
-
type: varchar
|
|
61
|
-
length: 60
|
|
62
|
-
isNullable: true
|
|
63
|
-
- name: bucket_name
|
|
64
|
-
type: varchar
|
|
65
|
-
length: 120
|
|
66
|
-
isNullable: true
|
|
67
|
-
- name: object_key
|
|
68
|
-
type: varchar
|
|
69
|
-
length: 300
|
|
70
|
-
isNullable: true
|
|
71
|
-
- name: version_id
|
|
72
|
-
type: varchar
|
|
73
|
-
length: 150
|
|
74
|
-
isNullable: true
|
|
75
|
-
- name: etag
|
|
76
|
-
type: varchar
|
|
77
|
-
length: 120
|
|
78
|
-
isNullable: true
|
|
79
|
-
- name: mime_type
|
|
80
|
-
type: varchar
|
|
81
|
-
length: 120
|
|
82
|
-
isNullable: true
|
|
83
|
-
- name: extension
|
|
84
|
-
type: varchar
|
|
85
|
-
length: 16
|
|
86
|
-
isNullable: true
|
|
87
|
-
- name: size_bytes
|
|
88
|
-
type: bigint
|
|
89
|
-
isNullable: true
|
|
90
|
-
- name: duration_ms
|
|
91
|
-
type: int
|
|
92
|
-
isNullable: true
|
|
93
|
-
- name: width
|
|
94
|
-
type: int
|
|
95
|
-
isNullable: true
|
|
96
|
-
- name: height
|
|
97
|
-
type: int
|
|
98
|
-
isNullable: true
|
|
99
|
-
- name: checksum
|
|
100
|
-
type: varchar
|
|
101
|
-
length: 128
|
|
102
|
-
isNullable: true
|
|
103
|
-
- name: availability_status
|
|
104
|
-
type: enum
|
|
105
|
-
values: [pending, available, archived, deleted, failed]
|
|
106
|
-
default: pending
|
|
107
|
-
- name: uploaded_by_participant_id
|
|
108
|
-
type: fk
|
|
109
|
-
isNullable: true
|
|
110
|
-
references:
|
|
111
|
-
table: session_participant
|
|
112
|
-
column: id
|
|
113
|
-
onDelete: SET NULL
|
|
114
|
-
onUpdate: CASCADE
|
|
115
|
-
- name: metadata_json
|
|
116
|
-
type: json
|
|
117
|
-
isNullable: true
|
|
118
|
-
- name: deleted_at
|
|
119
|
-
type: datetime
|
|
120
|
-
isNullable: true
|
|
121
|
-
- type: created_at
|
|
122
|
-
- type: updated_at
|
|
123
|
-
|
|
124
|
-
indices:
|
|
125
|
-
- columns: [production_project_id, asset_type]
|
|
126
|
-
- columns: [scene_take_id]
|
|
127
|
-
- columns: [participant_recording_id]
|
|
128
|
-
- columns: [related_file_id]
|
|
129
|
-
- columns: [availability_status]
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: production_project_id
|
|
4
|
+
type: fk
|
|
5
|
+
isNullable: true
|
|
6
|
+
references:
|
|
7
|
+
table: production_project
|
|
8
|
+
column: id
|
|
9
|
+
onDelete: SET NULL
|
|
10
|
+
onUpdate: CASCADE
|
|
11
|
+
- name: scene_id
|
|
12
|
+
type: fk
|
|
13
|
+
isNullable: true
|
|
14
|
+
references:
|
|
15
|
+
table: scene
|
|
16
|
+
column: id
|
|
17
|
+
onDelete: SET NULL
|
|
18
|
+
onUpdate: CASCADE
|
|
19
|
+
- name: scene_take_id
|
|
20
|
+
type: fk
|
|
21
|
+
isNullable: true
|
|
22
|
+
references:
|
|
23
|
+
table: scene_take
|
|
24
|
+
column: id
|
|
25
|
+
onDelete: SET NULL
|
|
26
|
+
onUpdate: CASCADE
|
|
27
|
+
- name: participant_recording_id
|
|
28
|
+
type: fk
|
|
29
|
+
isNullable: true
|
|
30
|
+
references:
|
|
31
|
+
table: participant_recording
|
|
32
|
+
column: id
|
|
33
|
+
onDelete: SET NULL
|
|
34
|
+
onUpdate: CASCADE
|
|
35
|
+
- name: ingestion_job_id
|
|
36
|
+
type: fk
|
|
37
|
+
isNullable: true
|
|
38
|
+
references:
|
|
39
|
+
table: ingestion_job
|
|
40
|
+
column: id
|
|
41
|
+
onDelete: SET NULL
|
|
42
|
+
onUpdate: CASCADE
|
|
43
|
+
- name: related_file_id
|
|
44
|
+
type: fk
|
|
45
|
+
isNullable: true
|
|
46
|
+
references:
|
|
47
|
+
table: file
|
|
48
|
+
column: id
|
|
49
|
+
onDelete: SET NULL
|
|
50
|
+
onUpdate: CASCADE
|
|
51
|
+
- name: asset_origin_type
|
|
52
|
+
type: enum
|
|
53
|
+
values: [uploaded_raw, generated_proxy, generated_waveform, final_render, subtitle, thumbnail, metadata]
|
|
54
|
+
default: uploaded_raw
|
|
55
|
+
- name: asset_type
|
|
56
|
+
type: enum
|
|
57
|
+
values: [camera_video, screen_capture, microphone_audio, system_audio, mixed_audio, composition_project, subtitle, thumbnail, final_video, other]
|
|
58
|
+
default: other
|
|
59
|
+
- name: provider_type
|
|
60
|
+
type: varchar
|
|
61
|
+
length: 60
|
|
62
|
+
isNullable: true
|
|
63
|
+
- name: bucket_name
|
|
64
|
+
type: varchar
|
|
65
|
+
length: 120
|
|
66
|
+
isNullable: true
|
|
67
|
+
- name: object_key
|
|
68
|
+
type: varchar
|
|
69
|
+
length: 300
|
|
70
|
+
isNullable: true
|
|
71
|
+
- name: version_id
|
|
72
|
+
type: varchar
|
|
73
|
+
length: 150
|
|
74
|
+
isNullable: true
|
|
75
|
+
- name: etag
|
|
76
|
+
type: varchar
|
|
77
|
+
length: 120
|
|
78
|
+
isNullable: true
|
|
79
|
+
- name: mime_type
|
|
80
|
+
type: varchar
|
|
81
|
+
length: 120
|
|
82
|
+
isNullable: true
|
|
83
|
+
- name: extension
|
|
84
|
+
type: varchar
|
|
85
|
+
length: 16
|
|
86
|
+
isNullable: true
|
|
87
|
+
- name: size_bytes
|
|
88
|
+
type: bigint
|
|
89
|
+
isNullable: true
|
|
90
|
+
- name: duration_ms
|
|
91
|
+
type: int
|
|
92
|
+
isNullable: true
|
|
93
|
+
- name: width
|
|
94
|
+
type: int
|
|
95
|
+
isNullable: true
|
|
96
|
+
- name: height
|
|
97
|
+
type: int
|
|
98
|
+
isNullable: true
|
|
99
|
+
- name: checksum
|
|
100
|
+
type: varchar
|
|
101
|
+
length: 128
|
|
102
|
+
isNullable: true
|
|
103
|
+
- name: availability_status
|
|
104
|
+
type: enum
|
|
105
|
+
values: [pending, available, archived, deleted, failed]
|
|
106
|
+
default: pending
|
|
107
|
+
- name: uploaded_by_participant_id
|
|
108
|
+
type: fk
|
|
109
|
+
isNullable: true
|
|
110
|
+
references:
|
|
111
|
+
table: session_participant
|
|
112
|
+
column: id
|
|
113
|
+
onDelete: SET NULL
|
|
114
|
+
onUpdate: CASCADE
|
|
115
|
+
- name: metadata_json
|
|
116
|
+
type: json
|
|
117
|
+
isNullable: true
|
|
118
|
+
- name: deleted_at
|
|
119
|
+
type: datetime
|
|
120
|
+
isNullable: true
|
|
121
|
+
- type: created_at
|
|
122
|
+
- type: updated_at
|
|
123
|
+
|
|
124
|
+
indices:
|
|
125
|
+
- columns: [production_project_id, asset_type]
|
|
126
|
+
- columns: [scene_take_id]
|
|
127
|
+
- columns: [participant_recording_id]
|
|
128
|
+
- columns: [related_file_id]
|
|
129
|
+
- columns: [availability_status]
|
|
130
130
|
- columns: [deleted_at]
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: recording_command_id
|
|
4
|
-
type: fk
|
|
5
|
-
references:
|
|
6
|
-
table: recording_command
|
|
7
|
-
column: id
|
|
8
|
-
onDelete: CASCADE
|
|
9
|
-
onUpdate: CASCADE
|
|
10
|
-
- name: session_participant_id
|
|
11
|
-
type: fk
|
|
12
|
-
references:
|
|
13
|
-
table: session_participant
|
|
14
|
-
column: id
|
|
15
|
-
onDelete: CASCADE
|
|
16
|
-
onUpdate: CASCADE
|
|
17
|
-
- name: ack_type
|
|
18
|
-
type: enum
|
|
19
|
-
values: [received, accepted, executed, failed]
|
|
20
|
-
default: received
|
|
21
|
-
- name: ack_at
|
|
22
|
-
type: datetime
|
|
23
|
-
- name: details_json
|
|
24
|
-
type: json
|
|
25
|
-
isNullable: true
|
|
26
|
-
- type: created_at
|
|
27
|
-
- type: updated_at
|
|
28
|
-
|
|
29
|
-
indices:
|
|
30
|
-
- columns: [recording_command_id, session_participant_id]
|
|
31
|
-
isUnique: true
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: recording_command_id
|
|
4
|
+
type: fk
|
|
5
|
+
references:
|
|
6
|
+
table: recording_command
|
|
7
|
+
column: id
|
|
8
|
+
onDelete: CASCADE
|
|
9
|
+
onUpdate: CASCADE
|
|
10
|
+
- name: session_participant_id
|
|
11
|
+
type: fk
|
|
12
|
+
references:
|
|
13
|
+
table: session_participant
|
|
14
|
+
column: id
|
|
15
|
+
onDelete: CASCADE
|
|
16
|
+
onUpdate: CASCADE
|
|
17
|
+
- name: ack_type
|
|
18
|
+
type: enum
|
|
19
|
+
values: [received, accepted, executed, failed]
|
|
20
|
+
default: received
|
|
21
|
+
- name: ack_at
|
|
22
|
+
type: datetime
|
|
23
|
+
- name: details_json
|
|
24
|
+
type: json
|
|
25
|
+
isNullable: true
|
|
26
|
+
- type: created_at
|
|
27
|
+
- type: updated_at
|
|
28
|
+
|
|
29
|
+
indices:
|
|
30
|
+
- columns: [recording_command_id, session_participant_id]
|
|
31
|
+
isUnique: true
|
|
32
32
|
- columns: [ack_type]
|
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: scene_take_id
|
|
4
|
-
type: fk
|
|
5
|
-
references:
|
|
6
|
-
table: scene_take
|
|
7
|
-
column: id
|
|
8
|
-
onDelete: CASCADE
|
|
9
|
-
onUpdate: CASCADE
|
|
10
|
-
- name: session_participant_id
|
|
11
|
-
type: fk
|
|
12
|
-
references:
|
|
13
|
-
table: session_participant
|
|
14
|
-
column: id
|
|
15
|
-
onDelete: CASCADE
|
|
16
|
-
onUpdate: CASCADE
|
|
17
|
-
- name: capture_agent_id
|
|
18
|
-
type: fk
|
|
19
|
-
isNullable: true
|
|
20
|
-
references:
|
|
21
|
-
table: capture_agent
|
|
22
|
-
column: id
|
|
23
|
-
onDelete: SET NULL
|
|
24
|
-
onUpdate: CASCADE
|
|
25
|
-
- name: recording_status
|
|
26
|
-
type: enum
|
|
27
|
-
values: [armed, recording, stopped, uploaded, failed, partial]
|
|
28
|
-
default: armed
|
|
29
|
-
- name: upload_status
|
|
30
|
-
type: enum
|
|
31
|
-
values: [not_started, compressing, ready_to_upload, uploading, uploaded, validated, failed]
|
|
32
|
-
default: not_started
|
|
33
|
-
- name: integrity_status
|
|
34
|
-
type: enum
|
|
35
|
-
values: [unknown, ok, warning, corrupted, incomplete]
|
|
36
|
-
default: unknown
|
|
37
|
-
- name: local_recording_started_at
|
|
38
|
-
type: datetime
|
|
39
|
-
isNullable: true
|
|
40
|
-
- name: local_recording_stopped_at
|
|
41
|
-
type: datetime
|
|
42
|
-
isNullable: true
|
|
43
|
-
- name: sync_offset_ms
|
|
44
|
-
type: int
|
|
45
|
-
isNullable: true
|
|
46
|
-
- name: drift_ms
|
|
47
|
-
type: int
|
|
48
|
-
isNullable: true
|
|
49
|
-
- name: manifest_status
|
|
50
|
-
type: enum
|
|
51
|
-
values: [pending, sent, validated, failed]
|
|
52
|
-
default: pending
|
|
53
|
-
- name: notes
|
|
54
|
-
type: text
|
|
55
|
-
isNullable: true
|
|
56
|
-
- name: metadata_json
|
|
57
|
-
type: json
|
|
58
|
-
isNullable: true
|
|
59
|
-
- type: created_at
|
|
60
|
-
- type: updated_at
|
|
61
|
-
|
|
62
|
-
indices:
|
|
63
|
-
- columns: [scene_take_id, session_participant_id]
|
|
64
|
-
isUnique: true
|
|
65
|
-
- columns: [recording_status]
|
|
66
|
-
- columns: [upload_status]
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: scene_take_id
|
|
4
|
+
type: fk
|
|
5
|
+
references:
|
|
6
|
+
table: scene_take
|
|
7
|
+
column: id
|
|
8
|
+
onDelete: CASCADE
|
|
9
|
+
onUpdate: CASCADE
|
|
10
|
+
- name: session_participant_id
|
|
11
|
+
type: fk
|
|
12
|
+
references:
|
|
13
|
+
table: session_participant
|
|
14
|
+
column: id
|
|
15
|
+
onDelete: CASCADE
|
|
16
|
+
onUpdate: CASCADE
|
|
17
|
+
- name: capture_agent_id
|
|
18
|
+
type: fk
|
|
19
|
+
isNullable: true
|
|
20
|
+
references:
|
|
21
|
+
table: capture_agent
|
|
22
|
+
column: id
|
|
23
|
+
onDelete: SET NULL
|
|
24
|
+
onUpdate: CASCADE
|
|
25
|
+
- name: recording_status
|
|
26
|
+
type: enum
|
|
27
|
+
values: [armed, recording, stopped, uploaded, failed, partial]
|
|
28
|
+
default: armed
|
|
29
|
+
- name: upload_status
|
|
30
|
+
type: enum
|
|
31
|
+
values: [not_started, compressing, ready_to_upload, uploading, uploaded, validated, failed]
|
|
32
|
+
default: not_started
|
|
33
|
+
- name: integrity_status
|
|
34
|
+
type: enum
|
|
35
|
+
values: [unknown, ok, warning, corrupted, incomplete]
|
|
36
|
+
default: unknown
|
|
37
|
+
- name: local_recording_started_at
|
|
38
|
+
type: datetime
|
|
39
|
+
isNullable: true
|
|
40
|
+
- name: local_recording_stopped_at
|
|
41
|
+
type: datetime
|
|
42
|
+
isNullable: true
|
|
43
|
+
- name: sync_offset_ms
|
|
44
|
+
type: int
|
|
45
|
+
isNullable: true
|
|
46
|
+
- name: drift_ms
|
|
47
|
+
type: int
|
|
48
|
+
isNullable: true
|
|
49
|
+
- name: manifest_status
|
|
50
|
+
type: enum
|
|
51
|
+
values: [pending, sent, validated, failed]
|
|
52
|
+
default: pending
|
|
53
|
+
- name: notes
|
|
54
|
+
type: text
|
|
55
|
+
isNullable: true
|
|
56
|
+
- name: metadata_json
|
|
57
|
+
type: json
|
|
58
|
+
isNullable: true
|
|
59
|
+
- type: created_at
|
|
60
|
+
- type: updated_at
|
|
61
|
+
|
|
62
|
+
indices:
|
|
63
|
+
- columns: [scene_take_id, session_participant_id]
|
|
64
|
+
isUnique: true
|
|
65
|
+
- columns: [recording_status]
|
|
66
|
+
- columns: [upload_status]
|
|
67
67
|
- columns: [integrity_status]
|
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
columns:
|
|
2
|
-
- type: pk
|
|
3
|
-
- name: production_project_id
|
|
4
|
-
type: fk
|
|
5
|
-
references:
|
|
6
|
-
table: production_project
|
|
7
|
-
column: id
|
|
8
|
-
onDelete: CASCADE
|
|
9
|
-
onUpdate: CASCADE
|
|
10
|
-
- name: binding_role
|
|
11
|
-
type: enum
|
|
12
|
-
values: [source, context, publication_target]
|
|
13
|
-
default: context
|
|
14
|
-
- name: bound_to_type
|
|
15
|
-
type: varchar
|
|
16
|
-
length: 80
|
|
17
|
-
- name: bound_to_id
|
|
18
|
-
type: varchar
|
|
19
|
-
length: 120
|
|
20
|
-
- name: bound_to_label
|
|
21
|
-
type: varchar
|
|
22
|
-
length: 180
|
|
23
|
-
isNullable: true
|
|
24
|
-
- name: metadata_json
|
|
25
|
-
type: json
|
|
26
|
-
isNullable: true
|
|
27
|
-
- type: created_at
|
|
28
|
-
- type: updated_at
|
|
29
|
-
|
|
30
|
-
indices:
|
|
31
|
-
- columns: [production_project_id, binding_role]
|
|
32
|
-
- columns: [bound_to_type, bound_to_id]
|
|
33
|
-
- columns: [production_project_id, bound_to_type, bound_to_id]
|
|
1
|
+
columns:
|
|
2
|
+
- type: pk
|
|
3
|
+
- name: production_project_id
|
|
4
|
+
type: fk
|
|
5
|
+
references:
|
|
6
|
+
table: production_project
|
|
7
|
+
column: id
|
|
8
|
+
onDelete: CASCADE
|
|
9
|
+
onUpdate: CASCADE
|
|
10
|
+
- name: binding_role
|
|
11
|
+
type: enum
|
|
12
|
+
values: [source, context, publication_target]
|
|
13
|
+
default: context
|
|
14
|
+
- name: bound_to_type
|
|
15
|
+
type: varchar
|
|
16
|
+
length: 80
|
|
17
|
+
- name: bound_to_id
|
|
18
|
+
type: varchar
|
|
19
|
+
length: 120
|
|
20
|
+
- name: bound_to_label
|
|
21
|
+
type: varchar
|
|
22
|
+
length: 180
|
|
23
|
+
isNullable: true
|
|
24
|
+
- name: metadata_json
|
|
25
|
+
type: json
|
|
26
|
+
isNullable: true
|
|
27
|
+
- type: created_at
|
|
28
|
+
- type: updated_at
|
|
29
|
+
|
|
30
|
+
indices:
|
|
31
|
+
- columns: [production_project_id, binding_role]
|
|
32
|
+
- columns: [bound_to_type, bound_to_id]
|
|
33
|
+
- columns: [production_project_id, bound_to_type, bound_to_id]
|
|
34
34
|
isUnique: true
|