@shumai-one/shumai-transcode 0.0.7 → 0.0.8
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shumai-one/shumai-transcode",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Media transcoding worker for the shumai media workspace",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"prisma": "7.8.0"
|
|
26
26
|
},
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"@shumai-one/shumai-transcode-darwin-arm64": "0.0.
|
|
29
|
-
"@shumai-one/shumai-transcode-darwin-x64": "0.0.
|
|
30
|
-
"@shumai-one/shumai-transcode-linux-arm64": "0.0.
|
|
31
|
-
"@shumai-one/shumai-transcode-linux-x64": "0.0.
|
|
32
|
-
"@shumai-one/shumai-transcode-win32-arm64": "0.0.
|
|
33
|
-
"@shumai-one/shumai-transcode-win32-x64": "0.0.
|
|
28
|
+
"@shumai-one/shumai-transcode-darwin-arm64": "0.0.8",
|
|
29
|
+
"@shumai-one/shumai-transcode-darwin-x64": "0.0.8",
|
|
30
|
+
"@shumai-one/shumai-transcode-linux-arm64": "0.0.8",
|
|
31
|
+
"@shumai-one/shumai-transcode-linux-x64": "0.0.8",
|
|
32
|
+
"@shumai-one/shumai-transcode-win32-arm64": "0.0.8",
|
|
33
|
+
"@shumai-one/shumai-transcode-win32-x64": "0.0.8"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|
|
36
36
|
"type": "git",
|
package/prisma/schema.prisma
CHANGED
|
@@ -338,6 +338,7 @@ model ShareLink {
|
|
|
338
338
|
password String?
|
|
339
339
|
isDisabled Boolean @default(false) @map("is_disabled")
|
|
340
340
|
defaultSortOrder String? @map("default_sort_order")
|
|
341
|
+
viewMode String? @map("view_mode")
|
|
341
342
|
/// [ShareLinkFieldVisibility]
|
|
342
343
|
fieldVisibility Json? @map("field_visibility")
|
|
343
344
|
createdAt DateTime @default(now()) @map("created_at")
|