arkormx 2.0.0-next.18 → 2.0.0-next.19
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.cjs +3 -2
- package/dist/index.d.cts +2 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -10865,9 +10865,10 @@ var Model = class Model {
|
|
|
10865
10865
|
* @author Legacy (3m1n3nc3)
|
|
10866
10866
|
* @since 2.0.0-next.18
|
|
10867
10867
|
*/
|
|
10868
|
-
var PivotModel = class {
|
|
10868
|
+
var PivotModel = class extends Model {
|
|
10869
10869
|
constructor(attributes = {}) {
|
|
10870
|
-
|
|
10870
|
+
super(attributes);
|
|
10871
|
+
this.attributes = attributes;
|
|
10871
10872
|
}
|
|
10872
10873
|
};
|
|
10873
10874
|
|
package/dist/index.d.cts
CHANGED
|
@@ -4951,7 +4951,8 @@ declare class RuntimeModuleLoader {
|
|
|
4951
4951
|
* @author Legacy (3m1n3nc3)
|
|
4952
4952
|
* @since 2.0.0-next.18
|
|
4953
4953
|
*/
|
|
4954
|
-
declare class PivotModel {
|
|
4954
|
+
declare class PivotModel extends Model {
|
|
4955
|
+
protected readonly attributes: Record<string, unknown>;
|
|
4955
4956
|
constructor(attributes?: Record<string, unknown>);
|
|
4956
4957
|
}
|
|
4957
4958
|
//#endregion
|
package/dist/index.d.mts
CHANGED
|
@@ -4951,7 +4951,8 @@ declare class RuntimeModuleLoader {
|
|
|
4951
4951
|
* @author Legacy (3m1n3nc3)
|
|
4952
4952
|
* @since 2.0.0-next.18
|
|
4953
4953
|
*/
|
|
4954
|
-
declare class PivotModel {
|
|
4954
|
+
declare class PivotModel extends Model {
|
|
4955
|
+
protected readonly attributes: Record<string, unknown>;
|
|
4955
4956
|
constructor(attributes?: Record<string, unknown>);
|
|
4956
4957
|
}
|
|
4957
4958
|
//#endregion
|
package/dist/index.mjs
CHANGED
|
@@ -10836,9 +10836,10 @@ var Model = class Model {
|
|
|
10836
10836
|
* @author Legacy (3m1n3nc3)
|
|
10837
10837
|
* @since 2.0.0-next.18
|
|
10838
10838
|
*/
|
|
10839
|
-
var PivotModel = class {
|
|
10839
|
+
var PivotModel = class extends Model {
|
|
10840
10840
|
constructor(attributes = {}) {
|
|
10841
|
-
|
|
10841
|
+
super(attributes);
|
|
10842
|
+
this.attributes = attributes;
|
|
10842
10843
|
}
|
|
10843
10844
|
};
|
|
10844
10845
|
|