@almadar/core 10.87.0 → 10.89.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 +2 -0
- package/dist/builders.js.map +1 -1
- package/dist/{effect-DMA97JxX.d.ts → effect-CdLBg9zL.d.ts} +1 -1
- package/dist/{entityAccess-DNDEF75i.d.ts → entityAccess-BmZHpQUv.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +2 -0
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/i18n/index.d.ts +14 -2
- package/dist/i18n/index.js +192 -375
- package/dist/i18n/index.js.map +1 -1
- package/dist/{index-xZP_Ajx3.d.ts → index-CV_iM5Cm.d.ts} +4 -4
- package/dist/index.d.ts +11 -11
- package/dist/index.js +197 -378
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +5 -5
- package/dist/patterns/index.js +3 -3
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +1 -1
- package/dist/patterns/registry.json +1 -1
- package/dist/{schema-_SPrm5Ic.d.ts → schema-DYC_RnBX.d.ts} +471 -4
- package/dist/{trait-9tfq2tQb.d.ts → trait-DmWdtKlP.d.ts} +130 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CjRjhiaO.d.ts → types-DdK77hq2.d.ts} +2 -2
- package/package.json +3 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { O as OrbitalSchema, a as OrbitalDefinition } from '../schema-
|
|
2
|
-
import { g as TraitConfigValue, i as CallSiteConfig, j as CallSiteConfigEntry, h as Trait } from '../trait-
|
|
3
|
-
import { E as EntityField, a as EntityPersistence } from '../effect-
|
|
1
|
+
import { O as OrbitalSchema, a as OrbitalDefinition } from '../schema-DYC_RnBX.js';
|
|
2
|
+
import { g as TraitConfigValue, i as CallSiteConfig, j as CallSiteConfigEntry, h as Trait } from '../trait-DmWdtKlP.js';
|
|
3
|
+
import { E as EntityField, a as EntityPersistence } from '../effect-CdLBg9zL.js';
|
|
4
4
|
import { MakeTraitRefOpts } from '../builders.js';
|
|
5
5
|
import '../json-D8gmyK3l.js';
|
|
6
6
|
import '../expression-WfTp2arD.js';
|
|
@@ -534,6 +534,7 @@ var EventSchema = z.object({
|
|
|
534
534
|
synonyms: z.string().optional(),
|
|
535
535
|
tier: z.string().optional(),
|
|
536
536
|
payloadSchema: z.array(PayloadFieldSchema).optional(),
|
|
537
|
+
payloadEntity: z.string().optional(),
|
|
537
538
|
classification: z.enum(["domain", "system"]).optional(),
|
|
538
539
|
semanticRole: z.string().optional()
|
|
539
540
|
});
|
|
@@ -733,6 +734,7 @@ var TraitEventContractSchema = z.object({
|
|
|
733
734
|
definerKnob: z.string().optional(),
|
|
734
735
|
scopeOverridden: z.boolean().optional(),
|
|
735
736
|
payloadSchema: z.array(EventPayloadFieldSchema).optional(),
|
|
737
|
+
payloadEntity: z.string().optional(),
|
|
736
738
|
scope: EventScopeSchema.optional()
|
|
737
739
|
});
|
|
738
740
|
var ListenSourceSchema = z.union([
|