Updated apireports.md for octopus plugin

Added public metadata to exported constant

Signed-off-by: Graeme Christie <gchristie@bunnings.com.au>
This commit is contained in:
Graeme Christie
2023-03-28 11:25:10 +08:00
committed by Jonathan Mezach
parent fce43f7023
commit a72f9af55e
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -22,11 +22,15 @@ export const isOctopusDeployAvailable: (entity: Entity) => boolean;
// @public (undocumented)
export const OCTOPUS_DEPLOY_PROJECT_ID_ANNOTATION = 'octopus.com/project-id';
// @public (undocumented)
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>;
}
@@ -44,6 +48,7 @@ export class OctopusDeployClient implements OctopusDeployApi {
// (undocumented)
getReleaseProgression(
projectId: string,
spaceId: string | null,
releaseHistoryCount: number,
): Promise<OctopusProgression>;
}
+1
View File
@@ -16,4 +16,5 @@
/** @public */
export const OCTOPUS_DEPLOY_PROJECT_ID_ANNOTATION = 'octopus.com/project-id';
/** @public */
export const OCTOPUS_DEPLOY_SPACE_ID_ANNOTATION = 'octopus.com/space-id';