@backstage/integration 1.12.0-next.1 → 1.13.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/dist/index.d.ts CHANGED
@@ -462,6 +462,10 @@ type BitbucketCloudIntegrationConfig = {
462
462
  * See https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/
463
463
  */
464
464
  appPassword?: string;
465
+ /**
466
+ * The access token to use for requests to Bitbucket Cloud (bitbucket.org).
467
+ */
468
+ token?: string;
465
469
  };
466
470
  /**
467
471
  * Reads a single Bitbucket Cloud integration config.
@@ -678,12 +682,11 @@ type GerritIntegrationConfig = {
678
682
  */
679
683
  cloneUrl?: string;
680
684
  /**
681
- * Optional base url for Gitiles. This is needed for creating a valid
685
+ * Base url for Gitiles. This is needed for creating a valid
682
686
  * user-friendly url that can be used for browsing the content of the
683
- * provider. If not set a default value will be created in the same way
684
- * as the "baseUrl" option.
687
+ * provider.
685
688
  */
686
- gitilesBaseUrl?: string;
689
+ gitilesBaseUrl: string;
687
690
  /**
688
691
  * The username to use for requests to gerrit.
689
692
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/integration",
3
- "version": "1.12.0-next.1",
3
+ "version": "1.13.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.26.7-next.3",
52
- "@backstage/config-loader": "^1.8.1-next.0",
51
+ "@backstage/cli": "^0.26.10-next.0",
52
+ "@backstage/config-loader": "^1.8.1",
53
53
  "@types/luxon": "^3.0.0",
54
54
  "msw": "^1.0.0"
55
55
  },