You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: invokeai/frontend/web/src/services/api/schema.ts
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14375,6 +14375,7 @@ export type components = {
14375
14375
* unsafe_disable_picklescan: UNSAFE. Disable the picklescan security check during model installation. Recommended only for development and testing purposes. This will allow arbitrary code execution during model installation, so should never be used in production.
14376
14376
* allow_unknown_models: Allow installation of models that we are unable to identify. If enabled, models will be marked as `unknown` in the database, and will not have any metadata associated with them. If disabled, unknown models will be rejected during installation.
14377
14377
* multiuser: Enable multiuser support. When disabled, the application runs in single-user mode using a default system account with administrator privileges. When enabled, requires user authentication and authorization.
14378
+
* strict_password_checking: Enforce strict password requirements. When True, passwords must contain uppercase, lowercase, and numbers. When False (default), any password is accepted but its strength is reported to the user.
14378
14379
*/
14379
14380
InvokeAIAppConfig: {
14380
14381
/**
@@ -14748,6 +14749,12 @@ export type components = {
14748
14749
* @default false
14749
14750
*/
14750
14751
multiuser?: boolean;
14752
+
/**
14753
+
* Strict Password Checking
14754
+
* @description Enforce strict password requirements. When True, passwords must contain uppercase, lowercase, and numbers. When False (default), any password is accepted but its strength (weak/moderate/strong) is reported to the user.
14755
+
* @default false
14756
+
*/
14757
+
strict_password_checking?: boolean;
14751
14758
};
14752
14759
/**
14753
14760
* InvokeAIAppConfigWithSetFields
@@ -24486,6 +24493,11 @@ export type components = {
24486
24493
* @description Whether multiuser mode is enabled
24487
24494
*/
24488
24495
multiuser_enabled: boolean;
24496
+
/**
24497
+
* Strict Password Checking
24498
+
* @description Whether strict password requirements are enforced
0 commit comments