Skip to content

Commit a1abf67

Browse files
committed
refactor(schema): remove restriction for 15 character collection id
1 parent 80c30f1 commit a1abf67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generate-schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { transformFiles } from "./utils/transform-files";
1212
*/
1313
const BASIC_SCHEMA = {
1414
id: z.string(),
15-
collectionId: z.string().length(15),
15+
collectionId: z.string(),
1616
collectionName: z.string()
1717
};
1818

0 commit comments

Comments
 (0)