We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7b613f commit 129e61dCopy full SHA for 129e61d
.changeset/angry-ladybugs-study.md
@@ -0,0 +1,5 @@
1
+---
2
+'jellycommands': patch
3
4
+
5
+snowflake max length has changed
packages/jellycommands/src/utils/joi.ts
@@ -1,6 +1,6 @@
import Joi from 'joi';
-export const snowflake = () => Joi.string().length(18);
+export const snowflake = () => Joi.string().min(18);
export const snowflakeArray = () => Joi.array().items(snowflake());
6
export const pathsSchema = () => [Joi.string(), Joi.array().items(Joi.string())];
0 commit comments