@memori.ai/memori-api-client 2.2.0 → 2.2.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 +14 -0
- package/dist/types.d.ts +4 -5
- package/esm/types.d.ts +4 -5
- package/package.json +1 -1
- package/src/types.ts +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [2.2.2](https://github.com/memori-ai/memori-api-client/compare/v2.2.1...v2.2.2) (2023-08-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Changes
|
|
7
|
+
|
|
8
|
+
* replace additionalInfo email + userID with loginToken ([10b2a03](https://github.com/memori-ai/memori-api-client/commit/10b2a03fd14104ca42c44f044327a8668b84eeb5))
|
|
9
|
+
|
|
10
|
+
## [2.2.1](https://github.com/memori-ai/memori-api-client/compare/v2.2.0...v2.2.1) (2023-08-22)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* backend fields typos ([56261d6](https://github.com/memori-ai/memori-api-client/commit/56261d663565122ff392866a3f72910fc3372003))
|
|
16
|
+
|
|
3
17
|
## [2.2.0](https://github.com/memori-ai/memori-api-client/compare/v2.1.5...v2.2.0) (2023-07-17)
|
|
4
18
|
|
|
5
19
|
|
package/dist/types.d.ts
CHANGED
|
@@ -228,8 +228,7 @@ export declare type OpenSession = {
|
|
|
228
228
|
forceCloseSessions?: boolean;
|
|
229
229
|
birthDate?: string;
|
|
230
230
|
additionalInfo?: {
|
|
231
|
-
|
|
232
|
-
email?: string;
|
|
231
|
+
loginToken?: string;
|
|
233
232
|
language?: string;
|
|
234
233
|
referral?: string;
|
|
235
234
|
};
|
|
@@ -427,7 +426,7 @@ export declare type Memory = {
|
|
|
427
426
|
memoryID: string;
|
|
428
427
|
memoryType: string;
|
|
429
428
|
lastRead?: string;
|
|
430
|
-
|
|
429
|
+
readOccurrences?: number;
|
|
431
430
|
receiverID?: string;
|
|
432
431
|
receiverTag?: string;
|
|
433
432
|
receiverName?: string;
|
|
@@ -469,7 +468,7 @@ export declare type Memory = {
|
|
|
469
468
|
export declare type UnansweredQuestion = {
|
|
470
469
|
unansweredQuestionID?: string;
|
|
471
470
|
text: string;
|
|
472
|
-
|
|
471
|
+
occurrences: number;
|
|
473
472
|
receiverID?: string;
|
|
474
473
|
receiverTag?: string;
|
|
475
474
|
receiverName?: string;
|
|
@@ -550,7 +549,7 @@ export type CorrelationPair = {
|
|
|
550
549
|
text1: string;
|
|
551
550
|
text2: string;
|
|
552
551
|
correlated: boolean;
|
|
553
|
-
|
|
552
|
+
occurrences?: number;
|
|
554
553
|
};
|
|
555
554
|
export type Utterance = {
|
|
556
555
|
utteranceID?: string;
|
package/esm/types.d.ts
CHANGED
|
@@ -228,8 +228,7 @@ export declare type OpenSession = {
|
|
|
228
228
|
forceCloseSessions?: boolean;
|
|
229
229
|
birthDate?: string;
|
|
230
230
|
additionalInfo?: {
|
|
231
|
-
|
|
232
|
-
email?: string;
|
|
231
|
+
loginToken?: string;
|
|
233
232
|
language?: string;
|
|
234
233
|
referral?: string;
|
|
235
234
|
};
|
|
@@ -427,7 +426,7 @@ export declare type Memory = {
|
|
|
427
426
|
memoryID: string;
|
|
428
427
|
memoryType: string;
|
|
429
428
|
lastRead?: string;
|
|
430
|
-
|
|
429
|
+
readOccurrences?: number;
|
|
431
430
|
receiverID?: string;
|
|
432
431
|
receiverTag?: string;
|
|
433
432
|
receiverName?: string;
|
|
@@ -469,7 +468,7 @@ export declare type Memory = {
|
|
|
469
468
|
export declare type UnansweredQuestion = {
|
|
470
469
|
unansweredQuestionID?: string;
|
|
471
470
|
text: string;
|
|
472
|
-
|
|
471
|
+
occurrences: number;
|
|
473
472
|
receiverID?: string;
|
|
474
473
|
receiverTag?: string;
|
|
475
474
|
receiverName?: string;
|
|
@@ -550,7 +549,7 @@ export type CorrelationPair = {
|
|
|
550
549
|
text1: string;
|
|
551
550
|
text2: string;
|
|
552
551
|
correlated: boolean;
|
|
553
|
-
|
|
552
|
+
occurrences?: number;
|
|
554
553
|
};
|
|
555
554
|
export type Utterance = {
|
|
556
555
|
utteranceID?: string;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -281,8 +281,7 @@ export declare type OpenSession = {
|
|
|
281
281
|
forceCloseSessions?: boolean;
|
|
282
282
|
birthDate?: string;
|
|
283
283
|
additionalInfo?: {
|
|
284
|
-
|
|
285
|
-
email?: string;
|
|
284
|
+
loginToken?: string;
|
|
286
285
|
language?: string;
|
|
287
286
|
referral?: string;
|
|
288
287
|
};
|
|
@@ -493,7 +492,7 @@ export declare type Memory = {
|
|
|
493
492
|
memoryID: string;
|
|
494
493
|
memoryType: string;
|
|
495
494
|
lastRead?: string;
|
|
496
|
-
|
|
495
|
+
readOccurrences?: number;
|
|
497
496
|
receiverID?: string;
|
|
498
497
|
receiverTag?: string;
|
|
499
498
|
receiverName?: string;
|
|
@@ -533,7 +532,7 @@ export declare type Memory = {
|
|
|
533
532
|
export declare type UnansweredQuestion = {
|
|
534
533
|
unansweredQuestionID?: string;
|
|
535
534
|
text: string;
|
|
536
|
-
|
|
535
|
+
occurrences: number;
|
|
537
536
|
receiverID?: string;
|
|
538
537
|
receiverTag?: string;
|
|
539
538
|
receiverName?: string;
|
|
@@ -685,7 +684,7 @@ export type CorrelationPair = {
|
|
|
685
684
|
text1: string;
|
|
686
685
|
text2: string;
|
|
687
686
|
correlated: boolean;
|
|
688
|
-
|
|
687
|
+
occurrences?: number;
|
|
689
688
|
};
|
|
690
689
|
|
|
691
690
|
export type Utterance = {
|