@bodhiapp/ts-client 0.1.25 → 0.1.26

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.
@@ -1540,7 +1540,8 @@ export interface components {
1540
1540
  * "mcps": [
1541
1541
  * {
1542
1542
  * "instance": {
1543
- * "id": "instance-uuid"
1543
+ * "id": "instance-uuid",
1544
+ * "path": "/bodhi/v1/apps/mcps/instance-uuid/mcp"
1544
1545
  * },
1545
1546
  * "status": "approved",
1546
1547
  * "url": "https://mcp.deepwiki.com/mcp"
@@ -2644,8 +2645,8 @@ export interface components {
2644
2645
  description?: string | null;
2645
2646
  /** @description Whether this instance is enabled */
2646
2647
  enabled: boolean;
2647
- /** @description MCP proxy endpoint path for this instance */
2648
- mcp_endpoint: string;
2648
+ /** @description MCP proxy path for this instance */
2649
+ path: string;
2649
2650
  auth_type: components["schemas"]["McpAuthType"];
2650
2651
  /** @description Reference to the auth config (mcp_auth_configs.id) */
2651
2652
  auth_config_id?: string | null;
@@ -2736,6 +2737,8 @@ export interface components {
2736
2737
  McpAuthType: "public" | "header" | "oauth";
2737
2738
  McpInstance: {
2738
2739
  id: string;
2740
+ /** @description MCP proxy path for this instance (e.g. `/bodhi/v1/apps/mcps/{id}/mcp`) */
2741
+ path: string;
2739
2742
  };
2740
2743
  /** @description Input for creating or updating an MCP instance. */
2741
2744
  McpRequest: {
@@ -1541,7 +1541,8 @@ export interface components {
1541
1541
  * "mcps": [
1542
1542
  * {
1543
1543
  * "instance": {
1544
- * "id": "instance-uuid"
1544
+ * "id": "instance-uuid",
1545
+ * "path": "/bodhi/v1/apps/mcps/instance-uuid/mcp"
1545
1546
  * },
1546
1547
  * "status": "approved",
1547
1548
  * "url": "https://mcp.deepwiki.com/mcp"
@@ -2645,8 +2646,8 @@ export interface components {
2645
2646
  description?: string | null;
2646
2647
  /** @description Whether this instance is enabled */
2647
2648
  enabled: boolean;
2648
- /** @description MCP proxy endpoint path for this instance */
2649
- mcp_endpoint: string;
2649
+ /** @description MCP proxy path for this instance */
2650
+ path: string;
2650
2651
  auth_type: components["schemas"]["McpAuthType"];
2651
2652
  /** @description Reference to the auth config (mcp_auth_configs.id) */
2652
2653
  auth_config_id?: string | null;
@@ -2737,6 +2738,8 @@ export interface components {
2737
2738
  McpAuthType: "public" | "header" | "oauth";
2738
2739
  McpInstance: {
2739
2740
  id: string;
2741
+ /** @description MCP proxy path for this instance (e.g. `/bodhi/v1/apps/mcps/{id}/mcp`) */
2742
+ path: string;
2740
2743
  };
2741
2744
  /** @description Input for creating or updating an MCP instance. */
2742
2745
  McpRequest: {
@@ -1416,9 +1416,9 @@ export type Mcp = {
1416
1416
  */
1417
1417
  enabled: boolean;
1418
1418
  /**
1419
- * MCP proxy endpoint path for this instance
1419
+ * MCP proxy path for this instance
1420
1420
  */
1421
- mcp_endpoint: string;
1421
+ path: string;
1422
1422
  auth_type: McpAuthType;
1423
1423
  /**
1424
1424
  * Reference to the auth config (mcp_auth_configs.id)
@@ -1501,6 +1501,10 @@ export type McpAuthParamType = 'header' | 'query';
1501
1501
  export type McpAuthType = 'public' | 'header' | 'oauth';
1502
1502
  export type McpInstance = {
1503
1503
  id: string;
1504
+ /**
1505
+ * MCP proxy path for this instance (e.g. `/bodhi/v1/apps/mcps/{id}/mcp`)
1506
+ */
1507
+ path: string;
1504
1508
  };
1505
1509
  /**
1506
1510
  * Input for creating or updating an MCP instance.
@@ -1546,9 +1546,9 @@ export type Mcp = {
1546
1546
  */
1547
1547
  enabled: boolean;
1548
1548
  /**
1549
- * MCP proxy endpoint path for this instance
1549
+ * MCP proxy path for this instance
1550
1550
  */
1551
- mcp_endpoint: string;
1551
+ path: string;
1552
1552
  auth_type: McpAuthType;
1553
1553
  /**
1554
1554
  * Reference to the auth config (mcp_auth_configs.id)
@@ -1642,6 +1642,10 @@ export type McpAuthType = 'public' | 'header' | 'oauth';
1642
1642
 
1643
1643
  export type McpInstance = {
1644
1644
  id: string;
1645
+ /**
1646
+ * MCP proxy path for this instance (e.g. `/bodhi/v1/apps/mcps/{id}/mcp`)
1647
+ */
1648
+ path: string;
1645
1649
  };
1646
1650
 
1647
1651
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bodhiapp/ts-client",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "description": "TypeScript types for Bodhi API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",