@feedmepos/mf-remy-panel 0.2.11 → 0.3.1
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-13dd694a.js +138 -0
- package/dist/RemyButton-73c904bb.js +30 -0
- package/dist/api/conversations.d.ts +21 -0
- package/dist/api/http.d.ts +2 -0
- package/dist/api/messages.d.ts +16 -0
- package/dist/app-722c1500.js +14293 -0
- package/dist/app.d.ts +7 -105
- package/dist/app.js +10 -9
- package/dist/assets/icons/index.d.ts +2 -3
- package/dist/bootstrap/remy.d.ts +5 -0
- package/dist/components/chatPanel/{ToolCallDisplay.vue.d.ts → ActionCard.vue.d.ts} +2 -2
- package/dist/components/chatPanel/ChatInput.vue.d.ts +1 -5
- package/dist/components/chatPanel/ChatMessageAssistant.vue.d.ts +1 -1
- package/dist/components/chatPanel/ChatMessageUser.vue.d.ts +1 -1
- package/dist/components/chatPanel/ChatMessages.vue.d.ts +1 -1
- package/dist/components/chatPanel/MessageContent.vue.d.ts +0 -2
- package/dist/composables/useClientEvent.d.ts +17 -0
- package/dist/locales/index.d.ts +96 -0
- package/dist/stores/appStore.d.ts +28 -0
- package/dist/stores/chatStore.d.ts +190 -0
- package/dist/style.css +2 -2
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/types/chat.d.ts +26 -0
- package/package.json +7 -4
- package/dist/HomeView-290f3cb8.js +0 -172
- package/dist/RemyButton-6b7e14e7.js +0 -65
- package/dist/app-5b4fe84c.js +0 -9468
- package/dist/components/chatPanel/ChatFollowUps.vue.d.ts +0 -20
- package/dist/components/chatPanel/HistoryView.vue.d.ts +0 -8
- package/dist/components/chatPanel/MessageActions.vue.d.ts +0 -16
- package/dist/router/shared.d.ts +0 -2
- package/dist/stores/counter.d.ts +0 -13
- package/dist/stores/remyChat.d.ts +0 -825
- package/dist/stores/remyStore.d.ts +0 -62
- /package/dist/components/chatPanel/{RemyChatPanel.vue.d.ts → ChatPanel.vue.d.ts} +0 -0
- /package/dist/components/chatPanel/{Navigator.vue.d.ts → ConversationList.vue.d.ts} +0 -0
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import type { RemyPriceResult, RemyDescriptionResult, RemyInventoryForecastResult, RemyPurchaseOrderForecastResult, RemyMenuImageResult, ToolDefinition } from '@feedmepos/remy-core';
|
|
2
|
-
interface ActivateOptionsBase {
|
|
3
|
-
context?: any;
|
|
4
|
-
autoSend?: boolean;
|
|
5
|
-
}
|
|
6
|
-
interface ActivateOptionsSuggestPrice extends ActivateOptionsBase {
|
|
7
|
-
command: 'suggestPrice';
|
|
8
|
-
onResult?: (result: RemyPriceResult) => void;
|
|
9
|
-
}
|
|
10
|
-
interface ActivateOptionsSuggestDescription extends ActivateOptionsBase {
|
|
11
|
-
command: 'suggestDescription';
|
|
12
|
-
onResult?: (result: RemyDescriptionResult) => void;
|
|
13
|
-
}
|
|
14
|
-
interface ActivateOptionsForecastInventory extends ActivateOptionsBase {
|
|
15
|
-
command: 'forecastInventory';
|
|
16
|
-
onResult?: (result: RemyInventoryForecastResult) => void;
|
|
17
|
-
}
|
|
18
|
-
interface ActivateOptionsForecastPurchaseOrder extends ActivateOptionsBase {
|
|
19
|
-
command: 'forecastPurchaseOrder';
|
|
20
|
-
onResult?: (result: RemyPurchaseOrderForecastResult) => void;
|
|
21
|
-
}
|
|
22
|
-
interface ActivateOptionsGenerateMenuImage extends ActivateOptionsBase {
|
|
23
|
-
command: 'generateMenuImage';
|
|
24
|
-
onResult?: (result: RemyMenuImageResult) => void;
|
|
25
|
-
}
|
|
26
|
-
interface ActivateOptionsGeneric extends ActivateOptionsBase {
|
|
27
|
-
command?: string;
|
|
28
|
-
onResult?: (result: any) => void;
|
|
29
|
-
}
|
|
30
|
-
type ActivateOptions = ActivateOptionsSuggestPrice | ActivateOptionsSuggestDescription | ActivateOptionsForecastInventory | ActivateOptionsForecastPurchaseOrder | ActivateOptionsGenerateMenuImage | ActivateOptionsGeneric;
|
|
31
|
-
export declare const useRemyStore: import("pinia").StoreDefinition<"remy", Pick<{
|
|
32
|
-
showRemy: import("vue").Ref<boolean, boolean>;
|
|
33
|
-
dialogShowing: import("vue").Ref<boolean, boolean>;
|
|
34
|
-
initialize: () => void;
|
|
35
|
-
activate: (options: ActivateOptions) => void;
|
|
36
|
-
onReady: (callback: () => void) => () => void;
|
|
37
|
-
notifyInitialized: () => void;
|
|
38
|
-
registerMfTool: (definition: ToolDefinition, handler: (params: any) => Promise<any>) => () => void;
|
|
39
|
-
unregisterAllTools: () => void;
|
|
40
|
-
close: () => void;
|
|
41
|
-
}, "showRemy" | "dialogShowing">, Pick<{
|
|
42
|
-
showRemy: import("vue").Ref<boolean, boolean>;
|
|
43
|
-
dialogShowing: import("vue").Ref<boolean, boolean>;
|
|
44
|
-
initialize: () => void;
|
|
45
|
-
activate: (options: ActivateOptions) => void;
|
|
46
|
-
onReady: (callback: () => void) => () => void;
|
|
47
|
-
notifyInitialized: () => void;
|
|
48
|
-
registerMfTool: (definition: ToolDefinition, handler: (params: any) => Promise<any>) => () => void;
|
|
49
|
-
unregisterAllTools: () => void;
|
|
50
|
-
close: () => void;
|
|
51
|
-
}, never>, Pick<{
|
|
52
|
-
showRemy: import("vue").Ref<boolean, boolean>;
|
|
53
|
-
dialogShowing: import("vue").Ref<boolean, boolean>;
|
|
54
|
-
initialize: () => void;
|
|
55
|
-
activate: (options: ActivateOptions) => void;
|
|
56
|
-
onReady: (callback: () => void) => () => void;
|
|
57
|
-
notifyInitialized: () => void;
|
|
58
|
-
registerMfTool: (definition: ToolDefinition, handler: (params: any) => Promise<any>) => () => void;
|
|
59
|
-
unregisterAllTools: () => void;
|
|
60
|
-
close: () => void;
|
|
61
|
-
}, "initialize" | "activate" | "onReady" | "notifyInitialized" | "registerMfTool" | "unregisterAllTools" | "close">>;
|
|
62
|
-
export {};
|
|
File without changes
|
|
File without changes
|