@anthor/entities-types 1.41.0 → 1.42.0
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 +30 -0
- package/dist/entities/Activity.d.ts +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.42.0](https://github.com/anthorteam/backend/compare/v1.42.0-alpha.4...v1.42.0) (2022-05-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @anthor/entities-types
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.42.0-alpha.1](https://github.com/anthorteam/backend/compare/v1.42.0-alpha.0...v1.42.0-alpha.1) (2022-05-09)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* add field companyChainId ([03479b3](https://github.com/anthorteam/backend/commit/03479b3f83d9944c9c74113b11cb236379f71405))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [1.42.0-alpha.0](https://github.com/anthorteam/backend/compare/v1.41.0...v1.42.0-alpha.0) (2022-05-09)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* add is trial in activity ([242f9ff](https://github.com/anthorteam/backend/commit/242f9ff4d68982ffa0006e6cfe9989ea660f1a07))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [1.41.0](https://github.com/anthorteam/backend/compare/v1.41.0-alpha.10...v1.41.0) (2022-05-09)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @anthor/entities-types
|
|
@@ -32,6 +32,7 @@ export interface Activity extends BaseModel {
|
|
|
32
32
|
company: Company;
|
|
33
33
|
companyId: string;
|
|
34
34
|
coordinates: Points;
|
|
35
|
+
companyChainId: string;
|
|
35
36
|
/**
|
|
36
37
|
* @deprecated
|
|
37
38
|
*/
|
|
@@ -132,6 +133,7 @@ export interface Activity extends BaseModel {
|
|
|
132
133
|
ratingReasonsIds: string[];
|
|
133
134
|
operationClusterId: string;
|
|
134
135
|
availableForGigWorkers: boolean;
|
|
136
|
+
isTrial: boolean;
|
|
135
137
|
startDateTime: Date;
|
|
136
138
|
endDateTime: Date;
|
|
137
139
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anthor/entities-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.42.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -21,5 +21,5 @@
|
|
|
21
21
|
"geojson": "^0.5.0",
|
|
22
22
|
"jest-sonar-reporter": "^2.0.0"
|
|
23
23
|
},
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "21cff4385f8b48520bb8b753386de47b15bc555b"
|
|
25
25
|
}
|