@almadar/core 10.65.0 → 10.67.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.map +1 -1
- package/dist/{effect-COsZyQ3w.d.ts → effect-1QxaoQFj.d.ts} +21 -15
- package/dist/{entityAccess-BrSu-_jI.d.ts → entityAccess-BeN_FNtm.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-BRf3dUz-.d.ts → index-Czuk06Hr.d.ts} +4 -4
- package/dist/index.d.ts +10 -10
- package/dist/index.js +2404 -426
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +65 -66
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -8
- package/dist/patterns/index.d.ts +4960 -1529
- package/dist/patterns/index.js +2391 -425
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +2365 -442
- package/dist/patterns/patterns-registry.json +60 -10
- package/dist/patterns/registry.json +60 -10
- package/dist/patterns/services-registry.json +1477 -111
- package/dist/{schema-BBcQsU1e.d.ts → schema-BRAEV9eY.d.ts} +390 -390
- package/dist/{trait-DjBq4fW8.d.ts → trait-BkpkZfRN.d.ts} +77 -70
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +13 -1
- package/dist/types/index.js.map +1 -1
- package/dist/{types-B3z8_OnS.d.ts → types-DO_gWzsC.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -72,13 +72,13 @@ declare const RestAuthConfigSchema: z.ZodObject<{
|
|
|
72
72
|
secretEnv: z.ZodOptional<z.ZodString>;
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
74
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
75
|
-
keyName?: string | undefined;
|
|
76
75
|
location?: "header" | "query" | undefined;
|
|
76
|
+
keyName?: string | undefined;
|
|
77
77
|
secretEnv?: string | undefined;
|
|
78
78
|
}, {
|
|
79
79
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
80
|
-
keyName?: string | undefined;
|
|
81
80
|
location?: "header" | "query" | undefined;
|
|
81
|
+
keyName?: string | undefined;
|
|
82
82
|
secretEnv?: string | undefined;
|
|
83
83
|
}>;
|
|
84
84
|
declare const RestServiceDefSchema: z.ZodObject<{
|
|
@@ -94,13 +94,13 @@ declare const RestServiceDefSchema: z.ZodObject<{
|
|
|
94
94
|
secretEnv: z.ZodOptional<z.ZodString>;
|
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
96
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
97
|
-
keyName?: string | undefined;
|
|
98
97
|
location?: "header" | "query" | undefined;
|
|
98
|
+
keyName?: string | undefined;
|
|
99
99
|
secretEnv?: string | undefined;
|
|
100
100
|
}, {
|
|
101
101
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
102
|
-
keyName?: string | undefined;
|
|
103
102
|
location?: "header" | "query" | undefined;
|
|
103
|
+
keyName?: string | undefined;
|
|
104
104
|
secretEnv?: string | undefined;
|
|
105
105
|
}>>;
|
|
106
106
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -111,8 +111,8 @@ declare const RestServiceDefSchema: z.ZodObject<{
|
|
|
111
111
|
description?: string | undefined;
|
|
112
112
|
auth?: {
|
|
113
113
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
114
|
-
keyName?: string | undefined;
|
|
115
114
|
location?: "header" | "query" | undefined;
|
|
115
|
+
keyName?: string | undefined;
|
|
116
116
|
secretEnv?: string | undefined;
|
|
117
117
|
} | undefined;
|
|
118
118
|
headers?: Record<string, string> | undefined;
|
|
@@ -124,8 +124,8 @@ declare const RestServiceDefSchema: z.ZodObject<{
|
|
|
124
124
|
description?: string | undefined;
|
|
125
125
|
auth?: {
|
|
126
126
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
127
|
-
keyName?: string | undefined;
|
|
128
127
|
location?: "header" | "query" | undefined;
|
|
128
|
+
keyName?: string | undefined;
|
|
129
129
|
secretEnv?: string | undefined;
|
|
130
130
|
} | undefined;
|
|
131
131
|
headers?: Record<string, string> | undefined;
|
|
@@ -310,13 +310,13 @@ declare const ServiceDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
310
310
|
secretEnv: z.ZodOptional<z.ZodString>;
|
|
311
311
|
}, "strip", z.ZodTypeAny, {
|
|
312
312
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
313
|
-
keyName?: string | undefined;
|
|
314
313
|
location?: "header" | "query" | undefined;
|
|
314
|
+
keyName?: string | undefined;
|
|
315
315
|
secretEnv?: string | undefined;
|
|
316
316
|
}, {
|
|
317
317
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
318
|
-
keyName?: string | undefined;
|
|
319
318
|
location?: "header" | "query" | undefined;
|
|
319
|
+
keyName?: string | undefined;
|
|
320
320
|
secretEnv?: string | undefined;
|
|
321
321
|
}>>;
|
|
322
322
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -327,8 +327,8 @@ declare const ServiceDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
327
327
|
description?: string | undefined;
|
|
328
328
|
auth?: {
|
|
329
329
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
330
|
-
keyName?: string | undefined;
|
|
331
330
|
location?: "header" | "query" | undefined;
|
|
331
|
+
keyName?: string | undefined;
|
|
332
332
|
secretEnv?: string | undefined;
|
|
333
333
|
} | undefined;
|
|
334
334
|
headers?: Record<string, string> | undefined;
|
|
@@ -340,8 +340,8 @@ declare const ServiceDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
340
340
|
description?: string | undefined;
|
|
341
341
|
auth?: {
|
|
342
342
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
343
|
-
keyName?: string | undefined;
|
|
344
343
|
location?: "header" | "query" | undefined;
|
|
344
|
+
keyName?: string | undefined;
|
|
345
345
|
secretEnv?: string | undefined;
|
|
346
346
|
} | undefined;
|
|
347
347
|
headers?: Record<string, string> | undefined;
|
|
@@ -525,13 +525,13 @@ declare const ServiceRefSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
525
525
|
secretEnv: z.ZodOptional<z.ZodString>;
|
|
526
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
527
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
528
|
-
keyName?: string | undefined;
|
|
529
528
|
location?: "header" | "query" | undefined;
|
|
529
|
+
keyName?: string | undefined;
|
|
530
530
|
secretEnv?: string | undefined;
|
|
531
531
|
}, {
|
|
532
532
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
533
|
-
keyName?: string | undefined;
|
|
534
533
|
location?: "header" | "query" | undefined;
|
|
534
|
+
keyName?: string | undefined;
|
|
535
535
|
secretEnv?: string | undefined;
|
|
536
536
|
}>>;
|
|
537
537
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -542,8 +542,8 @@ declare const ServiceRefSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
542
542
|
description?: string | undefined;
|
|
543
543
|
auth?: {
|
|
544
544
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
545
|
-
keyName?: string | undefined;
|
|
546
545
|
location?: "header" | "query" | undefined;
|
|
546
|
+
keyName?: string | undefined;
|
|
547
547
|
secretEnv?: string | undefined;
|
|
548
548
|
} | undefined;
|
|
549
549
|
headers?: Record<string, string> | undefined;
|
|
@@ -555,8 +555,8 @@ declare const ServiceRefSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
555
555
|
description?: string | undefined;
|
|
556
556
|
auth?: {
|
|
557
557
|
type: "basic" | "api-key" | "bearer" | "oauth2";
|
|
558
|
-
keyName?: string | undefined;
|
|
559
558
|
location?: "header" | "query" | undefined;
|
|
559
|
+
keyName?: string | undefined;
|
|
560
560
|
secretEnv?: string | undefined;
|
|
561
561
|
} | undefined;
|
|
562
562
|
headers?: Record<string, string> | undefined;
|
|
@@ -2464,7 +2464,7 @@ type EntityData = Record<string, EntityRow[]>;
|
|
|
2464
2464
|
*
|
|
2465
2465
|
* DO NOT EDIT MANUALLY — regenerated by almadar-pattern-sync `patterns` command.
|
|
2466
2466
|
*
|
|
2467
|
-
* Generated: 2026-08-
|
|
2467
|
+
* Generated: 2026-08-23T03:36:02.974Z
|
|
2468
2468
|
* Pattern count: 272
|
|
2469
2469
|
*/
|
|
2470
2470
|
|
|
@@ -2869,6 +2869,7 @@ interface PatternPropsMap {
|
|
|
2869
2869
|
dayWindow?: number | string | SExpr;
|
|
2870
2870
|
titleField?: string | SExpr;
|
|
2871
2871
|
startField?: string | SExpr;
|
|
2872
|
+
endField?: string | SExpr;
|
|
2872
2873
|
colorField?: string | SExpr;
|
|
2873
2874
|
children?: ((...args: unknown[]) => unknown) | string | SExpr;
|
|
2874
2875
|
renderItem?: ((...args: unknown[]) => unknown) | string | SExpr;
|
|
@@ -3240,6 +3241,7 @@ interface PatternPropsMap {
|
|
|
3240
3241
|
directionAssets?: PatternPropValue | string | SExpr;
|
|
3241
3242
|
size?: string | SExpr;
|
|
3242
3243
|
disabled?: boolean | string | SExpr;
|
|
3244
|
+
visibility?: string | SExpr;
|
|
3243
3245
|
className?: string | SExpr;
|
|
3244
3246
|
};
|
|
3245
3247
|
'counter-template': {
|
|
@@ -4049,6 +4051,7 @@ interface PatternPropsMap {
|
|
|
4049
4051
|
items?: unknown[] | string | SExpr;
|
|
4050
4052
|
elements?: unknown[] | string | SExpr;
|
|
4051
4053
|
size?: string | SExpr;
|
|
4054
|
+
variant?: string | SExpr;
|
|
4052
4055
|
className?: string | SExpr;
|
|
4053
4056
|
transparent?: boolean | string | SExpr;
|
|
4054
4057
|
};
|
|
@@ -4522,6 +4525,9 @@ interface PatternPropsMap {
|
|
|
4522
4525
|
showAxes?: boolean | string | SExpr;
|
|
4523
4526
|
showGrid?: boolean | string | SExpr;
|
|
4524
4527
|
gridStep?: number | string | SExpr;
|
|
4528
|
+
backgroundColor?: string | SExpr;
|
|
4529
|
+
gridColor?: string | SExpr;
|
|
4530
|
+
axisColor?: string | SExpr;
|
|
4525
4531
|
showTickLabels?: boolean | string | SExpr;
|
|
4526
4532
|
showCurveLabels?: boolean | string | SExpr;
|
|
4527
4533
|
curves?: unknown[] | string | SExpr;
|
package/dist/factory/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { h as FactoryParamValue, c as FactoryConfigTier, b as FactoryConfigParam, F as FactoryCallSite, j as FactorySignature, R as RuleOverlay, p as RuleOverlayEntry, o as PresentationOverlay, T as TraitOverlay } from '../types-
|
|
2
|
-
export { a as FactoryCallSiteParams, d as FactoryEntitySignature, e as FactoryEventSignature, f as FactoryExposure, g as FactoryPageSignature, i as FactoryProvenance, k as FactorySignatureCatalog, l as FactorySignatureEntityField, m as FactoryTraitSignature, J as JsonSchema, n as JsonSchemaType, O as OwnershipOverlayEntry, P as PresentationNavItem, S as SchemaFieldType, q as TraitOverlayEntry, r as TraitOverlayListener } from '../types-
|
|
3
|
-
import { a as EntityPersistence, E as EntityField } from '../effect-
|
|
4
|
-
import { a as TraitReference } from '../trait-
|
|
1
|
+
import { h as FactoryParamValue, c as FactoryConfigTier, b as FactoryConfigParam, F as FactoryCallSite, j as FactorySignature, R as RuleOverlay, p as RuleOverlayEntry, o as PresentationOverlay, T as TraitOverlay } from '../types-DO_gWzsC.js';
|
|
2
|
+
export { a as FactoryCallSiteParams, d as FactoryEntitySignature, e as FactoryEventSignature, f as FactoryExposure, g as FactoryPageSignature, i as FactoryProvenance, k as FactorySignatureCatalog, l as FactorySignatureEntityField, m as FactoryTraitSignature, J as JsonSchema, n as JsonSchemaType, O as OwnershipOverlayEntry, P as PresentationNavItem, S as SchemaFieldType, q as TraitOverlayEntry, r as TraitOverlayListener } from '../types-DO_gWzsC.js';
|
|
3
|
+
import { a as EntityPersistence, E as EntityField } from '../effect-1QxaoQFj.js';
|
|
4
|
+
import { a as TraitReference } from '../trait-BkpkZfRN.js';
|
|
5
5
|
export { J as JsonValue } from '../expression-Fk8bQWef.js';
|
|
6
6
|
import 'zod';
|
|
7
7
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { O as OrbitalSchema, a as OrbitalDefinition } from '../schema-
|
|
2
|
-
import { h as CallSiteConfig, i as CallSiteConfigEntry, g as Trait } from '../trait-
|
|
3
|
-
import { E as EntityField, a as EntityPersistence } from '../effect-
|
|
1
|
+
import { O as OrbitalSchema, a as OrbitalDefinition } from '../schema-BRAEV9eY.js';
|
|
2
|
+
import { h as CallSiteConfig, i as CallSiteConfigEntry, g as Trait } from '../trait-BkpkZfRN.js';
|
|
3
|
+
import { E as EntityField, a as EntityPersistence } from '../effect-1QxaoQFj.js';
|
|
4
4
|
import { MakeTraitRefOpts } from '../builders.js';
|
|
5
5
|
import '../expression-Fk8bQWef.js';
|
|
6
6
|
import 'zod';
|