Skip to content

Commit

Permalink
refactor(schema): remove restriction for 15 character collection id
Browse files Browse the repository at this point in the history
  • Loading branch information
pawcoding committed Dec 15, 2024
1 parent 80c30f1 commit a1abf67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generate-schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { transformFiles } from "./utils/transform-files";
*/
const BASIC_SCHEMA = {
id: z.string(),
collectionId: z.string().length(15),
collectionId: z.string(),
collectionName: z.string()
};

Expand Down

0 comments on commit a1abf67

Please sign in to comment.