/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 7934797b4197 */ import { resolveResolve } from "../funcs/resolveResolve.js"; import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as models from "../models/index.js"; import * as operations from "../models/operations/index.js"; import { unwrapAsync } from "../types/fp.js"; export class Resolve extends ClientSDK { /** * Resolve manager for a project and platform * * @remarks * Returns the manager URL for a given project and platform. The project can be provided as a query parameter, or derived from the token's scope (project-scoped, deployment-group-scoped, or deployment-scoped tokens carry an implicit project). This is the single entry point for all CLI tools to discover which manager to talk to. */ async resolve( request: operations.ResolveRequest, options?: RequestOptions, ): Promise { return unwrapAsync(resolveResolve( this, request, options, )); } }