@backstage/integration 1.2.2 → 1.3.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 +40 -0
- package/config.d.ts +10 -0
- package/dist/index.cjs.js +234 -104
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.esm.js +234 -104
- package/dist/index.esm.js.map +1 -1
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -510,6 +510,22 @@ declare type BitbucketServerIntegrationConfig = {
|
|
|
510
510
|
* If no token is specified, anonymous access is used.
|
|
511
511
|
*/
|
|
512
512
|
token?: string;
|
|
513
|
+
/**
|
|
514
|
+
* The credentials for Basic Authentication for requests to a Bitbucket Server provider.
|
|
515
|
+
*
|
|
516
|
+
* If `token` was provided, it will be preferred.
|
|
517
|
+
*
|
|
518
|
+
* See https://developer.atlassian.com/server/bitbucket/how-tos/command-line-rest/#authentication
|
|
519
|
+
*/
|
|
520
|
+
username?: string;
|
|
521
|
+
/**
|
|
522
|
+
* The credentials for Basic Authentication for requests to a Bitbucket Server provider.
|
|
523
|
+
*
|
|
524
|
+
* If `token` was provided, it will be preferred.
|
|
525
|
+
*
|
|
526
|
+
* See https://developer.atlassian.com/server/bitbucket/how-tos/command-line-rest/#authentication
|
|
527
|
+
*/
|
|
528
|
+
password?: string;
|
|
513
529
|
};
|
|
514
530
|
/**
|
|
515
531
|
* Reads a single Bitbucket Server integration config.
|
|
@@ -1167,7 +1183,7 @@ declare class SingleInstanceGithubCredentialsProvider implements GithubCredentia
|
|
|
1167
1183
|
*
|
|
1168
1184
|
* Converts
|
|
1169
1185
|
* from: https://gitlab.example.com/a/b/blob/master/c.yaml
|
|
1170
|
-
* to: https://gitlab.
|
|
1186
|
+
* to: https://gitlab.com/api/v4/projects/projectId/repository/c.yaml?ref=master
|
|
1171
1187
|
* -or-
|
|
1172
1188
|
* from: https://gitlab.com/groupA/teams/teamA/subgroupA/repoA/-/blob/branch/filepath
|
|
1173
1189
|
* to: https://gitlab.com/api/v4/projects/projectId/repository/files/filepath?ref=branch
|