@memori.ai/memori-api-client 4.0.1 → 4.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.
- package/CHANGELOG.md +7 -0
- package/dist/types.d.ts +2 -0
- package/esm/types.d.ts +2 -0
- package/package.json +1 -1
- package/src/types.ts +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [4.0.2](https://github.com/memori-ai/memori-api-client/compare/v4.0.1...v4.0.2) (2024-03-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* add attributes to ProcessStatus ([c72da0a](https://github.com/memori-ai/memori-api-client/commit/c72da0adca92f7a799cbdba640b010ef3f9040ee))
|
|
9
|
+
|
|
3
10
|
## [4.0.1](https://github.com/memori-ai/memori-api-client/compare/v4.0.0...v4.0.1) (2024-03-22)
|
|
4
11
|
|
|
5
12
|
|
package/dist/types.d.ts
CHANGED
package/esm/types.d.ts
CHANGED
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -1140,6 +1140,16 @@ export interface ProcessStatus {
|
|
|
1140
1140
|
* Estimated time required to complete the Import process, in seconds.
|
|
1141
1141
|
*/
|
|
1142
1142
|
eta?: number;
|
|
1143
|
+
/**
|
|
1144
|
+
* @type {number=}
|
|
1145
|
+
* Number of elements this Process has processed so far.
|
|
1146
|
+
*/
|
|
1147
|
+
processedElements?: number;
|
|
1148
|
+
/**
|
|
1149
|
+
* @type {number=}
|
|
1150
|
+
* Total elements this Process is processing.
|
|
1151
|
+
*/
|
|
1152
|
+
totalElements?: number;
|
|
1143
1153
|
creationTimestamp?: string;
|
|
1144
1154
|
lastChangeTimestamp?: string;
|
|
1145
1155
|
}
|