This commit is contained in:
2026-09-20 07:27:29 +01:00
parent dc2cd66b25
commit 8ec44ee0a7
70 changed files with 2657 additions and 128 deletions
+10
View File
@@ -1,6 +1,7 @@
import type {
BUN_SQLITE_WGUI_ALL_TYPEDEFS,
BUN_SQLITE_WGUI_CLIENTS,
BUN_SQLITE_WGUI_CLIENT_RULES,
BUN_SQLITE_WGUI_HOSTS,
BUN_SQLITE_WGUI_MEDIA,
BUN_SQLITE_WGUI_USER_TYPES,
@@ -10,6 +11,10 @@ import type {
import type { SBFSusidiaries } from "../dict/subsidiaries-dict";
import type { UserTypes } from "../dict/user-types-dict";
import type { MediaParadigms, MediaTypes } from "../dict/media-dict";
import type {
ClientRuleProtocols,
ClientRuleTypes,
} from "../dict/client-rules-dict";
import type { BunextPageModuleServerReturnURLObject } from "@moduletrace/bunext/types";
import type { BUN_SQLITE_WGUI_USERS_JOIN } from "./sql-joins";
import type { ImageInputToBase64FunctionReturn } from "../components/twui/utils/form/imageInputToBase64";
@@ -40,6 +45,7 @@ export type PagePropsType = {
hosts?: BUN_SQLITE_WGUI_HOSTS[] | null;
client?: BUN_SQLITE_WGUI_CLIENTS | null;
clients?: BUN_SQLITE_WGUI_CLIENTS[] | null;
client_rules?: BUN_SQLITE_WGUI_CLIENT_RULES[] | null;
client_config?: string | null;
client_config_path?: string | null;
client_qr_data_uri?: string | null;
@@ -202,7 +208,9 @@ export type ApiReqParams<
user_id?: string | number | null;
dependent_id?: string | number | null;
host_id?: string | number | null;
client_id?: string | number | null;
public_ip_address?: string | null;
// client_rules?: BUN_SQLITE_WGUI_CLIENT_RULES[];
media_base_64?: string;
media_base_64_data_url?: string;
@@ -253,6 +261,8 @@ export type SQLInsertGenValueType =
export type MediaType = (typeof MediaTypes)[number]["value"];
export type MediaParadigm = (typeof MediaParadigms)[number]["value"];
export type ClientRuleType = (typeof ClientRuleTypes)[number]["value"];
export type ClientRuleProtocol = (typeof ClientRuleProtocols)[number]["value"];
export type TableType = (typeof BunSQLiteTables)[number];