@almadar/core 10.53.0 → 10.55.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 +4 -4
- package/dist/builders.js +6 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-CqTo1gAF.d.ts → effect-DxD-XTI8.d.ts} +2 -2
- package/dist/{entityAccess-3QD5qbqw.d.ts → entityAccess-JTWGFDja.d.ts} +2 -2
- package/dist/{expression-Yf7qvvOs.d.ts → expression-Fk8bQWef.d.ts} +6 -1
- package/dist/factory/index.d.ts +5 -5
- package/dist/factory/index.js +6 -0
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +4 -4
- package/dist/factory-runtime/index.js +6 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +10 -10
- package/dist/index.js +34 -7
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +5 -5
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +8 -1
- package/dist/patterns/index.d.ts +13 -6
- package/dist/patterns/index.js +10 -3
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +1 -1
- package/dist/patterns/registry.json +1 -1
- package/dist/{schema-h6xcymfn.d.ts → schema-0C1bXRFm.d.ts} +172 -80
- package/dist/state-machine/index.d.ts +1 -1
- package/dist/{trait-CnbGhs6A.d.ts → trait-WnYkvPdZ.d.ts} +16 -16
- package/dist/types/index.d.ts +20 -10
- package/dist/types/index.js +18 -4
- package/dist/types/index.js.map +1 -1
- package/dist/{types-DJquF4Ot.d.ts → types-C4YztU2N.d.ts} +33 -3
- package/package.json +1 -1
- package/src/types/bindings.ts +13 -1
package/dist/builders.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { I as IdentityLedger, A as AnyPatternConfig, U as UISlot, c as Effect, h as RenderBinding, i as RenderUIEffect, d as EntityId, e as Entity, E as EntityField, a as EntityPersistence, f as EntityRow } from './effect-
|
|
2
|
-
import { a as OrbitalDefinition, O as OrbitalSchema, U as UseDeclaration, E as EntityRef, P as PageRef, b as Page, c as PageRefObject } from './schema-
|
|
3
|
-
import { b as TraitConfig, g as Trait, T as TraitEventListener, h as CallSiteConfig, j as TraitEventContract, d as TraitRef, a as TraitReference } from './trait-
|
|
4
|
-
import { S as SExpr } from './expression-
|
|
1
|
+
import { I as IdentityLedger, A as AnyPatternConfig, U as UISlot, c as Effect, h as RenderBinding, i as RenderUIEffect, d as EntityId, e as Entity, E as EntityField, a as EntityPersistence, f as EntityRow } from './effect-DxD-XTI8.js';
|
|
2
|
+
import { a as OrbitalDefinition, O as OrbitalSchema, U as UseDeclaration, E as EntityRef, P as PageRef, b as Page, c as PageRefObject } from './schema-0C1bXRFm.js';
|
|
3
|
+
import { b as TraitConfig, g as Trait, T as TraitEventListener, h as CallSiteConfig, j as TraitEventContract, d as TraitRef, a as TraitReference } from './trait-WnYkvPdZ.js';
|
|
4
|
+
import { S as SExpr } from './expression-Fk8bQWef.js';
|
|
5
5
|
import 'zod';
|
|
6
6
|
|
|
7
7
|
/**
|
package/dist/builders.js
CHANGED
|
@@ -791,7 +791,9 @@ z.object({
|
|
|
791
791
|
path: z.string().min(1, "Page path is required").startsWith("/", "Path must start with /"),
|
|
792
792
|
primaryEntity: z.string().min(1, "Primary entity is required"),
|
|
793
793
|
traits: z.array(PageTraitRefSchema).min(1, "Page must have at least one trait"),
|
|
794
|
-
title: z.string().optional()
|
|
794
|
+
title: z.string().optional(),
|
|
795
|
+
icon: z.string().optional(),
|
|
796
|
+
label: z.string().optional()
|
|
795
797
|
}).strict();
|
|
796
798
|
var OrbitalPageSchema = z.object({
|
|
797
799
|
id: PageIdSchema.optional(),
|
|
@@ -801,7 +803,9 @@ var OrbitalPageSchema = z.object({
|
|
|
801
803
|
title: z.string().optional(),
|
|
802
804
|
primaryEntity: z.string().optional(),
|
|
803
805
|
traits: z.array(PageTraitRefSchema).optional(),
|
|
804
|
-
isInitial: z.boolean().optional()
|
|
806
|
+
isInitial: z.boolean().optional(),
|
|
807
|
+
icon: z.string().optional(),
|
|
808
|
+
label: z.string().optional()
|
|
805
809
|
}).strict();
|
|
806
810
|
var PageSchema = OrbitalPageSchema;
|
|
807
811
|
z.enum([
|