adminizer 4.3.0-build.82 → 4.3.0-build.84

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.
@@ -59,6 +59,7 @@ export interface INotificationEvent {
59
59
  }
60
60
  export type Migration = {
61
61
  name: string;
62
+ timestamp: number;
62
63
  up: (args: {
63
64
  context: any;
64
65
  }) => Promise<unknown> | unknown;
@@ -1,4 +1,4 @@
1
- import { migrationsUmzug as umzug } from "./umzug";
1
+ import { umzugExports } from "./umzugExports";
2
2
  export const migrations = {
3
- umzug
3
+ umzug: umzugExports
4
4
  };
@@ -0,0 +1,2 @@
1
+ import { Migration } from "interfaces/types";
2
+ export declare const umzugExports: Migration[];
@@ -1,7 +1,8 @@
1
1
  import { up as up0001, down as down0001 } from "./umzug/0001";
2
- export const migrationsUmzug = [
2
+ export const umzugExports = [
3
3
  {
4
4
  name: "0001",
5
+ timestamp: 1757930548596,
5
6
  up: up0001,
6
7
  down: down0001
7
8
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adminizer",
3
3
  "type": "module",
4
- "version": "4.3.0-build.82",
4
+ "version": "4.3.0-build.84",
5
5
  "main": "index.js",
6
6
  "exports": {
7
7
  ".": "./index.js",
@@ -1,2 +0,0 @@
1
- import { Migration } from "interfaces/types";
2
- export declare const migrationsUmzug: Migration[];