You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Successfully dropped the index from the provided namespace.",
77
+
JSON.stringify({
78
+
indexName,
79
+
namespace: `${database}.${collection}`,
80
+
})
81
+
),
82
+
};
83
+
}
84
+
85
+
protectedgetConfirmationMessage({
86
+
database,
87
+
collection,
88
+
indexName,
89
+
type,
90
+
}: ToolArgs<typeofthis.argsShape>): string{
39
91
return(
40
-
`You are about to drop the \`${indexName}\` index from the \`${database}.${collection}\` namespace:\n\n`+
92
+
`You are about to drop the ${type==="search" ? "search index" : "index"} named \`${indexName}\` from the \`${database}.${collection}\` namespace:\n\n`+
41
93
"This operation will permanently remove the index and might affect the performance of queries relying on this index.\n\n"+
0 commit comments