@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.
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js +5 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-D-_fm4No.d.ts → effect-CK9fn56C.d.ts} +40 -14
- package/dist/{entityAccess-kTNoti84.d.ts → entityAccess-pgfWacod.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +2 -0
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +5 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index-DMUBu17o.d.ts +3178 -0
- package/dist/index.d.ts +11 -98
- package/dist/index.js +925 -67
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +8 -2
- package/dist/mock/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 +1860 -80
- package/dist/patterns/index.js +913 -64
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +42 -0
- package/dist/patterns/patterns-registry.json +869 -62
- package/dist/patterns/registry.json +869 -62
- package/dist/patterns/services-registry.json +141 -253
- package/dist/{schema-CrUFqWXN.d.ts → schema-CVTOy4at.d.ts} +506 -506
- package/dist/{trait-A4_OlY_l.d.ts → trait-BjPraUgs.d.ts} +2 -2
- package/dist/types/index.d.ts +8 -3095
- package/dist/types/index.js +10 -3
- package/dist/types/index.js.map +1 -1
- package/dist/{types-AHD31Gn-.d.ts → types-Dopw3s2O.d.ts} +3 -3
- package/package.json +1 -1
package/dist/mock/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { O as OrbitalSchema } from '../schema-
|
|
2
|
-
export { E as EntityAccessPolicies, e as entityAccessPolicies, a as entityAccessTable } from '../entityAccess-
|
|
3
|
-
import { a as EntityPersistence, E as EntityField, F as FieldValue, f as EntityRow } from '../effect-
|
|
4
|
-
import '../trait-
|
|
1
|
+
import { O as OrbitalSchema } from '../schema-CVTOy4at.js';
|
|
2
|
+
export { E as EntityAccessPolicies, e as entityAccessPolicies, a as entityAccessTable } from '../entityAccess-pgfWacod.js';
|
|
3
|
+
import { a as EntityPersistence, E as EntityField, F as FieldValue, f as EntityRow } from '../effect-CK9fn56C.js';
|
|
4
|
+
import '../trait-BjPraUgs.js';
|
|
5
5
|
import '../expression-Fk8bQWef.js';
|
|
6
6
|
import 'zod';
|
|
7
7
|
|
package/dist/mock/index.js
CHANGED
|
@@ -357,7 +357,8 @@ var FIELD_TYPES = [
|
|
|
357
357
|
"relation",
|
|
358
358
|
"trait",
|
|
359
359
|
"slot",
|
|
360
|
-
"pattern"
|
|
360
|
+
"pattern",
|
|
361
|
+
"node"
|
|
361
362
|
];
|
|
362
363
|
z.enum(FIELD_TYPES);
|
|
363
364
|
var RelationCardinalitySchema = z.enum([
|
|
@@ -443,6 +444,7 @@ var EntityFieldSchema = z.lazy(() => {
|
|
|
443
444
|
scalarVariant("trait"),
|
|
444
445
|
scalarVariant("slot"),
|
|
445
446
|
scalarVariant("pattern"),
|
|
447
|
+
scalarVariant("node"),
|
|
446
448
|
// Enum variant — REQUIRES non-empty values.
|
|
447
449
|
z.object({
|
|
448
450
|
...baseFieldShape,
|
|
@@ -584,7 +586,8 @@ z.object({
|
|
|
584
586
|
zoom: z.number().optional(),
|
|
585
587
|
fov: z.number().optional(),
|
|
586
588
|
mode: CameraModeSchema.optional(),
|
|
587
|
-
azimuth: z.number().optional()
|
|
589
|
+
azimuth: z.number().optional(),
|
|
590
|
+
elevation: z.number().optional()
|
|
588
591
|
});
|
|
589
592
|
var SExprDataSchema = z.lazy(
|
|
590
593
|
() => z.union([SExprAtomSchema, z.array(SExprDataSchema)])
|
|
@@ -814,6 +817,9 @@ function sampleFieldValue(field, ctx) {
|
|
|
814
817
|
case "trait":
|
|
815
818
|
case "slot":
|
|
816
819
|
case "pattern":
|
|
820
|
+
// Renderable content is computed by the owning trait's effects, never
|
|
821
|
+
// seeded — same no-sample treatment as the config-only reference types.
|
|
822
|
+
case "node":
|
|
817
823
|
return void 0;
|
|
818
824
|
default:
|
|
819
825
|
return sampleText(field, ctx);
|