This commit is contained in:
2026-03-12 03:56:24 +00:00
parent 6d2413a25f
commit f95770dec6
120 changed files with 573 additions and 50 deletions
+13
View File
@@ -58,6 +58,19 @@ const schema = {
},
],
},
{
tableName: "users_allowed_services",
fields: [
{
fieldName: "user_id",
dataType: "INTEGER",
},
{
fieldName: "service_name",
dataType: "TEXT",
},
],
},
],
};
+19 -1
View File
@@ -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