@danainnovations/cortex-mcp 1.0.89 → 1.0.90

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.
package/dist/cli.js CHANGED
@@ -878,6 +878,8 @@ function getWizardHtml() {
878
878
  bestbuy: '<svg viewBox="0 0 16 16"><path d="M2 3h12a1 1 0 011 1v8a1 1 0 01-1 1H2a1 1 0 01-1-1V4a1 1 0 011-1zm3 3v4h2V6H5zm4 0v4h2V6H9z"/></svg>',
879
879
  mailchimp: '<svg viewBox="0 0 16 16"><path d="M8 2a6 6 0 100 12A6 6 0 008 2zM6.5 10.5a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm3 0a1.5 1.5 0 110-3 1.5 1.5 0 010 3z"/></svg>',
880
880
  sonance_brand: '<svg viewBox="0 0 16 16"><path d="M2 3a1 1 0 011-1h2a1 1 0 011 1v10a1 1 0 01-1 1H3a1 1 0 01-1-1V3zm5 2a1 1 0 011-1h2a1 1 0 011 1v8a1 1 0 01-1 1H8a1 1 0 01-1-1V5zm5-3a1 1 0 011-1h1a1 1 0 011 1v11a1 1 0 01-1 1h-1a1 1 0 01-1-1V2z"/></svg>',
881
+ concur: '<svg viewBox="0 0 16 16"><path d="M8 1a7 7 0 100 14A7 7 0 008 1zM4 8.5a.5.5 0 010-1h3.5V5a.5.5 0 011 0v3a.5.5 0 01-.5.5H4z"/></svg>',
882
+ databricks: '<svg viewBox="0 0 16 16"><path d="M8 1L2 4.5v2L8 10l6-3.5v-2L8 1zM2 7.5v2L8 13l6-3.5v-2L8 10 2 7.5zM2 10.5v2L8 16l6-3.5v-2L8 13l-6-2.5z"/></svg>',
881
883
  };
882
884
 
883
885
  // \u2500\u2500 Client Icons (inline SVG) \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500
@@ -1073,6 +1075,10 @@ function getWizardHtml() {
1073
1075
  function renderMcpList(container) {
1074
1076
  var enabledList = (state.enabledMcps && state.enabledMcps.length > 0)
1075
1077
  ? state.enabledMcps : ['m365'];
1078
+ // Sonance Brand is always enabled for all users
1079
+ if (enabledList.indexOf('sonance_brand') === -1) {
1080
+ enabledList.push('sonance_brand');
1081
+ }
1076
1082
  var enabledMcps = state.availableMcps.filter(function(m) { return enabledList.indexOf(m.name) !== -1; });
1077
1083
  var disabledMcps = state.availableMcps.filter(function(m) { return enabledList.indexOf(m.name) === -1; });
1078
1084