From be0a22d4f2461d7e39f566d4d7265387416f158c Mon Sep 17 00:00:00 2001 From: Jonathan Roebuck Date: Fri, 19 Sep 2025 09:16:28 +0100 Subject: [PATCH] add visibility annotations Signed-off-by: Jonathan Roebuck --- packages/integration/config.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/integration/config.d.ts b/packages/integration/config.d.ts index 76af358ccb..c85d87144b 100644 --- a/packages/integration/config.d.ts +++ b/packages/integration/config.d.ts @@ -81,17 +81,20 @@ export interface Config { /** * The primary or secondary key for the Azure Storage Account. * Only required if connectionString or SAS token are not specified. + * @visibility secret */ accountKey?: string; /** * A Shared Access Signature (SAS) token for limited access to resources. + * @visibility secret */ sasToken?: string; /** * A full connection string for the Azure Storage Account. * This includes the account name, key, and endpoint details. + * @visibility secret */ connectionString?: string; @@ -103,12 +106,14 @@ export interface Config { /** * The host of the target that this matches on, e.g., "blob.core.windows.net". + * @visibility frontend */ host: string; endpoint?: string; /** * Optional credential to use for Azure Active Directory authentication. + * @deepVisibility secret */ aadCredential?: { /**