@backstage/plugin-scaffolder-backend 1.9.0-next.2 → 1.9.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 +79 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +11 -0
- package/dist/index.beta.d.ts +11 -0
- package/dist/index.cjs.js +79 -10
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +11 -0
- package/package.json +18 -18
package/dist/index.d.ts
CHANGED
|
@@ -299,6 +299,7 @@ apps?: string[] | undefined;
|
|
|
299
299
|
} | undefined;
|
|
300
300
|
requiredStatusCheckContexts?: string[] | undefined;
|
|
301
301
|
requireBranchesToBeUpToDate?: boolean | undefined;
|
|
302
|
+
requiredConversationResolution?: boolean | undefined;
|
|
302
303
|
repoVisibility?: "internal" | "private" | "public" | undefined;
|
|
303
304
|
collaborators?: ({
|
|
304
305
|
user: string;
|
|
@@ -311,6 +312,9 @@ access: 'pull' | 'push' | 'admin' | 'maintain' | 'triage';
|
|
|
311
312
|
username: string;
|
|
312
313
|
access: 'pull' | 'push' | 'admin' | 'maintain' | 'triage';
|
|
313
314
|
})[] | undefined;
|
|
315
|
+
hasProjects?: boolean | undefined;
|
|
316
|
+
hasWiki?: boolean | undefined;
|
|
317
|
+
hasIssues?: boolean | undefined;
|
|
314
318
|
token?: string | undefined;
|
|
315
319
|
topics?: string[] | undefined;
|
|
316
320
|
}>;
|
|
@@ -335,6 +339,7 @@ gitCommitMessage?: string | undefined;
|
|
|
335
339
|
gitAuthorName?: string | undefined;
|
|
336
340
|
gitAuthorEmail?: string | undefined;
|
|
337
341
|
requireCodeOwnerReviews?: boolean | undefined;
|
|
342
|
+
dismissStaleReviews?: boolean | undefined;
|
|
338
343
|
bypassPullRequestAllowances?: {
|
|
339
344
|
users?: string[];
|
|
340
345
|
teams?: string[];
|
|
@@ -342,6 +347,7 @@ apps?: string[];
|
|
|
342
347
|
} | undefined;
|
|
343
348
|
requiredStatusCheckContexts?: string[] | undefined;
|
|
344
349
|
requireBranchesToBeUpToDate?: boolean | undefined;
|
|
350
|
+
requiredConversationResolution?: boolean | undefined;
|
|
345
351
|
sourcePath?: string | undefined;
|
|
346
352
|
token?: string | undefined;
|
|
347
353
|
}>;
|
|
@@ -508,8 +514,10 @@ teams?: string[];
|
|
|
508
514
|
apps?: string[];
|
|
509
515
|
} | undefined;
|
|
510
516
|
requireCodeOwnerReviews?: boolean | undefined;
|
|
517
|
+
dismissStaleReviews?: boolean | undefined;
|
|
511
518
|
requiredStatusCheckContexts?: string[] | undefined;
|
|
512
519
|
requireBranchesToBeUpToDate?: boolean | undefined;
|
|
520
|
+
requiredConversationResolution?: boolean | undefined;
|
|
513
521
|
repoVisibility?: "internal" | "private" | "public" | undefined;
|
|
514
522
|
collaborators?: ({
|
|
515
523
|
user: string;
|
|
@@ -522,6 +530,9 @@ access: 'pull' | 'push' | 'admin' | 'maintain' | 'triage';
|
|
|
522
530
|
username: string;
|
|
523
531
|
access: 'pull' | 'push' | 'admin' | 'maintain' | 'triage';
|
|
524
532
|
})[] | undefined;
|
|
533
|
+
hasProjects?: boolean | undefined;
|
|
534
|
+
hasWiki?: boolean | undefined;
|
|
535
|
+
hasIssues?: boolean | undefined;
|
|
525
536
|
token?: string | undefined;
|
|
526
537
|
topics?: string[] | undefined;
|
|
527
538
|
}>;
|
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.9.0
|
|
4
|
+
"version": "1.9.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-common": "^0.17.0
|
|
38
|
-
"@backstage/backend-plugin-api": "^0.2.0
|
|
39
|
-
"@backstage/backend-tasks": "^0.4.0
|
|
40
|
-
"@backstage/catalog-client": "^1.2.0
|
|
41
|
-
"@backstage/catalog-model": "^1.1.4
|
|
42
|
-
"@backstage/config": "^1.0.5
|
|
43
|
-
"@backstage/errors": "^1.1.4
|
|
44
|
-
"@backstage/integration": "^1.4.1
|
|
45
|
-
"@backstage/plugin-auth-node": "^0.2.8
|
|
46
|
-
"@backstage/plugin-catalog-backend": "^1.6.0
|
|
47
|
-
"@backstage/plugin-catalog-node": "^1.3.0
|
|
48
|
-
"@backstage/plugin-scaffolder-common": "^1.2.3
|
|
49
|
-
"@backstage/types": "^1.0.2
|
|
37
|
+
"@backstage/backend-common": "^0.17.0",
|
|
38
|
+
"@backstage/backend-plugin-api": "^0.2.0",
|
|
39
|
+
"@backstage/backend-tasks": "^0.4.0",
|
|
40
|
+
"@backstage/catalog-client": "^1.2.0",
|
|
41
|
+
"@backstage/catalog-model": "^1.1.4",
|
|
42
|
+
"@backstage/config": "^1.0.5",
|
|
43
|
+
"@backstage/errors": "^1.1.4",
|
|
44
|
+
"@backstage/integration": "^1.4.1",
|
|
45
|
+
"@backstage/plugin-auth-node": "^0.2.8",
|
|
46
|
+
"@backstage/plugin-catalog-backend": "^1.6.0",
|
|
47
|
+
"@backstage/plugin-catalog-node": "^1.3.0",
|
|
48
|
+
"@backstage/plugin-scaffolder-common": "^1.2.3",
|
|
49
|
+
"@backstage/types": "^1.0.2",
|
|
50
50
|
"@gitbeaker/core": "^35.6.0",
|
|
51
51
|
"@gitbeaker/node": "^35.1.0",
|
|
52
52
|
"@octokit/webhooks": "^10.0.0",
|
|
@@ -79,11 +79,11 @@
|
|
|
79
79
|
"winston": "^3.2.1",
|
|
80
80
|
"yaml": "^2.0.0",
|
|
81
81
|
"zen-observable": "^0.10.0",
|
|
82
|
-
"zod": "
|
|
82
|
+
"zod": "~3.18.0"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@backstage/backend-test-utils": "^0.1.31
|
|
86
|
-
"@backstage/cli": "^0.
|
|
85
|
+
"@backstage/backend-test-utils": "^0.1.31",
|
|
86
|
+
"@backstage/cli": "^0.22.0",
|
|
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",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"@types/nunjucks": "^3.1.4",
|
|
92
92
|
"@types/supertest": "^2.0.8",
|
|
93
93
|
"@types/zen-observable": "^0.8.0",
|
|
94
|
-
"esbuild": "^0.
|
|
94
|
+
"esbuild": "^0.16.0",
|
|
95
95
|
"jest-when": "^3.1.0",
|
|
96
96
|
"mock-fs": "^5.1.0",
|
|
97
97
|
"msw": "^0.49.0",
|