rake-db 2.8.46 → 2.8.47

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 CHANGED
@@ -265,7 +265,7 @@ declare namespace RakeDbAst {
265
265
  type Db = DbResult<DefaultColumnTypes>;
266
266
  type BaseTable<CT extends ColumnTypesBase> = {
267
267
  exportAs: string;
268
- filePath: string;
268
+ getFilePath(): string;
269
269
  nowSQL?: string;
270
270
  new (): {
271
271
  columnTypes: CT;
@@ -302,7 +302,7 @@ type AppCodeUpdaterParams = {
302
302
  cache: object;
303
303
  logger: QueryLogOptions['logger'];
304
304
  baseTable: {
305
- filePath: string;
305
+ getFilePath(): string;
306
306
  exportAs: string;
307
307
  };
308
308
  import(path: string): Promise<unknown>;