@arrowsphere/api-client 3.47.0 → 3.48.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
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
4
4
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [3.48.1] - 2023-08-01
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- Fix type value of SearchProductFilterArgument
|
|
11
|
+
|
|
12
|
+
## [3.48.0] - 2023-08-01
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Fix notifications attributes types
|
|
17
|
+
|
|
6
18
|
## [3.47.0] - 2023-08-01
|
|
7
19
|
|
|
8
20
|
### Changed
|
|
@@ -47,7 +47,7 @@ export declare type SearchBodyArgument = {
|
|
|
47
47
|
};
|
|
48
48
|
export declare type SearchProductFilterArgument = {
|
|
49
49
|
name: string;
|
|
50
|
-
value: string | string[];
|
|
50
|
+
value: string | string[] | string[][];
|
|
51
51
|
operator?: OperatorArgument;
|
|
52
52
|
filters?: SearchProductFilterArgument[];
|
|
53
53
|
};
|
|
@@ -11,21 +11,21 @@ export declare enum NotificationDetailsFields {
|
|
|
11
11
|
export declare type NotificationDetailsType = {
|
|
12
12
|
[NotificationDetailsFields.COLUMN_ID]: string;
|
|
13
13
|
[NotificationDetailsFields.COLUMN_USERNAME]: string;
|
|
14
|
-
[NotificationDetailsFields.COLUMN_CREATED]:
|
|
15
|
-
[NotificationDetailsFields.COLUMN_EXPIRES]:
|
|
14
|
+
[NotificationDetailsFields.COLUMN_CREATED]: string;
|
|
15
|
+
[NotificationDetailsFields.COLUMN_EXPIRES]: string;
|
|
16
16
|
[NotificationDetailsFields.COLUMN_SUBJECT]: string;
|
|
17
17
|
[NotificationDetailsFields.COLUMN_CONTENT]: string;
|
|
18
|
-
[NotificationDetailsFields.COLUMN_HAS_BEEN_READ]:
|
|
18
|
+
[NotificationDetailsFields.COLUMN_HAS_BEEN_READ]: boolean;
|
|
19
19
|
};
|
|
20
20
|
export declare class NotificationDetails extends AbstractEntity<NotificationDetailsType> {
|
|
21
21
|
#private;
|
|
22
22
|
constructor(notification: NotificationDetailsType);
|
|
23
23
|
get id(): string;
|
|
24
24
|
get userName(): string;
|
|
25
|
-
get created():
|
|
26
|
-
get expires():
|
|
25
|
+
get created(): string;
|
|
26
|
+
get expires(): string;
|
|
27
27
|
get subject(): string;
|
|
28
28
|
get content(): string;
|
|
29
|
-
get hasBeenRead():
|
|
29
|
+
get hasBeenRead(): boolean;
|
|
30
30
|
toJSON(): NotificationDetailsType;
|
|
31
31
|
}
|
package/package.json
CHANGED