@memori.ai/memori-api-client 6.7.4 → 6.7.5
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 +3 -2
- package/esm/types.d.ts +3 -2
- package/package.json +1 -1
- package/src/types.ts +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [6.7.5](https://github.com/memori-ai/memori-api-client/compare/v6.7.4...v6.7.5) (2025-07-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Changes
|
|
7
|
+
|
|
8
|
+
* rename date filters in ChatLogFilters and add new filter property ([a283540](https://github.com/memori-ai/memori-api-client/commit/a283540c303caf503293d01cfd7229439aee85b5))
|
|
9
|
+
|
|
3
10
|
## [6.7.4](https://github.com/memori-ai/memori-api-client/compare/v6.7.3...v6.7.4) (2025-07-15)
|
|
4
11
|
|
|
5
12
|
|
package/dist/types.d.ts
CHANGED
|
@@ -666,11 +666,12 @@ export declare type ChatLog = {
|
|
|
666
666
|
lines: ChatLogLine[];
|
|
667
667
|
};
|
|
668
668
|
export interface ChatLogFilters {
|
|
669
|
-
|
|
670
|
-
|
|
669
|
+
dateFrom?: string;
|
|
670
|
+
dateTo?: string;
|
|
671
671
|
showChatsWithNoHistory?: boolean;
|
|
672
672
|
from: number;
|
|
673
673
|
howMany: number;
|
|
674
|
+
filter: string;
|
|
674
675
|
}
|
|
675
676
|
export declare type Utterance = {
|
|
676
677
|
utteranceID?: string;
|
package/esm/types.d.ts
CHANGED
|
@@ -666,11 +666,12 @@ export declare type ChatLog = {
|
|
|
666
666
|
lines: ChatLogLine[];
|
|
667
667
|
};
|
|
668
668
|
export interface ChatLogFilters {
|
|
669
|
-
|
|
670
|
-
|
|
669
|
+
dateFrom?: string;
|
|
670
|
+
dateTo?: string;
|
|
671
671
|
showChatsWithNoHistory?: boolean;
|
|
672
672
|
from: number;
|
|
673
673
|
howMany: number;
|
|
674
|
+
filter: string;
|
|
674
675
|
}
|
|
675
676
|
export declare type Utterance = {
|
|
676
677
|
utteranceID?: string;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -1137,11 +1137,12 @@ export declare type ChatLog = {
|
|
|
1137
1137
|
};
|
|
1138
1138
|
|
|
1139
1139
|
export interface ChatLogFilters {
|
|
1140
|
-
|
|
1141
|
-
|
|
1140
|
+
dateFrom?: string;
|
|
1141
|
+
dateTo?: string;
|
|
1142
1142
|
showChatsWithNoHistory?: boolean;
|
|
1143
1143
|
from: number;
|
|
1144
1144
|
howMany: number;
|
|
1145
|
+
filter: string;
|
|
1145
1146
|
}
|
|
1146
1147
|
|
|
1147
1148
|
export declare type Utterance = {
|