@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/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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olonjs/core",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/olonjs-core.umd.cjs",