Fix up API report

Signed-off-by: Jonathan Mezach <jonathan.mezach@rr-wfm.com>
This commit is contained in:
Jonathan Mezach
2023-04-18 09:03:26 +02:00
parent f1622e1eaf
commit 26d2e605fb
+10 -10
View File
@@ -28,11 +28,11 @@ export const OCTOPUS_DEPLOY_SPACE_ID_ANNOTATION = 'octopus.com/space-id';
// @public (undocumented)
export interface OctopusDeployApi {
// (undocumented)
getReleaseProgression(
projectId: string,
spaceId: string | null,
releaseHistoryCount: number,
): Promise<OctopusProgression>;
getReleaseProgression(opts: {
projectId: string;
spaceId?: string;
releaseHistoryCount: number;
}): Promise<OctopusProgression>;
}
// @public (undocumented)
@@ -46,11 +46,11 @@ export class OctopusDeployClient implements OctopusDeployApi {
proxyPathBase?: string;
});
// (undocumented)
getReleaseProgression(
projectId: string,
spaceId: string | null,
releaseHistoryCount: number,
): Promise<OctopusProgression>;
getReleaseProgression(opts: {
projectId: string;
spaceId?: string;
releaseHistoryCount: number;
}): Promise<OctopusProgression>;
}
// @public (undocumented)