@anthor/entities-types 1.29.0-alpha.1 → 1.29.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 CHANGED
@@ -3,40 +3,54 @@
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.29.0-alpha.1](https://github.com/anthorteam/backend/compare/v1.28.2-alpha.1...v1.29.0-alpha.1) (2021-12-22)
6
+ # [1.29.0](https://github.com/anthorteam/backend/compare/v1.29.0-alpha.11...v1.29.0) (2022-01-13)
7
7
 
8
+ **Note:** Version bump only for package @anthor/entities-types
9
+
10
+
11
+
12
+
13
+
14
+ # [1.29.0-alpha.9](https://github.com/anthorteam/backend/compare/v1.29.0-alpha.8...v1.29.0-alpha.9) (2022-01-04)
15
+
16
+ **Note:** Version bump only for package @anthor/entities-types
8
17
 
9
- ### Bug Fixes
10
18
 
11
- * redeploy ([6166065](https://github.com/anthorteam/backend/commit/61660656565ea3b68c86f24f09a23e6c78ab35e0))
12
- * wrong import path on entities types Company and CompanyEconomicGroup ([d65e3fb](https://github.com/anthorteam/backend/commit/d65e3fbbefa6afd3474f85058ced1284718b8de3))
13
19
 
14
20
 
15
- ### Features
16
21
 
17
- * add companyEconomicGroup entity ([7354fc3](https://github.com/anthorteam/backend/commit/7354fc3b0d524d012d28e2c642a218d305a06a0e))
22
+ # [1.29.0-alpha.8](https://github.com/anthorteam/backend/compare/v1.29.0-alpha.7...v1.29.0-alpha.8) (2022-01-04)
23
+
24
+ **Note:** Version bump only for package @anthor/entities-types
25
+
26
+
27
+
18
28
 
19
29
 
30
+ # [1.29.0-alpha.6](https://github.com/anthorteam/backend/compare/v1.28.3...v1.29.0-alpha.6) (2021-12-29)
31
+
32
+ **Note:** Version bump only for package @anthor/entities-types
33
+
20
34
 
21
35
 
22
36
 
23
- # [1.29.0-alpha.0](https://github.com/anthorteam/backend/compare/v1.28.2-alpha.1...v1.29.0-alpha.0) (2021-12-22)
37
+
38
+ ## [1.28.3](https://github.com/anthorteam/backend/compare/v1.29.0-alpha.3...v1.28.3) (2021-12-28)
24
39
 
25
40
 
26
41
  ### Bug Fixes
27
42
 
28
- * wrong import path on entities types Company and CompanyEconomicGroup ([d65e3fb](https://github.com/anthorteam/backend/commit/d65e3fbbefa6afd3474f85058ced1284718b8de3))
43
+ * release ([b2e980e](https://github.com/anthorteam/backend/commit/b2e980e958dbdfb715076ee4162b2510ff6d7bd2))
29
44
 
30
45
 
31
- ### Features
32
46
 
33
- * add companyEconomicGroup entity ([7354fc3](https://github.com/anthorteam/backend/commit/7354fc3b0d524d012d28e2c642a218d305a06a0e))
47
+ ## [1.28.2](https://github.com/anthorteam/backend/compare/v1.28.2-alpha.0...v1.28.2) (2021-12-10)
34
48
 
35
49
 
36
50
 
37
51
 
38
52
 
39
- ## [1.28.2-alpha.1](https://github.com/anthorteam/backend/compare/v1.28.2-alpha.0...v1.28.2-alpha.1) (2021-12-14)
53
+ ## [1.28.2](https://github.com/anthorteam/backend/compare/v1.28.2-alpha.0...v1.28.2) (2021-12-10)
40
54
 
41
55
 
42
56
 
@@ -34,6 +34,7 @@ export interface Activity extends BaseModel {
34
34
  coordinates: Points;
35
35
  date: ActivityDate;
36
36
  description: string;
37
+ companyExigence: string;
37
38
  dynamicProducts: ActivityDynamicProduct[];
38
39
  entries: [{
39
40
  type: Record<string, any>;
@@ -26,6 +26,7 @@ export interface Job extends BaseModel {
26
26
  duration: JobTemplateDurations;
27
27
  endsAt: string | Date;
28
28
  durationInHours: number;
29
+ companyExigence: string;
29
30
  establishment: Establishment;
30
31
  establishmentId: string;
31
32
  excludedBadgesId: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthor/entities-types",
3
- "version": "1.29.0-alpha.1",
3
+ "version": "1.29.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -20,5 +20,5 @@
20
20
  "dependencies": {
21
21
  "geojson": "^0.5.0"
22
22
  },
23
- "gitHead": "764fd6482a2717ce0304ce01ae8a3f26a9667604"
23
+ "gitHead": "ec5c70a59938885d9f24be60103e791973e4ae3a"
24
24
  }