@feedmepos/mf-remy-panel 0.18.0-dev.3 → 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-70f9570b.js → HomeView-07d2f6c0.js} +1 -1
- package/dist/{RemyButton-3538eab4.js → RemyButton-35134fe9.js} +1 -1
- package/dist/api/conversations.d.ts +1 -1
- package/dist/api/memory.d.ts +1 -13
- package/dist/{app-a9672762.js → app-aba90059.js} +7479 -7480
- 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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as C, ref as a, openBlock as l, createElementBlock as i, createElementVNode as e, unref as E, createTextVNode as b, createStaticVNode as x, toDisplayString as p, createCommentVNode as m } from "vue";
|
|
2
|
-
import { u as w, a as B, b as _, R as N, _ as R } from "./app-
|
|
2
|
+
import { u as w, a as B, b as _, R as N, _ as R } from "./app-aba90059.js";
|
|
3
3
|
import "pinia";
|
|
4
4
|
import "@feedmepos/mf-common";
|
|
5
5
|
import "vue-router";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as s, computed as o, openBlock as i, createElementBlock as l, normalizeClass as t, createElementVNode as p, unref as u, createCommentVNode as d } from "vue";
|
|
2
|
-
import { u as y, R as _ } from "./app-
|
|
2
|
+
import { u as y, R as _ } from "./app-aba90059.js";
|
|
3
3
|
import "pinia";
|
|
4
4
|
import "@feedmepos/mf-common";
|
|
5
5
|
import "vue-router";
|
|
@@ -21,5 +21,5 @@ export declare function createConversation(businessId: string, restaurant?: {
|
|
|
21
21
|
id: string;
|
|
22
22
|
name: string;
|
|
23
23
|
}): Promise<ConversationResponseDto>;
|
|
24
|
-
export declare function fetchConversations(businessId: string,
|
|
24
|
+
export declare function fetchConversations(businessId: string, page?: number, limit?: number): Promise<PaginatedConversationsResponseDto>;
|
|
25
25
|
export declare function deleteConversation(conversationId: string, businessId: string): Promise<void>;
|
package/dist/api/memory.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type KnownMemoryCategory = 'profile' | 'concern' | 'preference' | '
|
|
1
|
+
export type KnownMemoryCategory = 'profile' | 'concern' | 'preference' | 'workflow' | 'goal' | 'experience';
|
|
2
2
|
export type MemoryCategory = KnownMemoryCategory | (string & {});
|
|
3
3
|
export type MemoryEvidence = 'explicit' | 'observed' | 'inferred';
|
|
4
4
|
export type KnownMemoryScope = 'general' | 'report' | 'menu' | 'marketing';
|
|
@@ -6,10 +6,6 @@ export type MemoryScope = KnownMemoryScope | (string & {});
|
|
|
6
6
|
export type MemoryStatus = 'active' | 'superseded' | 'archived';
|
|
7
7
|
export interface MemoryDto {
|
|
8
8
|
id: string;
|
|
9
|
-
spaceKey: string;
|
|
10
|
-
subjectKey: string;
|
|
11
|
-
restaurantId?: string;
|
|
12
|
-
restaurantName?: string;
|
|
13
9
|
text: string;
|
|
14
10
|
category: MemoryCategory;
|
|
15
11
|
evidence?: MemoryEvidence;
|
|
@@ -46,10 +42,6 @@ export interface GraphNodeDto {
|
|
|
46
42
|
id: string;
|
|
47
43
|
type: 'memory' | 'episode';
|
|
48
44
|
label: string;
|
|
49
|
-
spaceKey: string;
|
|
50
|
-
subjectKey: string;
|
|
51
|
-
restaurantId?: string;
|
|
52
|
-
restaurantName?: string;
|
|
53
45
|
category?: MemoryCategory;
|
|
54
46
|
scope?: MemoryScope;
|
|
55
47
|
status?: MemoryStatus;
|
|
@@ -63,10 +55,6 @@ export interface MemoryGraphResponse {
|
|
|
63
55
|
}
|
|
64
56
|
export interface EpisodeDto {
|
|
65
57
|
id: string;
|
|
66
|
-
spaceKey: string;
|
|
67
|
-
subjectKey: string;
|
|
68
|
-
restaurantId?: string;
|
|
69
|
-
restaurantName?: string;
|
|
70
58
|
conversationId: string;
|
|
71
59
|
title: string;
|
|
72
60
|
summary: string;
|