@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/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>) => SchemaSnapshot;
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