@backstage/plugin-scaffolder-backend 1.12.0-next.1 → 1.12.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 +18 -0
- package/README.md +1 -1
- package/alpha/package.json +1 -1
- package/dist/alpha.cjs.js +15 -11
- package/dist/alpha.cjs.js.map +1 -1
- package/dist/index.cjs.js +15 -11
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +5 -5
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -409,7 +409,7 @@ interface CreateGithubPullRequestActionOptions {
|
|
|
409
409
|
* Creates a Github Pull Request action.
|
|
410
410
|
* @public
|
|
411
411
|
*/
|
|
412
|
-
declare const createPublishGithubPullRequestAction: (
|
|
412
|
+
declare const createPublishGithubPullRequestAction: (options: CreateGithubPullRequestActionOptions) => _backstage_plugin_scaffolder_node.TemplateAction<{
|
|
413
413
|
title: string;
|
|
414
414
|
branchName: string;
|
|
415
415
|
description: string;
|
|
@@ -813,11 +813,11 @@ interface TaskStore {
|
|
|
813
813
|
}): Promise<{
|
|
814
814
|
tasks: SerializedTask[];
|
|
815
815
|
}>;
|
|
816
|
-
emitLogEvent(
|
|
817
|
-
listEvents(
|
|
816
|
+
emitLogEvent(options: TaskStoreEmitOptions): Promise<void>;
|
|
817
|
+
listEvents(options: TaskStoreListEventsOptions): Promise<{
|
|
818
818
|
events: SerializedTaskEvent[];
|
|
819
819
|
}>;
|
|
820
|
-
shutdownTask?(
|
|
820
|
+
shutdownTask?(options: TaskStoreShutDownTaskOptions): Promise<void>;
|
|
821
821
|
}
|
|
822
822
|
|
|
823
823
|
/**
|
|
@@ -866,7 +866,7 @@ declare class DatabaseTaskStore implements TaskStore {
|
|
|
866
866
|
listEvents(options: TaskStoreListEventsOptions): Promise<{
|
|
867
867
|
events: SerializedTaskEvent[];
|
|
868
868
|
}>;
|
|
869
|
-
shutdownTask(
|
|
869
|
+
shutdownTask(options: TaskStoreShutDownTaskOptions): Promise<void>;
|
|
870
870
|
}
|
|
871
871
|
|
|
872
872
|
/**
|
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.12.0-next.
|
|
4
|
+
"version": "1.12.0-next.2",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -44,19 +44,19 @@
|
|
|
44
44
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/backend-common": "^0.18.3-next.
|
|
48
|
-
"@backstage/backend-plugin-api": "^0.4.1-next.
|
|
49
|
-
"@backstage/backend-tasks": "^0.
|
|
47
|
+
"@backstage/backend-common": "^0.18.3-next.2",
|
|
48
|
+
"@backstage/backend-plugin-api": "^0.4.1-next.2",
|
|
49
|
+
"@backstage/backend-tasks": "^0.5.0-next.2",
|
|
50
50
|
"@backstage/catalog-client": "^1.4.0-next.1",
|
|
51
51
|
"@backstage/catalog-model": "^1.2.1-next.1",
|
|
52
52
|
"@backstage/config": "^1.0.7-next.0",
|
|
53
53
|
"@backstage/errors": "^1.1.5-next.0",
|
|
54
54
|
"@backstage/integration": "^1.4.3-next.0",
|
|
55
|
-
"@backstage/plugin-auth-node": "^0.2.12-next.
|
|
56
|
-
"@backstage/plugin-catalog-backend": "^1.8.0-next.
|
|
57
|
-
"@backstage/plugin-catalog-node": "^1.3.4-next.
|
|
55
|
+
"@backstage/plugin-auth-node": "^0.2.12-next.2",
|
|
56
|
+
"@backstage/plugin-catalog-backend": "^1.8.0-next.2",
|
|
57
|
+
"@backstage/plugin-catalog-node": "^1.3.4-next.2",
|
|
58
58
|
"@backstage/plugin-scaffolder-common": "^1.2.6-next.1",
|
|
59
|
-
"@backstage/plugin-scaffolder-node": "^0.1.1-next.
|
|
59
|
+
"@backstage/plugin-scaffolder-node": "^0.1.1-next.2",
|
|
60
60
|
"@backstage/types": "^1.0.2",
|
|
61
61
|
"@gitbeaker/core": "^35.6.0",
|
|
62
62
|
"@gitbeaker/node": "^35.1.0",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"zod": "~3.18.0"
|
|
94
94
|
},
|
|
95
95
|
"devDependencies": {
|
|
96
|
-
"@backstage/backend-test-utils": "^0.1.35-next.
|
|
96
|
+
"@backstage/backend-test-utils": "^0.1.35-next.2",
|
|
97
97
|
"@backstage/cli": "^0.22.4-next.1",
|
|
98
98
|
"@types/command-exists": "^1.2.0",
|
|
99
99
|
"@types/fs-extra": "^9.0.1",
|