@0xmonaco/mcp-server 0.3.0 → 0.3.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @0xmonaco/mcp-server
2
2
 
3
+ ## 0.3.2
4
+
5
+ ## 0.3.1
6
+
3
7
  ## 0.3.0
4
8
 
5
9
  ## 0.1.5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xmonaco/mcp-server",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "type": "module",
5
5
  "description": "MCP server for the Monaco documentation",
6
6
  "engines": {
@@ -3,4 +3,3 @@ import { z } from "zod";
3
3
  type SchemaInput = DataSchema | IncrementalDataSchema;
4
4
  export declare function dataSchemaArrayToZod(schemas: DataSchemaArray | IncrementalDataSchemaArray): z.ZodTypeAny;
5
5
  export declare function dataSchemaToZod(schema: SchemaInput): z.ZodTypeAny;
6
- export {};
package/src/utils.d.ts CHANGED
@@ -8,5 +8,5 @@ export type NestedRecord =
8
8
  export type SimpleRecord = Record<string, NestedRecord>;
9
9
  export declare function initializeObject(obj: SimpleRecord, path: string[]): SimpleRecord;
10
10
  export declare function getFileId(spec: OpenAPI.Document, index: number): string | number;
11
- export declare function throwOnAxiosError(response: AxiosResponse<any, any>, errMsg: string): void;
12
- export declare function formatErr(err: unknown): any;
11
+ export declare function throwOnAxiosError(response: AxiosResponse<unknown, unknown>, errMsg: string): void;
12
+ export declare function formatErr(err: unknown): string;