@anthor/entities-types 1.92.0 → 1.93.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,25 @@
|
|
|
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.93.0](https://github.com/anthorteam/backend/compare/v1.93.0-alpha.1...v1.93.0) (2023-01-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @anthor/entities-types
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.93.0-alpha.0](https://github.com/anthorteam/backend/compare/v1.92.0...v1.93.0-alpha.0) (2023-01-16)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* add paymentProvider field on Worker ([eee787f](https://github.com/anthorteam/backend/commit/eee787f0edf45db4f6215d17f9756c2ee52619e3))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [1.92.0](https://github.com/anthorteam/backend/compare/v1.92.0-alpha.1...v1.92.0) (2023-01-16)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @anthor/entities-types
|
|
@@ -10,6 +10,7 @@ import { WorkerGender } from '../enums/WorkerGender';
|
|
|
10
10
|
import { SignupStage } from '../enums/SignupStage';
|
|
11
11
|
import { Comunications } from './nested/Comunications';
|
|
12
12
|
import { WorkerBlock } from './nested/WorkerBlock';
|
|
13
|
+
import { PaymentProviders } from '../enums/PaymentProviders';
|
|
13
14
|
import { Gateway } from './nested/Gateway';
|
|
14
15
|
export interface Worker extends BaseModel {
|
|
15
16
|
addressId: string;
|
|
@@ -56,5 +57,6 @@ export interface Worker extends BaseModel {
|
|
|
56
57
|
utmMedium: string;
|
|
57
58
|
utmSource: string;
|
|
58
59
|
utmCampaign: string;
|
|
60
|
+
paymentProvider: PaymentProviders;
|
|
59
61
|
gateway: Gateway;
|
|
60
62
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PaymentProviders = void 0;
|
|
4
|
+
var PaymentProviders;
|
|
5
|
+
(function (PaymentProviders) {
|
|
6
|
+
PaymentProviders["IUGU"] = "iugu";
|
|
7
|
+
PaymentProviders["JUNO"] = "juno";
|
|
8
|
+
})(PaymentProviders = exports.PaymentProviders || (exports.PaymentProviders = {}));
|
|
9
|
+
//# sourceMappingURL=PaymentProviders.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PaymentProviders.js","sourceRoot":"","sources":["../../src/enums/PaymentProviders.ts"],"names":[],"mappings":";;;AAAA,IAAY,gBAGX;AAHD,WAAY,gBAAgB;IAC1B,iCAAa,CAAA;IACb,iCAAa,CAAA;AACf,CAAC,EAHW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAG3B"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anthor/entities-types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.93.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": "bb513361dc2a03da219a2fbc54997253a3f7dc83"
|
|
25
25
|
}
|