@h3ravel/arquebus 0.3.4 → 0.3.5

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/bin/index.cjs CHANGED
@@ -4002,7 +4002,7 @@ var migration_creator_default = MigrationCreator;
4002
4002
  //#endregion
4003
4003
  //#region package.json
4004
4004
  var name = "@h3ravel/arquebus";
4005
- var version = "0.3.3";
4005
+ var version = "0.3.4";
4006
4006
  var packageManager = "pnpm@10.14.0";
4007
4007
  var description = "Arquebus ORM is a Beautiful, expressive ORM inspired by Laravel's Eloquent, designed for TypeScript applications and for the H3ravel Framework.";
4008
4008
  var homepage = "https://h3ravel.toneflix.net/arquebus";
package/bin/index.js CHANGED
@@ -3965,7 +3965,7 @@ var migration_creator_default = MigrationCreator;
3965
3965
  //#endregion
3966
3966
  //#region package.json
3967
3967
  var name = "@h3ravel/arquebus";
3968
- var version = "0.3.3";
3968
+ var version = "0.3.4";
3969
3969
  var packageManager = "pnpm@10.14.0";
3970
3970
  var description = "Arquebus ORM is a Beautiful, expressive ORM inspired by Laravel's Eloquent, designed for TypeScript applications and for the H3ravel Framework.";
3971
3971
  var homepage = "https://h3ravel.toneflix.net/arquebus";
@@ -63,7 +63,10 @@ let node_url = require("node:url");
63
63
  node_url = __toESM(node_url);
64
64
 
65
65
  //#region src/migrations/migration-repository.ts
66
- var migration_repository_exports = /* @__PURE__ */ __export({ default: () => migration_repository_default });
66
+ var migration_repository_exports = /* @__PURE__ */ __export({
67
+ MigrationRepository: () => MigrationRepository,
68
+ default: () => migration_repository_default
69
+ });
67
70
  var MigrationRepository = class {
68
71
  resolver;
69
72
  table;
@@ -3909,7 +3912,10 @@ var migration_default = Migration;
3909
3912
 
3910
3913
  //#endregion
3911
3914
  //#region src/migrations/migration-creator.ts
3912
- var migration_creator_exports = /* @__PURE__ */ __export({ default: () => migration_creator_default });
3915
+ var migration_creator_exports = /* @__PURE__ */ __export({
3916
+ MigrationCreator: () => MigrationCreator,
3917
+ default: () => migration_creator_default
3918
+ });
3913
3919
  var MigrationCreator = class {
3914
3920
  postCreate = [];
3915
3921
  constructor(customStubPath, type = "js") {
@@ -1182,7 +1182,7 @@ declare class Migration extends Inference {
1182
1182
  getConnection(): TBaseConfig['client'];
1183
1183
  }
1184
1184
  declare namespace migration_repository_d_exports {
1185
- export { MigrationRepository as default };
1185
+ export { MigrationRepository, MigrationRepository as default };
1186
1186
  }
1187
1187
  declare class MigrationRepository {
1188
1188
  resolver: typeof arquebus;
@@ -1328,7 +1328,7 @@ declare class Migrate {
1328
1328
  }>;
1329
1329
  }
1330
1330
  declare namespace migration_creator_d_exports {
1331
- export { MigrationCreator as default };
1331
+ export { MigrationCreator, MigrationCreator as default };
1332
1332
  }
1333
1333
  declare class MigrationCreator {
1334
1334
  private customStubPath?;
@@ -1179,7 +1179,7 @@ declare class Migration extends Inference {
1179
1179
  getConnection(): TBaseConfig['client'];
1180
1180
  }
1181
1181
  declare namespace migration_repository_d_exports {
1182
- export { MigrationRepository as default };
1182
+ export { MigrationRepository, MigrationRepository as default };
1183
1183
  }
1184
1184
  declare class MigrationRepository {
1185
1185
  resolver: typeof arquebus;
@@ -1325,7 +1325,7 @@ declare class Migrate {
1325
1325
  }>;
1326
1326
  }
1327
1327
  declare namespace migration_creator_d_exports {
1328
- export { MigrationCreator as default };
1328
+ export { MigrationCreator, MigrationCreator as default };
1329
1329
  }
1330
1330
  declare class MigrationCreator {
1331
1331
  private customStubPath?;
@@ -17,7 +17,10 @@ import { dirname } from "node:path";
17
17
  import { fileURLToPath } from "node:url";
18
18
 
19
19
  //#region src/migrations/migration-repository.ts
20
- var migration_repository_exports = /* @__PURE__ */ __export({ default: () => migration_repository_default });
20
+ var migration_repository_exports = /* @__PURE__ */ __export({
21
+ MigrationRepository: () => MigrationRepository,
22
+ default: () => migration_repository_default
23
+ });
21
24
  var MigrationRepository = class {
22
25
  resolver;
23
26
  table;
@@ -3863,7 +3866,10 @@ var migration_default = Migration;
3863
3866
 
3864
3867
  //#endregion
3865
3868
  //#region src/migrations/migration-creator.ts
3866
- var migration_creator_exports = /* @__PURE__ */ __export({ default: () => migration_creator_default });
3869
+ var migration_creator_exports = /* @__PURE__ */ __export({
3870
+ MigrationCreator: () => MigrationCreator,
3871
+ default: () => migration_creator_default
3872
+ });
3867
3873
  var MigrationCreator = class {
3868
3874
  postCreate = [];
3869
3875
  constructor(customStubPath, type = "js") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/arquebus",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Arquebus ORM is a Beautiful, expressive ORM inspired by Laravel's Eloquent, designed for TypeScript applications and for the H3ravel Framework.",
5
5
  "homepage": "https://h3ravel.toneflix.net/arquebus",
6
6
  "bin": {