@memori.ai/memori-api-client 2.2.1 → 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 CHANGED
@@ -1,5 +1,12 @@
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
+
3
10
  ## [2.2.1](https://github.com/memori-ai/memori-api-client/compare/v2.2.0...v2.2.1) (2023-08-22)
4
11
 
5
12
 
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
- userID?: string;
232
- email?: string;
231
+ loginToken?: string;
233
232
  language?: string;
234
233
  referral?: string;
235
234
  };
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
- userID?: string;
232
- email?: string;
231
+ loginToken?: string;
233
232
  language?: string;
234
233
  referral?: string;
235
234
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.2.1",
2
+ "version": "2.2.2",
3
3
  "name": "@memori.ai/memori-api-client",
4
4
  "description": "React library to integrate a Memori in your app or website",
5
5
  "license": "Apache-2.0",
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
- userID?: string;
285
- email?: string;
284
+ loginToken?: string;
286
285
  language?: string;
287
286
  referral?: string;
288
287
  };