@feedmepos/mf-remy-panel 0.14.0 → 0.15.0-dev.2
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-02ebf585.js → HomeView-b275b60a.js} +62 -50
- package/dist/{RemyButton-119ec49e.js → RemyButton-80aa0ee6.js} +1 -1
- package/dist/api/marketing.d.ts +38 -0
- package/dist/{app-d511549f.js → app-03255a85.js} +9524 -8773
- package/dist/app.js +1 -1
- package/dist/components/chatPanel/commands/AspectRatioAttachment.vue.d.ts +19 -0
- package/dist/components/chatPanel/commands/AttachmentDialog.vue.d.ts +84 -0
- package/dist/components/chatPanel/commands/CampaignAttachment.vue.d.ts +20 -0
- package/dist/components/chatPanel/commands/MarketingMaterialAttachment.vue.d.ts +20 -0
- package/dist/components/chatPanel/commands/ProductsAttachment.vue.d.ts +20 -0
- package/dist/components/chatPanel/commands/registry.d.ts +2 -0
- package/dist/components/chatPanel/commands/types.d.ts +30 -0
- package/dist/composables/useClickOutside.d.ts +19 -0
- package/dist/stores/appStore.d.ts +5 -3
- package/dist/stores/chatStore.d.ts +29 -11
- package/dist/style.css +1 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/types/chat.d.ts +4 -0
- package/package.json +1 -1
package/dist/types/chat.d.ts
CHANGED
|
@@ -176,6 +176,10 @@ export interface ReportTaskOutput {
|
|
|
176
176
|
parts: ReportTaskPart[];
|
|
177
177
|
}
|
|
178
178
|
export type ChatCommand = 'suggestPrice' | 'suggestDescription' | 'modifyImage' | 'askReport' | 'generateMarketingMaterial' | 'editMarketingBanner' | 'editCopy';
|
|
179
|
+
export interface ChatCommandAttachmentPayload {
|
|
180
|
+
key: string;
|
|
181
|
+
value: unknown;
|
|
182
|
+
}
|
|
179
183
|
export interface ChatMessage {
|
|
180
184
|
id: string;
|
|
181
185
|
role: 'user' | 'assistant';
|