@backstage/plugin-scaffolder-backend-module-gitlab 0.4.4-next.1 → 0.4.5-next.0
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 +37 -0
- package/dist/index.cjs.js +430 -22
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -175,7 +175,7 @@ declare const createPublishGitlabMergeRequestAction: (options: {
|
|
|
175
175
|
sourcePath?: string | undefined;
|
|
176
176
|
targetPath?: string | undefined;
|
|
177
177
|
token?: string | undefined;
|
|
178
|
-
commitAction?: "update" | "delete" | "create" | undefined;
|
|
178
|
+
commitAction?: "auto" | "update" | "delete" | "create" | undefined;
|
|
179
179
|
/** @deprecated projectID passed as query parameters in the repoUrl */
|
|
180
180
|
projectid?: string | undefined;
|
|
181
181
|
removeSourceBranch?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-gitlab",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin-module",
|
|
6
6
|
"pluginId": "scaffolder",
|
|
@@ -42,12 +42,12 @@
|
|
|
42
42
|
"test": "backstage-cli package test"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@backstage/backend-common": "^0.23.
|
|
46
|
-
"@backstage/backend-plugin-api": "^0.
|
|
45
|
+
"@backstage/backend-common": "^0.23.4-next.0",
|
|
46
|
+
"@backstage/backend-plugin-api": "^0.7.1-next.0",
|
|
47
47
|
"@backstage/config": "^1.2.0",
|
|
48
48
|
"@backstage/errors": "^1.2.4",
|
|
49
|
-
"@backstage/integration": "^1.
|
|
50
|
-
"@backstage/plugin-scaffolder-node": "^0.4.
|
|
49
|
+
"@backstage/integration": "^1.14.0-next.0",
|
|
50
|
+
"@backstage/plugin-scaffolder-node": "^0.4.9-next.0",
|
|
51
51
|
"@gitbeaker/core": "^35.8.0",
|
|
52
52
|
"@gitbeaker/node": "^35.8.0",
|
|
53
53
|
"@gitbeaker/rest": "^39.25.0",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"zod": "^3.22.4"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@backstage/backend-test-utils": "^0.4.
|
|
60
|
-
"@backstage/cli": "^0.
|
|
61
|
-
"@backstage/core-app-api": "^1.
|
|
62
|
-
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.
|
|
59
|
+
"@backstage/backend-test-utils": "^0.4.5-next.0",
|
|
60
|
+
"@backstage/cli": "^0.27.0-next.0",
|
|
61
|
+
"@backstage/core-app-api": "^1.14.1-next.0",
|
|
62
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.10-next.0"
|
|
63
63
|
}
|
|
64
64
|
}
|