@backstage/integration 1.12.0-next.1 → 1.12.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 +26 -0
- package/config.d.ts +5 -0
- package/dist/gerrit/config.esm.js +2 -2
- package/dist/gerrit/config.esm.js.map +1 -1
- package/dist/harness/core.esm.js +1 -1
- package/dist/harness/core.esm.js.map +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -4
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -678,12 +678,11 @@ type GerritIntegrationConfig = {
|
|
|
678
678
|
*/
|
|
679
679
|
cloneUrl?: string;
|
|
680
680
|
/**
|
|
681
|
-
*
|
|
681
|
+
* Base url for Gitiles. This is needed for creating a valid
|
|
682
682
|
* user-friendly url that can be used for browsing the content of the
|
|
683
|
-
* provider.
|
|
684
|
-
* as the "baseUrl" option.
|
|
683
|
+
* provider.
|
|
685
684
|
*/
|
|
686
|
-
gitilesBaseUrl
|
|
685
|
+
gitilesBaseUrl: string;
|
|
687
686
|
/**
|
|
688
687
|
* The username to use for requests to gerrit.
|
|
689
688
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration",
|
|
3
|
-
"version": "1.12.0
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "Helpers for managing integrations towards external systems",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "common-library"
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"luxon": "^3.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/cli": "^0.26.7
|
|
52
|
-
"@backstage/config-loader": "^1.8.1
|
|
51
|
+
"@backstage/cli": "^0.26.7",
|
|
52
|
+
"@backstage/config-loader": "^1.8.1",
|
|
53
53
|
"@types/luxon": "^3.0.0",
|
|
54
54
|
"msw": "^1.0.0"
|
|
55
55
|
},
|