@feedmepos/mf-remy-panel 0.20.0 → 0.21.0-dev.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.
@@ -1,5 +1,5 @@
1
1
  import { defineComponent as C, ref as n, openBlock as l, createElementBlock as i, createElementVNode as e, createVNode as E, createTextVNode as f, createStaticVNode as x, toDisplayString as p, createCommentVNode as r } from "vue";
2
- import { u as w, a as B, b as _, R as N, _ as R } from "./app-5fa59c85.js";
2
+ import { u as w, a as B, b as _, R as N, _ as R } from "./app-32e89eb4.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 m, computed as t, openBlock as s, createElementBlock as l, normalizeClass as n, createVNode as p, createCommentVNode as u } from "vue";
2
- import { u as d, R as g } from "./app-5fa59c85.js";
2
+ import { u as d, R as g } from "./app-32e89eb4.js";
3
3
  import "pinia";
4
4
  import "@feedmepos/mf-common";
5
5
  import "vue-router";
@@ -3,8 +3,6 @@ export interface DreamerWorkItem {
3
3
  title: string;
4
4
  status: 'running' | 'queued';
5
5
  lastMessageAt: string;
6
- leaseUntil: string | null;
7
- leaseOwner: string | null;
8
6
  }
9
7
  export interface DreamerResolvedItem {
10
8
  conversationId: string;
@@ -1,4 +1,4 @@
1
- export type KnownMemoryCategory = 'profile' | 'concern' | 'preference' | 'workflow' | 'goal' | 'experience';
1
+ export type KnownMemoryCategory = 'profile' | 'concern' | 'preference' | 'workflow' | 'goal' | 'misc' | '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';
@@ -7,6 +7,7 @@ export type MemoryStatus = 'active' | 'superseded' | 'archived';
7
7
  export interface MemoryDto {
8
8
  id: string;
9
9
  text: string;
10
+ key?: string;
10
11
  category: MemoryCategory;
11
12
  evidence?: MemoryEvidence;
12
13
  scope: MemoryScope;