@shumai-one/shumai-transcode 0.2.0 → 0.2.1
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.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Media transcoding worker for the shumai media workspace",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"zod": "4.4.3"
|
|
28
28
|
},
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@shumai-one/shumai-transcode-darwin-arm64": "0.2.
|
|
31
|
-
"@shumai-one/shumai-transcode-darwin-x64": "0.2.
|
|
32
|
-
"@shumai-one/shumai-transcode-linux-arm64": "0.2.
|
|
33
|
-
"@shumai-one/shumai-transcode-linux-x64": "0.2.
|
|
34
|
-
"@shumai-one/shumai-transcode-win32-arm64": "0.2.
|
|
35
|
-
"@shumai-one/shumai-transcode-win32-x64": "0.2.
|
|
30
|
+
"@shumai-one/shumai-transcode-darwin-arm64": "0.2.1",
|
|
31
|
+
"@shumai-one/shumai-transcode-darwin-x64": "0.2.1",
|
|
32
|
+
"@shumai-one/shumai-transcode-linux-arm64": "0.2.1",
|
|
33
|
+
"@shumai-one/shumai-transcode-linux-x64": "0.2.1",
|
|
34
|
+
"@shumai-one/shumai-transcode-win32-arm64": "0.2.1",
|
|
35
|
+
"@shumai-one/shumai-transcode-win32-x64": "0.2.1"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
38
38
|
"type": "git",
|
package/prisma/schema.prisma
CHANGED
|
@@ -262,6 +262,7 @@ model Skill {
|
|
|
262
262
|
config Json? @default("{}")
|
|
263
263
|
assetId String @map("asset_id")
|
|
264
264
|
hash String @map("hash")
|
|
265
|
+
permission TeamMemberRole @default(reviewer)
|
|
265
266
|
createdAt DateTime @default(now()) @map("created_at")
|
|
266
267
|
updatedAt DateTime @updatedAt @map("updated_at")
|
|
267
268
|
|