@almadar/core 10.34.0 → 10.36.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-DFOj9_N8.d.ts → builders-CBL9rED-.d.ts} +117 -117
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js +2 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-D9WY6JgN.d.ts → effect-Cd6ibbZc.d.ts} +6 -1
- package/dist/factory/index.d.ts +5 -5
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +3 -4
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +115 -21
- package/dist/index.js +243 -11
- package/dist/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +182 -5
- package/dist/patterns/index.js +90 -3
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +30 -0
- package/dist/patterns/patterns-registry.json +58 -1
- package/dist/patterns/registry.json +58 -1
- package/dist/{trait-6_gs33fs.d.ts → trait-X5mQAMtW.d.ts} +26 -21
- package/dist/types/index.d.ts +116 -11
- package/dist/types/index.js +72 -3
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CeGT3YB1.d.ts → types-DujRcijG.d.ts} +2 -2
- package/package.json +1 -1
package/dist/builders.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import './effect-
|
|
2
|
-
export { i as ComposeBehaviorsInput, j as ComposeBehaviorsResult, c7 as ComposeConnection, c8 as ComposePage, a6 as EventWiringEntry, aq as LayoutStrategy, c9 as MakeAtomOrbitalOpts, ca as MakeAtomOrbitalTraitOverrides, cb as MakeEntityOpts, cc as MakeLayoutTraitOpts, cd as MakeOrbitalWithUsesOpts, ce as MakePageOpts, cf as MakePageRefOpts, cg as MakePageRefOptsTyped, M as MakeTraitRefOpts, ch as MakeTraitRefOptsTyped, bS as applyEventWiring, ci as applyTraitConfigOverrides, cj as compose, bT as composeBehaviors, ck as connect, bU as detectLayoutStrategy, cl as ensureIdField, cm as extractTrait, cn as makeAtomOrbital, co as makeEntity, cp as makeLayoutTrait, cq as makeOrbital, cr as makeOrbitalWithUses, cs as makePage, ct as makePageRef, cu as makeRenderUI, cv as makeSchema, cw as makeSlot, cx as makeTraitRef, cy as mergeLedgers, cz as mergeOrbitals, cA as pipe, cB as plural, cC as wire } from './builders-
|
|
3
|
-
import './trait-
|
|
1
|
+
import './effect-Cd6ibbZc.js';
|
|
2
|
+
export { i as ComposeBehaviorsInput, j as ComposeBehaviorsResult, c7 as ComposeConnection, c8 as ComposePage, a6 as EventWiringEntry, aq as LayoutStrategy, c9 as MakeAtomOrbitalOpts, ca as MakeAtomOrbitalTraitOverrides, cb as MakeEntityOpts, cc as MakeLayoutTraitOpts, cd as MakeOrbitalWithUsesOpts, ce as MakePageOpts, cf as MakePageRefOpts, cg as MakePageRefOptsTyped, M as MakeTraitRefOpts, ch as MakeTraitRefOptsTyped, bS as applyEventWiring, ci as applyTraitConfigOverrides, cj as compose, bT as composeBehaviors, ck as connect, bU as detectLayoutStrategy, cl as ensureIdField, cm as extractTrait, cn as makeAtomOrbital, co as makeEntity, cp as makeLayoutTrait, cq as makeOrbital, cr as makeOrbitalWithUses, cs as makePage, ct as makePageRef, cu as makeRenderUI, cv as makeSchema, cw as makeSlot, cx as makeTraitRef, cy as mergeLedgers, cz as mergeOrbitals, cA as pipe, cB as plural, cC as wire } from './builders-CBL9rED-.js';
|
|
3
|
+
import './trait-X5mQAMtW.js';
|
|
4
4
|
import './expression-DpAj1RzP.js';
|
|
5
5
|
import 'zod';
|
package/dist/builders.js
CHANGED
|
@@ -599,7 +599,7 @@ var TraitEventListenerSchema = z.object({
|
|
|
599
599
|
tier: z.string().optional(),
|
|
600
600
|
guard: ExpressionSchema.optional(),
|
|
601
601
|
scope: EventScopeSchema.optional(),
|
|
602
|
-
payloadMapping: z.record(
|
|
602
|
+
payloadMapping: z.record(SExprSchema).optional(),
|
|
603
603
|
source: ListenSourceSchema.optional()
|
|
604
604
|
});
|
|
605
605
|
var RequiredFieldSchema = z.object({
|
|
@@ -1312,7 +1312,7 @@ var ComputedEventListenerSchema = z.object({
|
|
|
1312
1312
|
source: EventSourceSchema,
|
|
1313
1313
|
triggers: z.string().min(1),
|
|
1314
1314
|
guard: ExpressionSchema.optional(),
|
|
1315
|
-
payloadMapping: z.record(
|
|
1315
|
+
payloadMapping: z.record(SExprSchema).optional()
|
|
1316
1316
|
});
|
|
1317
1317
|
z.object({
|
|
1318
1318
|
id: OrbitalIdSchema.optional(),
|