@memori.ai/memori-api-client 6.5.2 → 6.5.3
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 +12 -0
- package/dist/types.d.ts +2 -1
- package/esm/types.d.ts +2 -1
- package/package.json +1 -1
- package/src/types.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [6.5.3](https://github.com/memori-ai/memori-api-client/compare/v6.5.2...v6.5.3) (2025-06-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add userName field to Notification type ([689c68b](https://github.com/memori-ai/memori-api-client/commit/689c68b649c954744c14283032016b95be7705fb))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update severity option in Notification type from 'CHATLOG' to 'CHANGELOG' ([0d3c4fd](https://github.com/memori-ai/memori-api-client/commit/0d3c4fd9862375c120f2d20b26ebf1e9ffdf4f1b))
|
|
14
|
+
|
|
3
15
|
## [6.5.2](https://github.com/memori-ai/memori-api-client/compare/v6.5.1...v6.5.2) (2025-06-09)
|
|
4
16
|
|
|
5
17
|
|
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' | '
|
|
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;
|
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' | '
|
|
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;
|
package/package.json
CHANGED
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' | '
|
|
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;
|