@backstage/plugin-scaffolder-backend 1.4.0-next.3 → 1.4.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 +53 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +8 -0
- package/dist/index.beta.d.ts +8 -0
- package/dist/index.cjs.js +89 -26
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +8 -0
- package/package.json +14 -14
package/dist/index.d.ts
CHANGED
|
@@ -161,7 +161,11 @@ url: string;
|
|
|
161
161
|
targetPath?: string | undefined;
|
|
162
162
|
values: any;
|
|
163
163
|
templateFileExtension?: string | boolean | undefined;
|
|
164
|
+
/**
|
|
165
|
+
* @deprecated This field is deprecated in favor of copyWithoutTemplating.
|
|
166
|
+
*/
|
|
164
167
|
copyWithoutRender?: string[] | undefined;
|
|
168
|
+
copyWithoutTemplating?: string[] | undefined;
|
|
165
169
|
cookiecutterCompat?: boolean | undefined;
|
|
166
170
|
}>;
|
|
167
171
|
|
|
@@ -299,6 +303,7 @@ repoUrl: string;
|
|
|
299
303
|
description?: string | undefined;
|
|
300
304
|
defaultBranch?: string | undefined;
|
|
301
305
|
protectDefaultBranch?: boolean | undefined;
|
|
306
|
+
protectEnforceAdmins?: boolean | undefined;
|
|
302
307
|
gitCommitMessage?: string | undefined;
|
|
303
308
|
gitAuthorName?: string | undefined;
|
|
304
309
|
gitAuthorEmail?: string | undefined;
|
|
@@ -433,6 +438,7 @@ defaultBranch?: string | undefined;
|
|
|
433
438
|
gitCommitMessage?: string | undefined;
|
|
434
439
|
gitAuthorName?: string | undefined;
|
|
435
440
|
gitAuthorEmail?: string | undefined;
|
|
441
|
+
sourcePath?: string | undefined;
|
|
436
442
|
}>;
|
|
437
443
|
|
|
438
444
|
/**
|
|
@@ -451,6 +457,7 @@ description?: string | undefined;
|
|
|
451
457
|
access?: string | undefined;
|
|
452
458
|
defaultBranch?: string | undefined;
|
|
453
459
|
protectDefaultBranch?: boolean | undefined;
|
|
460
|
+
protectEnforceAdmins?: boolean | undefined;
|
|
454
461
|
deleteBranchOnMerge?: boolean | undefined;
|
|
455
462
|
gitCommitMessage?: string | undefined;
|
|
456
463
|
gitAuthorName?: string | undefined;
|
|
@@ -530,6 +537,7 @@ token?: string | undefined;
|
|
|
530
537
|
/** @deprecated Use projectPath instead */
|
|
531
538
|
projectid?: string | undefined;
|
|
532
539
|
removeSourceBranch?: boolean | undefined;
|
|
540
|
+
assignee?: string | undefined;
|
|
533
541
|
}>;
|
|
534
542
|
|
|
535
543
|
/**
|
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.0
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@backstage/backend-common": "^0.14.1
|
|
39
|
-
"@backstage/backend-plugin-api": "^0.1.0
|
|
40
|
-
"@backstage/catalog-client": "^1.0.4
|
|
41
|
-
"@backstage/catalog-model": "^1.1.0
|
|
38
|
+
"@backstage/backend-common": "^0.14.1",
|
|
39
|
+
"@backstage/backend-plugin-api": "^0.1.0",
|
|
40
|
+
"@backstage/catalog-client": "^1.0.4",
|
|
41
|
+
"@backstage/catalog-model": "^1.1.0",
|
|
42
42
|
"@backstage/config": "^1.0.1",
|
|
43
|
-
"@backstage/errors": "^1.1.0
|
|
44
|
-
"@backstage/integration": "^1.2.2
|
|
45
|
-
"@backstage/plugin-catalog-backend": "^1.3.0
|
|
46
|
-
"@backstage/plugin-catalog-node": "^1.0.0
|
|
47
|
-
"@backstage/plugin-scaffolder-common": "^1.1.2
|
|
43
|
+
"@backstage/errors": "^1.1.0",
|
|
44
|
+
"@backstage/integration": "^1.2.2",
|
|
45
|
+
"@backstage/plugin-catalog-backend": "^1.3.0",
|
|
46
|
+
"@backstage/plugin-catalog-node": "^1.0.0",
|
|
47
|
+
"@backstage/plugin-scaffolder-common": "^1.1.2",
|
|
48
48
|
"@backstage/types": "^1.0.0",
|
|
49
49
|
"@gitbeaker/core": "^35.6.0",
|
|
50
50
|
"@gitbeaker/node": "^35.1.0",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"zod": "^3.11.6"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@backstage/backend-test-utils": "^0.1.26
|
|
83
|
-
"@backstage/cli": "^0.18.0
|
|
82
|
+
"@backstage/backend-test-utils": "^0.1.26",
|
|
83
|
+
"@backstage/cli": "^0.18.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",
|
|
@@ -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.44.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": "999878d8f1ae30f6a15925816af2016cb9d717a1"
|
|
107
107
|
}
|