@smithery/api 0.47.0 → 0.48.0

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.
Files changed (39) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +5 -5
  3. package/package.json +1 -1
  4. package/resources/servers/index.d.mts +1 -1
  5. package/resources/servers/index.d.mts.map +1 -1
  6. package/resources/servers/index.d.ts +1 -1
  7. package/resources/servers/index.d.ts.map +1 -1
  8. package/resources/servers/index.js +3 -3
  9. package/resources/servers/index.js.map +1 -1
  10. package/resources/servers/index.mjs +1 -1
  11. package/resources/servers/index.mjs.map +1 -1
  12. package/resources/servers/{deployments.d.mts → releases.d.mts} +29 -30
  13. package/resources/servers/releases.d.mts.map +1 -0
  14. package/resources/servers/{deployments.d.ts → releases.d.ts} +29 -30
  15. package/resources/servers/releases.d.ts.map +1 -0
  16. package/resources/servers/{deployments.js → releases.js} +16 -17
  17. package/resources/servers/releases.js.map +1 -0
  18. package/resources/servers/{deployments.mjs → releases.mjs} +14 -15
  19. package/resources/servers/releases.mjs.map +1 -0
  20. package/resources/servers/servers.d.mts +4 -4
  21. package/resources/servers/servers.d.mts.map +1 -1
  22. package/resources/servers/servers.d.ts +4 -4
  23. package/resources/servers/servers.d.ts.map +1 -1
  24. package/resources/servers/servers.js +4 -4
  25. package/resources/servers/servers.js.map +1 -1
  26. package/resources/servers/servers.mjs +4 -4
  27. package/resources/servers/servers.mjs.map +1 -1
  28. package/src/resources/servers/index.ts +17 -17
  29. package/src/resources/servers/{deployments.ts → releases.ts} +45 -46
  30. package/src/resources/servers/servers.ts +30 -30
  31. package/src/version.ts +1 -1
  32. package/version.d.mts +1 -1
  33. package/version.d.ts +1 -1
  34. package/version.js +1 -1
  35. package/version.mjs +1 -1
  36. package/resources/servers/deployments.d.mts.map +0 -1
  37. package/resources/servers/deployments.d.ts.map +0 -1
  38. package/resources/servers/deployments.js.map +0 -1
  39. package/resources/servers/deployments.mjs.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.48.0 (2026-02-17)
4
+
5
+ Full Changelog: [v0.47.0...v0.48.0](https://github.com/smithery-ai/typescript-api/compare/v0.47.0...v0.48.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([fd0d5ce](https://github.com/smithery-ai/typescript-api/commit/fd0d5ce0de01ee208212a2db773f233d7021ff1f))
10
+
3
11
  ## 0.47.0 (2026-02-15)
4
12
 
5
13
  Full Changelog: [v0.46.0...v0.47.0](https://github.com/smithery-ai/typescript-api/compare/v0.46.0...v0.47.0)
package/README.md CHANGED
@@ -64,29 +64,29 @@ import Smithery, { toFile } from '@smithery/api';
64
64
  const client = new Smithery();
65
65
 
66
66
  // If you have access to Node `fs` we recommend using `fs.createReadStream()`:
67
- await client.servers.deployments.deploy('qualifiedName', {
67
+ await client.servers.releases.deploy('qualifiedName', {
68
68
  payload: 'payload',
69
69
  bundle: fs.createReadStream('/path/to/file'),
70
70
  });
71
71
 
72
72
  // Or if you have the web `File` API you can pass a `File` instance:
73
- await client.servers.deployments.deploy('qualifiedName', {
73
+ await client.servers.releases.deploy('qualifiedName', {
74
74
  payload: 'payload',
75
75
  bundle: new File(['my bytes'], 'file'),
76
76
  });
77
77
 
78
78
  // You can also pass a `fetch` `Response`:
79
- await client.servers.deployments.deploy('qualifiedName', {
79
+ await client.servers.releases.deploy('qualifiedName', {
80
80
  payload: 'payload',
81
81
  bundle: await fetch('https://somesite/file'),
82
82
  });
83
83
 
84
84
  // Finally, if none of the above are convenient, you can use our `toFile` helper:
85
- await client.servers.deployments.deploy('qualifiedName', {
85
+ await client.servers.releases.deploy('qualifiedName', {
86
86
  payload: 'payload',
87
87
  bundle: await toFile(Buffer.from('my bytes'), 'file'),
88
88
  });
89
- await client.servers.deployments.deploy('qualifiedName', {
89
+ await client.servers.releases.deploy('qualifiedName', {
90
90
  payload: 'payload',
91
91
  bundle: await toFile(new Uint8Array([0, 1, 2]), 'file'),
92
92
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smithery/api",
3
- "version": "0.47.0",
3
+ "version": "0.48.0",
4
4
  "description": "The official TypeScript library for the Smithery API",
5
5
  "author": "Smithery <contact@smithery.ai>",
6
6
  "types": "./index.d.ts",
@@ -1,6 +1,6 @@
1
- export { Deployments, type DeployPayload, type ExternalDeployPayload, type HostedDeployPayload, type ServerCard, type StdioDeployPayload, type DeploymentListResponse, type DeploymentDeployResponse, type DeploymentGetResponse, type DeploymentResumeResponse, type DeploymentStreamResponse, type DeploymentDeployParams, type DeploymentGetParams, type DeploymentResumeParams, type DeploymentStreamParams, } from "./deployments.mjs";
2
1
  export { Domains, type DomainCreateResponse, type DomainUpdateResponse, type DomainListResponse, type DomainDeleteResponse, type DomainCreateParams, type DomainUpdateParams, type DomainDeleteParams, } from "./domains.mjs";
3
2
  export { Logs, type LogListResponse, type LogListParams } from "./logs.mjs";
3
+ export { Releases, type DeployPayload, type ExternalDeployPayload, type HostedDeployPayload, type ServerCard, type StdioDeployPayload, type ReleaseListResponse, type ReleaseDeployResponse, type ReleaseGetResponse, type ReleaseResumeResponse, type ReleaseStreamResponse, type ReleaseDeployParams, type ReleaseGetParams, type ReleaseResumeParams, type ReleaseStreamParams, } from "./releases.mjs";
4
4
  export { Repo, type RepoDeleteResponse, type RepoGetResponse, type RepoSetResponse, type RepoSetParams, } from "./repo.mjs";
5
5
  export { Secrets, type SecretListResponse, type SecretDeleteResponse, type SecretSetResponse, type SecretDeleteParams, type SecretSetParams, } from "./secrets.mjs";
6
6
  export { Servers, type BuildConfig, type DeploymentTarget, type ProjectConfig, type ServerCreateResponse, type ServerUpdateResponse, type ServerListResponse, type ServerDeleteResponse, type ServerGetResponse, type ServerCreateParams, type ServerUpdateParams, type ServerListParams, type ServerListResponsesSmitheryPage, } from "./servers.mjs";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../src/resources/servers/index.ts"],"names":[],"mappings":"OAEO,EACL,WAAW,EACX,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,UAAU,EACf,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,sBAAsB,EAC3B,KAAK,sBAAsB,GAC5B;OACM,EACL,OAAO,EACP,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,GACxB;OACM,EAAE,IAAI,EAAE,KAAK,eAAe,EAAE,KAAK,aAAa,EAAE;OAClD,EACL,IAAI,EACJ,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,eAAe,EACpB,KAAK,aAAa,GACnB;OACM,EACL,OAAO,EACP,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,eAAe,GACrB;OACM,EACL,OAAO,EACP,KAAK,WAAW,EAChB,KAAK,gBAAgB,EACrB,KAAK,aAAa,EAClB,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,+BAA+B,GACrC"}
1
+ {"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../src/resources/servers/index.ts"],"names":[],"mappings":"OAEO,EACL,OAAO,EACP,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,GACxB;OACM,EAAE,IAAI,EAAE,KAAK,eAAe,EAAE,KAAK,aAAa,EAAE;OAClD,EACL,QAAQ,EACR,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,UAAU,EACf,KAAK,kBAAkB,EACvB,KAAK,mBAAmB,EACxB,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,gBAAgB,EACrB,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,GACzB;OACM,EACL,IAAI,EACJ,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,eAAe,EACpB,KAAK,aAAa,GACnB;OACM,EACL,OAAO,EACP,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,eAAe,GACrB;OACM,EACL,OAAO,EACP,KAAK,WAAW,EAChB,KAAK,gBAAgB,EACrB,KAAK,aAAa,EAClB,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,+BAA+B,GACrC"}
@@ -1,6 +1,6 @@
1
- export { Deployments, type DeployPayload, type ExternalDeployPayload, type HostedDeployPayload, type ServerCard, type StdioDeployPayload, type DeploymentListResponse, type DeploymentDeployResponse, type DeploymentGetResponse, type DeploymentResumeResponse, type DeploymentStreamResponse, type DeploymentDeployParams, type DeploymentGetParams, type DeploymentResumeParams, type DeploymentStreamParams, } from "./deployments.js";
2
1
  export { Domains, type DomainCreateResponse, type DomainUpdateResponse, type DomainListResponse, type DomainDeleteResponse, type DomainCreateParams, type DomainUpdateParams, type DomainDeleteParams, } from "./domains.js";
3
2
  export { Logs, type LogListResponse, type LogListParams } from "./logs.js";
3
+ export { Releases, type DeployPayload, type ExternalDeployPayload, type HostedDeployPayload, type ServerCard, type StdioDeployPayload, type ReleaseListResponse, type ReleaseDeployResponse, type ReleaseGetResponse, type ReleaseResumeResponse, type ReleaseStreamResponse, type ReleaseDeployParams, type ReleaseGetParams, type ReleaseResumeParams, type ReleaseStreamParams, } from "./releases.js";
4
4
  export { Repo, type RepoDeleteResponse, type RepoGetResponse, type RepoSetResponse, type RepoSetParams, } from "./repo.js";
5
5
  export { Secrets, type SecretListResponse, type SecretDeleteResponse, type SecretSetResponse, type SecretDeleteParams, type SecretSetParams, } from "./secrets.js";
6
6
  export { Servers, type BuildConfig, type DeploymentTarget, type ProjectConfig, type ServerCreateResponse, type ServerUpdateResponse, type ServerListResponse, type ServerDeleteResponse, type ServerGetResponse, type ServerCreateParams, type ServerUpdateParams, type ServerListParams, type ServerListResponsesSmitheryPage, } from "./servers.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/servers/index.ts"],"names":[],"mappings":"OAEO,EACL,WAAW,EACX,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,UAAU,EACf,KAAK,kBAAkB,EACvB,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,qBAAqB,EAC1B,KAAK,wBAAwB,EAC7B,KAAK,wBAAwB,EAC7B,KAAK,sBAAsB,EAC3B,KAAK,mBAAmB,EACxB,KAAK,sBAAsB,EAC3B,KAAK,sBAAsB,GAC5B;OACM,EACL,OAAO,EACP,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,GACxB;OACM,EAAE,IAAI,EAAE,KAAK,eAAe,EAAE,KAAK,aAAa,EAAE;OAClD,EACL,IAAI,EACJ,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,eAAe,EACpB,KAAK,aAAa,GACnB;OACM,EACL,OAAO,EACP,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,eAAe,GACrB;OACM,EACL,OAAO,EACP,KAAK,WAAW,EAChB,KAAK,gBAAgB,EACrB,KAAK,aAAa,EAClB,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,+BAA+B,GACrC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/resources/servers/index.ts"],"names":[],"mappings":"OAEO,EACL,OAAO,EACP,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,GACxB;OACM,EAAE,IAAI,EAAE,KAAK,eAAe,EAAE,KAAK,aAAa,EAAE;OAClD,EACL,QAAQ,EACR,KAAK,aAAa,EAClB,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,UAAU,EACf,KAAK,kBAAkB,EACvB,KAAK,mBAAmB,EACxB,KAAK,qBAAqB,EAC1B,KAAK,kBAAkB,EACvB,KAAK,qBAAqB,EAC1B,KAAK,qBAAqB,EAC1B,KAAK,mBAAmB,EACxB,KAAK,gBAAgB,EACrB,KAAK,mBAAmB,EACxB,KAAK,mBAAmB,GACzB;OACM,EACL,IAAI,EACJ,KAAK,kBAAkB,EACvB,KAAK,eAAe,EACpB,KAAK,eAAe,EACpB,KAAK,aAAa,GACnB;OACM,EACL,OAAO,EACP,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,eAAe,GACrB;OACM,EACL,OAAO,EACP,KAAK,WAAW,EAChB,KAAK,gBAAgB,EACrB,KAAK,aAAa,EAClB,KAAK,oBAAoB,EACzB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,oBAAoB,EACzB,KAAK,iBAAiB,EACtB,KAAK,kBAAkB,EACvB,KAAK,kBAAkB,EACvB,KAAK,gBAAgB,EACrB,KAAK,+BAA+B,GACrC"}
@@ -1,13 +1,13 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.Servers = exports.Secrets = exports.Repo = exports.Logs = exports.Domains = exports.Deployments = void 0;
5
- var deployments_1 = require("./deployments.js");
6
- Object.defineProperty(exports, "Deployments", { enumerable: true, get: function () { return deployments_1.Deployments; } });
4
+ exports.Servers = exports.Secrets = exports.Repo = exports.Releases = exports.Logs = exports.Domains = void 0;
7
5
  var domains_1 = require("./domains.js");
8
6
  Object.defineProperty(exports, "Domains", { enumerable: true, get: function () { return domains_1.Domains; } });
9
7
  var logs_1 = require("./logs.js");
10
8
  Object.defineProperty(exports, "Logs", { enumerable: true, get: function () { return logs_1.Logs; } });
9
+ var releases_1 = require("./releases.js");
10
+ Object.defineProperty(exports, "Releases", { enumerable: true, get: function () { return releases_1.Releases; } });
11
11
  var repo_1 = require("./repo.js");
12
12
  Object.defineProperty(exports, "Repo", { enumerable: true, get: function () { return repo_1.Repo; } });
13
13
  var secrets_1 = require("./secrets.js");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/servers/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAgBuB;AAfrB,0GAAA,WAAW,OAAA;AAgBb,wCASmB;AARjB,kGAAA,OAAO,OAAA;AAST,kCAAwE;AAA/D,4FAAA,IAAI,OAAA;AACb,kCAMgB;AALd,4FAAA,IAAI,OAAA;AAMN,wCAOmB;AANjB,kGAAA,OAAO,OAAA;AAOT,wCAcmB;AAbjB,kGAAA,OAAO,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/servers/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,wCASmB;AARjB,kGAAA,OAAO,OAAA;AAST,kCAAwE;AAA/D,4FAAA,IAAI,OAAA;AACb,0CAgBoB;AAflB,oGAAA,QAAQ,OAAA;AAgBV,kCAMgB;AALd,4FAAA,IAAI,OAAA;AAMN,wCAOmB;AANjB,kGAAA,OAAO,OAAA;AAOT,wCAcmB;AAbjB,kGAAA,OAAO,OAAA"}
@@ -1,7 +1,7 @@
1
1
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
- export { Deployments, } from "./deployments.mjs";
3
2
  export { Domains, } from "./domains.mjs";
4
3
  export { Logs } from "./logs.mjs";
4
+ export { Releases, } from "./releases.mjs";
5
5
  export { Repo, } from "./repo.mjs";
6
6
  export { Secrets, } from "./secrets.mjs";
7
7
  export { Servers, } from "./servers.mjs";
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/servers/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,WAAW,GAeZ;OACM,EACL,OAAO,GAQR;OACM,EAAE,IAAI,EAA4C;OAClD,EACL,IAAI,GAKL;OACM,EACL,OAAO,GAMR;OACM,EACL,OAAO,GAaR"}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/servers/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,OAAO,GAQR;OACM,EAAE,IAAI,EAA4C;OAClD,EACL,QAAQ,GAeT;OACM,EACL,IAAI,GAKL;OACM,EACL,OAAO,GAMR;OACM,EACL,OAAO,GAaR"}
@@ -3,70 +3,69 @@ import { APIPromise } from "../../core/api-promise.mjs";
3
3
  import { Stream } from "../../core/streaming.mjs";
4
4
  import { type Uploadable } from "../../core/uploads.mjs";
5
5
  import { RequestOptions } from "../../internal/request-options.mjs";
6
- export declare class Deployments extends APIResource {
6
+ export declare class Releases extends APIResource {
7
7
  /**
8
8
  * List releases ordered by most recent first. Logs are omitted — fetch a specific
9
9
  * release to see logs.
10
10
  *
11
11
  * @example
12
12
  * ```ts
13
- * const deployments = await client.servers.deployments.list(
13
+ * const releases = await client.servers.releases.list(
14
14
  * 'qualifiedName',
15
15
  * );
16
16
  * ```
17
17
  */
18
- list(qualifiedName: string, options?: RequestOptions): APIPromise<DeploymentListResponse>;
18
+ list(qualifiedName: string, options?: RequestOptions): APIPromise<ReleaseListResponse>;
19
19
  /**
20
20
  * Submit a release via multipart form. Supports hosted (JS module upload),
21
21
  * external (URL), stdio (MCPB bundle), and repo (GitHub build) release types.
22
22
  *
23
23
  * @example
24
24
  * ```ts
25
- * const response = await client.servers.deployments.deploy(
25
+ * const response = await client.servers.releases.deploy(
26
26
  * 'qualifiedName',
27
27
  * { payload: 'payload' },
28
28
  * );
29
29
  * ```
30
30
  */
31
- deploy(qualifiedName: string, body: DeploymentDeployParams, options?: RequestOptions): APIPromise<DeploymentDeployResponse>;
31
+ deploy(qualifiedName: string, body: ReleaseDeployParams, options?: RequestOptions): APIPromise<ReleaseDeployResponse>;
32
32
  /**
33
33
  * Retrieve release details including status, git metadata, pipeline logs, and MCP
34
34
  * endpoint URL.
35
35
  *
36
36
  * @example
37
37
  * ```ts
38
- * const deployment = await client.servers.deployments.get(
39
- * 'id',
40
- * { qualifiedName: 'qualifiedName' },
41
- * );
38
+ * const release = await client.servers.releases.get('id', {
39
+ * qualifiedName: 'qualifiedName',
40
+ * });
42
41
  * ```
43
42
  */
44
- get(id: string, params: DeploymentGetParams, options?: RequestOptions): APIPromise<DeploymentGetResponse>;
43
+ get(id: string, params: ReleaseGetParams, options?: RequestOptions): APIPromise<ReleaseGetResponse>;
45
44
  /**
46
45
  * Resume a paused release (e.g. after OAuth authorization). Use id='latest' to
47
46
  * resume the most recent one.
48
47
  *
49
48
  * @example
50
49
  * ```ts
51
- * const response = await client.servers.deployments.resume(
50
+ * const response = await client.servers.releases.resume(
52
51
  * 'id',
53
52
  * { qualifiedName: 'qualifiedName' },
54
53
  * );
55
54
  * ```
56
55
  */
57
- resume(id: string, params: DeploymentResumeParams, options?: RequestOptions): APIPromise<DeploymentResumeResponse>;
56
+ resume(id: string, params: ReleaseResumeParams, options?: RequestOptions): APIPromise<ReleaseResumeResponse>;
58
57
  /**
59
58
  * Real-time SSE stream of release logs and status updates.
60
59
  *
61
60
  * @example
62
61
  * ```ts
63
- * const response = await client.servers.deployments.stream(
62
+ * const response = await client.servers.releases.stream(
64
63
  * 'id',
65
64
  * { qualifiedName: 'qualifiedName' },
66
65
  * );
67
66
  * ```
68
67
  */
69
- stream(id: string, params: DeploymentStreamParams, options?: RequestOptions): APIPromise<Stream<DeploymentStreamResponse>>;
68
+ stream(id: string, params: ReleaseStreamParams, options?: RequestOptions): APIPromise<Stream<ReleaseStreamResponse>>;
70
69
  }
71
70
  export type DeployPayload = HostedDeployPayload | ExternalDeployPayload | StdioDeployPayload | DeployPayload.RepoDeployPayload;
72
71
  export declare namespace DeployPayload {
@@ -245,9 +244,9 @@ export declare namespace StdioDeployPayload {
245
244
  commit?: string;
246
245
  }
247
246
  }
248
- export type DeploymentListResponse = Array<DeploymentListResponse.DeploymentListResponseItem>;
249
- export declare namespace DeploymentListResponse {
250
- interface DeploymentListResponseItem {
247
+ export type ReleaseListResponse = Array<ReleaseListResponse.ReleaseListResponseItem>;
248
+ export declare namespace ReleaseListResponse {
249
+ interface ReleaseListResponseItem {
251
250
  id: string;
252
251
  /**
253
252
  * ISO 8601 timestamp of when the release was created.
@@ -289,7 +288,7 @@ export declare namespace DeploymentListResponse {
289
288
  upstreamUrl?: string | null;
290
289
  }
291
290
  }
292
- export interface DeploymentDeployResponse {
291
+ export interface ReleaseDeployResponse {
293
292
  /**
294
293
  * Unique identifier for this release.
295
294
  */
@@ -307,7 +306,7 @@ export interface DeploymentDeployResponse {
307
306
  */
308
307
  warnings?: Array<string>;
309
308
  }
310
- export interface DeploymentGetResponse {
309
+ export interface ReleaseGetResponse {
311
310
  id: string;
312
311
  /**
313
312
  * ISO 8601 timestamp of when the release was created.
@@ -342,7 +341,7 @@ export interface DeploymentGetResponse {
342
341
  /**
343
342
  * Pipeline log entries. Only included when fetching a single release.
344
343
  */
345
- logs?: Array<DeploymentGetResponse.Log>;
344
+ logs?: Array<ReleaseGetResponse.Log>;
346
345
  /**
347
346
  * The MCP endpoint URL for connecting to this server.
348
347
  */
@@ -352,7 +351,7 @@ export interface DeploymentGetResponse {
352
351
  */
353
352
  upstreamUrl?: string | null;
354
353
  }
355
- export declare namespace DeploymentGetResponse {
354
+ export declare namespace ReleaseGetResponse {
356
355
  interface Log {
357
356
  /**
358
357
  * Log level: 'start', 'end', 'info', 'success', or 'failure'.
@@ -385,15 +384,15 @@ export declare namespace DeploymentGetResponse {
385
384
  }
386
385
  }
387
386
  }
388
- export interface DeploymentResumeResponse {
387
+ export interface ReleaseResumeResponse {
389
388
  deploymentId: string;
390
389
  status: string;
391
390
  }
392
391
  /**
393
392
  * SSE events: init (with buffered logs), log, status, complete
394
393
  */
395
- export type DeploymentStreamResponse = string;
396
- export interface DeploymentDeployParams {
394
+ export type ReleaseStreamResponse = string;
395
+ export interface ReleaseDeployParams {
397
396
  /**
398
397
  * JSON-encoded release payload. See DeployPayload schema for structure.
399
398
  */
@@ -411,28 +410,28 @@ export interface DeploymentDeployParams {
411
410
  */
412
411
  sourcemap?: Uploadable;
413
412
  }
414
- export interface DeploymentGetParams {
413
+ export interface ReleaseGetParams {
415
414
  /**
416
415
  * The server's qualified name (e.g. 'namespace/server' or 'namespace' for
417
416
  * namespace-only servers). Use %2F to encode the slash.
418
417
  */
419
418
  qualifiedName: string;
420
419
  }
421
- export interface DeploymentResumeParams {
420
+ export interface ReleaseResumeParams {
422
421
  /**
423
422
  * The server's qualified name (e.g. 'namespace/server' or 'namespace' for
424
423
  * namespace-only servers). Use %2F to encode the slash.
425
424
  */
426
425
  qualifiedName: string;
427
426
  }
428
- export interface DeploymentStreamParams {
427
+ export interface ReleaseStreamParams {
429
428
  /**
430
429
  * The server's qualified name (e.g. 'namespace/server' or 'namespace' for
431
430
  * namespace-only servers). Use %2F to encode the slash.
432
431
  */
433
432
  qualifiedName: string;
434
433
  }
435
- export declare namespace Deployments {
436
- export { type DeployPayload as DeployPayload, type ExternalDeployPayload as ExternalDeployPayload, type HostedDeployPayload as HostedDeployPayload, type ServerCard as ServerCard, type StdioDeployPayload as StdioDeployPayload, type DeploymentListResponse as DeploymentListResponse, type DeploymentDeployResponse as DeploymentDeployResponse, type DeploymentGetResponse as DeploymentGetResponse, type DeploymentResumeResponse as DeploymentResumeResponse, type DeploymentStreamResponse as DeploymentStreamResponse, type DeploymentDeployParams as DeploymentDeployParams, type DeploymentGetParams as DeploymentGetParams, type DeploymentResumeParams as DeploymentResumeParams, type DeploymentStreamParams as DeploymentStreamParams, };
434
+ export declare namespace Releases {
435
+ export { type DeployPayload as DeployPayload, type ExternalDeployPayload as ExternalDeployPayload, type HostedDeployPayload as HostedDeployPayload, type ServerCard as ServerCard, type StdioDeployPayload as StdioDeployPayload, type ReleaseListResponse as ReleaseListResponse, type ReleaseDeployResponse as ReleaseDeployResponse, type ReleaseGetResponse as ReleaseGetResponse, type ReleaseResumeResponse as ReleaseResumeResponse, type ReleaseStreamResponse as ReleaseStreamResponse, type ReleaseDeployParams as ReleaseDeployParams, type ReleaseGetParams as ReleaseGetParams, type ReleaseResumeParams as ReleaseResumeParams, type ReleaseStreamParams as ReleaseStreamParams, };
437
436
  }
438
- //# sourceMappingURL=deployments.d.mts.map
437
+ //# sourceMappingURL=releases.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"releases.d.mts","sourceRoot":"","sources":["../../src/resources/servers/releases.ts"],"names":[],"mappings":"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"}
@@ -3,70 +3,69 @@ import { APIPromise } from "../../core/api-promise.js";
3
3
  import { Stream } from "../../core/streaming.js";
4
4
  import { type Uploadable } from "../../core/uploads.js";
5
5
  import { RequestOptions } from "../../internal/request-options.js";
6
- export declare class Deployments extends APIResource {
6
+ export declare class Releases extends APIResource {
7
7
  /**
8
8
  * List releases ordered by most recent first. Logs are omitted — fetch a specific
9
9
  * release to see logs.
10
10
  *
11
11
  * @example
12
12
  * ```ts
13
- * const deployments = await client.servers.deployments.list(
13
+ * const releases = await client.servers.releases.list(
14
14
  * 'qualifiedName',
15
15
  * );
16
16
  * ```
17
17
  */
18
- list(qualifiedName: string, options?: RequestOptions): APIPromise<DeploymentListResponse>;
18
+ list(qualifiedName: string, options?: RequestOptions): APIPromise<ReleaseListResponse>;
19
19
  /**
20
20
  * Submit a release via multipart form. Supports hosted (JS module upload),
21
21
  * external (URL), stdio (MCPB bundle), and repo (GitHub build) release types.
22
22
  *
23
23
  * @example
24
24
  * ```ts
25
- * const response = await client.servers.deployments.deploy(
25
+ * const response = await client.servers.releases.deploy(
26
26
  * 'qualifiedName',
27
27
  * { payload: 'payload' },
28
28
  * );
29
29
  * ```
30
30
  */
31
- deploy(qualifiedName: string, body: DeploymentDeployParams, options?: RequestOptions): APIPromise<DeploymentDeployResponse>;
31
+ deploy(qualifiedName: string, body: ReleaseDeployParams, options?: RequestOptions): APIPromise<ReleaseDeployResponse>;
32
32
  /**
33
33
  * Retrieve release details including status, git metadata, pipeline logs, and MCP
34
34
  * endpoint URL.
35
35
  *
36
36
  * @example
37
37
  * ```ts
38
- * const deployment = await client.servers.deployments.get(
39
- * 'id',
40
- * { qualifiedName: 'qualifiedName' },
41
- * );
38
+ * const release = await client.servers.releases.get('id', {
39
+ * qualifiedName: 'qualifiedName',
40
+ * });
42
41
  * ```
43
42
  */
44
- get(id: string, params: DeploymentGetParams, options?: RequestOptions): APIPromise<DeploymentGetResponse>;
43
+ get(id: string, params: ReleaseGetParams, options?: RequestOptions): APIPromise<ReleaseGetResponse>;
45
44
  /**
46
45
  * Resume a paused release (e.g. after OAuth authorization). Use id='latest' to
47
46
  * resume the most recent one.
48
47
  *
49
48
  * @example
50
49
  * ```ts
51
- * const response = await client.servers.deployments.resume(
50
+ * const response = await client.servers.releases.resume(
52
51
  * 'id',
53
52
  * { qualifiedName: 'qualifiedName' },
54
53
  * );
55
54
  * ```
56
55
  */
57
- resume(id: string, params: DeploymentResumeParams, options?: RequestOptions): APIPromise<DeploymentResumeResponse>;
56
+ resume(id: string, params: ReleaseResumeParams, options?: RequestOptions): APIPromise<ReleaseResumeResponse>;
58
57
  /**
59
58
  * Real-time SSE stream of release logs and status updates.
60
59
  *
61
60
  * @example
62
61
  * ```ts
63
- * const response = await client.servers.deployments.stream(
62
+ * const response = await client.servers.releases.stream(
64
63
  * 'id',
65
64
  * { qualifiedName: 'qualifiedName' },
66
65
  * );
67
66
  * ```
68
67
  */
69
- stream(id: string, params: DeploymentStreamParams, options?: RequestOptions): APIPromise<Stream<DeploymentStreamResponse>>;
68
+ stream(id: string, params: ReleaseStreamParams, options?: RequestOptions): APIPromise<Stream<ReleaseStreamResponse>>;
70
69
  }
71
70
  export type DeployPayload = HostedDeployPayload | ExternalDeployPayload | StdioDeployPayload | DeployPayload.RepoDeployPayload;
72
71
  export declare namespace DeployPayload {
@@ -245,9 +244,9 @@ export declare namespace StdioDeployPayload {
245
244
  commit?: string;
246
245
  }
247
246
  }
248
- export type DeploymentListResponse = Array<DeploymentListResponse.DeploymentListResponseItem>;
249
- export declare namespace DeploymentListResponse {
250
- interface DeploymentListResponseItem {
247
+ export type ReleaseListResponse = Array<ReleaseListResponse.ReleaseListResponseItem>;
248
+ export declare namespace ReleaseListResponse {
249
+ interface ReleaseListResponseItem {
251
250
  id: string;
252
251
  /**
253
252
  * ISO 8601 timestamp of when the release was created.
@@ -289,7 +288,7 @@ export declare namespace DeploymentListResponse {
289
288
  upstreamUrl?: string | null;
290
289
  }
291
290
  }
292
- export interface DeploymentDeployResponse {
291
+ export interface ReleaseDeployResponse {
293
292
  /**
294
293
  * Unique identifier for this release.
295
294
  */
@@ -307,7 +306,7 @@ export interface DeploymentDeployResponse {
307
306
  */
308
307
  warnings?: Array<string>;
309
308
  }
310
- export interface DeploymentGetResponse {
309
+ export interface ReleaseGetResponse {
311
310
  id: string;
312
311
  /**
313
312
  * ISO 8601 timestamp of when the release was created.
@@ -342,7 +341,7 @@ export interface DeploymentGetResponse {
342
341
  /**
343
342
  * Pipeline log entries. Only included when fetching a single release.
344
343
  */
345
- logs?: Array<DeploymentGetResponse.Log>;
344
+ logs?: Array<ReleaseGetResponse.Log>;
346
345
  /**
347
346
  * The MCP endpoint URL for connecting to this server.
348
347
  */
@@ -352,7 +351,7 @@ export interface DeploymentGetResponse {
352
351
  */
353
352
  upstreamUrl?: string | null;
354
353
  }
355
- export declare namespace DeploymentGetResponse {
354
+ export declare namespace ReleaseGetResponse {
356
355
  interface Log {
357
356
  /**
358
357
  * Log level: 'start', 'end', 'info', 'success', or 'failure'.
@@ -385,15 +384,15 @@ export declare namespace DeploymentGetResponse {
385
384
  }
386
385
  }
387
386
  }
388
- export interface DeploymentResumeResponse {
387
+ export interface ReleaseResumeResponse {
389
388
  deploymentId: string;
390
389
  status: string;
391
390
  }
392
391
  /**
393
392
  * SSE events: init (with buffered logs), log, status, complete
394
393
  */
395
- export type DeploymentStreamResponse = string;
396
- export interface DeploymentDeployParams {
394
+ export type ReleaseStreamResponse = string;
395
+ export interface ReleaseDeployParams {
397
396
  /**
398
397
  * JSON-encoded release payload. See DeployPayload schema for structure.
399
398
  */
@@ -411,28 +410,28 @@ export interface DeploymentDeployParams {
411
410
  */
412
411
  sourcemap?: Uploadable;
413
412
  }
414
- export interface DeploymentGetParams {
413
+ export interface ReleaseGetParams {
415
414
  /**
416
415
  * The server's qualified name (e.g. 'namespace/server' or 'namespace' for
417
416
  * namespace-only servers). Use %2F to encode the slash.
418
417
  */
419
418
  qualifiedName: string;
420
419
  }
421
- export interface DeploymentResumeParams {
420
+ export interface ReleaseResumeParams {
422
421
  /**
423
422
  * The server's qualified name (e.g. 'namespace/server' or 'namespace' for
424
423
  * namespace-only servers). Use %2F to encode the slash.
425
424
  */
426
425
  qualifiedName: string;
427
426
  }
428
- export interface DeploymentStreamParams {
427
+ export interface ReleaseStreamParams {
429
428
  /**
430
429
  * The server's qualified name (e.g. 'namespace/server' or 'namespace' for
431
430
  * namespace-only servers). Use %2F to encode the slash.
432
431
  */
433
432
  qualifiedName: string;
434
433
  }
435
- export declare namespace Deployments {
436
- export { type DeployPayload as DeployPayload, type ExternalDeployPayload as ExternalDeployPayload, type HostedDeployPayload as HostedDeployPayload, type ServerCard as ServerCard, type StdioDeployPayload as StdioDeployPayload, type DeploymentListResponse as DeploymentListResponse, type DeploymentDeployResponse as DeploymentDeployResponse, type DeploymentGetResponse as DeploymentGetResponse, type DeploymentResumeResponse as DeploymentResumeResponse, type DeploymentStreamResponse as DeploymentStreamResponse, type DeploymentDeployParams as DeploymentDeployParams, type DeploymentGetParams as DeploymentGetParams, type DeploymentResumeParams as DeploymentResumeParams, type DeploymentStreamParams as DeploymentStreamParams, };
434
+ export declare namespace Releases {
435
+ export { type DeployPayload as DeployPayload, type ExternalDeployPayload as ExternalDeployPayload, type HostedDeployPayload as HostedDeployPayload, type ServerCard as ServerCard, type StdioDeployPayload as StdioDeployPayload, type ReleaseListResponse as ReleaseListResponse, type ReleaseDeployResponse as ReleaseDeployResponse, type ReleaseGetResponse as ReleaseGetResponse, type ReleaseResumeResponse as ReleaseResumeResponse, type ReleaseStreamResponse as ReleaseStreamResponse, type ReleaseDeployParams as ReleaseDeployParams, type ReleaseGetParams as ReleaseGetParams, type ReleaseResumeParams as ReleaseResumeParams, type ReleaseStreamParams as ReleaseStreamParams, };
437
436
  }
438
- //# sourceMappingURL=deployments.d.ts.map
437
+ //# sourceMappingURL=releases.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"releases.d.ts","sourceRoot":"","sources":["../../src/resources/servers/releases.ts"],"names":[],"mappings":"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"}