diff --git a/plugins/octopus-deploy/api-report.md b/plugins/octopus-deploy/api-report.md index 82512ebcef..2a4a60e443 100644 --- a/plugins/octopus-deploy/api-report.md +++ b/plugins/octopus-deploy/api-report.md @@ -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; } @@ -44,6 +48,7 @@ export class OctopusDeployClient implements OctopusDeployApi { // (undocumented) getReleaseProgression( projectId: string, + spaceId: string | null, releaseHistoryCount: number, ): Promise; } diff --git a/plugins/octopus-deploy/src/constants.ts b/plugins/octopus-deploy/src/constants.ts index b7786c3a64..cb3b2356af 100644 --- a/plugins/octopus-deploy/src/constants.ts +++ b/plugins/octopus-deploy/src/constants.ts @@ -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';