Updates
This commit is contained in:
+19
-1
@@ -1,6 +1,7 @@
|
||||
export const NSQLiteTables = [
|
||||
"users",
|
||||
"users_ports",
|
||||
"users_allowed_services",
|
||||
] as const
|
||||
|
||||
export type NSQLITE_TURBOCI_ADMIN_USERS = {
|
||||
@@ -43,4 +44,21 @@ export type NSQLITE_TURBOCI_ADMIN_USERS_PORTS = {
|
||||
port?: number;
|
||||
}
|
||||
|
||||
export type NSQLITE_TURBOCI_ADMIN_ALL_TYPEDEFS = NSQLITE_TURBOCI_ADMIN_USERS & NSQLITE_TURBOCI_ADMIN_USERS_PORTS
|
||||
export type NSQLITE_TURBOCI_ADMIN_USERS_ALLOWED_SERVICES = {
|
||||
/**
|
||||
* The unique identifier of the record.
|
||||
*/
|
||||
id?: number;
|
||||
/**
|
||||
* The time when the record was created. (Unix Timestamp)
|
||||
*/
|
||||
created_at?: number;
|
||||
/**
|
||||
* The time when the record was updated. (Unix Timestamp)
|
||||
*/
|
||||
updated_at?: number;
|
||||
user_id?: number;
|
||||
service_name?: string;
|
||||
}
|
||||
|
||||
export type NSQLITE_TURBOCI_ADMIN_ALL_TYPEDEFS = NSQLITE_TURBOCI_ADMIN_USERS & NSQLITE_TURBOCI_ADMIN_USERS_PORTS & NSQLITE_TURBOCI_ADMIN_USERS_ALLOWED_SERVICES
|
||||
Reference in New Issue
Block a user