@fiado/type-kit 1.2.54 → 1.2.56
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/bin/riskProfile/dtos/UpdateFactorInfo.d.ts +5 -0
- package/bin/riskProfile/dtos/UpdateFactorInfo.js +5 -0
- package/bin/riskProfile/dtos/UpdateRiskProfileRequest.d.ts +5 -0
- package/bin/riskProfile/dtos/UpdateRiskProfileRequest.js +5 -0
- package/bin/riskProfile/enums/RiskFactorCategoryEnum.d.ts +14 -0
- package/bin/riskProfile/enums/RiskFactorCategoryEnum.js +18 -0
- package/bin/riskProfile/index.d.ts +3 -0
- package/bin/riskProfile/index.js +3 -0
- package/bin/transaction/dtos/TransactionCreateRequest.d.ts +1 -0
- package/bin/transaction/dtos/TransactionCreateRequest.js +5 -0
- package/package.json +1 -1
- package/src/riskProfile/dtos/UpdateFactorInfo.ts +6 -0
- package/src/riskProfile/dtos/UpdateRiskProfileRequest.ts +6 -0
- package/src/riskProfile/enums/RiskFactorCategoryEnum.ts +14 -0
- package/src/riskProfile/index.ts +3 -0
- package/src/transaction/dtos/TransactionCreateRequest.ts +3 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare enum RiskFactorCategoryEnum {
|
|
2
|
+
TENURE = "TENURE",
|
|
3
|
+
FISCAL = "FISCAL",
|
|
4
|
+
AGE = "AGE",
|
|
5
|
+
GENDER = "GENDER",
|
|
6
|
+
NATIONALITY = "NATIONALITY",
|
|
7
|
+
LOCATION = "LOCATION",
|
|
8
|
+
ACTIVITY = "ACTIVITY",
|
|
9
|
+
TX_VOLUME = "TX_VOLUME",
|
|
10
|
+
FUNDS_SOURCE = "FUNDS_SOURCE",
|
|
11
|
+
SOURCES_COUNT = "SOURCES_COUNT",
|
|
12
|
+
PEP = "PEP",
|
|
13
|
+
INTERNAL_RISK = "INTERNAL_RISK"
|
|
14
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RiskFactorCategoryEnum = void 0;
|
|
4
|
+
var RiskFactorCategoryEnum;
|
|
5
|
+
(function (RiskFactorCategoryEnum) {
|
|
6
|
+
RiskFactorCategoryEnum["TENURE"] = "TENURE";
|
|
7
|
+
RiskFactorCategoryEnum["FISCAL"] = "FISCAL";
|
|
8
|
+
RiskFactorCategoryEnum["AGE"] = "AGE";
|
|
9
|
+
RiskFactorCategoryEnum["GENDER"] = "GENDER";
|
|
10
|
+
RiskFactorCategoryEnum["NATIONALITY"] = "NATIONALITY";
|
|
11
|
+
RiskFactorCategoryEnum["LOCATION"] = "LOCATION";
|
|
12
|
+
RiskFactorCategoryEnum["ACTIVITY"] = "ACTIVITY";
|
|
13
|
+
RiskFactorCategoryEnum["TX_VOLUME"] = "TX_VOLUME";
|
|
14
|
+
RiskFactorCategoryEnum["FUNDS_SOURCE"] = "FUNDS_SOURCE";
|
|
15
|
+
RiskFactorCategoryEnum["SOURCES_COUNT"] = "SOURCES_COUNT";
|
|
16
|
+
RiskFactorCategoryEnum["PEP"] = "PEP";
|
|
17
|
+
RiskFactorCategoryEnum["INTERNAL_RISK"] = "INTERNAL_RISK";
|
|
18
|
+
})(RiskFactorCategoryEnum || (exports.RiskFactorCategoryEnum = RiskFactorCategoryEnum = {}));
|
package/bin/riskProfile/index.js
CHANGED
|
@@ -15,4 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./dtos/CreateRiskProfileRequest"), exports);
|
|
18
|
+
__exportStar(require("./dtos/UpdateFactorInfo"), exports);
|
|
19
|
+
__exportStar(require("./dtos/UpdateRiskProfileRequest"), exports);
|
|
18
20
|
__exportStar(require("./enums/PepLevelEnum"), exports);
|
|
21
|
+
__exportStar(require("./enums/RiskFactorCategoryEnum"), exports);
|
|
@@ -8,6 +8,7 @@ import { Total } from "./Total";
|
|
|
8
8
|
import { Product } from "./Product";
|
|
9
9
|
import { TransactionStatusEnum } from "../enums/TransactionStatusEnum";
|
|
10
10
|
export declare class TransactionCreateRequest {
|
|
11
|
+
id: string;
|
|
11
12
|
transactionNumber: string;
|
|
12
13
|
directoryId: string;
|
|
13
14
|
peopleId: string;
|
|
@@ -25,6 +25,11 @@ const TransactionStatusEnum_1 = require("../enums/TransactionStatusEnum");
|
|
|
25
25
|
class TransactionCreateRequest {
|
|
26
26
|
}
|
|
27
27
|
exports.TransactionCreateRequest = TransactionCreateRequest;
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
30
|
+
(0, class_validator_1.IsString)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], TransactionCreateRequest.prototype, "id", void 0);
|
|
28
33
|
__decorate([
|
|
29
34
|
(0, class_validator_1.IsNotEmpty)(),
|
|
30
35
|
(0, class_validator_1.IsString)(),
|
package/package.json
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export enum RiskFactorCategoryEnum {
|
|
2
|
+
TENURE = "TENURE",
|
|
3
|
+
FISCAL = "FISCAL",
|
|
4
|
+
AGE = "AGE",
|
|
5
|
+
GENDER = "GENDER",
|
|
6
|
+
NATIONALITY = "NATIONALITY",
|
|
7
|
+
LOCATION = "LOCATION",
|
|
8
|
+
ACTIVITY = "ACTIVITY",
|
|
9
|
+
TX_VOLUME = "TX_VOLUME",
|
|
10
|
+
FUNDS_SOURCE = "FUNDS_SOURCE",
|
|
11
|
+
SOURCES_COUNT = "SOURCES_COUNT",
|
|
12
|
+
PEP = "PEP",
|
|
13
|
+
INTERNAL_RISK = "INTERNAL_RISK",
|
|
14
|
+
}
|
package/src/riskProfile/index.ts
CHANGED