@anthor/entities-types 1.94.0-alpha.0 → 1.94.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.94.0](https://github.com/anthorteam/backend/compare/v1.94.0-alpha.10...v1.94.0) (2023-01-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @anthor/entities-types
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.94.0-alpha.2](https://github.com/anthorteam/backend/compare/v1.94.0-alpha.1...v1.94.0-alpha.2) (2023-01-19)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* workers typing fixes ([1897b33](https://github.com/anthorteam/backend/commit/1897b3325f365901dad0f18775b0895ea4de67c3))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [1.94.0-alpha.0](https://github.com/anthorteam/backend/compare/v1.93.1-alpha.0...v1.94.0-alpha.0) (2023-01-18)
|
|
7
26
|
|
|
8
27
|
|
|
@@ -2,4 +2,4 @@ import { InventorySection } from './InventorySection';
|
|
|
2
2
|
import { PointOfSaleSurveySection } from './PointOfSaleSurveySection';
|
|
3
3
|
import { PriceSurveySection } from './PriceSurveySection';
|
|
4
4
|
import { ReplenishmentSection } from './ReplenishmentSection';
|
|
5
|
-
export
|
|
5
|
+
export type SectionUnion = ReplenishmentSection | InventorySection | PriceSurveySection | PointOfSaleSurveySection;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
interface JunoGateway {
|
|
1
|
+
export interface JunoGateway {
|
|
2
2
|
junoAuthToken: string;
|
|
3
3
|
junoDacId: string;
|
|
4
4
|
}
|
|
5
|
-
interface IuguGateway {
|
|
5
|
+
export interface IuguGateway {
|
|
6
6
|
accountId: string;
|
|
7
7
|
name: string;
|
|
8
8
|
liveApiToken: string;
|
|
9
9
|
testApiToken: string;
|
|
10
10
|
userToken: string;
|
|
11
11
|
}
|
|
12
|
-
interface FakeGateway {
|
|
12
|
+
export interface FakeGateway {
|
|
13
13
|
id: string;
|
|
14
14
|
apiToken: string;
|
|
15
15
|
}
|
|
@@ -18,4 +18,3 @@ export interface Gateway {
|
|
|
18
18
|
iugu: IuguGateway;
|
|
19
19
|
fake: FakeGateway;
|
|
20
20
|
}
|
|
21
|
-
export {};
|
|
@@ -4,7 +4,7 @@ exports.TransactionTypes = void 0;
|
|
|
4
4
|
var TransactionTypes;
|
|
5
5
|
(function (TransactionTypes) {
|
|
6
6
|
/**
|
|
7
|
-
* Transfer of activities fees from
|
|
7
|
+
* Transfer of activities fees from GatewaySchema to Worker
|
|
8
8
|
*/
|
|
9
9
|
TransactionTypes["WORKER_TRANSFER_FEE_ACTIVITIES"] = "worker_transfer_fee_activities";
|
|
10
10
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anthor/entities-types",
|
|
3
|
-
"version": "1.94.0
|
|
3
|
+
"version": "1.94.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": "c52428ead513684ae23a7338353b26da2481d550"
|
|
25
25
|
}
|