@h3ravel/arquebus 0.6.9 → 0.6.11
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 +1 -1
- package/bin/{index.mjs → index.js} +2 -2
- package/bin/seeders-DIkcRliK.js +3 -0
- package/dist/{index.d.mts → index.d.ts} +5 -5
- package/dist/migrations/{index.mjs → index.js} +1 -1
- package/package.json +1 -1
- package/bin/index.d.mts +0 -1
- package/bin/seeders-C0schOjT.mjs +0 -3
- package/dist/browser/index.d.mts +0 -4932
- package/dist/index.d.cts +0 -5129
- package/dist/inspector/index.d.mts +0 -83
- package/dist/migrations/index.d.mts +0 -4962
- package/dist/seeders/index.d.mts +0 -4766
- package/dist/seeders/index.ts +0 -3
- package/dist/seeders/runner.ts +0 -101
- package/dist/seeders/seeder-creator.ts +0 -42
- package/dist/seeders/seeder.ts +0 -10
- /package/bin/{index.d.cts → index.d.ts} +0 -0
- /package/dist/browser/{index.d.cts → index.d.ts} +0 -0
- /package/dist/browser/{index.mjs → index.js} +0 -0
- /package/dist/{index.mjs → index.js} +0 -0
- /package/dist/inspector/{index.d.cts → index.d.ts} +0 -0
- /package/dist/inspector/{index.mjs → index.js} +0 -0
- /package/dist/migrations/{chunk-BD38OWEx.mjs → chunk-Bop6jNiL.js} +0 -0
- /package/dist/migrations/{index.d.cts → index.d.ts} +0 -0
- /package/dist/seeders/{index.d.cts → index.d.ts} +0 -0
- /package/dist/seeders/{index.mjs → index.js} +0 -0
package/bin/index.cjs
CHANGED
|
@@ -5463,7 +5463,7 @@ var MigrationCreator = class {
|
|
|
5463
5463
|
|
|
5464
5464
|
//#endregion
|
|
5465
5465
|
//#region package.json
|
|
5466
|
-
var version = "0.6.
|
|
5466
|
+
var version = "0.6.10";
|
|
5467
5467
|
|
|
5468
5468
|
//#endregion
|
|
5469
5469
|
//#region src/cli/cli.ts
|
|
@@ -5688,7 +5688,7 @@ var Cli = class Cli {
|
|
|
5688
5688
|
...this.config,
|
|
5689
5689
|
skipConnection: false
|
|
5690
5690
|
});
|
|
5691
|
-
const { SeederRunner: SeederRunner$1 } = await import("./seeders-
|
|
5691
|
+
const { SeederRunner: SeederRunner$1 } = await import("./seeders-DIkcRliK.js");
|
|
5692
5692
|
const runner = new SeederRunner$1(arquebus$1);
|
|
5693
5693
|
const seederPath = path.join(basePath, ((_this$config$seeders = this.config.seeders) === null || _this$config$seeders === void 0 ? void 0 : _this$config$seeders.path) ?? "./seeders");
|
|
5694
5694
|
await runner.setConnection(this.config.client).run([seederPath]);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as dayjs0 from "dayjs";
|
|
2
1
|
import { Collection as Collection$1 } from "collect.js";
|
|
3
2
|
import Knex$1, { Knex } from "knex";
|
|
3
|
+
import * as dayjs0 from "dayjs";
|
|
4
4
|
|
|
5
5
|
//#region src/collection.d.ts
|
|
6
6
|
declare class Collection<I$1 extends Model$1 | Model$2> extends Collection$1<I$1> implements ICollection<I$1> {
|
|
@@ -4647,16 +4647,16 @@ declare class Collection$2<I$1 extends Model$2> extends Collection$1<I$1> {
|
|
|
4647
4647
|
append(attributes: any): this;
|
|
4648
4648
|
only(keys: any[]): any;
|
|
4649
4649
|
getDictionary(items?: ICollection<any> | any[]): TGeneric;
|
|
4650
|
-
toData(): ({
|
|
4650
|
+
toData(): (I$1 | {
|
|
4651
4651
|
[x: string]: any;
|
|
4652
4652
|
[x: number]: any;
|
|
4653
4653
|
[x: symbol]: any;
|
|
4654
|
-
}
|
|
4655
|
-
toJSON(): ({
|
|
4654
|
+
})[];
|
|
4655
|
+
toJSON(): (I$1 | {
|
|
4656
4656
|
[x: string]: any;
|
|
4657
4657
|
[x: number]: any;
|
|
4658
4658
|
[x: symbol]: any;
|
|
4659
|
-
}
|
|
4659
|
+
})[];
|
|
4660
4660
|
toJson(...args: any[]): string;
|
|
4661
4661
|
[Symbol.iterator]: () => Iterator<I$1>;
|
|
4662
4662
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as __export } from "./chunk-
|
|
1
|
+
import { t as __export } from "./chunk-Bop6jNiL.js";
|
|
2
2
|
import { FileSystem, Logger, TaskManager } from "@h3ravel/shared";
|
|
3
3
|
import { assign, camel, diff, flat, get, isArray, isEmpty, isEqual, isString, omit, pick, set, snake, trim } from "radashi";
|
|
4
4
|
import advancedFormat from "dayjs/plugin/advancedFormat.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/arquebus",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.11",
|
|
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": {
|
package/bin/index.d.mts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { };
|
package/bin/seeders-C0schOjT.mjs
DELETED