@almadar/core 2.12.0 → 2.14.0
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/builders.d.ts +3 -3
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-Df78wLLB.d.ts → compose-behaviors-CQC8hsaL.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js +1 -0
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/{schema-D96fyp1B.d.ts → schema-BFnZrBhm.d.ts} +27 -8
- package/dist/state-machine/index.js.map +1 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
package/dist/builders.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { T as TraitEventContract, E as EntityField, a as EntityPersistence, O as OrbitalDefinition,
|
|
2
|
-
export { C as ComposeBehaviorsInput, a as ComposeBehaviorsResult, E as EventWiringEntry, L as LayoutStrategy, b as applyEventWiring, c as composeBehaviors, d as detectLayoutStrategy } from './compose-behaviors-
|
|
1
|
+
import { T as TraitEventContract, E as EntityField, a as EntityPersistence, b as EntityRow, O as OrbitalDefinition, c as OrbitalSchema, d as Trait, e as Entity, P as Page } from './schema-BFnZrBhm.js';
|
|
2
|
+
export { C as ComposeBehaviorsInput, a as ComposeBehaviorsResult, E as EventWiringEntry, L as LayoutStrategy, b as applyEventWiring, c as composeBehaviors, d as detectLayoutStrategy } from './compose-behaviors-CQC8hsaL.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import '@almadar/patterns';
|
|
5
5
|
|
|
@@ -32,7 +32,7 @@ interface MakeEntityOpts {
|
|
|
32
32
|
persistence?: EntityPersistence;
|
|
33
33
|
collection?: string;
|
|
34
34
|
/** Pre-authored seed data instances */
|
|
35
|
-
instances?:
|
|
35
|
+
instances?: EntityRow[];
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
38
|
* Build an Entity from options. Auto-adds id field, auto-derives collection.
|