@backstage/plugin-scaffolder-backend-module-bitbucket 0.0.0-nightly-20231219021535 → 0.1.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 +4 -4
- package/dist/index.d.ts +3 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-bitbucket
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.1.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
11
|
- Updated dependencies
|
|
12
|
-
- @backstage/backend-common@0.
|
|
13
|
-
- @backstage/plugin-scaffolder-node@0.
|
|
14
|
-
- @backstage/integration@
|
|
12
|
+
- @backstage/backend-common@0.20.0
|
|
13
|
+
- @backstage/plugin-scaffolder-node@0.2.9
|
|
14
|
+
- @backstage/integration@1.8.0
|
|
15
15
|
- @backstage/config@1.1.1
|
|
16
16
|
- @backstage/errors@1.2.3
|
|
17
17
|
|
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ declare function createPublishBitbucketAction(options: {
|
|
|
16
16
|
repoUrl: string;
|
|
17
17
|
description?: string | undefined;
|
|
18
18
|
defaultBranch?: string | undefined;
|
|
19
|
-
repoVisibility?: "
|
|
19
|
+
repoVisibility?: "private" | "public" | undefined;
|
|
20
20
|
sourcePath?: string | undefined;
|
|
21
21
|
enableLFS?: boolean | undefined;
|
|
22
22
|
token?: string | undefined;
|
|
@@ -37,7 +37,7 @@ declare function createPublishBitbucketCloudAction(options: {
|
|
|
37
37
|
repoUrl: string;
|
|
38
38
|
description?: string | undefined;
|
|
39
39
|
defaultBranch?: string | undefined;
|
|
40
|
-
repoVisibility?: "
|
|
40
|
+
repoVisibility?: "private" | "public" | undefined;
|
|
41
41
|
sourcePath?: string | undefined;
|
|
42
42
|
token?: string | undefined;
|
|
43
43
|
}, _backstage_types.JsonObject>;
|
|
@@ -54,7 +54,7 @@ declare function createPublishBitbucketServerAction(options: {
|
|
|
54
54
|
repoUrl: string;
|
|
55
55
|
description?: string | undefined;
|
|
56
56
|
defaultBranch?: string | undefined;
|
|
57
|
-
repoVisibility?: "
|
|
57
|
+
repoVisibility?: "private" | "public" | undefined;
|
|
58
58
|
sourcePath?: string | undefined;
|
|
59
59
|
enableLFS?: boolean | undefined;
|
|
60
60
|
token?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-bitbucket",
|
|
3
3
|
"description": "The bitbucket module for @backstage/plugin-scaffolder-backend",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"postpack": "backstage-cli package postpack"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@backstage/backend-common": "^0.
|
|
26
|
+
"@backstage/backend-common": "^0.20.0",
|
|
27
27
|
"@backstage/config": "^1.1.1",
|
|
28
28
|
"@backstage/errors": "^1.2.3",
|
|
29
|
-
"@backstage/integration": "^
|
|
30
|
-
"@backstage/plugin-scaffolder-node": "^0.
|
|
29
|
+
"@backstage/integration": "^1.8.0",
|
|
30
|
+
"@backstage/plugin-scaffolder-node": "^0.2.9",
|
|
31
31
|
"node-fetch": "^2.6.7",
|
|
32
32
|
"yaml": "^2.0.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@backstage/backend-test-utils": "^0.
|
|
36
|
-
"@backstage/cli": "^0.
|
|
35
|
+
"@backstage/backend-test-utils": "^0.2.9",
|
|
36
|
+
"@backstage/cli": "^0.25.0",
|
|
37
37
|
"msw": "^1.0.0"
|
|
38
38
|
},
|
|
39
39
|
"files": [
|