@feedmepos/mf-remy-panel 0.18.0-dev.4 → 0.18.0-dev.5
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/{HomeView-1b85fcce.js → HomeView-07d2f6c0.js} +1 -1
- package/dist/{RemyButton-3121f8b5.js → RemyButton-35134fe9.js} +1 -1
- package/dist/api/memory.d.ts +1 -13
- package/dist/{app-fed1e7f2.js → app-aba90059.js} +7429 -7425
- package/dist/app.js +1 -1
- package/dist/components/chatPanel/MemoryFactsBadge.vue.d.ts +4 -1
- package/dist/components/chatPanel/actionCards/McpAppCard.vue.d.ts +9 -0
- package/dist/stores/previewStore.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/types/chat.d.ts +5 -2
- package/package.json +1 -1
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-
|
|
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";
|
|
3
3
|
import "pinia";
|
|
4
4
|
import "@feedmepos/mf-common";
|
|
5
5
|
import "vue-router";
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
interface Props {
|
|
2
|
-
|
|
2
|
+
context: {
|
|
3
|
+
facts?: string;
|
|
4
|
+
episodes?: string;
|
|
5
|
+
};
|
|
3
6
|
}
|
|
4
7
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5
8
|
export default _default;
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Renders a tool call's MCP Apps (SEP-1865) UI resource.
|
|
3
|
+
*
|
|
4
|
+
* `sandbox="allow-downloads"` and nothing else: scripts, forms, same-origin
|
|
5
|
+
* and top-navigation all stay blocked, but a card whose point is handing the
|
|
6
|
+
* user a file (menu-mcp's `buildMenuPortalImport` download card) needs this
|
|
7
|
+
* one token — without it Chrome blocks the download the click starts, since
|
|
8
|
+
* the frame initiating it is sandboxed.
|
|
9
|
+
*/
|
|
1
10
|
import type { ToolCall } from '@/types/chat';
|
|
2
11
|
interface Props {
|
|
3
12
|
toolCall: ToolCall;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ReportArtifactResult, ExcelExportActionCardResult, RcaInsightCardResult } from '@/types/chat';
|
|
2
|
-
export type PreviewPage = 'all-sessions' | 'tasks' | 'integrations' | 'memory';
|
|
2
|
+
export type PreviewPage = 'all-sessions' | 'tasks' | 'integrations' | 'dreamer' | 'memory';
|
|
3
3
|
export type AllSessionsTab = 'all' | 'this';
|
|
4
4
|
export type PreviewFocus = {
|
|
5
5
|
kind: 'docx';
|