@almadar/core 10.57.0 → 10.59.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 (34) hide show
  1. package/dist/builders.d.ts +3 -3
  2. package/dist/builders.js +5 -2
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-D-_fm4No.d.ts → effect-CK9fn56C.d.ts} +40 -14
  5. package/dist/{entityAccess-kTNoti84.d.ts → entityAccess-pgfWacod.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +2 -0
  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 +5 -2
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/index-DMUBu17o.d.ts +3178 -0
  13. package/dist/index.d.ts +11 -98
  14. package/dist/index.js +925 -67
  15. package/dist/index.js.map +1 -1
  16. package/dist/mock/index.d.ts +4 -4
  17. package/dist/mock/index.js +8 -2
  18. package/dist/mock/index.js.map +1 -1
  19. package/dist/patterns/component-mapping.json +1 -1
  20. package/dist/patterns/event-contracts.json +1 -1
  21. package/dist/patterns/index.d.ts +1860 -80
  22. package/dist/patterns/index.js +913 -64
  23. package/dist/patterns/index.js.map +1 -1
  24. package/dist/patterns/integrators-registry.json +42 -0
  25. package/dist/patterns/patterns-registry.json +869 -62
  26. package/dist/patterns/registry.json +869 -62
  27. package/dist/patterns/services-registry.json +141 -253
  28. package/dist/{schema-CrUFqWXN.d.ts → schema-CVTOy4at.d.ts} +506 -506
  29. package/dist/{trait-A4_OlY_l.d.ts → trait-BjPraUgs.d.ts} +2 -2
  30. package/dist/types/index.d.ts +8 -3095
  31. package/dist/types/index.js +10 -3
  32. package/dist/types/index.js.map +1 -1
  33. package/dist/{types-AHD31Gn-.d.ts → types-Dopw3s2O.d.ts} +3 -3
  34. package/package.json +1 -1
@@ -1,6 +1,6 @@
1
- import { O as OrbitalSchema, a as OrbitalDefinition } from '../schema-CrUFqWXN.js';
2
- import { h as CallSiteConfig, i as CallSiteConfigEntry, g as Trait } from '../trait-A4_OlY_l.js';
3
- import { E as EntityField, a as EntityPersistence } from '../effect-D-_fm4No.js';
1
+ import { O as OrbitalSchema, a as OrbitalDefinition } from '../schema-CVTOy4at.js';
2
+ import { h as CallSiteConfig, i as CallSiteConfigEntry, g as Trait } from '../trait-BjPraUgs.js';
3
+ import { E as EntityField, a as EntityPersistence } from '../effect-CK9fn56C.js';
4
4
  import { MakeTraitRefOpts } from '../builders.js';
5
5
  import '../expression-Fk8bQWef.js';
6
6
  import 'zod';
@@ -108,7 +108,8 @@ var FIELD_TYPES = [
108
108
  "relation",
109
109
  "trait",
110
110
  "slot",
111
- "pattern"
111
+ "pattern",
112
+ "node"
112
113
  ];
113
114
  z.enum(FIELD_TYPES);
114
115
  var RelationCardinalitySchema = z.enum([
@@ -194,6 +195,7 @@ var EntityFieldSchema = z.lazy(() => {
194
195
  scalarVariant("trait"),
195
196
  scalarVariant("slot"),
196
197
  scalarVariant("pattern"),
198
+ scalarVariant("node"),
197
199
  // Enum variant — REQUIRES non-empty values.
198
200
  z.object({
199
201
  ...baseFieldShape,
@@ -335,7 +337,8 @@ z.object({
335
337
  zoom: z.number().optional(),
336
338
  fov: z.number().optional(),
337
339
  mode: CameraModeSchema.optional(),
338
- azimuth: z.number().optional()
340
+ azimuth: z.number().optional(),
341
+ elevation: z.number().optional()
339
342
  });
340
343
  var SExprDataSchema = z.lazy(
341
344
  () => z.union([SExprAtomSchema, z.array(SExprDataSchema)])