From 91ffefc3c51e927f79c06c55a6e26f59e926b118 Mon Sep 17 00:00:00 2001 From: Asier Isayas Date: Tue, 11 Aug 2026 11:59:39 -0400 Subject: [PATCH] Reword proxy reference in ConnectionString comment --- src/HostedExplorerChildFrame.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/HostedExplorerChildFrame.ts b/src/HostedExplorerChildFrame.ts index 906e9c6f2..ef147ab32 100644 --- a/src/HostedExplorerChildFrame.ts +++ b/src/HostedExplorerChildFrame.ts @@ -15,8 +15,8 @@ export interface AAD { export interface ConnectionString { authType: AuthType.ConnectionString; // SQL, Tables, and Gremlin sign data-plane requests client-side with the master key and do not need the - // Portal Backend proxy, so they carry no encrypted token. Mongo and Cassandra still use the encrypted - // token because their operations go through the Portal Backend proxy. + // backend proxy, so they carry no encrypted token. Mongo and Cassandra still use the encrypted + // token because their operations go through the backend proxy. encryptedToken?: string; encryptedTokenMetadata: AccessInputMetadata; // Master key is used for the client-side signing path (SQL, Tables, Gremlin). Mongo/Cassandra leave it undefined.