@memori.ai/memori-api-client 6.5.2 → 6.5.4

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,24 @@
1
1
 
2
2
 
3
+ ## [6.5.4](https://github.com/memori-ai/memori-api-client/compare/v6.5.3...v6.5.4) (2025-06-10)
4
+
5
+
6
+ ### Features
7
+
8
+ * add continueFromChatLogID field to OpenSession type ([e1e3ab8](https://github.com/memori-ai/memori-api-client/commit/e1e3ab83a2b0b7773230c6fe4f4c71a4ff4e70fc))
9
+
10
+ ## [6.5.3](https://github.com/memori-ai/memori-api-client/compare/v6.5.2...v6.5.3) (2025-06-09)
11
+
12
+
13
+ ### Features
14
+
15
+ * add userName field to Notification type ([689c68b](https://github.com/memori-ai/memori-api-client/commit/689c68b649c954744c14283032016b95be7705fb))
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * update severity option in Notification type from 'CHATLOG' to 'CHANGELOG' ([0d3c4fd](https://github.com/memori-ai/memori-api-client/commit/0d3c4fd9862375c120f2d20b26ebf1e9ffdf4f1b))
21
+
3
22
  ## [6.5.2](https://github.com/memori-ai/memori-api-client/compare/v6.5.1...v6.5.2) (2025-06-09)
4
23
 
5
24
 
package/dist/types.d.ts CHANGED
@@ -389,11 +389,12 @@ export declare type ConsumptionLog = {
389
389
  export declare type Notification = {
390
390
  notificationID: string;
391
391
  timestamp: string;
392
- severity: 'INFO' | 'WARN' | 'ALERT' | 'AWARD' | 'CHATLOG';
392
+ severity: 'INFO' | 'WARN' | 'ALERT' | 'AWARD' | 'CHANGELOG';
393
393
  type: 'BROADCAST' | 'TENANT' | 'USER';
394
394
  tenantID?: string;
395
395
  userID?: string;
396
396
  validFrom?: string;
397
+ userName?: string;
397
398
  validTo?: string;
398
399
  texts: {
399
400
  'it-IT': string;
@@ -510,6 +511,7 @@ export declare type OpenSession = {
510
511
  recoveryTokens?: string[];
511
512
  tag?: string;
512
513
  pin?: string;
514
+ continueFromChatLogID?: string;
513
515
  initialContextVars?: {
514
516
  [key: string]: string;
515
517
  };
package/esm/types.d.ts CHANGED
@@ -389,11 +389,12 @@ export declare type ConsumptionLog = {
389
389
  export declare type Notification = {
390
390
  notificationID: string;
391
391
  timestamp: string;
392
- severity: 'INFO' | 'WARN' | 'ALERT' | 'AWARD' | 'CHATLOG';
392
+ severity: 'INFO' | 'WARN' | 'ALERT' | 'AWARD' | 'CHANGELOG';
393
393
  type: 'BROADCAST' | 'TENANT' | 'USER';
394
394
  tenantID?: string;
395
395
  userID?: string;
396
396
  validFrom?: string;
397
+ userName?: string;
397
398
  validTo?: string;
398
399
  texts: {
399
400
  'it-IT': string;
@@ -510,6 +511,7 @@ export declare type OpenSession = {
510
511
  recoveryTokens?: string[];
511
512
  tag?: string;
512
513
  pin?: string;
514
+ continueFromChatLogID?: string;
513
515
  initialContextVars?: {
514
516
  [key: string]: string;
515
517
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.5.2",
2
+ "version": "6.5.4",
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
@@ -630,11 +630,12 @@ export declare type ConsumptionLog = {
630
630
  export declare type Notification = {
631
631
  notificationID: string;
632
632
  timestamp: string;
633
- severity: 'INFO' | 'WARN' | 'ALERT' | 'AWARD' | 'CHATLOG';
633
+ severity: 'INFO' | 'WARN' | 'ALERT' | 'AWARD' | 'CHANGELOG';
634
634
  type: 'BROADCAST' | 'TENANT' | 'USER';
635
635
  tenantID?: string;
636
636
  userID?: string;
637
637
  validFrom?: string;
638
+ userName?: string;
638
639
  validTo?: string;
639
640
  texts: {
640
641
  'it-IT': string;
@@ -882,6 +883,7 @@ export declare type OpenSession = {
882
883
  recoveryTokens?: string[];
883
884
  tag?: string;
884
885
  pin?: string;
886
+ continueFromChatLogID?: string;
885
887
  initialContextVars?: { [key: string]: string };
886
888
  initialQuestion?: string;
887
889
  forceCloseSessions?: boolean;