@feedmepos/mf-remy-panel 0.18.0-dev.5 → 0.18.0-dev.6

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/app.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import "vue";
2
- import { C as o, A as p, c as m, i as n, d as u, r as C, u as l, b as A } from "./app-aba90059.js";
2
+ import { C as o, A as p, c as m, i as n, d as u, r as C, u as l, b as A } from "./app-f99554cd.js";
3
3
  import "pinia";
4
4
  import "@feedmepos/mf-common";
5
5
  import "vue-router";
@@ -1,4 +1,16 @@
1
1
  import type { McpPromptArgument } from './types';
2
+ /** Literal suffix this repo's MCP servers append to a prompt argument's
3
+ * description to flag it as accepting MULTIPLE completion picks — MCP's
4
+ * `completion/complete` has no native multi-select concept (confirmed
5
+ * against both the installed SDK's targeted spec version and its `draft`),
6
+ * so this is a repo-local UI convention, not a protocol extension. See
7
+ * `apps/remy-mcp/src/weather/plan-trip-prompt.ts`'s `interests` argument and
8
+ * remy-cli's identical `mcp-prompts.ts` convention. */
9
+ export declare const MCP_PROMPT_MULTI_SELECT_SUFFIX = " (select multiple)";
10
+ export declare function isMultiSelectMcpPromptArg(arg: McpPromptArgument): boolean;
11
+ /** `arg.description` with the multi-select marker suffix stripped, if
12
+ * present — never show the raw marker text to the user. */
13
+ export declare function displayMcpPromptArgDescription(arg: McpPromptArgument): string | undefined;
2
14
  /**
3
15
  * Names of `args` that are `required` but have no value (or only a
4
16
  * blank/whitespace value) in `argValues` yet. Used by `ChatInput.vue` to