@feedmepos/mf-remy-panel 0.0.10 → 0.0.13
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-2cbfb6a8.js +70 -0
- package/dist/RemyButton-eb8feacd.js +9 -0
- package/dist/RemyButton.vue_vue_type_script_setup_true_lang-87b45b94.js +62 -0
- package/dist/{app-ac8de4b8.js → app-9ddd98c1.js} +207 -204
- package/dist/app.d.ts +5 -4
- package/dist/app.js +8 -7
- package/dist/stores/remyStore.d.ts +1 -0
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/HomeView-edf61a6f.js +0 -125
package/dist/app.d.ts
CHANGED
|
@@ -29,10 +29,6 @@ export declare const i18nMessages: {
|
|
|
29
29
|
close: string;
|
|
30
30
|
historyTitle: string;
|
|
31
31
|
noHistory: string;
|
|
32
|
-
/**
|
|
33
|
-
* Initialize Remy Chat with participants and commands
|
|
34
|
-
* @param backendUrl - The Remy backend API URL
|
|
35
|
-
*/
|
|
36
32
|
emptySession: string;
|
|
37
33
|
untitledSession: string;
|
|
38
34
|
messages: string;
|
|
@@ -103,6 +99,11 @@ export declare const RemyChatPanel: import("vue").DefineComponent<{}, {}, {}, {}
|
|
|
103
99
|
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
104
100
|
onClose?: (() => any) | undefined;
|
|
105
101
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
102
|
+
export declare const RemyButton: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
103
|
+
click: () => void;
|
|
104
|
+
}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{
|
|
105
|
+
onClick?: (() => any) | undefined;
|
|
106
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
106
107
|
/**
|
|
107
108
|
* Initialize Remy Chat with participants and commands
|
|
108
109
|
* @param backendUrl - The Remy backend API URL
|
package/dist/app.js
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import "vue";
|
|
2
|
-
import { A as
|
|
2
|
+
import { A as r, b as o, R as p, i as R, c as n, r as u, u as y } from "./app-9ddd98c1.js";
|
|
3
3
|
import "@feedmepos/mf-common";
|
|
4
4
|
import "pinia";
|
|
5
5
|
import "vue-router";
|
|
6
6
|
export {
|
|
7
|
-
|
|
8
|
-
o as
|
|
9
|
-
p as
|
|
10
|
-
R as
|
|
11
|
-
n as
|
|
12
|
-
u as
|
|
7
|
+
r as FmApp,
|
|
8
|
+
o as RemyButton,
|
|
9
|
+
p as RemyChatPanel,
|
|
10
|
+
R as i18nMessages,
|
|
11
|
+
n as initializeRemyChat,
|
|
12
|
+
u as router,
|
|
13
|
+
y as useRemyStore
|
|
13
14
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { RemyPriceResult, RemyDescriptionResult, RemyInventoryForecastResult, RemyPurchaseOrderForecastResult } from '@feedmepos/remy-core';
|
|
2
2
|
interface ActivateOptionsBase {
|
|
3
3
|
context?: any;
|
|
4
|
+
autoSend?: boolean;
|
|
4
5
|
}
|
|
5
6
|
interface ActivateOptionsSuggestPrice extends ActivateOptionsBase {
|
|
6
7
|
command: 'suggestPrice';
|