@bash-app/bash-common 29.20.4 → 29.20.6
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/package.json +1 -1
- package/src/definitions.ts +1 -1
package/package.json
CHANGED
package/src/definitions.ts
CHANGED
|
@@ -79,7 +79,7 @@ export const PRISMA_USER_TTL_SECONDS = 60 * 7; // 7 hours
|
|
|
79
79
|
export const PRISMA_BASH_EVENT_TTL_SECONDS = 60 as const;
|
|
80
80
|
export const PRISMA_SERVICE_TTL_SECONDS = 60 as const;
|
|
81
81
|
|
|
82
|
-
export const MIN_PASSWORD_LENGTH =
|
|
82
|
+
export const MIN_PASSWORD_LENGTH = 8 as const;
|
|
83
83
|
|
|
84
84
|
export const DEBOUNCE_WAIT = 1000 as const;
|
|
85
85
|
|