@backstage/plugin-scaffolder-backend 1.10.0-next.1 → 1.10.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 +87 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +4 -0
- package/dist/index.beta.d.ts +4 -0
- package/dist/index.cjs.js +138 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -1045,6 +1045,10 @@ export declare class TaskWorker {
|
|
|
1045
1045
|
export declare type TemplateAction<Input extends JsonObject> = {
|
|
1046
1046
|
id: string;
|
|
1047
1047
|
description?: string;
|
|
1048
|
+
examples?: {
|
|
1049
|
+
description: string;
|
|
1050
|
+
example: string;
|
|
1051
|
+
}[];
|
|
1048
1052
|
supportsDryRun?: boolean;
|
|
1049
1053
|
schema?: {
|
|
1050
1054
|
input?: Schema;
|
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.10.0-next.
|
|
4
|
+
"version": "1.10.0-next.2",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-common": "^0.18.0-next.
|
|
38
|
-
"@backstage/backend-plugin-api": "^0.
|
|
39
|
-
"@backstage/backend-tasks": "^0.4.1-next.
|
|
40
|
-
"@backstage/catalog-client": "^1.3.0-next.
|
|
37
|
+
"@backstage/backend-common": "^0.18.0-next.1",
|
|
38
|
+
"@backstage/backend-plugin-api": "^0.3.0-next.1",
|
|
39
|
+
"@backstage/backend-tasks": "^0.4.1-next.1",
|
|
40
|
+
"@backstage/catalog-client": "^1.3.0-next.2",
|
|
41
41
|
"@backstage/catalog-model": "^1.1.5-next.1",
|
|
42
42
|
"@backstage/config": "^1.0.6-next.0",
|
|
43
43
|
"@backstage/errors": "^1.1.4",
|
|
44
44
|
"@backstage/integration": "^1.4.2-next.0",
|
|
45
|
-
"@backstage/plugin-auth-node": "^0.2.9-next.
|
|
46
|
-
"@backstage/plugin-catalog-backend": "^1.7.0-next.
|
|
47
|
-
"@backstage/plugin-catalog-node": "^1.3.1-next.
|
|
45
|
+
"@backstage/plugin-auth-node": "^0.2.9-next.1",
|
|
46
|
+
"@backstage/plugin-catalog-backend": "^1.7.0-next.2",
|
|
47
|
+
"@backstage/plugin-catalog-node": "^1.3.1-next.2",
|
|
48
48
|
"@backstage/plugin-scaffolder-common": "^1.2.4-next.1",
|
|
49
49
|
"@backstage/types": "^1.0.2",
|
|
50
50
|
"@gitbeaker/core": "^35.6.0",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"zod": "~3.18.0"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@backstage/backend-test-utils": "^0.1.32-next.
|
|
86
|
-
"@backstage/cli": "^0.22.1-next.
|
|
85
|
+
"@backstage/backend-test-utils": "^0.1.32-next.2",
|
|
86
|
+
"@backstage/cli": "^0.22.1-next.2",
|
|
87
87
|
"@types/command-exists": "^1.2.0",
|
|
88
88
|
"@types/fs-extra": "^9.0.1",
|
|
89
89
|
"@types/git-url-parse": "^9.0.0",
|