This commit is contained in:
Benjamin Toby
2025-08-02 07:44:30 +01:00
parent 1f375fe94f
commit 9ca64cf25e
12 changed files with 108 additions and 212 deletions
+16
View File
@@ -22,6 +22,7 @@ import type sharp from "sharp";
import type DataTypes from "../data/data-types";
import type { IncomingMessage, ServerResponse } from "http";
import type { CookieNames } from "../dict/cookie-names";
import { ConnectionConfig } from "mariadb";
export type DSQL_DatabaseFullName = string;
@@ -2722,3 +2723,18 @@ export type AIComponentProps = {
targetAI: AIOptionsObject;
context: any[];
};
export type DsqlConnectionParam = {
/**
* No Database Connection
*/
noDb?: boolean;
/**
* Database Name
*/
database?: string;
/**
* Debug
*/
config?: ConnectionConfig;
};