@backstage/integration 1.13.0-next.0 → 1.14.0-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 +25 -0
- package/dist/gitlab/core.esm.js +10 -6
- package/dist/gitlab/core.esm.js.map +1 -1
- package/dist/harness/core.esm.js +14 -21
- package/dist/harness/core.esm.js.map +1 -1
- package/dist/helpers.esm.js.map +1 -1
- package/dist/index.cjs.js +23 -26
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1607,7 +1607,7 @@ declare function getGitLabFileFetchUrl(url: string, config: GitLabIntegrationCon
|
|
|
1607
1607
|
* @param config - The relevant provider config
|
|
1608
1608
|
* @public
|
|
1609
1609
|
*/
|
|
1610
|
-
declare function getGitLabRequestOptions(config: GitLabIntegrationConfig): {
|
|
1610
|
+
declare function getGitLabRequestOptions(config: GitLabIntegrationConfig, token?: string): {
|
|
1611
1611
|
headers: Record<string, string>;
|
|
1612
1612
|
};
|
|
1613
1613
|
|
|
@@ -1673,6 +1673,7 @@ declare function readGoogleGcsIntegrationConfig(config: Config): GoogleGcsIntegr
|
|
|
1673
1673
|
*
|
|
1674
1674
|
* Converts
|
|
1675
1675
|
* from: https://app.harness.io/ng/account/accountId/module/code/orgs/orgName/projects/projName/repos/repoName/files/refMain/~/all-apis.yaml
|
|
1676
|
+
* https://qa.harness.io/ng/account/bDCAuAjFSJCLFj_0ug3lCg/module/code/orgs/HiteshTest/repos/impoorter/files/main/~/catalog.yaml
|
|
1676
1677
|
* to: https://app.harness.io/gateway/code/api/v1/repos/accountId/orgName/projName/repoName/+/content/all-apis.yaml?routingId=accountId&include_commit=false&ref=refMain
|
|
1677
1678
|
*
|
|
1678
1679
|
* @param url - A URL pointing to a file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0-next.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.
|
|
52
|
-
"@backstage/config-loader": "^1.8.
|
|
51
|
+
"@backstage/cli": "^0.27.0-next.0",
|
|
52
|
+
"@backstage/config-loader": "^1.8.2-next.0",
|
|
53
53
|
"@types/luxon": "^3.0.0",
|
|
54
54
|
"msw": "^1.0.0"
|
|
55
55
|
},
|