@arrowsphere/api-client 3.172.0 → 3.172.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,11 @@
|
|
|
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.172.1] - 2025.02.12
|
|
7
|
+
|
|
8
|
+
### Updated
|
|
9
|
+
- [campaign] update field dateAgg to DateAggType instead of DateAggType[] in CategoryType schema
|
|
10
|
+
|
|
6
11
|
## [3.172.0] - 2025.02.11
|
|
7
12
|
|
|
8
13
|
### Updated
|
|
@@ -5,13 +5,13 @@ export declare enum CategoryEnumFields {
|
|
|
5
5
|
COLUMN_NAME = "name"
|
|
6
6
|
}
|
|
7
7
|
export declare type CategoryType = {
|
|
8
|
-
[CategoryEnumFields.COLUMN_DATE_AGG]: DateAggType
|
|
8
|
+
[CategoryEnumFields.COLUMN_DATE_AGG]: DateAggType;
|
|
9
9
|
[CategoryEnumFields.COLUMN_NAME]: string;
|
|
10
10
|
};
|
|
11
11
|
export declare class Category extends AbstractEntity<CategoryType> {
|
|
12
12
|
#private;
|
|
13
13
|
constructor(data: CategoryType);
|
|
14
|
-
get dateAgg(): DateAgg
|
|
14
|
+
get dateAgg(): DateAgg;
|
|
15
15
|
get name(): string;
|
|
16
16
|
toJSON(): CategoryType;
|
|
17
17
|
}
|
|
@@ -25,7 +25,7 @@ class Category extends abstractEntity_1.AbstractEntity {
|
|
|
25
25
|
super(data);
|
|
26
26
|
_Category_dateAgg.set(this, void 0);
|
|
27
27
|
_Category_name.set(this, void 0);
|
|
28
|
-
__classPrivateFieldSet(this, _Category_dateAgg,
|
|
28
|
+
__classPrivateFieldSet(this, _Category_dateAgg, new dateAgg_1.DateAgg(data.dateAgg), "f");
|
|
29
29
|
__classPrivateFieldSet(this, _Category_name, data.name, "f");
|
|
30
30
|
}
|
|
31
31
|
get dateAgg() {
|
|
@@ -36,7 +36,7 @@ class Category extends abstractEntity_1.AbstractEntity {
|
|
|
36
36
|
}
|
|
37
37
|
toJSON() {
|
|
38
38
|
return {
|
|
39
|
-
[CategoryEnumFields.COLUMN_DATE_AGG]: this.dateAgg.
|
|
39
|
+
[CategoryEnumFields.COLUMN_DATE_AGG]: this.dateAgg.toJSON(),
|
|
40
40
|
[CategoryEnumFields.COLUMN_NAME]: this.name,
|
|
41
41
|
};
|
|
42
42
|
}
|
package/package.json
CHANGED