@luminix/core 0.0.1-beta.2 → 0.0.1-beta.4
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/contracts/Builder.d.ts +0 -1
- package/dist/contracts/Collection.d.ts +0 -1
- package/dist/contracts/ModelCollection.d.ts +1 -1
- package/dist/core.js +678 -653
- package/dist/exceptions/AttributeNotFillableException.d.ts +1 -1
- package/dist/exceptions/FacadeNotFoundException.d.ts +1 -1
- package/dist/exceptions/MethodNotImplementedException.d.ts +1 -1
- package/dist/exceptions/ModelInvalidRelatedTypeException.d.ts +1 -1
- package/dist/exceptions/ModelNotFoundException.d.ts +1 -1
- package/dist/exceptions/ModelNotPersistedException.d.ts +1 -1
- package/dist/exceptions/ModelWithoutPrimaryKeyException.d.ts +1 -1
- package/dist/exceptions/NoEmbedException.d.ts +1 -1
- package/dist/exceptions/NoInverseRelationException.d.ts +1 -1
- package/dist/exceptions/NotModelException.d.ts +1 -1
- package/dist/exceptions/NotReducibleException.d.ts +1 -1
- package/dist/exceptions/ReducerOverrideException.d.ts +1 -1
- package/dist/exceptions/RouteNotFoundException.d.ts +1 -1
- package/dist/exceptions/UnsupportedRelationException.d.ts +1 -1
- package/dist/facades/App.d.ts +0 -1
- package/dist/facades/Model.d.ts +1 -2
- package/dist/mixins/HasEvents.d.ts +0 -1
- package/dist/types/Model.d.ts +1 -1
- package/package.json +1 -1
- package/vite.config.js +3 -1
|
@@ -45,6 +45,5 @@ declare const _default: {
|
|
|
45
45
|
emit<E_2 extends "change" | "submit" | "success" | "error">(event: E_2, data?: Omit<Parameters<BuilderEventMap[E_2]>[0], "source">): void;
|
|
46
46
|
[Symbol.toStringTag]: string;
|
|
47
47
|
};
|
|
48
|
-
name: string;
|
|
49
48
|
} & typeof Builder;
|
|
50
49
|
export default _default;
|
|
@@ -186,6 +186,5 @@ declare const _default: {
|
|
|
186
186
|
emit<E_2 extends "change">(event: E_2, data?: Omit<Parameters<CollectionEvents<unknown>[E_2]>[0], "source">): void;
|
|
187
187
|
[Symbol.toStringTag]: string;
|
|
188
188
|
};
|
|
189
|
-
name: string;
|
|
190
189
|
} & typeof Collection;
|
|
191
190
|
export default _default;
|
|
@@ -3,7 +3,7 @@ import { Model } from '../types/Model';
|
|
|
3
3
|
import { Collection as CollectionInterface } from '../types/Collection';
|
|
4
4
|
|
|
5
5
|
declare class ModelCollection extends Collection<Model> {
|
|
6
|
-
|
|
6
|
+
[Symbol.toStringTag]: string;
|
|
7
7
|
intersect(values: Collection<Model> | Model[]): CollectionInterface<Model>;
|
|
8
8
|
}
|
|
9
9
|
export default ModelCollection;
|