mnemosyne-core 2.0.0 → 2.0.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.
@@ -137,6 +137,24 @@ interface Config {
137
137
  default_type: string;
138
138
  };
139
139
  }
140
+ declare const TEMPLATES: Record<string, {
141
+ name: string;
142
+ blocks: {
143
+ type: string;
144
+ content: string;
145
+ }[];
146
+ }>;
147
+ declare const ROLE_PERMISSIONS: Record<AssistantRole, {
148
+ actions: Action[];
149
+ pattern: string;
150
+ }>;
151
+ declare const PRIORITY: {
152
+ readonly IMMEDIATE: 0;
153
+ readonly HIGH: 1;
154
+ readonly NORMAL: 2;
155
+ readonly LOW: 3;
156
+ readonly SCHEDULED: 4;
157
+ };
140
158
 
141
159
  /**
142
160
  * Mnemosyne Store Engine
@@ -317,4 +335,4 @@ declare class Store extends EventEmitter {
317
335
  };
318
336
  }
319
337
 
320
- export { type Atom as A, type Config as C, type Project as P, Store as S };
338
+ export { type Assistant as A, type Block as B, type Config as C, type EventLogEntry as E, PRIORITY as P, type QueueEntry as Q, ROLE_PERMISSIONS as R, Store as S, TEMPLATES as T, type Action as a, type AssistantRole as b, type Atom as c, type Bond as d, type PermissionLevel as e, type Project as f };
@@ -137,6 +137,24 @@ interface Config {
137
137
  default_type: string;
138
138
  };
139
139
  }
140
+ declare const TEMPLATES: Record<string, {
141
+ name: string;
142
+ blocks: {
143
+ type: string;
144
+ content: string;
145
+ }[];
146
+ }>;
147
+ declare const ROLE_PERMISSIONS: Record<AssistantRole, {
148
+ actions: Action[];
149
+ pattern: string;
150
+ }>;
151
+ declare const PRIORITY: {
152
+ readonly IMMEDIATE: 0;
153
+ readonly HIGH: 1;
154
+ readonly NORMAL: 2;
155
+ readonly LOW: 3;
156
+ readonly SCHEDULED: 4;
157
+ };
140
158
 
141
159
  /**
142
160
  * Mnemosyne Store Engine
@@ -317,4 +335,4 @@ declare class Store extends EventEmitter {
317
335
  };
318
336
  }
319
337
 
320
- export { type Atom as A, type Config as C, type Project as P, Store as S };
338
+ export { type Assistant as A, type Block as B, type Config as C, type EventLogEntry as E, PRIORITY as P, type QueueEntry as Q, ROLE_PERMISSIONS as R, Store as S, TEMPLATES as T, type Action as a, type AssistantRole as b, type Atom as c, type Bond as d, type PermissionLevel as e, type Project as f };