@shippo/shippo-mcp 1.0.0 → 1.0.1

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.
@@ -39,8 +39,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
39
39
  export declare const SDK_METADATA: {
40
40
  readonly language: "typescript";
41
41
  readonly openapiDocVersion: "2018-02-08";
42
- readonly sdkVersion: "1.0.0";
42
+ readonly sdkVersion: "1.0.1";
43
43
  readonly genVersion: "2.776.3";
44
- readonly userAgent: "speakeasy-sdk/mcp-typescript 1.0.0 2.776.3 2018-02-08 @shippo/shippo-mcp";
44
+ readonly userAgent: "speakeasy-sdk/mcp-typescript 1.0.1 2.776.3 2018-02-08 @shippo/shippo-mcp";
45
45
  };
46
46
  //# sourceMappingURL=config.d.ts.map
package/esm/lib/config.js CHANGED
@@ -24,8 +24,8 @@ export function serverURLFromOptions(options) {
24
24
  export const SDK_METADATA = {
25
25
  language: "typescript",
26
26
  openapiDocVersion: "2018-02-08",
27
- sdkVersion: "1.0.0",
27
+ sdkVersion: "1.0.1",
28
28
  genVersion: "2.776.3",
29
- userAgent: "speakeasy-sdk/mcp-typescript 1.0.0 2.776.3 2018-02-08 @shippo/shippo-mcp",
29
+ userAgent: "speakeasy-sdk/mcp-typescript 1.0.1 2.776.3 2018-02-08 @shippo/shippo-mcp",
30
30
  };
31
31
  //# sourceMappingURL=config.js.map
@@ -16,7 +16,7 @@ const routes = buildRouteMap({
16
16
  export const app = buildApplication(routes, {
17
17
  name: "mcp",
18
18
  versionInfo: {
19
- currentVersion: "1.0.0",
19
+ currentVersion: "1.0.1",
20
20
  },
21
21
  });
22
22
  run(app, process.argv.slice(2), buildContext(process));
@@ -79,7 +79,7 @@ import { tool$webhooksUpdate } from "./tools/webhooksUpdate.js";
79
79
  export function createMCPServer(deps) {
80
80
  const server = new McpServer({
81
81
  name: "ShippoSDK",
82
- version: "1.0.0",
82
+ version: "1.0.1",
83
83
  });
84
84
  const getClient = deps.getSDK || (() => new ShippoSDKCore({
85
85
  security: deps.security,
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": "0.3",
3
3
  "name": "@shippo/shippo-mcp",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "description": "",
6
6
  "long_description": "Shippo external API.: Use this API to integrate with the Shippo service",
7
7
  "author": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shippo/shippo-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "author": "shippo",
5
5
  "type": "module",
6
6
  "sideEffects": false,
package/src/lib/config.ts CHANGED
@@ -67,8 +67,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
67
67
  export const SDK_METADATA = {
68
68
  language: "typescript",
69
69
  openapiDocVersion: "2018-02-08",
70
- sdkVersion: "1.0.0",
70
+ sdkVersion: "1.0.1",
71
71
  genVersion: "2.776.3",
72
72
  userAgent:
73
- "speakeasy-sdk/mcp-typescript 1.0.0 2.776.3 2018-02-08 @shippo/shippo-mcp",
73
+ "speakeasy-sdk/mcp-typescript 1.0.1 2.776.3 2018-02-08 @shippo/shippo-mcp",
74
74
  } as const;
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
  export const app = buildApplication(routes, {
20
20
  name: "mcp",
21
21
  versionInfo: {
22
- currentVersion: "1.0.0",
22
+ currentVersion: "1.0.1",
23
23
  },
24
24
  });
25
25
 
@@ -96,7 +96,7 @@ export function createMCPServer(deps: {
96
96
  }) {
97
97
  const server = new McpServer({
98
98
  name: "ShippoSDK",
99
- version: "1.0.0",
99
+ version: "1.0.1",
100
100
  });
101
101
 
102
102
  const getClient = deps.getSDK || (() =>