@memori.ai/memori-api-client 6.5.0 → 6.5.1

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
+ ## [6.5.1](https://github.com/memori-ai/memori-api-client/compare/v6.5.0...v6.5.1) (2025-05-27)
4
+
5
+
6
+ ### Features
7
+
8
+ * extend Notification type with new fields for type, tenantID, and userID ([c16bf78](https://github.com/memori-ai/memori-api-client/commit/c16bf784565f8947b2aa7d341e3d5864698aef23))
9
+
3
10
  ## [6.5.0](https://github.com/memori-ai/memori-api-client/compare/v6.4.0...v6.5.0) (2025-05-27)
4
11
 
5
12
 
package/dist/types.d.ts CHANGED
@@ -390,6 +390,9 @@ export declare type Notification = {
390
390
  notificationID: string;
391
391
  timestamp: string;
392
392
  severity: 'INFO' | 'WARN' | 'ALERT' | 'AWARD';
393
+ type: 'BROADCAST' | 'TENANT' | 'USER';
394
+ tenantID?: string;
395
+ userID?: string;
393
396
  texts: {
394
397
  'it-IT': string;
395
398
  'en-US': string;
package/esm/types.d.ts CHANGED
@@ -390,6 +390,9 @@ export declare type Notification = {
390
390
  notificationID: string;
391
391
  timestamp: string;
392
392
  severity: 'INFO' | 'WARN' | 'ALERT' | 'AWARD';
393
+ type: 'BROADCAST' | 'TENANT' | 'USER';
394
+ tenantID?: string;
395
+ userID?: string;
393
396
  texts: {
394
397
  'it-IT': string;
395
398
  'en-US': string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.5.0",
2
+ "version": "6.5.1",
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
@@ -631,6 +631,9 @@ export declare type Notification = {
631
631
  notificationID: string;
632
632
  timestamp: string;
633
633
  severity: 'INFO' | 'WARN' | 'ALERT' | 'AWARD';
634
+ type: 'BROADCAST' | 'TENANT' | 'USER';
635
+ tenantID?: string;
636
+ userID?: string;
634
637
  texts: {
635
638
  'it-IT': string;
636
639
  'en-US': string;