@memori.ai/memori-api-client 6.5.1 → 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 +20 -0
- package/dist/types.d.ts +4 -1
- package/esm/types.d.ts +4 -1
- package/package.json +1 -1
- package/src/types.ts +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
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
|
+
|
|
15
|
+
## [6.5.2](https://github.com/memori-ai/memori-api-client/compare/v6.5.1...v6.5.2) (2025-06-09)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* add 'CHATLOG' severity option to Notification type ([85ba375](https://github.com/memori-ai/memori-api-client/commit/85ba375fcc19dd9680c2f4ef2c4564a3c2f13844))
|
|
21
|
+
* add validFrom and validTo fields to Notification type ([57f2ad9](https://github.com/memori-ai/memori-api-client/commit/57f2ad932ffca15e5b24fbd51da8fb0c3066d62c))
|
|
22
|
+
|
|
3
23
|
## [6.5.1](https://github.com/memori-ai/memori-api-client/compare/v6.5.0...v6.5.1) (2025-05-27)
|
|
4
24
|
|
|
5
25
|
|
package/dist/types.d.ts
CHANGED
|
@@ -389,10 +389,13 @@ 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
|
+
validFrom?: string;
|
|
397
|
+
userName?: string;
|
|
398
|
+
validTo?: string;
|
|
396
399
|
texts: {
|
|
397
400
|
'it-IT': string;
|
|
398
401
|
'en-US': string;
|
package/esm/types.d.ts
CHANGED
|
@@ -389,10 +389,13 @@ 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
|
+
validFrom?: string;
|
|
397
|
+
userName?: string;
|
|
398
|
+
validTo?: string;
|
|
396
399
|
texts: {
|
|
397
400
|
'it-IT': string;
|
|
398
401
|
'en-US': string;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -630,10 +630,13 @@ 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
|
+
validFrom?: string;
|
|
638
|
+
userName?: string;
|
|
639
|
+
validTo?: string;
|
|
637
640
|
texts: {
|
|
638
641
|
'it-IT': string;
|
|
639
642
|
'en-US': string;
|