@h3ravel/arquebus 0.6.9 → 0.6.10
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 +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.mts +4 -4
- package/package.json +23 -23
package/bin/index.cjs
CHANGED
package/bin/index.mjs
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -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
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -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
|
}
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h3ravel/arquebus",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.10",
|
|
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": {
|
|
7
|
-
"arquebus": "./bin/index.
|
|
7
|
+
"arquebus": "./bin/index.mjs"
|
|
8
8
|
},
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
-
"main": "./dist/index.
|
|
13
|
-
"module": "./dist/index.
|
|
12
|
+
"main": "./dist/index.mjs",
|
|
13
|
+
"module": "./dist/index.mjs",
|
|
14
14
|
"type": "module",
|
|
15
|
-
"types": "./dist/index.d.
|
|
15
|
+
"types": "./dist/index.d.mts",
|
|
16
16
|
"files": [
|
|
17
17
|
"dist",
|
|
18
18
|
"bin",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
".": {
|
|
23
23
|
"cli": {
|
|
24
24
|
"import": {
|
|
25
|
-
"types": "./bin/index.d.
|
|
26
|
-
"default": "./bin/index.
|
|
25
|
+
"types": "./bin/index.d.mts",
|
|
26
|
+
"default": "./bin/index.mjs"
|
|
27
27
|
},
|
|
28
28
|
"require": {
|
|
29
29
|
"types": "./bin/index.d.cts",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
},
|
|
33
33
|
"worker": {
|
|
34
34
|
"import": {
|
|
35
|
-
"types": "./dist/index.d.
|
|
36
|
-
"default": "./dist/index.
|
|
35
|
+
"types": "./dist/index.d.mts",
|
|
36
|
+
"default": "./dist/index.mjs"
|
|
37
37
|
},
|
|
38
38
|
"require": {
|
|
39
39
|
"types": "./dist/index.d.cts",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
},
|
|
43
43
|
"node": {
|
|
44
44
|
"import": {
|
|
45
|
-
"types": "./dist/index.d.
|
|
46
|
-
"default": "./dist/index.
|
|
45
|
+
"types": "./dist/index.d.mts",
|
|
46
|
+
"default": "./dist/index.mjs"
|
|
47
47
|
},
|
|
48
48
|
"require": {
|
|
49
49
|
"types": "./dist/index.d.cts",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
},
|
|
53
53
|
"browser": {
|
|
54
54
|
"import": {
|
|
55
|
-
"types": "./dist/browser/index.d.
|
|
56
|
-
"default": "./dist/browser/index.
|
|
55
|
+
"types": "./dist/browser/index.d.mts",
|
|
56
|
+
"default": "./dist/browser/index.mjs"
|
|
57
57
|
},
|
|
58
58
|
"require": {
|
|
59
59
|
"types": "./dist/browser/index.d.cts",
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
},
|
|
63
63
|
"default": {
|
|
64
64
|
"import": {
|
|
65
|
-
"types": "./dist/index.d.
|
|
66
|
-
"default": "./dist/index.
|
|
65
|
+
"types": "./dist/index.d.mts",
|
|
66
|
+
"default": "./dist/index.mjs"
|
|
67
67
|
},
|
|
68
68
|
"require": {
|
|
69
69
|
"types": "./dist/index.d.cts",
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
},
|
|
74
74
|
"./migrations": {
|
|
75
75
|
"import": {
|
|
76
|
-
"types": "./dist/migrations/index.d.
|
|
77
|
-
"default": "./dist/migrations/index.
|
|
76
|
+
"types": "./dist/migrations/index.d.mts",
|
|
77
|
+
"default": "./dist/migrations/index.mjs"
|
|
78
78
|
},
|
|
79
79
|
"require": {
|
|
80
80
|
"types": "./dist/migrations/index.d.cts",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
},
|
|
84
84
|
"./inspector": {
|
|
85
85
|
"import": {
|
|
86
|
-
"types": "./dist/inspector/index.d.
|
|
87
|
-
"default": "./dist/inspector/index.
|
|
86
|
+
"types": "./dist/inspector/index.d.mts",
|
|
87
|
+
"default": "./dist/inspector/index.mjs"
|
|
88
88
|
},
|
|
89
89
|
"require": {
|
|
90
90
|
"types": "./dist/inspector/index.d.cts",
|
|
@@ -93,8 +93,8 @@
|
|
|
93
93
|
},
|
|
94
94
|
"./seeders": {
|
|
95
95
|
"import": {
|
|
96
|
-
"types": "./dist/seeders/index.d.
|
|
97
|
-
"default": "./dist/seeders/index.
|
|
96
|
+
"types": "./dist/seeders/index.d.mts",
|
|
97
|
+
"default": "./dist/seeders/index.mjs"
|
|
98
98
|
},
|
|
99
99
|
"require": {
|
|
100
100
|
"types": "./dist/seeders/index.d.cts",
|
|
@@ -103,8 +103,8 @@
|
|
|
103
103
|
},
|
|
104
104
|
"./browser": {
|
|
105
105
|
"import": {
|
|
106
|
-
"types": "./dist/browser/index.d.
|
|
107
|
-
"default": "./dist/browser/index.
|
|
106
|
+
"types": "./dist/browser/index.d.mts",
|
|
107
|
+
"default": "./dist/browser/index.mjs"
|
|
108
108
|
},
|
|
109
109
|
"require": {
|
|
110
110
|
"types": "./dist/browser/index.d.cts",
|