@flexprice/mcp-server 2.0.3 → 2.0.4

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/manifest.json CHANGED
@@ -48,7 +48,7 @@
48
48
  "sensitive": true
49
49
  }
50
50
  },
51
- "version": "2.0.3",
51
+ "version": "2.0.4",
52
52
  "tools": [
53
53
  {
54
54
  "name": "update-customer",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flexprice/mcp-server",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "author": "flexprice",
5
5
  "type": "module",
6
6
  "sideEffects": false,
package/src/lib/config.ts CHANGED
@@ -69,8 +69,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
69
69
  export const SDK_METADATA = {
70
70
  language: "typescript",
71
71
  openapiDocVersion: "1.0",
72
- sdkVersion: "2.0.3",
73
- genVersion: "2.856.1",
72
+ sdkVersion: "2.0.4",
73
+ genVersion: "2.858.2",
74
74
  userAgent:
75
- "speakeasy-sdk/mcp-typescript 2.0.3 2.856.1 1.0 @flexprice/mcp-server",
75
+ "speakeasy-sdk/mcp-typescript 2.0.4 2.858.2 1.0 @flexprice/mcp-server",
76
76
  } as const;
@@ -21,7 +21,7 @@ const routes = buildRouteMap({
21
21
  export const app = buildApplication(routes, {
22
22
  name: "mcp",
23
23
  versionInfo: {
24
- currentVersion: "2.0.3",
24
+ currentVersion: "2.0.4",
25
25
  },
26
26
  });
27
27
 
@@ -71,7 +71,7 @@ export function createMCPServer(deps: {
71
71
  }) {
72
72
  const server = new McpServer({
73
73
  name: "Flexprice",
74
- version: "2.0.3",
74
+ version: "2.0.4",
75
75
  });
76
76
 
77
77
  const getClient = deps.getSDK || (() =>
@@ -401,7 +401,7 @@ export function buildSDK(
401
401
  ...cliFlags,
402
402
  "api-key-auth": resolveHeader(
403
403
  headers,
404
- "ApiKeyAuth",
404
+ "api-key-auth",
405
405
  z.string(),
406
406
  cliFlags["api-key-auth"],
407
407
  disableStaticAuth,