Add API Report

Signed-off-by: Dominik Pfaffenbauer <dominik@pfaffenbauer.at>
This commit is contained in:
Dominik Pfaffenbauer
2023-01-09 17:12:55 +01:00
parent 1ad400bb2d
commit a387dd6d89
@@ -0,0 +1,56 @@
## API Report File for "@backstage/plugin-scaffolder-backend-module-gitlab"
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts
import { ScmIntegrationRegistry } from '@backstage/integration';
import { TemplateAction } from '@backstage/plugin-scaffolder-backend';
// Warning: (ae-missing-release-tag) "createGitlabProjectAccessToken" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const createGitlabProjectAccessToken: (options: {
integrations: ScmIntegrationRegistry;
}) => TemplateAction<{
repoUrl: string;
projectId: string | number;
name: string;
accessLevel: number;
scopes: string[];
token?: string | undefined;
}>;
// Warning: (ae-missing-release-tag) "createGitlabProjectDeployToken" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const createGitlabProjectDeployToken: (options: {
integrations: ScmIntegrationRegistry;
}) => TemplateAction<{
repoUrl: string;
projectId: string | number;
name: string;
username: string;
scopes: string[];
token?: string | undefined;
}>;
// Warning: (ae-missing-release-tag) "createGitlabProjectVariable" is part of the package's API, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const createGitlabProjectVariable: (options: {
integrations: ScmIntegrationRegistry;
}) => TemplateAction<{
repoUrl: string;
projectId: string | number;
key: string;
value: string;
variableType: string;
variableProtected: boolean;
masked: boolean;
raw: boolean;
environmentScope: string;
token?: string | undefined;
}>;
// (No @packageDocumentation comment for this package)
```