TenantAtlas/apps/platform/.pnpm-store/v10/files/9f/93dde716f334dcb308cbe27548abe0f8951ef7d920e3ca68ab7e66450e0543b11a868f2677f6f01128f136f2da77e5e5e657457c8d3a22d63fbbcd13e7e1e0
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

38 lines
1.7 KiB
Plaintext

import { SQL } from "../index.cjs";
import { Subquery } from "../subquery.cjs";
import type { Check } from "./checks.cjs";
import type { ForeignKey } from "./foreign-keys.cjs";
import type { Index } from "./indexes.cjs";
import type { PrimaryKey } from "./primary-keys.cjs";
import type { IndexForHint } from "./query-builders/select.cjs";
import { MySqlTable } from "./table.cjs";
import { type UniqueConstraint } from "./unique-constraint.cjs";
import type { MySqlViewBase } from "./view-base.cjs";
import type { MySqlView } from "./view.cjs";
export declare function extractUsedTable(table: MySqlTable | Subquery | MySqlViewBase | SQL): string[];
export declare function getTableConfig(table: MySqlTable): {
columns: import("./index.ts").MySqlColumn<import("../index.ts").ColumnBaseConfig<import("../index.ts").ColumnDataType, string>, {}, {}>[];
indexes: Index[];
foreignKeys: ForeignKey[];
checks: Check[];
primaryKeys: PrimaryKey[];
uniqueConstraints: UniqueConstraint[];
name: string;
schema: string | undefined;
baseName: string;
};
export declare function getViewConfig<TName extends string = string, TExisting extends boolean = boolean>(view: MySqlView<TName, TExisting>): {
algorithm?: "undefined" | "merge" | "temptable";
sqlSecurity?: "definer" | "invoker";
withCheckOption?: "cascaded" | "local";
name: TName;
originalName: TName;
schema: string | undefined;
selectedFields: import("../index.ts").ColumnsSelection;
isExisting: TExisting;
query: TExisting extends true ? undefined : SQL<unknown>;
isAlias: boolean;
};
export declare function convertIndexToString(indexes: IndexForHint[]): string[];
export declare function toArray<T>(value: T | T[]): T[];