conare 0.5.18 → 0.5.20
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1898,7 +1898,7 @@ async function promptAuth(options) {
|
|
|
1898
1898
|
}
|
|
1899
1899
|
async function selectChatSources(targets) {
|
|
1900
1900
|
return ensureValue(await fe({
|
|
1901
|
-
message: "Select chat sources to index
|
|
1901
|
+
message: "Select chat sources to index",
|
|
1902
1902
|
required: false,
|
|
1903
1903
|
initialValues: targets.filter((target) => target.available !== false && (target.detectedCount ?? 0) > 0).map((target) => target.id),
|
|
1904
1904
|
options: targets.map((target) => ({
|
|
@@ -1910,7 +1910,7 @@ async function selectChatSources(targets) {
|
|
|
1910
1910
|
}
|
|
1911
1911
|
async function selectMcpTargets(targets) {
|
|
1912
1912
|
return ensureValue(await fe({
|
|
1913
|
-
message: "Select where to install the MCP
|
|
1913
|
+
message: "Select where to install the MCP",
|
|
1914
1914
|
required: false,
|
|
1915
1915
|
initialValues: targets.filter((target) => target.available !== false && (target.detectedCount ?? 0) > 0).map((target) => target.id),
|
|
1916
1916
|
options: targets.map((target) => ({
|