@backstage/plugin-scaffolder-backend-module-gitlab 0.1.0-next.0 → 0.1.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/dist/index.d.ts +4 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.1.0-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-scaffolder-node@0.1.2-next.2
|
|
9
|
+
- @backstage/config@1.0.7
|
|
10
|
+
- @backstage/errors@1.1.5
|
|
11
|
+
- @backstage/integration@1.4.4-next.0
|
|
12
|
+
|
|
13
|
+
## 0.1.0-next.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/plugin-scaffolder-node@0.1.2-next.1
|
|
19
|
+
- @backstage/integration@1.4.4-next.0
|
|
20
|
+
- @backstage/config@1.0.7
|
|
21
|
+
- @backstage/errors@1.1.5
|
|
22
|
+
|
|
3
23
|
## 0.1.0-next.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as _backstage_plugin_scaffolder_node from '@backstage/plugin-scaffolder-node';
|
|
2
|
+
import * as _backstage_types from '@backstage/types';
|
|
2
3
|
import { ScmIntegrationRegistry } from '@backstage/integration';
|
|
3
4
|
|
|
4
5
|
/**
|
|
@@ -16,7 +17,7 @@ declare const createGitlabProjectDeployTokenAction: (options: {
|
|
|
16
17
|
username: string;
|
|
17
18
|
scopes: string[];
|
|
18
19
|
token?: string | undefined;
|
|
19
|
-
}>;
|
|
20
|
+
}, _backstage_types.JsonObject>;
|
|
20
21
|
|
|
21
22
|
/**
|
|
22
23
|
* Creates a `gitlab:create-project-access-token` Scaffolder action.
|
|
@@ -33,7 +34,7 @@ declare const createGitlabProjectAccessTokenAction: (options: {
|
|
|
33
34
|
accessLevel: number;
|
|
34
35
|
scopes: string[];
|
|
35
36
|
token?: string | undefined;
|
|
36
|
-
}>;
|
|
37
|
+
}, _backstage_types.JsonObject>;
|
|
37
38
|
|
|
38
39
|
/**
|
|
39
40
|
* Creates a `gitlab:create-project-variable` Scaffolder action.
|
|
@@ -54,6 +55,6 @@ declare const createGitlabProjectVariableAction: (options: {
|
|
|
54
55
|
raw: boolean;
|
|
55
56
|
environmentScope: string;
|
|
56
57
|
token?: string | undefined;
|
|
57
|
-
}>;
|
|
58
|
+
}, _backstage_types.JsonObject>;
|
|
58
59
|
|
|
59
60
|
export { createGitlabProjectAccessTokenAction, createGitlabProjectDeployTokenAction, createGitlabProjectVariableAction };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-gitlab",
|
|
3
|
-
"version": "0.1.0-next.
|
|
3
|
+
"version": "0.1.0-next.2",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@backstage/config": "^1.0.7",
|
|
35
35
|
"@backstage/errors": "^1.1.5",
|
|
36
|
-
"@backstage/integration": "^1.4.
|
|
37
|
-
"@backstage/plugin-scaffolder-node": "^0.1.2-next.
|
|
36
|
+
"@backstage/integration": "^1.4.4-next.0",
|
|
37
|
+
"@backstage/plugin-scaffolder-node": "^0.1.2-next.2",
|
|
38
38
|
"@gitbeaker/node": "^35.8.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@backstage/backend-common": "^0.18.4-next.
|
|
42
|
-
"@backstage/cli": "^0.22.6-next.
|
|
43
|
-
"@backstage/core-app-api": "^1.7.0-next.
|
|
41
|
+
"@backstage/backend-common": "^0.18.4-next.2",
|
|
42
|
+
"@backstage/cli": "^0.22.6-next.2",
|
|
43
|
+
"@backstage/core-app-api": "^1.7.0-next.2"
|
|
44
44
|
},
|
|
45
45
|
"files": [
|
|
46
46
|
"dist"
|