@lingk/sync 2.0.9 → 2.0.11

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.
@@ -6330,14 +6330,13 @@ module.exports =
6330
6330
  var isGoogle = config.type.startsWith("Google");
6331
6331
 
6332
6332
  var isAdapter = config && (config.metadataEndpoint === "testconnection" || config.metadataEndpoint === "adaptermetadata");
6333
-
6334
6333
  var isWebSocket = config.type === "LingkWebSocket";
6335
6334
  var isAWS = config.type.startsWith("AWS");
6336
-
6335
+ var isMSSQL = config.type.startsWith("sqlserver");
6337
6336
  var isSFTP = config.type === "SFTP";
6338
6337
 
6339
6338
  var isDocuSign = config.type === "DocuSign";
6340
- var noRootUrl = isSFTP || isAWS;
6339
+ var noRootUrl = isSFTP || isAWS || isMSSQL;
6341
6340
  var credsDisabledCheck = config && config.credentials && config.credentials.some(function (c) {
6342
6341
  var formCreds = creds;
6343
6342
  return !Object.keys(formCreds).includes(c.split(" ").join(""));