Skip to content
This repository was archived by the owner on Feb 28, 2026. It is now read-only.

Commit d2a125e

Browse files
committed
Add dashboard category
1 parent f3e13a4 commit d2a125e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

packages/player/src/apis/pluginMarketplaceApi.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@ const MarketplacePluginSchema = z.object({
88
description: z.string(),
99
author: z.string().min(1),
1010
repo: z.string().regex(/^[^/]+\/[^/]+$/),
11-
category: z.enum(['streaming', 'metadata', 'lyrics', 'scrobbling', 'other']),
11+
category: z.enum([
12+
'streaming',
13+
'metadata',
14+
'lyrics',
15+
'scrobbling',
16+
'dashboard',
17+
'other',
18+
]),
1219
tags: z.array(z.string()).optional(),
1320
addedAt: z.string().datetime(),
1421
});

0 commit comments

Comments
 (0)