@memori.ai/memori-api-client 0.3.1 → 0.3.3
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/types.d.ts +4 -3
- package/package.json +1 -1
- package/src/types.ts +4 -3
package/dist/types.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare type Memori = {
|
|
|
48
48
|
metaverseEnvironment?: string;
|
|
49
49
|
exposed?: boolean;
|
|
50
50
|
properties?: {
|
|
51
|
-
[key: string]:
|
|
51
|
+
[key: string]: any;
|
|
52
52
|
};
|
|
53
53
|
creationTimestamp?: string;
|
|
54
54
|
lastChangeTimestamp?: string;
|
|
@@ -205,6 +205,7 @@ export declare type OpenSession = {
|
|
|
205
205
|
initialContextVars?: {
|
|
206
206
|
[key: string]: string;
|
|
207
207
|
};
|
|
208
|
+
initialQuestion?: string;
|
|
208
209
|
};
|
|
209
210
|
export declare type MemoriSession = {
|
|
210
211
|
sessionID: string;
|
|
@@ -218,7 +219,7 @@ export declare type Medium = {
|
|
|
218
219
|
mimeType: string;
|
|
219
220
|
title?: string;
|
|
220
221
|
properties?: {
|
|
221
|
-
[key: string]:
|
|
222
|
+
[key: string]: any;
|
|
222
223
|
};
|
|
223
224
|
creationTimestamp?: string;
|
|
224
225
|
creationName?: string;
|
|
@@ -489,7 +490,7 @@ export declare type ChatMedium = {
|
|
|
489
490
|
* Key-value pairs for additional structured content storage.
|
|
490
491
|
*/
|
|
491
492
|
properties?: {
|
|
492
|
-
[key: string]:
|
|
493
|
+
[key: string]: any;
|
|
493
494
|
};
|
|
494
495
|
};
|
|
495
496
|
export declare type ChatLogLine = {
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -46,7 +46,7 @@ export declare type Memori = {
|
|
|
46
46
|
publishedInTheMetaverse?: boolean;
|
|
47
47
|
metaverseEnvironment?: string;
|
|
48
48
|
exposed?: boolean;
|
|
49
|
-
properties?: { [key: string]:
|
|
49
|
+
properties?: { [key: string]: any };
|
|
50
50
|
creationTimestamp?: string;
|
|
51
51
|
lastChangeTimestamp?: string;
|
|
52
52
|
blockedUntil?: string;
|
|
@@ -227,6 +227,7 @@ export declare type OpenSession = {
|
|
|
227
227
|
tag?: string;
|
|
228
228
|
pin?: string;
|
|
229
229
|
initialContextVars?: { [key: string]: string };
|
|
230
|
+
initialQuestion?: string;
|
|
230
231
|
};
|
|
231
232
|
|
|
232
233
|
export declare type MemoriSession = {
|
|
@@ -241,7 +242,7 @@ export declare type Medium = {
|
|
|
241
242
|
content?: string;
|
|
242
243
|
mimeType: string;
|
|
243
244
|
title?: string;
|
|
244
|
-
properties?: { [key: string]:
|
|
245
|
+
properties?: { [key: string]: any };
|
|
245
246
|
creationTimestamp?: string;
|
|
246
247
|
creationName?: string;
|
|
247
248
|
lastChangeTimestamp?: string;
|
|
@@ -522,7 +523,7 @@ export type ChatMedium = {
|
|
|
522
523
|
/**
|
|
523
524
|
* Key-value pairs for additional structured content storage.
|
|
524
525
|
*/
|
|
525
|
-
properties?: { [key: string]:
|
|
526
|
+
properties?: { [key: string]: any };
|
|
526
527
|
};
|
|
527
528
|
|
|
528
529
|
export type ChatLogLine = {
|