@lingk/sync 2.0.9 → 2.0.10

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