@fusebase/fusebase-gate-sdk 2.2.13-sdk.7 → 2.2.13-sdk.9

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.
@@ -5,7 +5,7 @@
5
5
  * Domain: mcp-manager
6
6
  */
7
7
  import type { Client } from "../runtime/transport";
8
- import type { CallMcpManagerServerToolRequestContract, CallMcpManagerServerToolResponseContract, CreateMcpManagerServerFromTemplateRequestContract, InitiateMcpManagerAuthRequestContract, McpManagerAuthGlobalIdInPathRequired, McpManagerAuthResponseContract, McpManagerServerIdInPathRequired, McpManagerServerResponseContract, McpManagerTemplateIdInPathRequired, PublicMcpManagerAuthStatusResponseContract, TemplatesListResponseContract, UpdateMcpManagerAuthRequestContract } from "../types";
8
+ import type { CallMcpManagerServerToolRequestContract, CallMcpManagerServerToolResponseContract, CreateMcpManagerServerFromTemplateRequestContract, InitiateMcpManagerAuthRequestContract, McpManagerAuthGlobalIdInPathRequired, McpManagerAuthResponseContract, McpManagerServerIdInPathRequired, McpManagerServerResponseContract, McpManagerTemplateIdInPathRequired, PublicMcpManagerAuthStatusResponseContract, TemplateContract, TemplatesListResponseContract, UpdateMcpManagerAuthRequestContract } from "../types";
9
9
  export declare class McpManagerApi {
10
10
  private client;
11
11
  constructor(client: Client);
@@ -31,6 +31,16 @@ export declare class McpManagerApi {
31
31
  headers?: Record<string, string>;
32
32
  body: CreateMcpManagerServerFromTemplateRequestContract;
33
33
  }): Promise<McpManagerServerResponseContract>;
34
+ /**
35
+ * Get MCP server template by id
36
+ * Returns a single MCP server template by id.
37
+ */
38
+ getMcpServerTemplate(params: {
39
+ path: {
40
+ templateId: McpManagerTemplateIdInPathRequired;
41
+ };
42
+ headers?: Record<string, string>;
43
+ }): Promise<TemplateContract>;
34
44
  /**
35
45
  * Get a list of MCP server templates
36
46
  * Returns a list of templates that can be used to create a new MCP server
@@ -41,6 +41,20 @@ class McpManagerApi {
41
41
  expectedContentType: "application/json",
42
42
  });
43
43
  }
44
+ /**
45
+ * Get MCP server template by id
46
+ * Returns a single MCP server template by id.
47
+ */
48
+ async getMcpServerTemplate(params) {
49
+ return this.client.request({
50
+ method: "GET",
51
+ path: "/mcp-manager/templates/:templateId",
52
+ pathParams: params.path,
53
+ headers: params.headers,
54
+ opId: "getMcpServerTemplate",
55
+ expectedContentType: "application/json",
56
+ });
57
+ }
44
58
  /**
45
59
  * Get a list of MCP server templates
46
60
  * Returns a list of templates that can be used to create a new MCP server
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusebase/fusebase-gate-sdk",
3
- "version": "2.2.13-sdk.7",
3
+ "version": "2.2.13-sdk.9",
4
4
  "description": "TypeScript SDK for Fusebase Gate APIs - Generated from contract introspection",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -0,0 +1,9 @@
1
+ # Release Notes 2.2.13-sdk.9
2
+
3
+ - Current ref: `HEAD`
4
+ - Previous tag: `v2.2.13-sdk.9`
5
+ - Generated at: 2026-05-11T10:16:39.938Z
6
+
7
+ ## Included Drafts
8
+
9
+ - None
@@ -1,8 +1,8 @@
1
- # Release Notes 2.2.13-sdk.7
1
+ # Release Notes 2.2.13-sdk.9
2
2
 
3
3
  - Current ref: `HEAD`
4
- - Previous tag: `v2.2.13-sdk.7`
5
- - Generated at: 2026-05-09T18:30:55.249Z
4
+ - Previous tag: `v2.2.13-sdk.9`
5
+ - Generated at: 2026-05-11T10:16:39.938Z
6
6
 
7
7
  ## Included Drafts
8
8
 
@@ -1,9 +0,0 @@
1
- # Release Notes 2.2.13-sdk.7
2
-
3
- - Current ref: `HEAD`
4
- - Previous tag: `v2.2.13-sdk.7`
5
- - Generated at: 2026-05-09T18:30:55.249Z
6
-
7
- ## Included Drafts
8
-
9
- - None