@olonjs/core 1.1.6 → 1.1.7
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/index.d.ts +6 -1
- package/dist/olonjs-core-runtime.js +60 -56
- package/dist/olonjs-core.js +2000 -1965
- package/dist/olonjs-core.umd.cjs +26 -26
- package/dist/runtime.d.ts +6 -1
- package/package.json +1 -1
package/dist/runtime.d.ts
CHANGED
|
@@ -292,7 +292,7 @@ export declare namespace contract {
|
|
|
292
292
|
|
|
293
293
|
export declare function createWebMcpSaveToolInputSchema(): Record<string, unknown>;
|
|
294
294
|
|
|
295
|
-
export declare function createWebMcpToolInputSchema(): Record<string, unknown>;
|
|
295
|
+
export declare function createWebMcpToolInputSchema(catalog?: ReadonlyArray<WebMcpSectionCatalogEntry>): Record<string, unknown>;
|
|
296
296
|
|
|
297
297
|
export declare const CtaSchema: z.ZodObject<{
|
|
298
298
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1076,6 +1076,11 @@ export declare interface WebMcpMutationArgs {
|
|
|
1076
1076
|
value?: unknown;
|
|
1077
1077
|
}
|
|
1078
1078
|
|
|
1079
|
+
declare type WebMcpSectionCatalogEntry = {
|
|
1080
|
+
id: string;
|
|
1081
|
+
type: string;
|
|
1082
|
+
};
|
|
1083
|
+
|
|
1079
1084
|
declare interface WebMcpSectionInstance {
|
|
1080
1085
|
id: string;
|
|
1081
1086
|
type: string;
|