@voltro/database 0.3.0 → 0.5.0
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/CHANGELOG.md +50 -0
- package/dist/{fileBased-CRXgPJkv.js → fileBased-Cc-F1oFv.js} +143 -143
- package/dist/index.d.ts +56 -3
- package/dist/index.js +405 -405
- package/dist/sql.d.ts +1 -1
- package/dist/sql.js +671 -629
- package/package.json +2 -2
package/dist/sql.d.ts
CHANGED
|
@@ -594,7 +594,7 @@ declare type ColumnType = 'id' | 'text' | 'integer' | 'real' | 'decimal' | 'bigi
|
|
|
594
594
|
* declared + framework). The fingerprint over this snapshot is what the
|
|
595
595
|
* boot-time prod check compares against `_voltro_migration_plans`.
|
|
596
596
|
*/
|
|
597
|
-
export declare const declaredSnapshot: (tables: ReadonlyArray<TableLike
|
|
597
|
+
export declare const declaredSnapshot: (tables: ReadonlyArray<TableLike>, dialect?: DialectId) => SchemaSnapshot;
|
|
598
598
|
|
|
599
599
|
export declare const defaultClause: (column: ColumnDefinition<unknown>, dialect: DialectId) => string | null;
|
|
600
600
|
|