@backstage/plugin-scaffolder-backend 1.0.1-next.0 → 1.1.0-next.1
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 +14 -0
- package/dist/index.cjs.js +30 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -479,6 +479,7 @@ declare const createPublishGithubPullRequestAction: ({ integrations, githubCrede
|
|
|
479
479
|
branchName: string;
|
|
480
480
|
description: string;
|
|
481
481
|
repoUrl: string;
|
|
482
|
+
draft?: boolean | undefined;
|
|
482
483
|
targetPath?: string | undefined;
|
|
483
484
|
sourcePath?: string | undefined;
|
|
484
485
|
token?: string | undefined;
|
|
@@ -499,6 +500,9 @@ declare function createPublishGitlabAction(options: {
|
|
|
499
500
|
repoVisibility?: "internal" | "private" | "public" | undefined;
|
|
500
501
|
sourcePath?: string | undefined;
|
|
501
502
|
token?: string | undefined;
|
|
503
|
+
gitCommitMessage?: string | undefined;
|
|
504
|
+
gitAuthorName?: string | undefined;
|
|
505
|
+
gitAuthorEmail?: string | undefined;
|
|
502
506
|
}>;
|
|
503
507
|
|
|
504
508
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that helps you create new things",
|
|
4
|
-
"version": "1.0
|
|
4
|
+
"version": "1.1.0-next.1",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-common": "^0.13.2-next.
|
|
37
|
+
"@backstage/backend-common": "^0.13.2-next.1",
|
|
38
38
|
"@backstage/catalog-client": "^1.0.1-next.0",
|
|
39
39
|
"@backstage/catalog-model": "^1.0.1-next.0",
|
|
40
40
|
"@backstage/config": "^1.0.0",
|
|
41
41
|
"@backstage/errors": "^1.0.0",
|
|
42
|
-
"@backstage/integration": "^1.0
|
|
43
|
-
"@backstage/plugin-catalog-backend": "^1.0
|
|
42
|
+
"@backstage/integration": "^1.1.0-next.1",
|
|
43
|
+
"@backstage/plugin-catalog-backend": "^1.1.0-next.1",
|
|
44
44
|
"@backstage/plugin-scaffolder-common": "^1.0.1-next.0",
|
|
45
45
|
"@backstage/types": "^1.0.0",
|
|
46
46
|
"@gitbeaker/core": "^34.6.0",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"zen-observable": "^0.8.15"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@backstage/backend-test-utils": "^0.1.23-next.
|
|
78
|
-
"@backstage/cli": "^0.
|
|
77
|
+
"@backstage/backend-test-utils": "^0.1.23-next.1",
|
|
78
|
+
"@backstage/cli": "^0.17.0-next.1",
|
|
79
79
|
"@types/command-exists": "^1.2.0",
|
|
80
80
|
"@types/fs-extra": "^9.0.1",
|
|
81
81
|
"@types/git-url-parse": "^9.0.0",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"assets"
|
|
98
98
|
],
|
|
99
99
|
"configSchema": "config.d.ts",
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "57d12dcc35aeb6c33b09e51d1efc3408c574f109"
|
|
101
101
|
}
|