@almadar/core 10.71.0 → 10.73.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/{effect-CrsTJ7h8.d.ts → effect-B7xqqEFo.d.ts} +5 -2
- package/dist/{entityAccess-B0r5mJ43.d.ts → entityAccess-BaGu3lyD.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/{index-DOU3UsI-.d.ts → index-BFOvDfUQ.d.ts} +4 -4
- package/dist/index.d.ts +10 -10
- package/dist/index.js +86 -10
- 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 +171 -18
- package/dist/patterns/index.js +86 -10
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +35 -1
- package/dist/patterns/patterns-registry.json +49 -7
- package/dist/patterns/registry.json +49 -7
- package/dist/patterns/services-registry.json +35 -1
- package/dist/{schema-CrlpehQq.d.ts → schema-CDlk_DCx.d.ts} +2 -2
- package/dist/{trait-CdcDJqPW.d.ts → trait-Cc-SAgVU.d.ts} +1 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js.map +1 -1
- package/dist/{types--R-KklLv.d.ts → types-BTxfDR3U.d.ts} +11 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { E as EntityField, a as EntityPersistence, R as RelationConfig } from './effect-
|
|
2
|
-
import { T as TraitEventListener, a as TraitReference } from './trait-
|
|
1
|
+
import { E as EntityField, a as EntityPersistence, R as RelationConfig } from './effect-B7xqqEFo.js';
|
|
2
|
+
import { T as TraitEventListener, a as TraitReference } from './trait-Cc-SAgVU.js';
|
|
3
3
|
import { J as JsonValue } from './expression-Fk8bQWef.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -85,8 +85,17 @@ interface JsonSchema {
|
|
|
85
85
|
additionalProperties?: boolean | JsonSchema;
|
|
86
86
|
items?: JsonSchema;
|
|
87
87
|
enum?: ReadonlyArray<string | number | boolean>;
|
|
88
|
+
/** Single-value pin — JSON Schema 2020-12 `const` (an `enum` of one). */
|
|
89
|
+
const?: string | number | boolean;
|
|
88
90
|
oneOf?: ReadonlyArray<JsonSchema>;
|
|
89
91
|
anyOf?: ReadonlyArray<JsonSchema>;
|
|
92
|
+
allOf?: ReadonlyArray<JsonSchema>;
|
|
93
|
+
/** Conditional subschemas — JSON Schema 2020-12 `if`/`then`/`else`. Used
|
|
94
|
+
* e.g. to pin `orbitalName` to an organism's exact roster per anchored
|
|
95
|
+
* organism (rabit set_roster, SCAN-ROSTER-RETRY-1). */
|
|
96
|
+
if?: JsonSchema;
|
|
97
|
+
then?: JsonSchema;
|
|
98
|
+
else?: JsonSchema;
|
|
90
99
|
default?: JsonValue;
|
|
91
100
|
/**
|
|
92
101
|
* Reference to a shared definition under `$defs` at the schema root.
|