@fusebase/fusebase-gate-sdk 2.2.13-sdk.5 → 2.2.13-sdk.6

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, TemplatesListResponseContract, UpdateMcpManagerAuthRequestContract } from "../types";
8
+ import type { CallMcpManagerServerToolRequestContract, CallMcpManagerServerToolResponseContract, CreateMcpManagerServerFromTemplateRequestContract, InitiateMcpManagerAuthRequestContract, McpManagerAuthGlobalIdInPathRequired, McpManagerAuthResponseContract, McpManagerServerIdInPathRequired, McpManagerServerResponseContract, McpManagerTemplateIdInPathRequired, PublicMcpManagerAuthStatusResponseContract, TemplatesListResponseContract, UpdateMcpManagerAuthRequestContract } from "../types";
9
9
  export declare class McpManagerApi {
10
10
  private client;
11
11
  constructor(client: Client);
@@ -46,6 +46,16 @@ export declare class McpManagerApi {
46
46
  headers?: Record<string, string>;
47
47
  body: InitiateMcpManagerAuthRequestContract;
48
48
  }): Promise<McpManagerAuthResponseContract>;
49
+ /**
50
+ * Public update MCP manager auth status
51
+ * Refetches an MCP manager auth by globalId using default refetch/autofill behavior and returns only auth status.
52
+ */
53
+ publicUpdateMcpManagerAuthStatus(params: {
54
+ path: {
55
+ globalId: McpManagerAuthGlobalIdInPathRequired;
56
+ };
57
+ headers?: Record<string, string>;
58
+ }): Promise<PublicMcpManagerAuthStatusResponseContract>;
49
59
  /**
50
60
  * Update MCP manager auth
51
61
  * Updates an MCP manager auth connection by globalId, with optional refetch and name autofill behavior controlled by the request body.
@@ -68,6 +68,20 @@ class McpManagerApi {
68
68
  expectedContentType: "application/json",
69
69
  });
70
70
  }
71
+ /**
72
+ * Public update MCP manager auth status
73
+ * Refetches an MCP manager auth by globalId using default refetch/autofill behavior and returns only auth status.
74
+ */
75
+ async publicUpdateMcpManagerAuthStatus(params) {
76
+ return this.client.request({
77
+ method: "POST",
78
+ path: "/mcp-manager/auth/:globalId/public/status",
79
+ pathParams: params.path,
80
+ headers: params.headers,
81
+ opId: "publicUpdateMcpManagerAuthStatus",
82
+ expectedContentType: "application/json",
83
+ });
84
+ }
71
85
  /**
72
86
  * Update MCP manager auth
73
87
  * Updates an MCP manager auth connection by globalId, with optional refetch and name autofill behavior controlled by the request body.
@@ -161,6 +161,9 @@ export interface UpdateMcpManagerAuthRequestContract {
161
161
  refetch: boolean;
162
162
  autofillName: boolean;
163
163
  }
164
+ export interface PublicMcpManagerAuthStatusResponseContract {
165
+ status: AuthStatusContract;
166
+ }
164
167
  export interface CallMcpManagerServerToolRequestContract {
165
168
  toolName: string;
166
169
  args: Record<string, unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fusebase/fusebase-gate-sdk",
3
- "version": "2.2.13-sdk.5",
3
+ "version": "2.2.13-sdk.6",
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.6
2
+
3
+ - Current ref: `HEAD`
4
+ - Previous tag: `v2.2.13-sdk.6`
5
+ - Generated at: 2026-05-08T13:05:42.815Z
6
+
7
+ ## Included Drafts
8
+
9
+ - None
@@ -1,8 +1,8 @@
1
- # Release Notes 2.2.13-sdk.5
1
+ # Release Notes 2.2.13-sdk.6
2
2
 
3
3
  - Current ref: `HEAD`
4
- - Previous tag: `v2.2.13-sdk.5`
5
- - Generated at: 2026-05-08T11:10:38.008Z
4
+ - Previous tag: `v2.2.13-sdk.6`
5
+ - Generated at: 2026-05-08T13:05:42.815Z
6
6
 
7
7
  ## Included Drafts
8
8
 
@@ -1,9 +0,0 @@
1
- # Release Notes 2.2.13-sdk.5
2
-
3
- - Current ref: `HEAD`
4
- - Previous tag: `v2.2.13-sdk.5`
5
- - Generated at: 2026-05-08T11:10:38.008Z
6
-
7
- ## Included Drafts
8
-
9
- - None