From f3381d330eab624a616782d9892634ecf795bae7 Mon Sep 17 00:00:00 2001 From: Andre Wanlin Date: Sat, 19 Apr 2025 18:26:34 -0500 Subject: [PATCH] integration - Added missing `organizations` property to `azure` section Signed-off-by: Andre Wanlin --- .changeset/breezy-hotels-deny.md | 5 +++++ packages/integration/config.d.ts | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/breezy-hotels-deny.md diff --git a/.changeset/breezy-hotels-deny.md b/.changeset/breezy-hotels-deny.md new file mode 100644 index 0000000000..13c8b47a7f --- /dev/null +++ b/.changeset/breezy-hotels-deny.md @@ -0,0 +1,5 @@ +--- +'@backstage/integration': patch +--- + +Added missing `organizations` property to `azure` section in `config.d.ts` file diff --git a/packages/integration/config.d.ts b/packages/integration/config.d.ts index 8205e0c71e..9e47e9a0ff 100644 --- a/packages/integration/config.d.ts +++ b/packages/integration/config.d.ts @@ -51,12 +51,13 @@ export interface Config { /** * The credentials to use for requests. If multiple credentials are specified the first one that matches the organization is used. - * If not organization matches the first credential without an organization is used. + * If no organization matches the first credential without an organization is used. * * If no credentials are specified at all, either a default credential (for Azure DevOps) or anonymous access (for Azure DevOps Server) is used. * @deepVisibility secret */ credentials?: { + organizations?: string[]; clientId?: string; clientSecret?: string; tenantId?: string;