@memori.ai/memori-api-client 5.4.1 → 5.4.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/CHANGELOG.md +7 -0
- package/dist/types.d.ts +14 -3
- package/esm/types.d.ts +14 -3
- package/package.json +1 -1
- package/src/types.ts +14 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [5.4.2](https://github.com/memori-ai/memori-api-client/compare/v5.4.1...v5.4.2) (2025-01-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* add missing types ([4dbabef](https://github.com/memori-ai/memori-api-client/commit/4dbabefcbec0450666abc41962411647433e8d8f))
|
|
9
|
+
|
|
3
10
|
## [5.4.1](https://github.com/memori-ai/memori-api-client/compare/v5.4.0...v5.4.1) (2025-01-08)
|
|
4
11
|
|
|
5
12
|
|
package/dist/types.d.ts
CHANGED
|
@@ -531,7 +531,7 @@ export declare type Medium = {
|
|
|
531
531
|
mimeType: string;
|
|
532
532
|
title?: string;
|
|
533
533
|
properties?: {
|
|
534
|
-
[key: string]:
|
|
534
|
+
[key: string]: any;
|
|
535
535
|
};
|
|
536
536
|
creationTimestamp?: string;
|
|
537
537
|
creationName?: string;
|
|
@@ -549,6 +549,7 @@ export declare type DialogState = {
|
|
|
549
549
|
confidence?: number;
|
|
550
550
|
confidenceLevel?: 'NONE' | 'LOW' | 'MEDIUM' | 'HIGH';
|
|
551
551
|
emission?: string;
|
|
552
|
+
translatedEmission?: string;
|
|
552
553
|
continuationEmitted?: boolean;
|
|
553
554
|
emitter?: string;
|
|
554
555
|
completion?: boolean;
|
|
@@ -579,21 +580,31 @@ export declare type DialogState = {
|
|
|
579
580
|
contextVars?: {
|
|
580
581
|
[key: string]: string;
|
|
581
582
|
};
|
|
583
|
+
memoryTags?: string[];
|
|
582
584
|
};
|
|
583
585
|
export declare type Message = {
|
|
584
586
|
memoryID?: string;
|
|
585
587
|
text: string;
|
|
586
588
|
translatedText?: string;
|
|
589
|
+
questionAnswered?: string;
|
|
587
590
|
acceptsFeedback?: boolean;
|
|
588
591
|
generatedByAI?: boolean;
|
|
589
592
|
fromUser?: boolean;
|
|
590
593
|
media?: Medium[];
|
|
591
|
-
emitter?: string;
|
|
592
594
|
initial?: boolean;
|
|
595
|
+
emitter?: string;
|
|
593
596
|
timestamp?: string;
|
|
594
597
|
contextVars?: {
|
|
595
598
|
[key: string]: string;
|
|
596
599
|
};
|
|
600
|
+
date?: string;
|
|
601
|
+
dateUncertaintyDays?: number;
|
|
602
|
+
placeName?: string;
|
|
603
|
+
placeLatitude?: number;
|
|
604
|
+
placeLongitude?: number;
|
|
605
|
+
placeUncertaintyKm?: number;
|
|
606
|
+
tag?: string;
|
|
607
|
+
memoryTags?: string[];
|
|
597
608
|
};
|
|
598
609
|
export declare type ChatMedium = {
|
|
599
610
|
url?: string;
|
|
@@ -601,7 +612,7 @@ export declare type ChatMedium = {
|
|
|
601
612
|
mimeType: string;
|
|
602
613
|
title?: string;
|
|
603
614
|
properties?: {
|
|
604
|
-
[key: string]:
|
|
615
|
+
[key: string]: any;
|
|
605
616
|
};
|
|
606
617
|
};
|
|
607
618
|
export declare type ChatLogLine = {
|
package/esm/types.d.ts
CHANGED
|
@@ -531,7 +531,7 @@ export declare type Medium = {
|
|
|
531
531
|
mimeType: string;
|
|
532
532
|
title?: string;
|
|
533
533
|
properties?: {
|
|
534
|
-
[key: string]:
|
|
534
|
+
[key: string]: any;
|
|
535
535
|
};
|
|
536
536
|
creationTimestamp?: string;
|
|
537
537
|
creationName?: string;
|
|
@@ -549,6 +549,7 @@ export declare type DialogState = {
|
|
|
549
549
|
confidence?: number;
|
|
550
550
|
confidenceLevel?: 'NONE' | 'LOW' | 'MEDIUM' | 'HIGH';
|
|
551
551
|
emission?: string;
|
|
552
|
+
translatedEmission?: string;
|
|
552
553
|
continuationEmitted?: boolean;
|
|
553
554
|
emitter?: string;
|
|
554
555
|
completion?: boolean;
|
|
@@ -579,21 +580,31 @@ export declare type DialogState = {
|
|
|
579
580
|
contextVars?: {
|
|
580
581
|
[key: string]: string;
|
|
581
582
|
};
|
|
583
|
+
memoryTags?: string[];
|
|
582
584
|
};
|
|
583
585
|
export declare type Message = {
|
|
584
586
|
memoryID?: string;
|
|
585
587
|
text: string;
|
|
586
588
|
translatedText?: string;
|
|
589
|
+
questionAnswered?: string;
|
|
587
590
|
acceptsFeedback?: boolean;
|
|
588
591
|
generatedByAI?: boolean;
|
|
589
592
|
fromUser?: boolean;
|
|
590
593
|
media?: Medium[];
|
|
591
|
-
emitter?: string;
|
|
592
594
|
initial?: boolean;
|
|
595
|
+
emitter?: string;
|
|
593
596
|
timestamp?: string;
|
|
594
597
|
contextVars?: {
|
|
595
598
|
[key: string]: string;
|
|
596
599
|
};
|
|
600
|
+
date?: string;
|
|
601
|
+
dateUncertaintyDays?: number;
|
|
602
|
+
placeName?: string;
|
|
603
|
+
placeLatitude?: number;
|
|
604
|
+
placeLongitude?: number;
|
|
605
|
+
placeUncertaintyKm?: number;
|
|
606
|
+
tag?: string;
|
|
607
|
+
memoryTags?: string[];
|
|
597
608
|
};
|
|
598
609
|
export declare type ChatMedium = {
|
|
599
610
|
url?: string;
|
|
@@ -601,7 +612,7 @@ export declare type ChatMedium = {
|
|
|
601
612
|
mimeType: string;
|
|
602
613
|
title?: string;
|
|
603
614
|
properties?: {
|
|
604
|
-
[key: string]:
|
|
615
|
+
[key: string]: any;
|
|
605
616
|
};
|
|
606
617
|
};
|
|
607
618
|
export declare type ChatLogLine = {
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -892,7 +892,7 @@ export declare type Medium = {
|
|
|
892
892
|
content?: string;
|
|
893
893
|
mimeType: string;
|
|
894
894
|
title?: string;
|
|
895
|
-
properties?: { [key: string]:
|
|
895
|
+
properties?: { [key: string]: any };
|
|
896
896
|
creationTimestamp?: string;
|
|
897
897
|
creationName?: string;
|
|
898
898
|
lastChangeTimestamp?: string;
|
|
@@ -911,6 +911,7 @@ export declare type DialogState = {
|
|
|
911
911
|
confidence?: number;
|
|
912
912
|
confidenceLevel?: 'NONE' | 'LOW' | 'MEDIUM' | 'HIGH';
|
|
913
913
|
emission?: string;
|
|
914
|
+
translatedEmission?: string;
|
|
914
915
|
continuationEmitted?: boolean;
|
|
915
916
|
emitter?: string;
|
|
916
917
|
completion?: boolean;
|
|
@@ -937,20 +938,30 @@ export declare type DialogState = {
|
|
|
937
938
|
media?: Medium[];
|
|
938
939
|
knownTags?: { [key: string]: string };
|
|
939
940
|
contextVars?: { [key: string]: string };
|
|
941
|
+
memoryTags?: string[];
|
|
940
942
|
};
|
|
941
943
|
|
|
942
944
|
export declare type Message = {
|
|
943
945
|
memoryID?: string;
|
|
944
946
|
text: string;
|
|
945
947
|
translatedText?: string;
|
|
948
|
+
questionAnswered?: string;
|
|
946
949
|
acceptsFeedback?: boolean;
|
|
947
950
|
generatedByAI?: boolean;
|
|
948
951
|
fromUser?: boolean;
|
|
949
952
|
media?: Medium[];
|
|
950
|
-
emitter?: string;
|
|
951
953
|
initial?: boolean;
|
|
954
|
+
emitter?: string;
|
|
952
955
|
timestamp?: string;
|
|
953
956
|
contextVars?: { [key: string]: string };
|
|
957
|
+
date?: string;
|
|
958
|
+
dateUncertaintyDays?: number;
|
|
959
|
+
placeName?: string;
|
|
960
|
+
placeLatitude?: number;
|
|
961
|
+
placeLongitude?: number;
|
|
962
|
+
placeUncertaintyKm?: number;
|
|
963
|
+
tag?: string;
|
|
964
|
+
memoryTags?: string[];
|
|
954
965
|
};
|
|
955
966
|
|
|
956
967
|
export declare type ChatMedium = {
|
|
@@ -973,7 +984,7 @@ export declare type ChatMedium = {
|
|
|
973
984
|
/**
|
|
974
985
|
* Key-value pairs for additional structured content storage.
|
|
975
986
|
*/
|
|
976
|
-
properties?: { [key: string]:
|
|
987
|
+
properties?: { [key: string]: any };
|
|
977
988
|
};
|
|
978
989
|
|
|
979
990
|
export declare type ChatLogLine = {
|