@hexabot-ai/cli 3.2.1-alpha.0 → 3.2.2-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/commands/create.js
CHANGED
|
@@ -141,7 +141,7 @@ const validateAdminPassword = (value) => {
|
|
|
141
141
|
return 'Password is required.';
|
|
142
142
|
}
|
|
143
143
|
// Keep the rule simple and explicit for CLI UX. Complexity policies vary by org.
|
|
144
|
-
const minLength =
|
|
144
|
+
const minLength = 8;
|
|
145
145
|
if (trimmed.length < minLength) {
|
|
146
146
|
return `Password must be at least ${minLength} characters.`;
|
|
147
147
|
}
|
package/package.json
CHANGED
package/src/commands/create.ts
CHANGED
|
@@ -213,7 +213,7 @@ const validateAdminPassword = (value: string) => {
|
|
|
213
213
|
}
|
|
214
214
|
|
|
215
215
|
// Keep the rule simple and explicit for CLI UX. Complexity policies vary by org.
|
|
216
|
-
const minLength =
|
|
216
|
+
const minLength = 8;
|
|
217
217
|
if (trimmed.length < minLength) {
|
|
218
218
|
return `Password must be at least ${minLength} characters.`;
|
|
219
219
|
}
|