@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.
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js +4 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-7jQQxiIt.d.ts → effect-DGa2ixo7.d.ts} +13 -1
- package/dist/{entityAccess-CpHfCQA3.d.ts → entityAccess-CXennIKj.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +437 -101
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +8 -3
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/i18n/index.js +6 -0
- package/dist/i18n/index.js.map +1 -1
- package/dist/{index-BresfHJy.d.ts → index-BFortVj8.d.ts} +39 -10
- package/dist/index.d.ts +11 -72
- package/dist/index.js +829 -209
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +11 -5
- package/dist/mock/index.js +3 -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 +1570 -181
- package/dist/patterns/index.js +771 -109
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +333 -6
- package/dist/patterns/patterns-registry.json +436 -101
- package/dist/patterns/registry.json +436 -101
- package/dist/patterns/services-registry.json +400 -68
- package/dist/{schema-C52juBr8.d.ts → schema-DIL07Bmv.d.ts} +25 -25
- package/dist/state-machine/index.js +19 -4
- package/dist/state-machine/index.js.map +1 -1
- package/dist/{trait-CFiL1YUN.d.ts → trait-DHb48lyx.d.ts} +10 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +32 -3
- package/dist/types/index.js.map +1 -1
- package/dist/{types-BgC8ETnl.d.ts → types-F5EPwMor.d.ts} +2 -2
- package/package.json +1 -1
package/dist/builders.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { I as IdentityLedger, A as AnyPatternConfig, U as UISlot, c as Effect, i as RenderBinding, j as RenderUIEffect, d as EntityId, e as Entity, E as EntityField, a as EntityPersistence, g as EntityRow } from './effect-
|
|
2
|
-
import { a as OrbitalDefinition, O as OrbitalSchema, U as UseDeclaration, E as EntityRef, b as ExpectDeclaration, P as PageRef, c as Page, d as PageRefObject } from './schema-
|
|
3
|
-
import { b as TraitConfig, h as Trait, T as TraitEventListener, i as CallSiteConfig, k as TraitEventContract, d as TraitRef, a as TraitReference } from './trait-
|
|
1
|
+
import { I as IdentityLedger, A as AnyPatternConfig, U as UISlot, c as Effect, i as RenderBinding, j as RenderUIEffect, d as EntityId, e as Entity, E as EntityField, a as EntityPersistence, g as EntityRow } from './effect-DGa2ixo7.js';
|
|
2
|
+
import { a as OrbitalDefinition, O as OrbitalSchema, U as UseDeclaration, E as EntityRef, b as ExpectDeclaration, P as PageRef, c as Page, d as PageRefObject } from './schema-DIL07Bmv.js';
|
|
3
|
+
import { b as TraitConfig, h as Trait, T as TraitEventListener, i as CallSiteConfig, k as TraitEventContract, d as TraitRef, a as TraitReference } from './trait-DHb48lyx.js';
|
|
4
4
|
import { S as SExpr } from './expression-WfTp2arD.js';
|
|
5
5
|
import 'zod';
|
|
6
6
|
import './json-D8gmyK3l.js';
|
package/dist/builders.js
CHANGED
|
@@ -157,7 +157,8 @@ var EntityFieldSchema = z.lazy(() => {
|
|
|
157
157
|
properties: z.record(EntityFieldSchema).optional(),
|
|
158
158
|
intrinsic: z.boolean().optional(),
|
|
159
159
|
description: z.string().optional(),
|
|
160
|
-
synonyms: z.string().optional()
|
|
160
|
+
synonyms: z.string().optional(),
|
|
161
|
+
mergedFrom: z.string().optional()
|
|
161
162
|
};
|
|
162
163
|
function scalarVariant(t) {
|
|
163
164
|
return z.object({
|
|
@@ -586,7 +587,8 @@ var ConfigFieldDeclarationSchema = z.object({
|
|
|
586
587
|
synonyms: z.string().optional(),
|
|
587
588
|
items: ConfigFieldItemsDeclarationSchema.optional(),
|
|
588
589
|
properties: z.lazy(() => z.record(TraitEntityFieldSchema)).optional(),
|
|
589
|
-
forwardedFrom: z.string().optional()
|
|
590
|
+
forwardedFrom: z.string().optional(),
|
|
591
|
+
payloadFor: z.string().optional()
|
|
590
592
|
});
|
|
591
593
|
var DeclaredTraitConfigSchema = z.record(
|
|
592
594
|
ConfigFieldDeclarationSchema
|