react-semaphor 0.0.414 → 0.0.415
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/chunks/{index-Dad5zgI7.js → index-C5WYD-0T.js} +6646 -6631
- package/dist/chunks/{index-BC5F6vck.js → index-DaWetboR.js} +81 -81
- package/dist/dashboard/index.cjs +1 -1
- package/dist/dashboard/index.js +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.js +1159 -1152
- package/dist/types/main.d.ts +9 -3
- package/package.json +1 -1
package/dist/types/main.d.ts
CHANGED
|
@@ -429,11 +429,12 @@ export declare type GetDashboardResponse = {
|
|
|
429
429
|
|
|
430
430
|
export declare function getFilterValueType(filter: TFilter): "string" | "number" | "date" | "boolean";
|
|
431
431
|
|
|
432
|
-
export declare function getFormattedTableNameForQuery({ schemaName, tableName, modelName, connectionType, }: {
|
|
432
|
+
export declare function getFormattedTableNameForQuery({ schemaName, tableName, modelName, connectionType, databaseName, }: {
|
|
433
433
|
schemaName: string;
|
|
434
434
|
tableName: string;
|
|
435
435
|
modelName: string | undefined;
|
|
436
436
|
connectionType: string;
|
|
437
|
+
databaseName: string;
|
|
437
438
|
}): string;
|
|
438
439
|
|
|
439
440
|
export declare type GetPluginsResponse = {
|
|
@@ -443,9 +444,14 @@ export declare type GetPluginsResponse = {
|
|
|
443
444
|
}[];
|
|
444
445
|
};
|
|
445
446
|
|
|
446
|
-
export declare function getQualifiedTableName(schemaName
|
|
447
|
+
export declare function getQualifiedTableName({ schemaName, tableName, connectionType, databaseName, }: {
|
|
448
|
+
schemaName: string;
|
|
449
|
+
tableName: string;
|
|
450
|
+
connectionType: string;
|
|
451
|
+
databaseName: string;
|
|
452
|
+
}): string;
|
|
447
453
|
|
|
448
|
-
export declare function getSql(config: SqlGen, schemaName: string, tableName: string, modelName: string, connectionType: string): string | undefined;
|
|
454
|
+
export declare function getSql(config: SqlGen, schemaName: string, tableName: string, modelName: string, connectionType: string, databaseName: string): string | undefined;
|
|
449
455
|
|
|
450
456
|
export declare type HtmlOptions = {
|
|
451
457
|
html: string;
|