rake-db 2.20.22 → 2.20.24
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/index.d.ts +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as orchid_core from 'orchid-core';
|
|
2
|
-
import { MaybeArray, RawSQLBase, ColumnDataCheckBase, RecordString, EmptyObject, ColumnSchemaConfig, MaybePromise, RecordOptionalString, ColumnTypeBase, ForeignKeyTable,
|
|
2
|
+
import { MaybeArray, RawSQLBase, ColumnDataCheckBase, RecordString, EmptyObject, ColumnSchemaConfig, MaybePromise, RecordOptionalString, ColumnTypeBase, ForeignKeyTable, SingleSql } from 'orchid-core';
|
|
3
3
|
import * as pqb from 'pqb';
|
|
4
4
|
import { TableData, ColumnsShape, NoPrimaryKeyOption, ColumnType, EnumColumn, raw, Adapter, DbResult, TransactionAdapter, QueryLogObject, TableDataFn, TableDataItem, DbDomainArg, TextColumn, Db as Db$1, QueryArraysResult, AdapterOptions, DefaultColumnTypes, DefaultSchemaConfig, QueryLogOptions, SearchWeight, ColumnsByType, ArrayColumn } from 'pqb';
|
|
5
5
|
|
|
@@ -1703,11 +1703,11 @@ declare const getIndexName: (table: string, columns: ({
|
|
|
1703
1703
|
declare const indexesToQuery: (up: boolean, { schema, name: tableName }: {
|
|
1704
1704
|
schema?: string;
|
|
1705
1705
|
name: string;
|
|
1706
|
-
}, indexes: TableData.Index[], language?: string) =>
|
|
1706
|
+
}, indexes: TableData.Index[], language?: string) => SingleSql[];
|
|
1707
1707
|
declare const commentsToQuery: (schemaTable: {
|
|
1708
1708
|
schema?: string;
|
|
1709
1709
|
name: string;
|
|
1710
|
-
}, comments: ColumnComment[]) =>
|
|
1710
|
+
}, comments: ColumnComment[]) => SingleSql[];
|
|
1711
1711
|
declare const primaryKeyToSql: (primaryKey: Exclude<TableData['primaryKey'], undefined>) => string;
|
|
1712
1712
|
|
|
1713
1713
|
/**
|