@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/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 m, R as o, i as p, b as R, r as n, u } from "./app-ac8de4b8.js";
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
- m as FmApp,
8
- o as RemyChatPanel,
9
- p as i18nMessages,
10
- R as initializeRemyChat,
11
- n as router,
12
- u as useRemyStore
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';