@almadar/core 10.90.0 → 10.92.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.
Files changed (38) hide show
  1. package/dist/builders.d.ts +3 -3
  2. package/dist/builders.js +4 -2
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-7jQQxiIt.d.ts → effect-DGa2ixo7.d.ts} +13 -1
  5. package/dist/{entityAccess-CpHfCQA3.d.ts → entityAccess-CXennIKj.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +437 -101
  8. package/dist/factory/index.js.map +1 -1
  9. package/dist/factory-runtime/index.d.ts +3 -3
  10. package/dist/factory-runtime/index.js +8 -3
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/i18n/index.js +6 -0
  13. package/dist/i18n/index.js.map +1 -1
  14. package/dist/{index-BresfHJy.d.ts → index-BFortVj8.d.ts} +39 -10
  15. package/dist/index.d.ts +11 -72
  16. package/dist/index.js +829 -209
  17. package/dist/index.js.map +1 -1
  18. package/dist/mock/index.d.ts +11 -5
  19. package/dist/mock/index.js +3 -2
  20. package/dist/mock/index.js.map +1 -1
  21. package/dist/patterns/component-mapping.json +1 -1
  22. package/dist/patterns/event-contracts.json +1 -1
  23. package/dist/patterns/index.d.ts +1570 -181
  24. package/dist/patterns/index.js +771 -109
  25. package/dist/patterns/index.js.map +1 -1
  26. package/dist/patterns/integrators-registry.json +333 -6
  27. package/dist/patterns/patterns-registry.json +436 -101
  28. package/dist/patterns/registry.json +436 -101
  29. package/dist/patterns/services-registry.json +400 -68
  30. package/dist/{schema-C52juBr8.d.ts → schema-DIL07Bmv.d.ts} +25 -25
  31. package/dist/state-machine/index.js +19 -4
  32. package/dist/state-machine/index.js.map +1 -1
  33. package/dist/{trait-CFiL1YUN.d.ts → trait-DHb48lyx.d.ts} +10 -1
  34. package/dist/types/index.d.ts +5 -5
  35. package/dist/types/index.js +32 -3
  36. package/dist/types/index.js.map +1 -1
  37. package/dist/{types-BgC8ETnl.d.ts → types-F5EPwMor.d.ts} +2 -2
  38. package/package.json +1 -1
@@ -1180,6 +1180,13 @@ type EntityFieldBase = {
1180
1180
  /** User-vocabulary synonyms (authored `@synonyms "..."` in `.lolo`).
1181
1181
  * Free text feeding catalog search / curation field-matching. */
1182
1182
  synonyms?: string;
1183
+ /**
1184
+ * The imported entity this field was merged from on a rebind (sibling
1185
+ * pull / entity contract). Absent on author-declared fields — a merged
1186
+ * field's `required` is the ATOM's own write contract, never the host
1187
+ * writer's.
1188
+ */
1189
+ mergedFrom?: string;
1183
1190
  };
1184
1191
  /**
1185
1192
  * Scalar / structural fields — no type-dependent payload required.
@@ -2818,7 +2825,7 @@ type EntityData = Record<string, EntityRow[]>;
2818
2825
  *
2819
2826
  * DO NOT EDIT MANUALLY — regenerated by almadar-pattern-sync `patterns` command.
2820
2827
  *
2821
- * Generated: 2026-09-10T08:51:20.757Z
2828
+ * Generated: 2026-09-12T18:14:02.464Z
2822
2829
  * Pattern count: 280
2823
2830
  */
2824
2831
 
@@ -3726,6 +3733,7 @@ interface PatternPropsMap {
3726
3733
  renderItem?: ((...args: unknown[]) => unknown) | string | SExpr;
3727
3734
  pageSize?: number | string | SExpr;
3728
3735
  look?: string | SExpr;
3736
+ relationsData?: PatternPropValue | string | SExpr;
3729
3737
  };
3730
3738
  'data-list': {
3731
3739
  type: 'data-list';
@@ -3768,6 +3776,7 @@ interface PatternPropsMap {
3768
3776
  sortBy?: string | SExpr;
3769
3777
  sortDirection?: string | SExpr;
3770
3778
  look?: string | SExpr;
3779
+ relationsData?: PatternPropValue | string | SExpr;
3771
3780
  };
3772
3781
  'date-range-picker': {
3773
3782
  type: 'date-range-picker';
@@ -4052,6 +4061,7 @@ interface PatternPropsMap {
4052
4061
  bones: unknown[] | string | SExpr;
4053
4062
  pose?: PatternPropValue | string | SExpr;
4054
4063
  clip?: PatternPropValue | string | SExpr;
4064
+ clipName?: string | SExpr;
4055
4065
  frame?: number | string | SExpr;
4056
4066
  opacity?: number | string | SExpr;
4057
4067
  weightsOverlay?: boolean | string | SExpr;
@@ -4239,6 +4249,7 @@ interface PatternPropsMap {
4239
4249
  headerActions?: unknown | string | SExpr;
4240
4250
  showTotal?: boolean | string | SExpr;
4241
4251
  look?: string | SExpr;
4252
+ relationsData?: PatternPropValue | string | SExpr;
4242
4253
  };
4243
4254
  'error-boundary': {
4244
4255
  type: 'error-boundary';
@@ -6232,6 +6243,7 @@ interface PatternPropsMap {
6232
6243
  children?: ((...args: unknown[]) => unknown) | string | SExpr;
6233
6244
  renderItem?: ((...args: unknown[]) => unknown) | string | SExpr;
6234
6245
  look?: string | SExpr;
6246
+ relationsData?: PatternPropValue | string | SExpr;
6235
6247
  };
6236
6248
  'tabs': {
6237
6249
  type: 'tabs';
@@ -1,4 +1,4 @@
1
- import { O as OrbitalSchema } from './schema-C52juBr8.js';
1
+ import { O as OrbitalSchema } from './schema-DIL07Bmv.js';
2
2
  import { S as SExpr } from './expression-WfTp2arD.js';
3
3
 
4
4
  /**
@@ -1,7 +1,7 @@
1
- import { k as FactorySignatureCatalog, h as FactoryParamValue, c as FactoryConfigTier, b as FactoryConfigParam, F as FactoryCallSite, j as FactorySignature, R as RuleOverlay, p as RuleOverlayEntry, o as PresentationOverlay, T as TraitOverlay, J as JsonSchema } from '../types-BgC8ETnl.js';
2
- export { a as FactoryCallSiteParams, d as FactoryEntitySignature, e as FactoryEventSignature, f as FactoryExposure, g as FactoryPageSignature, i as FactoryProvenance, l as FactorySignatureEntityField, m as FactoryTraitSignature, n as JsonSchemaType, O as OwnershipOverlayEntry, P as PresentationNavItem, S as SchemaFieldType, q as TraitOverlayEntry, r as TraitOverlayListener } from '../types-BgC8ETnl.js';
3
- import { a as EntityPersistence, E as EntityField } from '../effect-7jQQxiIt.js';
4
- import { a as TraitReference } from '../trait-CFiL1YUN.js';
1
+ import { k as FactorySignatureCatalog, h as FactoryParamValue, c as FactoryConfigTier, b as FactoryConfigParam, F as FactoryCallSite, j as FactorySignature, R as RuleOverlay, p as RuleOverlayEntry, o as PresentationOverlay, T as TraitOverlay, J as JsonSchema } from '../types-F5EPwMor.js';
2
+ export { a as FactoryCallSiteParams, d as FactoryEntitySignature, e as FactoryEventSignature, f as FactoryExposure, g as FactoryPageSignature, i as FactoryProvenance, l as FactorySignatureEntityField, m as FactoryTraitSignature, n as JsonSchemaType, O as OwnershipOverlayEntry, P as PresentationNavItem, S as SchemaFieldType, q as TraitOverlayEntry, r as TraitOverlayListener } from '../types-F5EPwMor.js';
3
+ import { a as EntityPersistence, E as EntityField } from '../effect-DGa2ixo7.js';
4
+ import { a as TraitReference } from '../trait-DHb48lyx.js';
5
5
  export { J as JsonValue } from '../json-D8gmyK3l.js';
6
6
  import 'zod';
7
7
  import '../expression-WfTp2arD.js';