Updates
This commit is contained in:
Vendored
+22
@@ -1229,3 +1229,25 @@ export type ApiConnectBody = {
|
||||
type: "pull" | "push";
|
||||
user_id?: string | number;
|
||||
};
|
||||
|
||||
export type SuUserType = {
|
||||
email: string;
|
||||
password: string;
|
||||
authKey: string;
|
||||
logged_in_status: boolean;
|
||||
date: number;
|
||||
};
|
||||
|
||||
export type MariadbRemoteServerObject = {
|
||||
host: string;
|
||||
port: number;
|
||||
primary?: boolean;
|
||||
loadBalanced?: boolean;
|
||||
users?: MariadbRemoteServerUserObject[];
|
||||
};
|
||||
|
||||
export type MariadbRemoteServerUserObject = {
|
||||
name: string;
|
||||
password: string;
|
||||
host: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user