@memori.ai/memori-api-client 0.3.1 → 0.3.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/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]: string;
51
+ [key: string]: any;
52
52
  };
53
53
  creationTimestamp?: string;
54
54
  lastChangeTimestamp?: string;
@@ -218,7 +218,7 @@ export declare type Medium = {
218
218
  mimeType: string;
219
219
  title?: string;
220
220
  properties?: {
221
- [key: string]: string;
221
+ [key: string]: any;
222
222
  };
223
223
  creationTimestamp?: string;
224
224
  creationName?: string;
@@ -489,7 +489,7 @@ export declare type ChatMedium = {
489
489
  * Key-value pairs for additional structured content storage.
490
490
  */
491
491
  properties?: {
492
- [key: string]: string;
492
+ [key: string]: any;
493
493
  };
494
494
  };
495
495
  export declare type ChatLogLine = {
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.3.1",
2
+ "version": "0.3.2",
3
3
  "main": "dist/index.js",
4
4
  "typings": "dist/index.d.ts",
5
5
  "files": [
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]: string };
49
+ properties?: { [key: string]: any };
50
50
  creationTimestamp?: string;
51
51
  lastChangeTimestamp?: string;
52
52
  blockedUntil?: string;
@@ -241,7 +241,7 @@ export declare type Medium = {
241
241
  content?: string;
242
242
  mimeType: string;
243
243
  title?: string;
244
- properties?: { [key: string]: string };
244
+ properties?: { [key: string]: any };
245
245
  creationTimestamp?: string;
246
246
  creationName?: string;
247
247
  lastChangeTimestamp?: string;
@@ -522,7 +522,7 @@ export type ChatMedium = {
522
522
  /**
523
523
  * Key-value pairs for additional structured content storage.
524
524
  */
525
- properties?: { [key: string]: string };
525
+ properties?: { [key: string]: any };
526
526
  };
527
527
 
528
528
  export type ChatLogLine = {