@almadar/core 7.20.0 → 7.22.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 +2 -2
- package/dist/builders.js +4 -1
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-DWMFJEz3.d.ts → compose-behaviors-CHAMivlZ.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +7 -1
- package/dist/domain-language/index.js +4 -1
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/{schema-WX5fN1Ra.d.ts → schema-BVni4uNf.d.ts} +87 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js +4 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
package/dist/builders.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { d7 as UISlot, Z as Effect, cE as Trait, bN as RenderUIEffect, cQ as TraitEventContract, a2 as Entity, cS as TraitEventListener, cH as TraitConfig, a6 as EntityField, a9 as EntityPersistence, ag as EntityRow, dc as UseDeclaration, ab as EntityRef, cV as TraitRef, bs as PageRef, b6 as OrbitalDefinition, bh as OrbitalSchema, br as Page, bt as PageRefObject, cX as TraitReference } from './schema-
|
|
1
|
+
import { d7 as UISlot, Z as Effect, cE as Trait, bN as RenderUIEffect, cQ as TraitEventContract, a2 as Entity, cS as TraitEventListener, cH as TraitConfig, a6 as EntityField, a9 as EntityPersistence, ag as EntityRow, dc as UseDeclaration, ab as EntityRef, cV as TraitRef, bs as PageRef, b6 as OrbitalDefinition, bh as OrbitalSchema, br as Page, bt as PageRefObject, cX as TraitReference } from './schema-BVni4uNf.js';
|
|
2
2
|
import { S as SExpr } from './expression-BVRFm0sV.js';
|
|
3
|
-
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-
|
|
3
|
+
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-CHAMivlZ.js';
|
|
4
4
|
import { AnyPatternConfig } from '@almadar/patterns';
|
|
5
5
|
import 'zod';
|
|
6
6
|
|
package/dist/builders.js
CHANGED
|
@@ -12,7 +12,9 @@ var FieldTypeSchema = z.enum([
|
|
|
12
12
|
"object",
|
|
13
13
|
"enum",
|
|
14
14
|
"relation",
|
|
15
|
-
"trait"
|
|
15
|
+
"trait",
|
|
16
|
+
"slot",
|
|
17
|
+
"pattern"
|
|
16
18
|
]);
|
|
17
19
|
var RelationCardinalitySchema = z.enum([
|
|
18
20
|
"one",
|
|
@@ -462,6 +464,7 @@ var TraitSchema = z.object({
|
|
|
462
464
|
description: z.string().optional(),
|
|
463
465
|
description_visual_prompt: z.string().optional(),
|
|
464
466
|
category: TraitCategorySchema.optional(),
|
|
467
|
+
capabilities: z.array(z.string()).optional(),
|
|
465
468
|
scope: TraitScopeSchema,
|
|
466
469
|
linkedEntity: z.string().optional(),
|
|
467
470
|
requiredFields: z.array(RequiredFieldSchema).optional(),
|