Update Cookie Expiry Logic

This commit is contained in:
Benjamin Toby
2025-03-23 07:52:28 +01:00
parent 870bc7fd17
commit e829ebd2ed
25 changed files with 289 additions and 345 deletions
+50
View File
@@ -1525,3 +1525,53 @@ export type DsqlCrudParam<
};
export type ErrorCallback = (title: string, error: Error, data?: any) => void;
export interface MariaDBUser {
Host: string;
User: string;
Password: string;
Select_priv: string;
Insert_priv: string;
Update_priv: string;
Delete_priv: string;
Create_priv: string;
Drop_priv: string;
Reload_priv: string;
Shutdown_priv: string;
Process_priv: string;
File_priv: string;
Grant_priv: string;
References_priv: string;
Index_priv: string;
Alter_priv: string;
Show_db_priv: string;
Super_priv: string;
Create_tmp_table_priv: string;
Lock_tables_priv: string;
Execute_priv: string;
Repl_slave_priv: string;
Repl_client_priv: string;
Create_view_priv: string;
Show_view_priv: string;
Create_routine_priv: string;
Alter_routine_priv: string;
Create_user_priv: string;
Event_priv: string;
Trigger_priv: string;
Create_tablespace_priv: string;
Delete_history_priv: string;
ssl_type: string;
ssl_cipher: string;
x509_issuer: string;
x509_subject: string;
max_questions: number;
max_updates: number;
max_connections: number;
max_user_connections: number;
plugin: string;
authentication_string: string;
password_expired: string;
is_role: string;
default_role: string;
max_statement_time: number;
}