@soos-io/api-client
Version:
This is the SOOS API Client for registered clients leveraging the various integrations to the SOOS platform. Register for a free trial today at https://app.soos.io/register
17 lines (16 loc) • 560 B
TypeScript
interface IGetProjectSettingsRequest {
clientId: string;
projectHash: string;
}
interface IGetProjectSettingsResponse {
useLockFile?: boolean;
}
declare class SOOSProjectsApiClient {
private readonly baseUri;
private readonly apiKey;
private readonly client;
constructor(apiKey: string, baseUri?: string);
getProjectSettings({ clientId, projectHash, }: IGetProjectSettingsRequest): Promise<IGetProjectSettingsResponse>;
}
export { IGetProjectSettingsRequest, IGetProjectSettingsResponse };
export default SOOSProjectsApiClient;