Regenerate API report

Signed-off-by: Jonathan Mezach <jonathan.mezach@rr-wfm.com>
This commit is contained in:
Jonathan Mezach
2023-05-02 13:21:35 +02:00
parent 4ff2cd8197
commit 8d4b350afd
2 changed files with 10 additions and 4 deletions
+8 -4
View File
@@ -26,8 +26,7 @@ export const OCTOPUS_DEPLOY_PROJECT_ID_ANNOTATION = 'octopus.com/project-id';
export interface OctopusDeployApi {
// (undocumented)
getReleaseProgression(opts: {
projectId: string;
spaceId?: string;
projectReference: ProjectReference;
releaseHistoryCount: number;
}): Promise<OctopusProgression>;
}
@@ -44,8 +43,7 @@ export class OctopusDeployClient implements OctopusDeployApi {
});
// (undocumented)
getReleaseProgression(opts: {
projectId: string;
spaceId?: string;
projectReference: ProjectReference;
releaseHistoryCount: number;
}): Promise<OctopusProgression>;
}
@@ -84,5 +82,11 @@ export type OctopusReleaseProgression = {
};
};
// @public (undocumented)
export type ProjectReference = {
projectId: string;
spaceId?: string;
};
// (No @packageDocumentation comment for this package)
```
+2
View File
@@ -21,4 +21,6 @@ export {
export * from './api';
export type { ProjectReference } from './utils/getAnnotationFromEntity';
export { OCTOPUS_DEPLOY_PROJECT_ID_ANNOTATION } from './constants';