@almadar/core 10.56.0 → 10.57.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 +9 -3
- package/dist/builders.js +7 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-DxD-XTI8.d.ts → effect-D-_fm4No.d.ts} +35 -6
- package/dist/{entityAccess-Bnz5CJ3S.d.ts → entityAccess-kTNoti84.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +50 -15
- package/dist/factory-runtime/index.js +94 -10
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +9 -9
- package/dist/index.js +117 -13
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +1 -0
- 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 +187 -13
- package/dist/patterns/index.js +104 -11
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +22 -1
- package/dist/patterns/patterns-registry.json +75 -8
- package/dist/patterns/registry.json +75 -8
- package/dist/patterns/services-registry.json +21 -0
- package/dist/{schema-Nk1usPv6.d.ts → schema-CrUFqWXN.d.ts} +88 -88
- package/dist/{trait-WnYkvPdZ.d.ts → trait-A4_OlY_l.d.ts} +20 -20
- package/dist/types/index.d.ts +7 -7
- package/dist/types/index.js +6 -2
- package/dist/types/index.js.map +1 -1
- package/dist/{types-C4YztU2N.d.ts → types-AHD31Gn-.d.ts} +2 -2
- 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-CrUFqWXN.js';
|
|
2
|
+
export { E as EntityAccessPolicies, e as entityAccessPolicies, a as entityAccessTable } from '../entityAccess-kTNoti84.js';
|
|
3
|
+
import { a as EntityPersistence, E as EntityField, F as FieldValue, f as EntityRow } from '../effect-D-_fm4No.js';
|
|
4
|
+
import '../trait-A4_OlY_l.js';
|
|
5
5
|
import '../expression-Fk8bQWef.js';
|
|
6
6
|
import 'zod';
|
|
7
7
|
|
package/dist/mock/index.js
CHANGED
|
@@ -397,6 +397,7 @@ var EntityFieldSchema = z.lazy(() => {
|
|
|
397
397
|
const baseFieldShape = {
|
|
398
398
|
name: z.string().min(1, "Field name is required").optional(),
|
|
399
399
|
required: z.boolean().optional(),
|
|
400
|
+
primaryKey: z.boolean().optional(),
|
|
400
401
|
default: JsonValueSchema.optional(),
|
|
401
402
|
min: z.number().optional(),
|
|
402
403
|
max: z.number().optional(),
|