@almadar/core 10.42.0 → 10.44.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 +4 -4
- package/dist/builders.js +45 -27
- package/dist/builders.js.map +1 -1
- package/dist/{effect-D4os99OL.d.ts → effect-NbTgX2yB.d.ts} +65 -110
- package/dist/{expression-DpAj1RzP.d.ts → expression-Yf7qvvOs.d.ts} +85 -10
- package/dist/factory/index.d.ts +5 -6
- package/dist/factory-runtime/index.d.ts +4 -4
- package/dist/factory-runtime/index.js +45 -27
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/index.d.ts +13 -13
- package/dist/index.js +270 -113
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +1 -1
- 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 +276 -10
- package/dist/patterns/index.js +117 -6
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +109 -4
- package/dist/patterns/registry.json +109 -4
- package/dist/{schema-C_lv_cta.d.ts → schema-DdcBBHkb.d.ts} +7240 -3158
- package/dist/state-machine/index.d.ts +1 -1
- package/dist/{trait-BQIlqUHC.d.ts → trait-DdBiEffx.d.ts} +987 -98
- package/dist/types/index.d.ts +150 -50
- package/dist/types/index.js +154 -107
- package/dist/types/index.js.map +1 -1
- package/dist/{types-Bd_LX0j8.d.ts → types-B4NVh8V9.d.ts} +3 -2
- package/package.json +1 -1
- package/src/types/bindings.ts +79 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { S as SExpr, a as EventPayload, E as Expression } from './expression-
|
|
2
|
+
import { J as JsonValue, R as RuntimeValue, S as SExpr, a as EventPayload, E as Expression } from './expression-Yf7qvvOs.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Service Types for Orbital Schema
|
|
@@ -73,12 +73,12 @@ declare const RestAuthConfigSchema: z.ZodObject<{
|
|
|
73
73
|
}, "strip", z.ZodTypeAny, {
|
|
74
74
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
75
75
|
keyName?: string | undefined;
|
|
76
|
-
location?: "
|
|
76
|
+
location?: "header" | "query" | undefined;
|
|
77
77
|
secretEnv?: string | undefined;
|
|
78
78
|
}, {
|
|
79
79
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
80
80
|
keyName?: string | undefined;
|
|
81
|
-
location?: "
|
|
81
|
+
location?: "header" | "query" | undefined;
|
|
82
82
|
secretEnv?: string | undefined;
|
|
83
83
|
}>;
|
|
84
84
|
declare const RestServiceDefSchema: z.ZodObject<{
|
|
@@ -95,12 +95,12 @@ declare const RestServiceDefSchema: z.ZodObject<{
|
|
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
96
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
97
97
|
keyName?: string | undefined;
|
|
98
|
-
location?: "
|
|
98
|
+
location?: "header" | "query" | undefined;
|
|
99
99
|
secretEnv?: string | undefined;
|
|
100
100
|
}, {
|
|
101
101
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
102
102
|
keyName?: string | undefined;
|
|
103
|
-
location?: "
|
|
103
|
+
location?: "header" | "query" | undefined;
|
|
104
104
|
secretEnv?: string | undefined;
|
|
105
105
|
}>>;
|
|
106
106
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -109,26 +109,26 @@ declare const RestServiceDefSchema: z.ZodObject<{
|
|
|
109
109
|
name: string;
|
|
110
110
|
baseUrl: string;
|
|
111
111
|
description?: string | undefined;
|
|
112
|
-
headers?: Record<string, string> | undefined;
|
|
113
112
|
auth?: {
|
|
114
113
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
115
114
|
keyName?: string | undefined;
|
|
116
|
-
location?: "
|
|
115
|
+
location?: "header" | "query" | undefined;
|
|
117
116
|
secretEnv?: string | undefined;
|
|
118
117
|
} | undefined;
|
|
118
|
+
headers?: Record<string, string> | undefined;
|
|
119
119
|
timeout?: number | undefined;
|
|
120
120
|
}, {
|
|
121
121
|
type: "rest";
|
|
122
122
|
name: string;
|
|
123
123
|
baseUrl: string;
|
|
124
124
|
description?: string | undefined;
|
|
125
|
-
headers?: Record<string, string> | undefined;
|
|
126
125
|
auth?: {
|
|
127
126
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
128
127
|
keyName?: string | undefined;
|
|
129
|
-
location?: "
|
|
128
|
+
location?: "header" | "query" | undefined;
|
|
130
129
|
secretEnv?: string | undefined;
|
|
131
130
|
} | undefined;
|
|
131
|
+
headers?: Record<string, string> | undefined;
|
|
132
132
|
timeout?: number | undefined;
|
|
133
133
|
}>;
|
|
134
134
|
/**
|
|
@@ -311,12 +311,12 @@ declare const ServiceDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
311
311
|
}, "strip", z.ZodTypeAny, {
|
|
312
312
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
313
313
|
keyName?: string | undefined;
|
|
314
|
-
location?: "
|
|
314
|
+
location?: "header" | "query" | undefined;
|
|
315
315
|
secretEnv?: string | undefined;
|
|
316
316
|
}, {
|
|
317
317
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
318
318
|
keyName?: string | undefined;
|
|
319
|
-
location?: "
|
|
319
|
+
location?: "header" | "query" | undefined;
|
|
320
320
|
secretEnv?: string | undefined;
|
|
321
321
|
}>>;
|
|
322
322
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -325,26 +325,26 @@ declare const ServiceDefinitionSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
|
|
|
325
325
|
name: string;
|
|
326
326
|
baseUrl: string;
|
|
327
327
|
description?: string | undefined;
|
|
328
|
-
headers?: Record<string, string> | undefined;
|
|
329
328
|
auth?: {
|
|
330
329
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
331
330
|
keyName?: string | undefined;
|
|
332
|
-
location?: "
|
|
331
|
+
location?: "header" | "query" | undefined;
|
|
333
332
|
secretEnv?: string | undefined;
|
|
334
333
|
} | undefined;
|
|
334
|
+
headers?: Record<string, string> | undefined;
|
|
335
335
|
timeout?: number | undefined;
|
|
336
336
|
}, {
|
|
337
337
|
type: "rest";
|
|
338
338
|
name: string;
|
|
339
339
|
baseUrl: string;
|
|
340
340
|
description?: string | undefined;
|
|
341
|
-
headers?: Record<string, string> | undefined;
|
|
342
341
|
auth?: {
|
|
343
342
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
344
343
|
keyName?: string | undefined;
|
|
345
|
-
location?: "
|
|
344
|
+
location?: "header" | "query" | undefined;
|
|
346
345
|
secretEnv?: string | undefined;
|
|
347
346
|
} | undefined;
|
|
347
|
+
headers?: Record<string, string> | undefined;
|
|
348
348
|
timeout?: number | undefined;
|
|
349
349
|
}>, z.ZodObject<{
|
|
350
350
|
name: z.ZodString;
|
|
@@ -526,12 +526,12 @@ declare const ServiceRefSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
526
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
527
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
528
528
|
keyName?: string | undefined;
|
|
529
|
-
location?: "
|
|
529
|
+
location?: "header" | "query" | undefined;
|
|
530
530
|
secretEnv?: string | undefined;
|
|
531
531
|
}, {
|
|
532
532
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
533
533
|
keyName?: string | undefined;
|
|
534
|
-
location?: "
|
|
534
|
+
location?: "header" | "query" | undefined;
|
|
535
535
|
secretEnv?: string | undefined;
|
|
536
536
|
}>>;
|
|
537
537
|
timeout: z.ZodOptional<z.ZodNumber>;
|
|
@@ -540,26 +540,26 @@ declare const ServiceRefSchema: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.Z
|
|
|
540
540
|
name: string;
|
|
541
541
|
baseUrl: string;
|
|
542
542
|
description?: string | undefined;
|
|
543
|
-
headers?: Record<string, string> | undefined;
|
|
544
543
|
auth?: {
|
|
545
544
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
546
545
|
keyName?: string | undefined;
|
|
547
|
-
location?: "
|
|
546
|
+
location?: "header" | "query" | undefined;
|
|
548
547
|
secretEnv?: string | undefined;
|
|
549
548
|
} | undefined;
|
|
549
|
+
headers?: Record<string, string> | undefined;
|
|
550
550
|
timeout?: number | undefined;
|
|
551
551
|
}, {
|
|
552
552
|
type: "rest";
|
|
553
553
|
name: string;
|
|
554
554
|
baseUrl: string;
|
|
555
555
|
description?: string | undefined;
|
|
556
|
-
headers?: Record<string, string> | undefined;
|
|
557
556
|
auth?: {
|
|
558
557
|
type: "api-key" | "bearer" | "basic" | "oauth2";
|
|
559
558
|
keyName?: string | undefined;
|
|
560
|
-
location?: "
|
|
559
|
+
location?: "header" | "query" | undefined;
|
|
561
560
|
secretEnv?: string | undefined;
|
|
562
561
|
} | undefined;
|
|
562
|
+
headers?: Record<string, string> | undefined;
|
|
563
563
|
timeout?: number | undefined;
|
|
564
564
|
}>, z.ZodObject<{
|
|
565
565
|
name: z.ZodString;
|
|
@@ -994,63 +994,6 @@ declare const IdentityLedgerSchema: z.ZodObject<{
|
|
|
994
994
|
schemaVersion: 1;
|
|
995
995
|
}>;
|
|
996
996
|
|
|
997
|
-
/**
|
|
998
|
-
* JSON primitives — the universal "data crossed a boundary" type.
|
|
999
|
-
*
|
|
1000
|
-
* Every value that arrives over the wire from an LLM (tool-call args),
|
|
1001
|
-
* from disk (workspace files), or from an HTTP body before
|
|
1002
|
-
* domain-specific validation is a `JsonValue`. Narrow with a typed
|
|
1003
|
-
* predicate (`is`-guard) at the boundary; don't widen back to `unknown`.
|
|
1004
|
-
*
|
|
1005
|
-
* `JsonObject` and `ToolArgs` are aliases for the common
|
|
1006
|
-
* `Record<string, JsonValue>` shape. `ToolArgs` is the name the
|
|
1007
|
-
* agent surface uses for LLM-emitted tool-call arguments; `JsonObject`
|
|
1008
|
-
* is the general-purpose alias. They are the same type — the alias
|
|
1009
|
-
* exists so call sites read at the right semantic level.
|
|
1010
|
-
*
|
|
1011
|
-
* Why not `Record<string, unknown>`? Two reasons. (1) `unknown` widens
|
|
1012
|
-
* back to anything, which defeats the purpose of typing the boundary.
|
|
1013
|
-
* (2) The `@almadar/eslint-plugin/no-record-string-unknown` rule blocks
|
|
1014
|
-
* the wider form — `JsonValue`-based records are the typed answer.
|
|
1015
|
-
*
|
|
1016
|
-
* @packageDocumentation
|
|
1017
|
-
*/
|
|
1018
|
-
|
|
1019
|
-
/**
|
|
1020
|
-
* Recursive JSON value union — every shape JSON can carry.
|
|
1021
|
-
*/
|
|
1022
|
-
type JsonValue = string | number | boolean | null | JsonValue[] | {
|
|
1023
|
-
[key: string]: JsonValue;
|
|
1024
|
-
};
|
|
1025
|
-
/**
|
|
1026
|
-
* JSON object — keyed string→JsonValue. The wire form of arbitrary
|
|
1027
|
-
* structured data. Replaces `Record<string, unknown>` at typed
|
|
1028
|
-
* boundaries (LLM emits, file reads, HTTP bodies).
|
|
1029
|
-
*/
|
|
1030
|
-
type JsonObject = {
|
|
1031
|
-
[key: string]: JsonValue;
|
|
1032
|
-
};
|
|
1033
|
-
/**
|
|
1034
|
-
* LLM tool-call arguments — same shape as `JsonObject`, named for the
|
|
1035
|
-
* agent-surface call site. Each tool's `execute(args: ToolArgs)`
|
|
1036
|
-
* receives this and narrows via an `is`-guard predicate before any
|
|
1037
|
-
* field access.
|
|
1038
|
-
*/
|
|
1039
|
-
type ToolArgs = JsonObject;
|
|
1040
|
-
/**
|
|
1041
|
-
* Type guard: is the given value a JSON primitive (non-array,
|
|
1042
|
-
* non-object)? Used by walkers that decide whether to recurse.
|
|
1043
|
-
*/
|
|
1044
|
-
declare function isJsonPrimitive(value: JsonValue): value is string | number | boolean | null;
|
|
1045
|
-
/**
|
|
1046
|
-
* Type guard: is the given value a JSON object (non-array, non-null)?
|
|
1047
|
-
*/
|
|
1048
|
-
declare function isJsonObject(value: JsonValue): value is JsonObject;
|
|
1049
|
-
/**
|
|
1050
|
-
* Type guard: is the given value a JSON array?
|
|
1051
|
-
*/
|
|
1052
|
-
declare function isJsonArray(value: JsonValue): value is JsonValue[];
|
|
1053
|
-
|
|
1054
997
|
/**
|
|
1055
998
|
* Field Types for Orbital Units
|
|
1056
999
|
*
|
|
@@ -1985,14 +1928,6 @@ declare function validateAssetAnimations(assetRef: SemanticAssetRef, requiredAni
|
|
|
1985
1928
|
missing: string[];
|
|
1986
1929
|
};
|
|
1987
1930
|
|
|
1988
|
-
/**
|
|
1989
|
-
* Entity Types for Orbital Units
|
|
1990
|
-
*
|
|
1991
|
-
* Defines the OrbitalEntity type - the nucleus of an Orbital Unit.
|
|
1992
|
-
*
|
|
1993
|
-
* @packageDocumentation
|
|
1994
|
-
*/
|
|
1995
|
-
|
|
1996
1931
|
/**
|
|
1997
1932
|
* Entity persistence types.
|
|
1998
1933
|
*
|
|
@@ -2047,7 +1982,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
2047
1982
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
2048
1983
|
collection: z.ZodOptional<z.ZodString>;
|
|
2049
1984
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
2050
|
-
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.
|
|
1985
|
+
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
2051
1986
|
timestamps: z.ZodOptional<z.ZodBoolean>;
|
|
2052
1987
|
softDelete: z.ZodOptional<z.ZodBoolean>;
|
|
2053
1988
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2085,7 +2020,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
2085
2020
|
shared?: boolean | undefined;
|
|
2086
2021
|
identity?: boolean | undefined;
|
|
2087
2022
|
collection?: string | undefined;
|
|
2088
|
-
instances?: Record<string,
|
|
2023
|
+
instances?: Record<string, JsonValue>[] | undefined;
|
|
2089
2024
|
timestamps?: boolean | undefined;
|
|
2090
2025
|
softDelete?: boolean | undefined;
|
|
2091
2026
|
visual_prompt?: string | undefined;
|
|
@@ -2106,7 +2041,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
2106
2041
|
shared?: boolean | undefined;
|
|
2107
2042
|
identity?: boolean | undefined;
|
|
2108
2043
|
collection?: string | undefined;
|
|
2109
|
-
instances?: Record<string,
|
|
2044
|
+
instances?: Record<string, JsonValue>[] | undefined;
|
|
2110
2045
|
timestamps?: boolean | undefined;
|
|
2111
2046
|
softDelete?: boolean | undefined;
|
|
2112
2047
|
visual_prompt?: string | undefined;
|
|
@@ -2131,7 +2066,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2131
2066
|
identity: z.ZodOptional<z.ZodBoolean>;
|
|
2132
2067
|
collection: z.ZodOptional<z.ZodString>;
|
|
2133
2068
|
fields: z.ZodArray<z.ZodType<EntityField, z.ZodTypeDef, unknown>, "many">;
|
|
2134
|
-
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.
|
|
2069
|
+
instances: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>, "many">>;
|
|
2135
2070
|
timestamps: z.ZodOptional<z.ZodBoolean>;
|
|
2136
2071
|
softDelete: z.ZodOptional<z.ZodBoolean>;
|
|
2137
2072
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2169,7 +2104,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2169
2104
|
shared?: boolean | undefined;
|
|
2170
2105
|
identity?: boolean | undefined;
|
|
2171
2106
|
collection?: string | undefined;
|
|
2172
|
-
instances?: Record<string,
|
|
2107
|
+
instances?: Record<string, JsonValue>[] | undefined;
|
|
2173
2108
|
timestamps?: boolean | undefined;
|
|
2174
2109
|
softDelete?: boolean | undefined;
|
|
2175
2110
|
visual_prompt?: string | undefined;
|
|
@@ -2190,7 +2125,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2190
2125
|
shared?: boolean | undefined;
|
|
2191
2126
|
identity?: boolean | undefined;
|
|
2192
2127
|
collection?: string | undefined;
|
|
2193
|
-
instances?: Record<string,
|
|
2128
|
+
instances?: Record<string, JsonValue>[] | undefined;
|
|
2194
2129
|
timestamps?: boolean | undefined;
|
|
2195
2130
|
softDelete?: boolean | undefined;
|
|
2196
2131
|
visual_prompt?: string | undefined;
|
|
@@ -2266,7 +2201,7 @@ type FieldValue = string | number | boolean | Date | null | string[] | FieldValu
|
|
|
2266
2201
|
* Runtime guard for `FieldValue` — narrows interpreter-produced `unknown`
|
|
2267
2202
|
* values at typed substrate boundaries (e.g. `IntegrationContext.http` body).
|
|
2268
2203
|
*/
|
|
2269
|
-
declare function isFieldValue(value:
|
|
2204
|
+
declare function isFieldValue(value: RuntimeValue): value is FieldValue;
|
|
2270
2205
|
/**
|
|
2271
2206
|
* One instance of an entity with actual field values.
|
|
2272
2207
|
* The shape is determined by the Entity definition at schema time.
|
|
@@ -2319,8 +2254,8 @@ type EntityData = Record<string, EntityRow[]>;
|
|
|
2319
2254
|
*
|
|
2320
2255
|
* DO NOT EDIT MANUALLY — regenerated by almadar-pattern-sync `patterns` command.
|
|
2321
2256
|
*
|
|
2322
|
-
* Generated: 2026-07-
|
|
2323
|
-
* Pattern count:
|
|
2257
|
+
* Generated: 2026-07-29T19:32:01.969Z
|
|
2258
|
+
* Pattern count: 268
|
|
2324
2259
|
*/
|
|
2325
2260
|
|
|
2326
2261
|
/**
|
|
@@ -2332,7 +2267,7 @@ type PatternPropValue = Record<string, FieldValue | undefined>;
|
|
|
2332
2267
|
* All valid pattern type names from @almadar/core/patterns registry.
|
|
2333
2268
|
* Use this type in render-ui effects for compile-time validation.
|
|
2334
2269
|
*/
|
|
2335
|
-
type PatternType = 'about-page-template' | 'accordion' | 'action-palette' | 'action-tile' | 'activation-block' | 'alert' | 'algorithm-canvas' | 'animated-counter' | 'animated-graphic' | 'animated-reveal' | 'article-section' | 'aside' | 'atlas-image' | 'atlas-panel' | 'auth-layout' | 'avatar' | 'badge' | 'behavior-view' | 'biology-canvas' | 'bloom-quiz-block' | 'book-chapter-view' | 'book-cover-page' | 'book-nav-bar' | 'book-table-of-contents' | 'book-viewer' | 'box' | 'branching-logic-builder' | 'breadcrumb' | 'button' | 'calendar-grid' | 'canvas' | 'canvas-2d' | 'card' | 'carousel' | 'case-study-card' | 'case-study-organism' | 'center' | 'chart' | 'chart-legend' | 'chat-bar' | 'checkbox' | 'chemistry-canvas' | 'choice-button' | 'code-block' | 'code-runner-panel' | 'community-links' | 'conditional-wrapper' | 'confetti-effect' | 'confirm-dialog' | 'connection-block' | 'container' | 'content-renderer' | 'content-section' | 'control-button' | 'control-grid' | 'counter-template' | 'cta-banner' | 'dashboard-grid' | 'dashboard-layout' | 'data-grid' | 'data-list' | 'date-range-picker' | 'date-range-selector' | 'day-cell' | 'detail-panel' | 'dialog' | 'dialogue-bubble' | 'divider' | 'doc-breadcrumb' | 'doc-pagination' | 'doc-search' | 'doc-sidebar' | 'doc-toc' | 'document-viewer' | 'draw-group' | 'draw-shape' | 'draw-shape-layer' | 'draw-sprite' | 'draw-sprite-layer' | 'draw-text' | 'draw-text-layer' | 'drawer' | 'drawer-slot' | 'edge-decoration' | 'empty-state' | 'entity-cards' | 'entity-list' | 'entity-table' | 'error-boundary' | 'error-state' | 'feature-card' | 'feature-detail-page-template' | 'feature-grid' | 'feature-grid-organism' | 'file-tree' | 'filter-group' | 'filter-pill' | 'flex' | 'flip-card' | 'flip-container' | 'floating-action-button' | 'form' | 'form-actions' | 'form-field' | 'form-layout' | 'form-section' | 'form-section-header' | 'game-audio-toggle' | 'game-hud' | 'game-icon' | 'game-menu' | 'game-shell' | 'generic-app-template' | 'geometric-pattern' | 'gradient-divider' | 'graph-canvas' | 'graph-view' | 'grid' | 'header' | 'health-bar' | 'hero-organism' | 'hero-section' | 'hstack' | 'icon' | 'import-preview-tree' | 'import-progress' | 'import-source-picker' | 'infinite-scroll-sentinel' | 'input' | 'input-group' | 'install-box' | 'jazari-state-machine' | 'label' | 'landing-page-template' | 'law-reference-tooltip' | 'learning-canvas' | 'lightbox' | 'likert-scale' | 'line-chart' | 'loading-state' | 'map-view' | 'markdown-content' | 'marketing-footer' | 'marketing-stat-card' | 'master-detail' | 'master-detail-layout' | 'math-canvas' | 'matrix-question' | 'media-gallery' | 'menu' | 'meter' | 'modal' | 'modal-slot' | 'module-card' | 'navigation' | 'notification' | 'number-stepper' | 'option-constraint-group' | 'orbital-visualization' | 'overlay' | 'page-header' | 'page-transition' | 'pagination' | 'pattern-tile' | 'physics-canvas' | 'popover' | 'positioned-canvas' | 'presence' | 'pricing-card' | 'pricing-grid' | 'pricing-organism' | 'pricing-page-template' | 'progress-bar' | 'progress-dots' | 'pull-quote' | 'pull-to-refresh' | 'qr-scanner' | 'quiz-block' | 'radio' | 'range-slider' | 'reflection-block' | 'relation-select' | 'repeatable-form-section' | 'reply-tree' | 'rich-block-editor' | 'runtime-debugger' | 'scaled-diagram' | 'score-display' | 'search-input' | 'section' | 'section-header' | 'segment-renderer' | 'select' | 'sequence-bar' | 'service-catalog' | 'showcase-card' | 'showcase-organism' | 'side-panel' | 'sidebar' | 'signature-pad' | 'simple-grid' | 'skeleton' | 'social-proof' | 'sortable-list' | 'spacer' | 'sparkline' | 'spinner' | 'split' | 'split-pane' | 'split-section' | 'stack' | 'star-rating' | 'stat-badge' | 'stat-card' | 'stat-display' | 'state-graph' | 'state-json-view' | 'state-machine-view' | 'stats-grid' | 'stats-organism' | 'status-dot' | 'step-flow' | 'step-flow-organism' | 'subagent-trace-panel' | 'svg-branch' | 'svg-connection' | 'svg-flow' | 'svg-grid' | 'svg-lobe' | 'svg-mesh' | 'svg-morph' | 'svg-node' | 'svg-pulse' | 'svg-ring' | 'svg-shield' | 'svg-stack' | 'swipeable-row' | 'switch' | 'tabbed-container' | 'table-view' | 'tabs' | 'tag-cloud' | 'tag-input' | 'team-card' | 'team-organism' | 'text-highlight' | 'textarea' | 'theme-toggle' | 'time-slot-cell' | 'timeline' | 'timer-display' | 'toast-slot' | 'tooltip' | 'trait-frame' | 'trait-slot' | 'trend-indicator' | 'typewriter-text' | 'typography' | 'ui-slot-renderer' | 'upload-drop-zone' | 'version-diff' | 'violation-alert' | 'vote-stack' | 'vstack' | 'wizard-container' | 'wizard-navigation' | 'wizard-progress';
|
|
2270
|
+
type PatternType = 'about-page-template' | 'accordion' | 'action-palette' | 'action-tile' | 'activation-block' | 'alert' | 'algorithm-canvas' | 'animated-counter' | 'animated-graphic' | 'animated-reveal' | 'article-section' | 'aside' | 'atlas-image' | 'atlas-panel' | 'auth-layout' | 'avatar' | 'badge' | 'behavior-view' | 'biology-canvas' | 'bloom-quiz-block' | 'book-chapter-view' | 'book-cover-page' | 'book-nav-bar' | 'book-table-of-contents' | 'book-viewer' | 'box' | 'branching-logic-builder' | 'breadcrumb' | 'button' | 'calendar-grid' | 'canvas' | 'canvas-2d' | 'card' | 'carousel' | 'case-study-card' | 'case-study-organism' | 'center' | 'chart' | 'chart-legend' | 'chat-bar' | 'checkbox' | 'chemistry-canvas' | 'choice-button' | 'code-block' | 'code-runner-panel' | 'community-links' | 'conditional-wrapper' | 'confetti-effect' | 'confirm-dialog' | 'connection-block' | 'container' | 'content-renderer' | 'content-section' | 'control-button' | 'control-grid' | 'counter-template' | 'cta-banner' | 'dashboard-grid' | 'dashboard-layout' | 'data-grid' | 'data-list' | 'date-range-picker' | 'date-range-selector' | 'day-cell' | 'detail-panel' | 'dialog' | 'dialogue-bubble' | 'divider' | 'doc-breadcrumb' | 'doc-pagination' | 'doc-search' | 'doc-sidebar' | 'doc-toc' | 'document-viewer' | 'draw-group' | 'draw-shape' | 'draw-shape-layer' | 'draw-sprite' | 'draw-sprite-layer' | 'draw-text' | 'draw-text-layer' | 'drawer' | 'drawer-slot' | 'edge-decoration' | 'emoji-picker' | 'empty-state' | 'entity-cards' | 'entity-list' | 'entity-table' | 'error-boundary' | 'error-state' | 'feature-card' | 'feature-detail-page-template' | 'feature-grid' | 'feature-grid-organism' | 'file-tree' | 'filter-group' | 'filter-pill' | 'flex' | 'flip-card' | 'flip-container' | 'floating-action-button' | 'form' | 'form-actions' | 'form-field' | 'form-layout' | 'form-section' | 'form-section-header' | 'game-audio-toggle' | 'game-hud' | 'game-icon' | 'game-menu' | 'game-shell' | 'generic-app-template' | 'geometric-pattern' | 'gradient-divider' | 'graph-canvas' | 'graph-view' | 'grid' | 'header' | 'health-bar' | 'hero-organism' | 'hero-section' | 'hstack' | 'icon' | 'import-preview-tree' | 'import-progress' | 'import-source-picker' | 'infinite-scroll-sentinel' | 'input' | 'input-group' | 'install-box' | 'jazari-state-machine' | 'label' | 'landing-page-template' | 'law-reference-tooltip' | 'learning-canvas' | 'lightbox' | 'likert-scale' | 'line-chart' | 'loading-state' | 'map-view' | 'markdown-content' | 'marketing-footer' | 'marketing-stat-card' | 'master-detail' | 'master-detail-layout' | 'math-canvas' | 'matrix-question' | 'media-gallery' | 'menu' | 'meter' | 'modal' | 'modal-slot' | 'module-card' | 'navigation' | 'notification' | 'number-stepper' | 'option-constraint-group' | 'orbital-visualization' | 'overlay' | 'page-header' | 'page-transition' | 'pagination' | 'pattern-tile' | 'physics-canvas' | 'popover' | 'positioned-canvas' | 'presence' | 'pricing-card' | 'pricing-grid' | 'pricing-organism' | 'pricing-page-template' | 'progress-bar' | 'progress-dots' | 'pull-quote' | 'pull-to-refresh' | 'qr-scanner' | 'quiz-block' | 'radio' | 'range-slider' | 'reflection-block' | 'relation-select' | 'repeatable-form-section' | 'reply-tree' | 'rich-block-editor' | 'runtime-debugger' | 'scaled-diagram' | 'score-display' | 'search-input' | 'section' | 'section-header' | 'segment-renderer' | 'select' | 'sequence-bar' | 'service-catalog' | 'showcase-card' | 'showcase-organism' | 'side-panel' | 'sidebar' | 'signature-pad' | 'simple-grid' | 'skeleton' | 'social-proof' | 'sortable-list' | 'spacer' | 'sparkline' | 'spinner' | 'split' | 'split-pane' | 'split-section' | 'stack' | 'star-rating' | 'stat-badge' | 'stat-card' | 'stat-display' | 'state-graph' | 'state-json-view' | 'state-machine-view' | 'stats-grid' | 'stats-organism' | 'status-dot' | 'step-flow' | 'step-flow-organism' | 'subagent-trace-panel' | 'svg-branch' | 'svg-connection' | 'svg-flow' | 'svg-grid' | 'svg-lobe' | 'svg-mesh' | 'svg-morph' | 'svg-node' | 'svg-pulse' | 'svg-ring' | 'svg-shield' | 'svg-stack' | 'swipeable-row' | 'switch' | 'tabbed-container' | 'table-view' | 'tabs' | 'tag-cloud' | 'tag-input' | 'team-card' | 'team-organism' | 'text-highlight' | 'textarea' | 'theme-toggle' | 'time-slot-cell' | 'timeline' | 'timer-display' | 'toast-slot' | 'tooltip' | 'trait-frame' | 'trait-slot' | 'trend-indicator' | 'typewriter-text' | 'typography' | 'ui-slot-renderer' | 'upload-drop-zone' | 'version-diff' | 'violation-alert' | 'vote-stack' | 'vstack' | 'wizard-container' | 'wizard-navigation' | 'wizard-progress';
|
|
2336
2271
|
/**
|
|
2337
2272
|
* Pattern props map — each pattern type maps to its valid props interface.
|
|
2338
2273
|
*/
|
|
@@ -2695,6 +2630,8 @@ interface PatternPropsMap {
|
|
|
2695
2630
|
isLoading?: boolean | string | SExpr;
|
|
2696
2631
|
unitScale?: number | string | SExpr;
|
|
2697
2632
|
showMinimap?: boolean | string | SExpr;
|
|
2633
|
+
fit?: boolean | string | SExpr;
|
|
2634
|
+
tileWidth?: number | string | SExpr;
|
|
2698
2635
|
backgroundImage?: unknown | PatternPropValue | string | SExpr;
|
|
2699
2636
|
backgroundColor?: string | SExpr;
|
|
2700
2637
|
worldWidth?: number | string | SExpr;
|
|
@@ -2729,6 +2666,8 @@ interface PatternPropsMap {
|
|
|
2729
2666
|
keyUpMap?: PatternPropValue | string | SExpr;
|
|
2730
2667
|
camera?: string | SExpr;
|
|
2731
2668
|
scale?: number | string | SExpr;
|
|
2669
|
+
tileWidth?: number | string | SExpr;
|
|
2670
|
+
fit?: boolean | string | SExpr;
|
|
2732
2671
|
showMinimap?: boolean | string | SExpr;
|
|
2733
2672
|
followTarget?: PatternPropValue | string | SExpr;
|
|
2734
2673
|
cameraPos?: PatternPropValue | string | SExpr;
|
|
@@ -3404,6 +3343,14 @@ interface PatternPropsMap {
|
|
|
3404
3343
|
width?: number | string | SExpr;
|
|
3405
3344
|
className?: string | SExpr;
|
|
3406
3345
|
};
|
|
3346
|
+
'emoji-picker': {
|
|
3347
|
+
type: 'emoji-picker';
|
|
3348
|
+
pickEvent?: string | SExpr;
|
|
3349
|
+
position?: string | SExpr;
|
|
3350
|
+
triggerIcon?: unknown | string | SExpr;
|
|
3351
|
+
triggerLabel?: string | SExpr;
|
|
3352
|
+
className?: string | SExpr;
|
|
3353
|
+
};
|
|
3407
3354
|
'empty-state': {
|
|
3408
3355
|
type: 'empty-state';
|
|
3409
3356
|
icon?: unknown | string | SExpr;
|
|
@@ -4486,6 +4433,8 @@ interface PatternPropsMap {
|
|
|
4486
4433
|
position?: string | SExpr;
|
|
4487
4434
|
trigger?: string | SExpr;
|
|
4488
4435
|
showArrow?: boolean | string | SExpr;
|
|
4436
|
+
open?: boolean | string | SExpr;
|
|
4437
|
+
onOpenChange?: ((...args: unknown[]) => unknown) | string | SExpr;
|
|
4489
4438
|
className?: string | SExpr;
|
|
4490
4439
|
};
|
|
4491
4440
|
'positioned-canvas': {
|
|
@@ -5398,6 +5347,7 @@ interface PatternPropsMap {
|
|
|
5398
5347
|
fields?: unknown[] | string | SExpr;
|
|
5399
5348
|
itemActions?: unknown[] | string | SExpr;
|
|
5400
5349
|
maxInlineActions?: number | string | SExpr;
|
|
5350
|
+
itemClickEvent?: string | SExpr;
|
|
5401
5351
|
selectable?: boolean | string | SExpr;
|
|
5402
5352
|
selectEvent?: string | SExpr;
|
|
5403
5353
|
selectedIds?: unknown[] | string | SExpr;
|
|
@@ -5895,7 +5845,7 @@ interface EmitConfig {
|
|
|
5895
5845
|
* @example ['set', '@entity.id', 'health', 100] // 4-element
|
|
5896
5846
|
* @example ['set', '@entity.id', 'count', ['+', '@entity.count', 1]]
|
|
5897
5847
|
*/
|
|
5898
|
-
type SetEffect = ['set', string,
|
|
5848
|
+
type SetEffect = ['set', string, SExpr] | ['set', string, string, SExpr];
|
|
5899
5849
|
/**
|
|
5900
5850
|
* Trailing config object on persist effects. When present, it carries the
|
|
5901
5851
|
* `emit` map specifying which events to fire on persist success/failure.
|
|
@@ -5910,12 +5860,14 @@ type PersistEmitConfig = {
|
|
|
5910
5860
|
};
|
|
5911
5861
|
};
|
|
5912
5862
|
/**
|
|
5913
|
-
* Persist effect data argument:
|
|
5914
|
-
*
|
|
5915
|
-
* `@entity`)
|
|
5916
|
-
*
|
|
5863
|
+
* Persist effect data argument: an entity row literal (field map), a
|
|
5864
|
+
* binding string referencing a row in scope (e.g. `@payload.data`,
|
|
5865
|
+
* `@entity`), or an expression form that evaluates to a row (e.g.
|
|
5866
|
+
* `["object/merge", "@payload.data", { sender: "@user.id" }]`). At
|
|
5867
|
+
* runtime, binding strings and expressions resolve to `EntityRow` values
|
|
5868
|
+
* before the persist op runs — both paths evaluate the expression first.
|
|
5917
5869
|
*/
|
|
5918
|
-
type PersistData = EntityRow | string;
|
|
5870
|
+
type PersistData = EntityRow | string | SExpr[];
|
|
5919
5871
|
/**
|
|
5920
5872
|
* Persist effect - creates, updates, deletes, or clears entities.
|
|
5921
5873
|
*
|
|
@@ -6027,12 +5979,12 @@ type WhenEffect = ['when', Expression, SExpr];
|
|
|
6027
5979
|
* Uses SExpr to allow deeply nested conditionals.
|
|
6028
5980
|
* @example ['let', ['temp', ['get', '@payload.value']], ['set', '@entity.value', 'temp']]
|
|
6029
5981
|
*/
|
|
6030
|
-
type LetEffect = ['let', [string,
|
|
5982
|
+
type LetEffect = ['let', [string, SExpr][], ...SExpr[]];
|
|
6031
5983
|
/**
|
|
6032
5984
|
* Log effect - logs a message for debugging.
|
|
6033
5985
|
* @example ['log', 'User created:', '@entity.name']
|
|
6034
5986
|
*/
|
|
6035
|
-
type LogEffect = ['log', ...
|
|
5987
|
+
type LogEffect = ['log', ...SExpr[]];
|
|
6036
5988
|
/**
|
|
6037
5989
|
* Wait effect - delays execution.
|
|
6038
5990
|
* @example ['wait', 1000] - wait 1 second
|
|
@@ -6152,7 +6104,7 @@ type EvaluateEffect = ['evaluate', EvaluateConfig];
|
|
|
6152
6104
|
* Checkpoint save effect - saves model weights.
|
|
6153
6105
|
* @example ['checkpoint/save', '/path/to/model.pt', '@entity.weights']
|
|
6154
6106
|
*/
|
|
6155
|
-
type CheckpointSaveEffect = ['checkpoint/save', string,
|
|
6107
|
+
type CheckpointSaveEffect = ['checkpoint/save', string, SExpr];
|
|
6156
6108
|
/**
|
|
6157
6109
|
* Checkpoint load effect - loads model weights.
|
|
6158
6110
|
* @example ['checkpoint/load', '/path/to/model.pt']
|
|
@@ -6286,9 +6238,12 @@ type TypedEffect = RenderUIEffect | NavigateEffect | EmitEffect | SetEffect | Pe
|
|
|
6286
6238
|
*/
|
|
6287
6239
|
type Effect = TypedEffect;
|
|
6288
6240
|
/**
|
|
6289
|
-
* Schema for Effect - validates S-expression format
|
|
6241
|
+
* Schema for Effect - validates S-expression format. Arguments validate as
|
|
6242
|
+
* s-expr-shaped DATA (`SExprDataSchema`) — literal data arrays (empty or
|
|
6243
|
+
* non-operator-headed) are valid argument values; the operator-head refine
|
|
6244
|
+
* applies to the effect itself, not to every argument.
|
|
6290
6245
|
*/
|
|
6291
|
-
declare const EffectSchema: z.ZodEffects<z.ZodArray<z.
|
|
6246
|
+
declare const EffectSchema: z.ZodEffects<z.ZodArray<z.ZodType<SExpr, z.ZodTypeDef, SExpr>, "many">, SExpr[], SExpr[]>;
|
|
6292
6247
|
type EffectInput = z.input<typeof EffectSchema>;
|
|
6293
6248
|
/**
|
|
6294
6249
|
* Type guard to check if a value is a valid Effect (S-expression).
|
|
@@ -6298,7 +6253,7 @@ type EffectInput = z.input<typeof EffectSchema>;
|
|
|
6298
6253
|
* and subsequent elements are parameters. Used for runtime validation
|
|
6299
6254
|
* of effect structures.
|
|
6300
6255
|
*
|
|
6301
|
-
* @param {
|
|
6256
|
+
* @param {RuntimeValue} value - Value to check
|
|
6302
6257
|
* @returns {boolean} True if value is a valid Effect, false otherwise
|
|
6303
6258
|
*
|
|
6304
6259
|
* @example
|
|
@@ -6306,7 +6261,7 @@ type EffectInput = z.input<typeof EffectSchema>;
|
|
|
6306
6261
|
* isEffect('not-an-effect'); // returns false
|
|
6307
6262
|
* isEffect([]); // returns false
|
|
6308
6263
|
*/
|
|
6309
|
-
declare function isEffect(value:
|
|
6264
|
+
declare function isEffect(value: RuntimeValue): value is Effect;
|
|
6310
6265
|
/**
|
|
6311
6266
|
* Alias for isEffect (for clarity when working with S-expressions)
|
|
6312
6267
|
*/
|
|
@@ -6474,4 +6429,4 @@ interface RenderUINode {
|
|
|
6474
6429
|
renderItem?: RenderUINode;
|
|
6475
6430
|
}
|
|
6476
6431
|
|
|
6477
|
-
export { type
|
|
6432
|
+
export { type ComposeEffect as $, type AnyPatternConfig as A, AssetCatalogEntrySchema as B, AssetCatalogSchema as C, type AssetDimension as D, type EntityField as E, type FieldValue as F, AssetDimensionSchema as G, AssetSchema as H, type IdentityLedger as I, type AssetUrl as J, type AtomicEffect as K, type BehaviorEffect as L, CAMERA_MODES as M, type CallServiceConfig as N, type OrbitalId as O, type PageId as P, type CallServiceEffect as Q, type RelationConfig as R, type ServiceRef as S, type TraitId as T, type UISlot as U, type Camera as V, type CameraMode as W, CameraModeSchema as X, CameraSchema as Y, type CheckpointLoadEffect as Z, type CheckpointSaveEffect as _, type EntityPersistence as a, type PersistEmitConfig as a$, type DerefEffect as a0, type DespawnEffect as a1, type DoEffect as a2, ENTITY_ROLES as a3, type EffectInput as a4, EffectSchema as a5, type EmitConfig as a6, type EmitEffect as a7, type EntityData as a8, type EntityFieldInput as a9, type LedgerKind as aA, LedgerKindSchema as aB, type LlmEffect as aC, type LogEffect as aD, type McpServiceDef as aE, McpServiceDefSchema as aF, type MemoryEffect as aG, type NavigateEffect as aH, type NnConfig as aI, type NnLayer as aJ, type NotifyEffect as aK, type ObjectEntityField as aL, type OrbitalEntity as aM, type OrbitalEntityInput as aN, OrbitalEntitySchema as aO, OrbitalIdSchema as aP, type OsEffect as aQ, PATTERN_TYPES as aR, PageIdSchema as aS, type PaletteEntryId as aT, PaletteEntryIdSchema as aU, type PatternConfig as aV, type PatternProps as aW, type PatternPropsMap as aX, type PatternType as aY, type PersistData as aZ, type PersistEffect as a_, EntityFieldSchema as aa, EntityIdSchema as ab, EntityPersistenceSchema as ac, type EntityRole as ad, EntityRoleSchema as ae, EntitySchema as af, type EntityWith as ag, type EnumEntityField as ah, type EvaluateConfig as ai, type EvaluateEffect as aj, EventIdSchema as ak, FIELD_TYPES as al, type FetchEffect as am, type FetchOptions as an, type FetchResult as ao, type Field as ap, FieldSchema as aq, type FieldType as ar, FieldTypeSchema as as, type ForwardConfig as at, type ForwardEffect as au, type IdForKind as av, type IdKind as aw, IdentityLedgerSchema as ax, type LedgerEntry as ay, LedgerEntrySchema as az, type EventId as b, VisualStyleSchema as b$, type RefEffect as b0, RelationConfigSchema as b1, type RelationEntityField as b2, type RenderChildrenMap as b3, type RenderItemLambda as b4, type RenderUINode as b5, type ResolvedPatternProps as b6, type RestAuthConfig as b7, RestAuthConfigSchema as b8, type RestServiceDef as b9, type SocketServiceDef as bA, SocketServiceDefSchema as bB, type SpawnEffect as bC, type SpriteDirection as bD, SpriteDirectionSchema as bE, type SpriteSheetAtlas as bF, type SpriteSheetAtlasInput as bG, SpriteSheetAtlasSchema as bH, type SubTexture as bI, SubTextureSchema as bJ, type SwapEffect as bK, type TextureAtlas as bL, TextureAtlasSchema as bM, type ThemeId as bN, ThemeIdSchema as bO, type Tilesheet as bP, TilesheetSchema as bQ, type TraceEffect as bR, type TrainConfig as bS, type TrainEffect as bT, TraitIdSchema as bU, type TypedEffect as bV, UISlotSchema as bW, UI_SLOTS as bX, VISUAL_STYLES as bY, type ValidateEffect as bZ, type VisualStyle as b_, RestServiceDefSchema as ba, SEMANTIC_STRING_TYPES as bb, SERVICE_TYPES as bc, SPRITE_DIRECTIONS as bd, type ScalarEntityField as be, type ScenePos as bf, ScenePosSchema as bg, type SemanticAssetRef as bh, type SemanticAssetRefInput as bi, SemanticAssetRefSchema as bj, type SemanticStringType as bk, ServiceDefinitionSchema as bl, type ServiceId as bm, ServiceIdSchema as bn, type ServiceParams as bo, type ServiceParamsValue as bp, type ServiceRefObject as bq, ServiceRefObjectSchema as br, ServiceRefSchema as bs, ServiceRefStringSchema as bt, type ServiceType as bu, ServiceTypeSchema as bv, type SessionEffect as bw, type SetEffect as bx, type SocketEvents as by, SocketEventsSchema as bz, type Effect as c, validateAssetAnimations as c$, type WatchEffect as c0, type WatchOptions as c1, asEntityId as c2, asEventId as c3, asOrbitalId as c4, asPageId as c5, asPaletteEntryId as c6, asServiceId as c7, asThemeId as c8, asTraitId as c9, isSExprEffect as cA, isSemanticStringType as cB, isSemanticStringValue as cC, isServiceId as cD, isServiceReference as cE, isServiceReferenceObject as cF, isSocketService as cG, isThemeId as cH, isTraitId as cI, isUrlValue as cJ, isUuidValue as cK, isValidPatternType as cL, ledgerCurName as cM, ledgerRename as cN, ledgerResolveName as cO, mintId as cP, navigate as cQ, notify as cR, parseAssetKey as cS, parseServiceRef as cT, persist as cU, persistenceModeAllowsOverrides as cV, ref as cW, renderUI as cX, set as cY, spawn as cZ, swap as c_, atomic as ca, callService as cb, createAssetKey as cc, deref as cd, deriveCollection as ce, despawn as cf, doEffects as cg, emit as ch, findService as ci, getDefaultAnimationsForRole as cj, getServiceNames as ck, hasService as cl, idKindOf as cm, idPrefix as cn, isEffect as co, isEmailValue as cp, isEntityId as cq, isEventId as cr, isFieldValue as cs, isMcpService as ct, isOrbitalId as cu, isPageId as cv, isPaletteEntryId as cw, isPhoneValue as cx, isRestService as cy, isRuntimeEntity as cz, type EntityId as d, watch as d0, type Entity as e, type EntityRow as f, type ServiceDefinition as g, type RenderBinding as h, type RenderUIEffect as i, ANIMATION_NAMES as j, ASSET_ASPECTS as k, ASSET_DIMENSIONS as l, type AgentEffect as m, type AnimationDef as n, type AnimationDefInput as o, AnimationDefSchema as p, type AnimationName as q, AnimationNameSchema as r, type ApplicationEffect as s, type ArrayEntityField as t, type Asset as u, type AssetAspect as v, AssetAspectSchema as w, type AssetCatalog as x, type AssetCatalogEntry as y, type AssetCatalogEntryInput as z };
|