@backstage/plugin-scaffolder-backend 1.6.0-next.1 → 1.6.0-next.3
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 +42 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +20 -1
- package/dist/index.beta.d.ts +6 -0
- package/dist/index.cjs.js +201 -56
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/package.json +17 -17
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ import { createPullRequest } from 'octokit-plugin-create-pull-request';
|
|
|
15
15
|
import { Entity } from '@backstage/catalog-model';
|
|
16
16
|
import express from 'express';
|
|
17
17
|
import { GithubCredentialsProvider } from '@backstage/integration';
|
|
18
|
+
import { IdentityApi } from '@backstage/plugin-auth-node';
|
|
18
19
|
import { JsonObject } from '@backstage/types';
|
|
19
20
|
import { JsonValue } from '@backstage/types';
|
|
20
21
|
import { Knex } from 'knex';
|
|
@@ -692,6 +693,7 @@ export declare interface RouterOptions {
|
|
|
692
693
|
taskWorkers?: number;
|
|
693
694
|
taskBroker?: TaskBroker;
|
|
694
695
|
additionalTemplateFilters?: Record<string, TemplateFilter>;
|
|
696
|
+
identity?: IdentityApi;
|
|
695
697
|
}
|
|
696
698
|
|
|
697
699
|
/** @public */
|
|
@@ -716,6 +718,10 @@ export declare class ScaffolderEntitiesProcessor implements CatalogProcessor {
|
|
|
716
718
|
postProcessEntity(entity: Entity, _location: LocationSpec, emit: CatalogProcessorEmit): Promise<Entity>;
|
|
717
719
|
}
|
|
718
720
|
|
|
721
|
+
/* Excluded from this release type: scaffolderPlugin */
|
|
722
|
+
|
|
723
|
+
/* Excluded from this release type: ScaffolderPluginOptions */
|
|
724
|
+
|
|
719
725
|
/**
|
|
720
726
|
* SerializedTask
|
|
721
727
|
*
|
package/package.json
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
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.6.0-next.
|
|
4
|
+
"version": "1.6.0-next.3",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
|
-
"private": false,
|
|
9
8
|
"publishConfig": {
|
|
10
9
|
"access": "public",
|
|
11
10
|
"main": "dist/index.cjs.js",
|
|
@@ -35,16 +34,17 @@
|
|
|
35
34
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
36
35
|
},
|
|
37
36
|
"dependencies": {
|
|
38
|
-
"@backstage/backend-common": "^0.15.1-next.
|
|
39
|
-
"@backstage/backend-plugin-api": "^0.1.2-next.
|
|
40
|
-
"@backstage/catalog-client": "^1.0
|
|
41
|
-
"@backstage/catalog-model": "^1.1.0",
|
|
42
|
-
"@backstage/config": "^1.0.
|
|
43
|
-
"@backstage/errors": "^1.1.0",
|
|
44
|
-
"@backstage/integration": "^1.3.1-next.
|
|
45
|
-
"@backstage/plugin-
|
|
46
|
-
"@backstage/plugin-catalog-
|
|
47
|
-
"@backstage/plugin-
|
|
37
|
+
"@backstage/backend-common": "^0.15.1-next.3",
|
|
38
|
+
"@backstage/backend-plugin-api": "^0.1.2-next.2",
|
|
39
|
+
"@backstage/catalog-client": "^1.1.0-next.2",
|
|
40
|
+
"@backstage/catalog-model": "^1.1.1-next.0",
|
|
41
|
+
"@backstage/config": "^1.0.2-next.0",
|
|
42
|
+
"@backstage/errors": "^1.1.1-next.0",
|
|
43
|
+
"@backstage/integration": "^1.3.1-next.2",
|
|
44
|
+
"@backstage/plugin-auth-node": "^0.2.5-next.3",
|
|
45
|
+
"@backstage/plugin-catalog-backend": "^1.4.0-next.3",
|
|
46
|
+
"@backstage/plugin-catalog-node": "^1.1.0-next.2",
|
|
47
|
+
"@backstage/plugin-scaffolder-common": "^1.2.0-next.1",
|
|
48
48
|
"@backstage/types": "^1.0.0",
|
|
49
49
|
"@gitbeaker/core": "^35.6.0",
|
|
50
50
|
"@gitbeaker/node": "^35.1.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"express": "^4.17.1",
|
|
58
58
|
"express-promise-router": "^4.1.0",
|
|
59
59
|
"fs-extra": "10.1.0",
|
|
60
|
-
"git-url-parse": "^
|
|
60
|
+
"git-url-parse": "^13.0.0",
|
|
61
61
|
"globby": "^11.0.0",
|
|
62
62
|
"isbinaryfile": "^5.0.0",
|
|
63
63
|
"isomorphic-git": "^1.8.0",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"zod": "^3.11.6"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@backstage/backend-test-utils": "^0.1.28-next.
|
|
83
|
-
"@backstage/cli": "^0.19.0-next.
|
|
82
|
+
"@backstage/backend-test-utils": "^0.1.28-next.3",
|
|
83
|
+
"@backstage/cli": "^0.19.0-next.3",
|
|
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",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"esbuild": "^0.14.1",
|
|
92
92
|
"jest-when": "^3.1.0",
|
|
93
93
|
"mock-fs": "^5.1.0",
|
|
94
|
-
"msw": "^0.
|
|
94
|
+
"msw": "^0.47.0",
|
|
95
95
|
"supertest": "^6.1.3",
|
|
96
96
|
"yaml": "^2.0.0"
|
|
97
97
|
},
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"assets"
|
|
104
104
|
],
|
|
105
105
|
"configSchema": "config.d.ts",
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "2f458448f850dc68a711e2f31d14a91f96cf175d"
|
|
107
107
|
}
|