@microverse.ts/host-surface 0.1.0 → 0.3.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/README.md +53 -22
- package/dist/application/ports/ScriptReferenceResolverPort.d.ts +13 -0
- package/dist/application/ports/ScriptReferenceResolverPort.d.ts.map +1 -0
- package/dist/application/useCases/compileBridgeDeclarationsFromHostSurfaceSpec.d.ts +4 -4
- package/dist/application/useCases/compileBridgeDeclarationsFromHostSurfaceSpec.d.ts.map +1 -1
- package/dist/application/useCases/compileHostSurface.d.ts +7 -6
- package/dist/application/useCases/compileHostSurface.d.ts.map +1 -1
- package/dist/domain/componentSlotPrelude.d.ts +11 -0
- package/dist/domain/componentSlotPrelude.d.ts.map +1 -0
- package/dist/domain/componentTypeSpec.d.ts +12 -0
- package/dist/domain/componentTypeSpec.d.ts.map +1 -0
- package/dist/domain/hostSurfaceManifest.d.ts +3 -2
- package/dist/domain/hostSurfaceManifest.d.ts.map +1 -1
- package/dist/domain/hostSurfaceSpecTypes.d.ts +89 -0
- package/dist/domain/hostSurfaceSpecTypes.d.ts.map +1 -0
- package/dist/domain/hostSurfaceTypes.d.ts +16 -92
- package/dist/domain/hostSurfaceTypes.d.ts.map +1 -1
- package/dist/domain/luaGlobalHook.d.ts +1 -1
- package/dist/domain/safeObjectKey.d.ts +1 -1
- package/dist/domain/safeObjectKey.d.ts.map +1 -1
- package/dist/domain/scriptCatalogManifest.d.ts +14 -0
- package/dist/domain/scriptCatalogManifest.d.ts.map +1 -0
- package/dist/domain/scriptContextSymbol.d.ts +6 -0
- package/dist/domain/scriptContextSymbol.d.ts.map +1 -0
- package/dist/domain/scriptProfileSpec.d.ts +31 -0
- package/dist/domain/scriptProfileSpec.d.ts.map +1 -0
- package/dist/domain/scriptPropertyMergeEnv.d.ts +6 -0
- package/dist/domain/scriptPropertyMergeEnv.d.ts.map +1 -0
- package/dist/domain/surfaceCapabilities.d.ts +1 -1
- package/dist/domain/surfaceCapabilities.d.ts.map +1 -1
- package/dist/domain/surfaceMethodDef.d.ts +1 -1
- package/dist/domain/surfaceMethodDef.d.ts.map +1 -1
- package/dist/index.d.ts +30 -14
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +846 -258
- package/dist/index.js.map +1 -1
- package/dist/infrastructure/adapters/augmentHostWithCapabilityRegistry.d.ts +1 -1
- package/dist/infrastructure/adapters/augmentHostWithCapabilityRegistry.d.ts.map +1 -1
- package/dist/infrastructure/adapters/augmentHostWithScriptContext.d.ts +4 -0
- package/dist/infrastructure/adapters/augmentHostWithScriptContext.d.ts.map +1 -0
- package/dist/infrastructure/adapters/zodSchemaValidationAdapter.d.ts +1 -1
- package/dist/infrastructure/adapters/zodSchemaValidationAdapter.d.ts.map +1 -1
- package/dist/infrastructure/builders/bridgeMergeEnv.d.ts +6 -8
- package/dist/infrastructure/builders/bridgeMergeEnv.d.ts.map +1 -1
- package/dist/infrastructure/builders/defineHostSurfaceFacade.d.ts +5 -5
- package/dist/infrastructure/builders/defineHostSurfaceFacade.d.ts.map +1 -1
- package/dist/infrastructure/builders/filterBridgeDeclarations.d.ts +11 -0
- package/dist/infrastructure/builders/filterBridgeDeclarations.d.ts.map +1 -0
- package/dist/infrastructure/builders/surfaceBuilder.d.ts +16 -11
- package/dist/infrastructure/builders/surfaceBuilder.d.ts.map +1 -1
- package/dist/infrastructure/components/hostScriptSession.d.ts +42 -72
- package/dist/infrastructure/components/hostScriptSession.d.ts.map +1 -1
- package/package.json +10 -9
|
@@ -1,29 +1,34 @@
|
|
|
1
|
-
import { SchemaValidationPort } from '../../application/ports/SchemaValidationPort
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { SchemaValidationPort } from '../../application/ports/SchemaValidationPort';
|
|
2
|
+
import { ComponentTypeDefInput } from '../../domain/componentTypeSpec';
|
|
3
|
+
import { InferSurfaceCapabilities } from '../../domain/surfaceCapabilities';
|
|
4
|
+
import { SurfaceMethodDef } from '../../domain/surfaceMethodDef';
|
|
5
|
+
import { AnyHostSurfaceMethod, HostSurface, HostSurfaceSpec, HostComponentHooksSpec } from '../../domain/hostSurfaceTypes';
|
|
5
6
|
type MutableHostSurfaceSpec = Record<string, Record<string, AnyHostSurfaceMethod>>;
|
|
7
|
+
type MutableComponentTypeRegistry = Record<string, ComponentTypeDefInput>;
|
|
6
8
|
/**
|
|
7
9
|
* Fluent builder for a host surface. Created via {@link defineHostSurfaceFor} / {@link defineHostSurface} factory overloads.
|
|
8
10
|
*/
|
|
9
|
-
export declare class SurfaceBuilder<THost, const THooks extends
|
|
11
|
+
export declare class SurfaceBuilder<THost, const THooks extends HostComponentHooksSpec | undefined = undefined> {
|
|
10
12
|
private readonly spec;
|
|
11
|
-
private
|
|
13
|
+
private readonly componentTypeRegistry;
|
|
14
|
+
private componentHooksSpec;
|
|
12
15
|
private readonly ports;
|
|
13
|
-
constructor(ports: readonly [SchemaValidationPort],
|
|
16
|
+
constructor(ports: readonly [SchemaValidationPort], componentHooks?: THooks, initialSpec?: MutableHostSurfaceSpec, initialComponentTypes?: MutableComponentTypeRegistry);
|
|
17
|
+
/** Declares a typed Lua component profile (props, state, capabilities, hooks). */
|
|
18
|
+
componentType<const N extends string>(name: N, def: ComponentTypeDefInput<`${string}:${string}`, THooks>): SurfaceBuilder<THost, THooks>;
|
|
14
19
|
/** Opens a Lua bridge table (e.g. `orders`, `greet`). */
|
|
15
20
|
bridge<const B extends string>(name: B): BridgeBuilder<THost, B, THooks>;
|
|
16
|
-
/** Attaches
|
|
17
|
-
|
|
21
|
+
/** Attaches component domain-event Zod schemas (emitted into `.d.lua` as `on*` methods on component types). */
|
|
22
|
+
componentHooks<const H extends HostComponentHooksSpec>(hooks: H): SurfaceBuilder<THost, H>;
|
|
18
23
|
/** Compiles the accumulated spec into a {@link HostSurface}. */
|
|
19
|
-
build(): THooks extends
|
|
24
|
+
build(): THooks extends HostComponentHooksSpec ? HostSurface<THooks, InferSurfaceCapabilities<HostSurfaceSpec>> : HostSurface<undefined, InferSurfaceCapabilities<HostSurfaceSpec>>;
|
|
20
25
|
/** @internal */
|
|
21
26
|
addMethod<const B extends string, const M extends string>(bridgeName: B, methodName: M, entry: AnyHostSurfaceMethod): SurfaceBuilder<THost, THooks>;
|
|
22
27
|
}
|
|
23
28
|
/**
|
|
24
29
|
* Per-bridge step in the fluent surface DSL. Return to {@link SurfaceBuilder} via `.method(…)`.
|
|
25
30
|
*/
|
|
26
|
-
export declare class BridgeBuilder<THost, const B extends string, THooks extends
|
|
31
|
+
export declare class BridgeBuilder<THost, const B extends string, THooks extends HostComponentHooksSpec | undefined> {
|
|
27
32
|
private readonly parent;
|
|
28
33
|
private readonly bridgeName;
|
|
29
34
|
constructor(parent: SurfaceBuilder<THost, THooks>, bridgeName: B);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"surfaceBuilder.d.ts","sourceRoot":"","sources":["../../../src/infrastructure/builders/surfaceBuilder.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"surfaceBuilder.d.ts","sourceRoot":"","sources":["../../../src/infrastructure/builders/surfaceBuilder.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,94 +1,64 @@
|
|
|
1
|
-
import { CapabilityId, InMemoryCapabilityRegistry } from '@microverse.ts/runtime-capabilities';
|
|
2
1
|
import { Result } from '@microverse.ts/shared';
|
|
3
2
|
import { z } from 'zod';
|
|
4
|
-
import { ExecutionFailure, RunScriptResult, MicroverseId, MicroverseRuntime, TimeoutPolicy } from '@microverse.ts/runtime-core';
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export type WorkflowHookInvokeArgs<TH extends HostWorkflowHooksSpec> = {
|
|
3
|
+
import { ExecutionFailure, RunScriptResult, MicroverseId, MicroverseRuntime, ScriptAuditEvent, ScriptInstanceContext, ScriptPropertyBag, ScriptPropertyValue, TimeoutPolicy } from '@microverse.ts/runtime-core';
|
|
4
|
+
import { SchemaValidationPort } from '../../application/ports/SchemaValidationPort';
|
|
5
|
+
import { ScriptReferenceResolverPort } from '../../application/ports/ScriptReferenceResolverPort';
|
|
6
|
+
import { ResolvedScriptProfile } from '../../domain/scriptProfileSpec';
|
|
7
|
+
import { HostSurface, HostComponentHooksSpec } from '../../domain/hostSurfaceTypes';
|
|
8
|
+
import { LuaGlobalHookName } from '../../domain/luaGlobalHook';
|
|
9
|
+
export type ComponentEventHookInvokeArgs<TH extends HostComponentHooksSpec> = {
|
|
12
10
|
[K in keyof TH & string]: readonly [hook: LuaGlobalHookName<K>, payload: Readonly<z.infer<TH[K]>>];
|
|
13
11
|
}[keyof TH & string];
|
|
14
|
-
type
|
|
15
|
-
|
|
16
|
-
* Options for {@link HostScriptSession}: one Wasm (or other) slot, a surface, host services, and a capability allowlist.
|
|
17
|
-
*
|
|
18
|
-
* @typeParam THost - Your engine context; must match the `THost` used in {@link defineHostSurfaceFor} (or {@link defineHostSurface}).
|
|
19
|
-
* @typeParam THooks - When the surface was built with workflow hooks, pass the same `THooks` so {@link HostScriptSession.invokeGlobalHookIfPresent} narrows to those payloads (match `surface`’s `workflowHooks` typing).
|
|
20
|
-
*/
|
|
21
|
-
export type HostScriptSessionOptions<THost, THooks extends HostWorkflowHooksSpec | undefined = undefined> = {
|
|
22
|
-
/** Shared runtime (typically one Wasmoon VM for many slots). */
|
|
12
|
+
type InvokeComponentEventHookFn<THooks extends HostComponentHooksSpec | undefined> = THooks extends HostComponentHooksSpec ? (...args: ComponentEventHookInvokeArgs<THooks>) => Promise<Result<RunScriptResult, ExecutionFailure>> : (hookName: string, payload: Readonly<Record<string, string | number | boolean>>) => Promise<Result<RunScriptResult, ExecutionFailure>>;
|
|
13
|
+
export type HostScriptSessionOptions<THost, THooks extends HostComponentHooksSpec | undefined = undefined> = {
|
|
23
14
|
readonly runtime: MicroverseRuntime;
|
|
24
|
-
/** Surface produced by {@link defineHostSurface}. */
|
|
25
15
|
readonly surface: HostSurface<THooks>;
|
|
26
|
-
/** Host services passed into bridge handlers (orders, clock, …). */
|
|
27
16
|
readonly host: THost;
|
|
28
|
-
/** Stable sandbox id for this script / workflow / entity. */
|
|
29
17
|
readonly slotKey: MicroverseId;
|
|
30
|
-
/** Exact capability ids this session may invoke on any bridge method. */
|
|
31
|
-
readonly allowedCapabilities: readonly CapabilityId[];
|
|
32
|
-
/** Optional default timeout forwarded to {@link MicroverseSlot.run}. */
|
|
33
18
|
readonly defaultTimeout?: TimeoutPolicy | undefined;
|
|
19
|
+
readonly script: ScriptInstanceContext;
|
|
20
|
+
/** Host-selected script profile (surface component type name). Applied at openSession before the main chunk. */
|
|
21
|
+
readonly profileId?: string | undefined;
|
|
22
|
+
/** When set, used instead of {@link HostSurfaceCore.getComponentType} (inline catalog profiles). */
|
|
23
|
+
readonly resolvedProfile?: ResolvedScriptProfile | undefined;
|
|
24
|
+
/** Lua singleton global for `Type:extend()` (e.g. `SortingAlgorithm`). Defaults to `profileId`. */
|
|
25
|
+
readonly profileSingleton?: string | undefined;
|
|
26
|
+
readonly enableComponentRuntime?: boolean | undefined;
|
|
27
|
+
readonly schemaValidation?: SchemaValidationPort | undefined;
|
|
28
|
+
readonly referenceResolver?: ScriptReferenceResolverPort | undefined;
|
|
29
|
+
readonly onScriptAudit?: ((event: ScriptAuditEvent) => void) | undefined;
|
|
34
30
|
};
|
|
35
|
-
|
|
36
|
-
* Binds one **Lua slot** to a {@link HostSurface}: capability allowlist, Zod validation, and `mergeEnv` wiring.
|
|
37
|
-
*
|
|
38
|
-
* @remarks
|
|
39
|
-
* - **Lua → host (bridges):** tables/methods from {@link defineHostSurface} on `_ENV` call into TypeScript with Zod validation.
|
|
40
|
-
* - **Host → Lua (hooks):** when the surface defines `workflowHooks`, {@link HostScriptSession.openSession} installs
|
|
41
|
-
* a small `workflow` helper (`workflow:extend()` → handler table + slot registration) and
|
|
42
|
-
* {@link HostScriptSession.invokeGlobalHookIfPresent} dispatches `on…` methods on that table. Each session has its own
|
|
43
|
-
* slot env, so many workflows run concurrently without sharing Lua globals. Without `workflowHooks`, hooks are optional
|
|
44
|
-
* globals (`onSmoke`, …) invoked as plain functions.
|
|
45
|
-
* - Call {@link HostScriptSession.openSession} once before running chunks or invocations; {@link HostScriptSession.dispose} when the slot is torn down.
|
|
46
|
-
*
|
|
47
|
-
* @typeParam THost - Same host type as your surface handlers.
|
|
48
|
-
* @typeParam THooks - Align with {@link HostSurface} `workflowHooks` on the surface you pass in (or `undefined` when the surface has no workflow hooks).
|
|
49
|
-
*/
|
|
50
|
-
export declare class HostScriptSession<THost, THooks extends HostWorkflowHooksSpec | undefined = undefined> {
|
|
31
|
+
export declare class HostScriptSession<THost, THooks extends HostComponentHooksSpec | undefined = undefined> {
|
|
51
32
|
private readonly opts;
|
|
52
33
|
private sandbox;
|
|
53
|
-
private readonly
|
|
34
|
+
private readonly hostProps;
|
|
35
|
+
private readonly schemaValidation;
|
|
36
|
+
private activeComponentType;
|
|
37
|
+
private hostProfileApplied;
|
|
38
|
+
readonly context: ScriptInstanceContext;
|
|
54
39
|
constructor(opts: HostScriptSessionOptions<THost, THooks>);
|
|
55
|
-
/**
|
|
56
|
-
* Allocates the underlying {@link MicroverseSlot} for this `slotKey` on the shared runtime.
|
|
57
|
-
*/
|
|
58
40
|
readonly openSession: () => Promise<void>;
|
|
59
|
-
/**
|
|
60
|
-
* Exposes the in-memory registry (e.g. to mutate allowlists in advanced tests).
|
|
61
|
-
*/
|
|
62
|
-
readonly getCapabilityRegistry: () => InMemoryCapabilityRegistry;
|
|
63
41
|
private requireMicroverseSlot;
|
|
64
42
|
private mergeEnv;
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
43
|
+
private wrapReference;
|
|
44
|
+
private emitAudit;
|
|
45
|
+
private getActiveProfileName;
|
|
46
|
+
private profileSingletonName;
|
|
47
|
+
private singletonTypeNames;
|
|
48
|
+
private tryGetActiveProfile;
|
|
49
|
+
private validatePropsBag;
|
|
50
|
+
readonly getProps: () => Readonly<ScriptPropertyBag>;
|
|
51
|
+
readonly setProps: (bag: ScriptPropertyBag) => Promise<void>;
|
|
52
|
+
readonly patchProps: (partial: ScriptPropertyBag) => Promise<void>;
|
|
53
|
+
readonly flushDirtyProps: () => Promise<ScriptPropertyBag | null>;
|
|
70
54
|
readonly runChunk: (source: string) => Promise<Result<RunScriptResult, ExecutionFailure>>;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
* `workflow:extend()` in this slot. Otherwise invokes `_ENV[globalName](evt)` when that entry is a function.
|
|
74
|
-
*
|
|
75
|
-
* @param globalName - Hook method name, e.g. `onOrderPlaced` (same as {@link luaGlobalHookName}).
|
|
76
|
-
* @param payload - Table fields: only string, finite number, or boolean (Lua literals).
|
|
77
|
-
*/
|
|
78
|
-
readonly invokeGlobalHookIfPresent: InvokeGlobalHookIfPresentFn<THooks>;
|
|
79
|
-
/**
|
|
80
|
-
* Host → Lua: invokes `_ENV[tableName][methodName](literalTable)` where `literalTable` is built only from
|
|
81
|
-
* string, finite number, or boolean fields in `payload`.
|
|
82
|
-
*
|
|
83
|
-
* @param tableName - Global table name in the slot env.
|
|
84
|
-
* @param methodName - Function field on that table.
|
|
85
|
-
* @param payload - Plain serializable fields for the Lua table literal.
|
|
86
|
-
*/
|
|
55
|
+
readonly invokeComponentHook: (hookName: string, ...args: (string | ScriptPropertyValue | Readonly<Record<string, string | number | boolean>>)[]) => Promise<Result<RunScriptResult, ExecutionFailure>>;
|
|
56
|
+
readonly invokeComponentEventHook: InvokeComponentEventHookFn<THooks>;
|
|
87
57
|
readonly call: (tableName: string, methodName: string, payload: Record<string, unknown>) => Promise<Result<RunScriptResult, ExecutionFailure>>;
|
|
88
|
-
/**
|
|
89
|
-
* Releases the slot in the runtime adapter and clears the session handle.
|
|
90
|
-
*/
|
|
91
58
|
readonly dispose: () => Promise<void>;
|
|
59
|
+
/** Seeds host props bag without Lua sync (call before setProps after mount). */
|
|
60
|
+
readonly seedHostProps: (bag: ScriptPropertyBag) => void;
|
|
61
|
+
readonly getHostProfileApplied: () => boolean;
|
|
92
62
|
}
|
|
93
63
|
export {};
|
|
94
64
|
//# sourceMappingURL=hostScriptSession.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hostScriptSession.d.ts","sourceRoot":"","sources":["../../../src/infrastructure/components/hostScriptSession.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"hostScriptSession.d.ts","sourceRoot":"","sources":["../../../src/infrastructure/components/hostScriptSession.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microverse.ts/host-surface",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"description": "
|
|
7
|
+
"description": "Fluent host surface DSL: Zod bridges, capability checks, component hooks, and LuaDefManifest for runtime + LuaLS stubs.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/QADRAX/Microverse.ts.git",
|
|
@@ -27,18 +27,19 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"zod": "^3.24.0",
|
|
30
|
-
"@microverse.ts/lua-defs": "0.
|
|
31
|
-
"@microverse.ts/runtime-
|
|
32
|
-
"@microverse.ts/runtime-
|
|
33
|
-
"@microverse.ts/runtime-core": "0.
|
|
34
|
-
"@microverse.ts/
|
|
35
|
-
"@microverse.ts/
|
|
30
|
+
"@microverse.ts/lua-defs": "0.3.0",
|
|
31
|
+
"@microverse.ts/runtime-bridge": "0.3.0",
|
|
32
|
+
"@microverse.ts/runtime-capabilities": "0.3.0",
|
|
33
|
+
"@microverse.ts/runtime-core": "0.3.0",
|
|
34
|
+
"@microverse.ts/runtime-zod": "0.3.0",
|
|
35
|
+
"@microverse.ts/shared": "0.3.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"typescript": "^5.8.3",
|
|
39
39
|
"vite": "^8.0.0",
|
|
40
40
|
"vite-plugin-dts": "^4.5.4",
|
|
41
|
-
"vitest": "^3.1.4"
|
|
41
|
+
"vitest": "^3.1.4",
|
|
42
|
+
"@microverse.ts/runtime-wasm": "0.3.0"
|
|
42
43
|
},
|
|
43
44
|
"scripts": {
|
|
44
45
|
"build": "vite build",
|