@backstage/plugin-scaffolder-backend 1.9.0-next.3 → 1.9.1-next.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 +102 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +9 -0
- package/dist/index.beta.d.ts +9 -0
- package/dist/index.cjs.js +60 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +9 -0
- package/package.json +16 -16
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
|
}>;
|
|
@@ -343,6 +347,7 @@ apps?: string[];
|
|
|
343
347
|
} | undefined;
|
|
344
348
|
requiredStatusCheckContexts?: string[] | undefined;
|
|
345
349
|
requireBranchesToBeUpToDate?: boolean | undefined;
|
|
350
|
+
requiredConversationResolution?: boolean | undefined;
|
|
346
351
|
sourcePath?: string | undefined;
|
|
347
352
|
token?: string | undefined;
|
|
348
353
|
}>;
|
|
@@ -512,6 +517,7 @@ requireCodeOwnerReviews?: boolean | undefined;
|
|
|
512
517
|
dismissStaleReviews?: boolean | undefined;
|
|
513
518
|
requiredStatusCheckContexts?: string[] | undefined;
|
|
514
519
|
requireBranchesToBeUpToDate?: boolean | undefined;
|
|
520
|
+
requiredConversationResolution?: boolean | undefined;
|
|
515
521
|
repoVisibility?: "internal" | "private" | "public" | undefined;
|
|
516
522
|
collaborators?: ({
|
|
517
523
|
user: string;
|
|
@@ -524,6 +530,9 @@ access: 'pull' | 'push' | 'admin' | 'maintain' | 'triage';
|
|
|
524
530
|
username: string;
|
|
525
531
|
access: 'pull' | 'push' | 'admin' | 'maintain' | 'triage';
|
|
526
532
|
})[] | undefined;
|
|
533
|
+
hasProjects?: boolean | undefined;
|
|
534
|
+
hasWiki?: boolean | undefined;
|
|
535
|
+
hasIssues?: boolean | undefined;
|
|
527
536
|
token?: string | undefined;
|
|
528
537
|
topics?: string[] | undefined;
|
|
529
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.
|
|
4
|
+
"version": "1.9.1-next.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.
|
|
41
|
-
"@backstage/catalog-model": "^1.1.
|
|
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.
|
|
47
|
-
"@backstage/plugin-catalog-node": "^1.3.
|
|
48
|
-
"@backstage/plugin-scaffolder-common": "^1.2.
|
|
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.3.0-next.0",
|
|
41
|
+
"@backstage/catalog-model": "^1.1.5-next.0",
|
|
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.7.0-next.0",
|
|
47
|
+
"@backstage/plugin-catalog-node": "^1.3.1-next.0",
|
|
48
|
+
"@backstage/plugin-scaffolder-common": "^1.2.4-next.0",
|
|
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",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"zod": "~3.18.0"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@backstage/backend-test-utils": "^0.1.
|
|
86
|
-
"@backstage/cli": "^0.22.
|
|
85
|
+
"@backstage/backend-test-utils": "^0.1.32-next.0",
|
|
86
|
+
"@backstage/cli": "^0.22.1-next.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",
|