@backstage/plugin-scaffolder-backend-module-github 0.5.0-next.1 → 0.5.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 +13 -0
- package/dist/index.cjs.js +17 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +6 -0
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -103,6 +103,9 @@ declare function createGithubRepoCreateAction(options: {
|
|
|
103
103
|
includeClaimKeys?: string[] | undefined;
|
|
104
104
|
} | undefined;
|
|
105
105
|
requireCommitSigning?: boolean | undefined;
|
|
106
|
+
customProperties?: {
|
|
107
|
+
[key: string]: string;
|
|
108
|
+
} | undefined;
|
|
106
109
|
}, _backstage_types.JsonObject>;
|
|
107
110
|
|
|
108
111
|
/**
|
|
@@ -343,6 +346,9 @@ declare function createPublishGithubAction(options: {
|
|
|
343
346
|
includeClaimKeys?: string[] | undefined;
|
|
344
347
|
} | undefined;
|
|
345
348
|
requiredCommitSigning?: boolean | undefined;
|
|
349
|
+
customProperties?: {
|
|
350
|
+
[key: string]: string;
|
|
351
|
+
} | undefined;
|
|
346
352
|
}, _backstage_types.JsonObject>;
|
|
347
353
|
|
|
348
354
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-github",
|
|
3
|
-
"version": "0.5.0-next.
|
|
3
|
+
"version": "0.5.0-next.2",
|
|
4
4
|
"description": "The github module for @backstage/plugin-scaffolder-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"test": "backstage-cli package test"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@backstage/backend-common": "^0.25.0-next.
|
|
43
|
-
"@backstage/backend-plugin-api": "^0.
|
|
42
|
+
"@backstage/backend-common": "^0.25.0-next.2",
|
|
43
|
+
"@backstage/backend-plugin-api": "^1.0.0-next.2",
|
|
44
44
|
"@backstage/config": "^1.2.0",
|
|
45
45
|
"@backstage/errors": "^1.2.4",
|
|
46
|
-
"@backstage/integration": "^1.
|
|
47
|
-
"@backstage/plugin-scaffolder-node": "^0.4.11-next.
|
|
46
|
+
"@backstage/integration": "^1.15.0-next.0",
|
|
47
|
+
"@backstage/plugin-scaffolder-node": "^0.4.11-next.2",
|
|
48
48
|
"@octokit/webhooks": "^10.0.0",
|
|
49
49
|
"libsodium-wrappers": "^0.7.11",
|
|
50
50
|
"octokit": "^3.0.0",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"yaml": "^2.0.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@backstage/backend-test-utils": "^0.
|
|
56
|
-
"@backstage/cli": "^0.27.1-next.
|
|
57
|
-
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.12-next.
|
|
55
|
+
"@backstage/backend-test-utils": "^1.0.0-next.2",
|
|
56
|
+
"@backstage/cli": "^0.27.1-next.2",
|
|
57
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.1.12-next.2",
|
|
58
58
|
"@types/libsodium-wrappers": "^0.7.10",
|
|
59
59
|
"fs-extra": "^11.2.0",
|
|
60
60
|
"jsonschema": "^1.2.6"
|