From 26d2e605fb28ceeb5348fb7ebbd987120ef12b46 Mon Sep 17 00:00:00 2001 From: Jonathan Mezach Date: Tue, 18 Apr 2023 09:03:26 +0200 Subject: [PATCH] Fix up API report Signed-off-by: Jonathan Mezach --- plugins/octopus-deploy/api-report.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/plugins/octopus-deploy/api-report.md b/plugins/octopus-deploy/api-report.md index 2a4a60e443..96497b6adf 100644 --- a/plugins/octopus-deploy/api-report.md +++ b/plugins/octopus-deploy/api-report.md @@ -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; + getReleaseProgression(opts: { + projectId: string; + spaceId?: string; + releaseHistoryCount: number; + }): Promise; } // @public (undocumented) @@ -46,11 +46,11 @@ export class OctopusDeployClient implements OctopusDeployApi { proxyPathBase?: string; }); // (undocumented) - getReleaseProgression( - projectId: string, - spaceId: string | null, - releaseHistoryCount: number, - ): Promise; + getReleaseProgression(opts: { + projectId: string; + spaceId?: string; + releaseHistoryCount: number; + }): Promise; } // @public (undocumented)