@almadar/core 10.58.0 → 10.60.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-BH2k4oK6.d.ts → effect-a1W_hXyG.d.ts} +96 -9
- package/dist/{entityAccess-QAurFO7l.d.ts → entityAccess-BTHElnAf.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-D9aomsLC.d.ts +3178 -0
- package/dist/index.d.ts +11 -98
- package/dist/index.js +5481 -1309
- 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 +6 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +31751 -22732
- package/dist/patterns/index.js +5469 -1306
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +6105 -1948
- package/dist/patterns/registry.json +6105 -1948
- package/dist/{schema-Sk_irLOY.d.ts → schema-WnERh-P-.d.ts} +2259 -2259
- package/dist/{trait-Bw4nWHu1.d.ts → trait-DgZ5Exel.d.ts} +2 -2
- package/dist/types/index.d.ts +8 -3095
- package/dist/types/index.js +11 -3
- package/dist/types/index.js.map +1 -1
- package/dist/{types-D71hY_4A.d.ts → types-CGjZ7Odu.d.ts} +3 -3
- 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-a1W_hXyG.js';
|
|
2
|
+
import { T as TraitEventListener, a as TraitReference } from './trait-DgZ5Exel.js';
|
|
3
3
|
import { J as JsonValue } from './expression-Fk8bQWef.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -118,7 +118,7 @@ type JsonSchemaType = 'string' | 'number' | 'integer' | 'boolean' | 'array' | 'o
|
|
|
118
118
|
* these directly from the resolved `.orb`; consumers narrow further at
|
|
119
119
|
* dispatch time.
|
|
120
120
|
*/
|
|
121
|
-
type SchemaFieldType = 'string' | 'number' | 'boolean' | 'date' | 'timestamp' | 'datetime' | 'email' | 'url' | 'phone' | 'uuid' | 'image' | 'array' | 'object' | 'enum' | 'relation';
|
|
121
|
+
type SchemaFieldType = 'string' | 'number' | 'boolean' | 'date' | 'timestamp' | 'datetime' | 'email' | 'url' | 'phone' | 'uuid' | 'image' | 'array' | 'object' | 'enum' | 'relation' | 'node';
|
|
122
122
|
interface FactorySignatureEntityField {
|
|
123
123
|
name: string;
|
|
124
124
|
type: SchemaFieldType;
|