UNPKG

@anthropic-ai/sdk

Version:
55 lines 1.94 kB
"use strict"; // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. Object.defineProperty(exports, "__esModule", { value: true }); exports.DeploymentRuns = void 0; const resource_1 = require("../../core/resource.js"); const pagination_1 = require("../../core/pagination.js"); const headers_1 = require("../../internal/headers.js"); const path_1 = require("../../internal/utils/path.js"); class DeploymentRuns extends resource_1.APIResource { /** * Get Deployment Run * * @example * ```ts * const betaManagedAgentsDeploymentRun = * await client.beta.deploymentRuns.retrieve( * 'deployment_run_id', * ); * ``` */ retrieve(deploymentRunID, params = {}, options) { const { betas } = params ?? {}; return this._client.get((0, path_1.path) `/v1/deployment_runs/${deploymentRunID}?beta=true`, { ...options, headers: (0, headers_1.buildHeaders)([ { 'anthropic-beta': [...(betas ?? []), 'managed-agents-2026-04-01'].toString() }, options?.headers, ]), }); } /** * List Deployment Runs * * @example * ```ts * // Automatically fetches more pages as needed. * for await (const betaManagedAgentsDeploymentRun of client.beta.deploymentRuns.list()) { * // ... * } * ``` */ list(params = {}, options) { const { betas, ...query } = params ?? {}; return this._client.getAPIList('/v1/deployment_runs?beta=true', (pagination_1.PageCursor), { query, ...options, headers: (0, headers_1.buildHeaders)([ { 'anthropic-beta': [...(betas ?? []), 'managed-agents-2026-04-01'].toString() }, options?.headers, ]), }); } } exports.DeploymentRuns = DeploymentRuns; //# sourceMappingURL=deployment-runs.js.map