@backstage/plugin-scaffolder-backend 1.4.0 → 1.5.0-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 +20 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +17 -0
- package/dist/index.beta.d.ts +17 -0
- package/dist/index.cjs.js +875 -294
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +17 -0
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -441,6 +441,22 @@ gitAuthorEmail?: string | undefined;
|
|
|
441
441
|
sourcePath?: string | undefined;
|
|
442
442
|
}>;
|
|
443
443
|
|
|
444
|
+
/**
|
|
445
|
+
* Creates a new action that creates a Gerrit review
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
export declare function createPublishGerritReviewAction(options: {
|
|
449
|
+
integrations: ScmIntegrationRegistry;
|
|
450
|
+
config: Config;
|
|
451
|
+
}): TemplateAction< {
|
|
452
|
+
repoUrl: string;
|
|
453
|
+
branch?: string | undefined;
|
|
454
|
+
sourcePath?: string | undefined;
|
|
455
|
+
gitCommitMessage?: string | undefined;
|
|
456
|
+
gitAuthorName?: string | undefined;
|
|
457
|
+
gitAuthorEmail?: string | undefined;
|
|
458
|
+
}>;
|
|
459
|
+
|
|
444
460
|
/**
|
|
445
461
|
* Creates a new action that initializes a git repository of the content in the workspace
|
|
446
462
|
* and publishes it to GitHub.
|
|
@@ -534,6 +550,7 @@ description: string;
|
|
|
534
550
|
branchName: string;
|
|
535
551
|
targetPath: string;
|
|
536
552
|
token?: string | undefined;
|
|
553
|
+
commitAction?: "update" | "create" | "delete" | undefined;
|
|
537
554
|
/** @deprecated Use projectPath instead */
|
|
538
555
|
projectid?: string | undefined;
|
|
539
556
|
removeSourceBranch?: boolean | undefined;
|
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.
|
|
4
|
+
"version": "1.5.0-next.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@backstage/backend-common": "^0.
|
|
39
|
-
"@backstage/backend-plugin-api": "^0.1.0",
|
|
38
|
+
"@backstage/backend-common": "^0.15.0-next.0",
|
|
39
|
+
"@backstage/backend-plugin-api": "^0.1.1-next.0",
|
|
40
40
|
"@backstage/catalog-client": "^1.0.4",
|
|
41
41
|
"@backstage/catalog-model": "^1.1.0",
|
|
42
42
|
"@backstage/config": "^1.0.1",
|
|
43
43
|
"@backstage/errors": "^1.1.0",
|
|
44
|
-
"@backstage/integration": "^1.
|
|
45
|
-
"@backstage/plugin-catalog-backend": "^1.3.0",
|
|
46
|
-
"@backstage/plugin-catalog-node": "^1.0.0",
|
|
44
|
+
"@backstage/integration": "^1.3.0-next.0",
|
|
45
|
+
"@backstage/plugin-catalog-backend": "^1.3.1-next.0",
|
|
46
|
+
"@backstage/plugin-catalog-node": "^1.0.1-next.0",
|
|
47
47
|
"@backstage/plugin-scaffolder-common": "^1.1.2",
|
|
48
48
|
"@backstage/types": "^1.0.0",
|
|
49
49
|
"@gitbeaker/core": "^35.6.0",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"zod": "^3.11.6"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@backstage/backend-test-utils": "^0.1.
|
|
83
|
-
"@backstage/cli": "^0.18.0",
|
|
82
|
+
"@backstage/backend-test-utils": "^0.1.27-next.0",
|
|
83
|
+
"@backstage/cli": "^0.18.1-next.0",
|
|
84
84
|
"@types/command-exists": "^1.2.0",
|
|
85
85
|
"@types/fs-extra": "^9.0.1",
|
|
86
86
|
"@types/git-url-parse": "^9.0.0",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"assets"
|
|
104
104
|
],
|
|
105
105
|
"configSchema": "config.d.ts",
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "fc3229c49caf6eced02ed9516199015bf4682664"
|
|
107
107
|
}
|