@anthor/entities-types 1.41.0-alpha.6 → 1.42.0-alpha.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,6 +3,47 @@
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-alpha.0](https://github.com/anthorteam/backend/compare/v1.41.0...v1.42.0-alpha.0) (2022-05-09)
7
+
8
+
9
+ ### Features
10
+
11
+ * add is trial in activity ([242f9ff](https://github.com/anthorteam/backend/commit/242f9ff4d68982ffa0006e6cfe9989ea660f1a07))
12
+
13
+
14
+
15
+
16
+
17
+ # [1.41.0](https://github.com/anthorteam/backend/compare/v1.41.0-alpha.10...v1.41.0) (2022-05-09)
18
+
19
+ **Note:** Version bump only for package @anthor/entities-types
20
+
21
+
22
+
23
+
24
+
25
+ # [1.41.0-alpha.10](https://github.com/anthorteam/backend/compare/v1.41.0-alpha.9...v1.41.0-alpha.10) (2022-05-06)
26
+
27
+
28
+ ### Features
29
+
30
+ * added raw requests into entities-sdk and added missing prop at Worker ([6a239bb](https://github.com/anthorteam/backend/commit/6a239bb2201b2e89c6d55b259ac877440cc79a14))
31
+
32
+
33
+
34
+
35
+
36
+ # [1.41.0-alpha.8](https://github.com/anthorteam/backend/compare/v1.41.0-alpha.7...v1.41.0-alpha.8) (2022-05-06)
37
+
38
+
39
+ ### Features
40
+
41
+ * add chain type to worker block list ([7ffdf8d](https://github.com/anthorteam/backend/commit/7ffdf8d93117f9409f53e4c9090faa0de28b81d8))
42
+
43
+
44
+
45
+
46
+
6
47
  # [1.41.0-alpha.6](https://github.com/anthorteam/backend/compare/v1.41.0-alpha.5...v1.41.0-alpha.6) (2022-05-03)
7
48
 
8
49
 
@@ -132,6 +132,7 @@ export interface Activity extends BaseModel {
132
132
  ratingReasonsIds: string[];
133
133
  operationClusterId: string;
134
134
  availableForGigWorkers: boolean;
135
+ isTrial: boolean;
135
136
  startDateTime: Date;
136
137
  endDateTime: Date;
137
138
  }
@@ -41,4 +41,5 @@ export interface Worker extends BaseModel {
41
41
  trialStartDateTime: string | Date;
42
42
  trialEndDateTime: string | Date;
43
43
  isTrial: boolean;
44
+ hashCpf: string;
44
45
  }
@@ -1,4 +1,5 @@
1
1
  export declare enum WorkerBlockListTypes {
2
2
  COMPANY = "company",
3
- ESTABLISHMENT = "establishment"
3
+ ESTABLISHMENT = "establishment",
4
+ CHAIN = "chain"
4
5
  }
@@ -5,5 +5,6 @@ var WorkerBlockListTypes;
5
5
  (function (WorkerBlockListTypes) {
6
6
  WorkerBlockListTypes["COMPANY"] = "company";
7
7
  WorkerBlockListTypes["ESTABLISHMENT"] = "establishment";
8
+ WorkerBlockListTypes["CHAIN"] = "chain";
8
9
  })(WorkerBlockListTypes = exports.WorkerBlockListTypes || (exports.WorkerBlockListTypes = {}));
9
10
  //# sourceMappingURL=WorkerBlockListTypes.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"WorkerBlockListTypes.js","sourceRoot":"","sources":["../../src/enums/WorkerBlockListTypes.ts"],"names":[],"mappings":";;;AAAA,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,2CAAmB,CAAA;IACnB,uDAA+B,CAAA;AACjC,CAAC,EAHW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAG/B"}
1
+ {"version":3,"file":"WorkerBlockListTypes.js","sourceRoot":"","sources":["../../src/enums/WorkerBlockListTypes.ts"],"names":[],"mappings":";;;AAAA,IAAY,oBAIX;AAJD,WAAY,oBAAoB;IAC9B,2CAAmB,CAAA;IACnB,uDAA+B,CAAA;IAC/B,uCAAe,CAAA;AACjB,CAAC,EAJW,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAI/B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anthor/entities-types",
3
- "version": "1.41.0-alpha.6",
3
+ "version": "1.42.0-alpha.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": "e227cba5e346bd64e007328f8fb56d823c64269e"
24
+ "gitHead": "c26f8233bf7c322613a66a9c1617b470123cbc74"
25
25
  }