fix: remove length requirement on addonName

This commit is contained in:
Viren070
2025-11-29 13:16:46 +00:00
committed by GitHub
parent 58caf63d13
commit 2e7622e1b2
+1 -1
View File
@@ -283,7 +283,7 @@ const CatalogModification = z.object({
overrideType: z.string().min(1).optional(), // override the type of the catalog
hideable: z.boolean().optional(), // hide the catalog from the home page
searchable: z.boolean().optional(), // property of whether the catalog is searchable (not a search only catalog)
addonName: z.string().min(1).optional(), // the name of the addon that provides the catalog
addonName: z.string().optional(), // the name of the addon that provides the catalog
});
export const CacheAndPlaySchema = z