@fiado/type-kit 1.6.87 → 1.6.89
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/account/dtos/CreateBankAccountOutput.d.ts +5 -0
- package/bin/account/dtos/CreateBankAccountOutput.js +6 -0
- package/bin/account/dtos/CreateBankAccountUserOutput.d.ts +8 -0
- package/bin/account/dtos/CreateBankAccountUserOutput.js +6 -0
- package/bin/creditContract/dto/CreditContractCreateRequest.d.ts +15 -0
- package/bin/creditContract/dto/CreditContractCreateRequest.js +72 -0
- package/bin/helpdesk/dtos/CreateHelpdeskUser.d.ts +13 -0
- package/bin/helpdesk/dtos/CreateHelpdeskUser.js +43 -0
- package/bin/identity/dtos/PeopleCreateRequest.d.ts +22 -0
- package/bin/identity/dtos/PeopleResponse.d.ts +60 -52
- package/bin/transaction/TransactionCreateRequest.d.ts +2 -0
- package/bin/transaction/TransactionCreateRequest.js +6 -0
- package/bin/transaction/TransactionCreateResponse.d.ts +2 -0
- package/bin/transaction/TransactionCreateResponse.js +6 -0
- package/bin/transaction/dtos/TransactionSourceEnum.d.ts +5 -0
- package/bin/transaction/dtos/TransactionSourceEnum.js +9 -0
- package/package.json +1 -1
- package/src/identity/dtos/PeopleCreateRequest.ts +22 -4
- package/src/identity/dtos/PeopleResponse.ts +60 -57
- package/bin/group/dtos/GroupDirectoryRetationsUpdateRequest.d.ts +0 -3
- package/bin/group/dtos/GroupDirectoryRetationsUpdateRequest.js +0 -22
- package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.d.ts +0 -5
- package/bin/transactionProcessor/dtos/private/AuthorizeP2pTransactionRequest.js +0 -6
- package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.d.ts +0 -7
- package/bin/transactionProcessor/dtos/private/AuthorizePocketTransactionRequest.js +0 -6
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CountryId } from "../../country";
|
|
2
|
+
import { InstrumentEnum } from "../enums/InstrumentEnum";
|
|
3
|
+
export default class CreditContractCreateRequest {
|
|
4
|
+
directoryUserId: string;
|
|
5
|
+
relatedTransaction: string;
|
|
6
|
+
peopleId: string;
|
|
7
|
+
currencyId: CountryId;
|
|
8
|
+
creditNotional: number;
|
|
9
|
+
creditFee: number;
|
|
10
|
+
creditTax: number;
|
|
11
|
+
creditTotal: number;
|
|
12
|
+
instrument: InstrumentEnum;
|
|
13
|
+
amountBlocked: number;
|
|
14
|
+
relatedPocketId: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
const class_validator_1 = require("class-validator");
|
|
13
|
+
const country_1 = require("../../country");
|
|
14
|
+
const InstrumentEnum_1 = require("../enums/InstrumentEnum");
|
|
15
|
+
class CreditContractCreateRequest {
|
|
16
|
+
}
|
|
17
|
+
exports.default = CreditContractCreateRequest;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], CreditContractCreateRequest.prototype, "directoryUserId", void 0);
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, class_validator_1.IsString)(),
|
|
25
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], CreditContractCreateRequest.prototype, "relatedTransaction", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, class_validator_1.IsString)(),
|
|
30
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], CreditContractCreateRequest.prototype, "peopleId", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, class_validator_1.IsEnum)(country_1.CountryId),
|
|
35
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], CreditContractCreateRequest.prototype, "currencyId", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, class_validator_1.IsNumber)(),
|
|
40
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
41
|
+
__metadata("design:type", Number)
|
|
42
|
+
], CreditContractCreateRequest.prototype, "creditNotional", void 0);
|
|
43
|
+
__decorate([
|
|
44
|
+
(0, class_validator_1.IsNumber)(),
|
|
45
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
46
|
+
__metadata("design:type", Number)
|
|
47
|
+
], CreditContractCreateRequest.prototype, "creditFee", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, class_validator_1.IsNumber)(),
|
|
50
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
51
|
+
__metadata("design:type", Number)
|
|
52
|
+
], CreditContractCreateRequest.prototype, "creditTax", void 0);
|
|
53
|
+
__decorate([
|
|
54
|
+
(0, class_validator_1.IsNumber)(),
|
|
55
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
56
|
+
__metadata("design:type", Number)
|
|
57
|
+
], CreditContractCreateRequest.prototype, "creditTotal", void 0);
|
|
58
|
+
__decorate([
|
|
59
|
+
(0, class_validator_1.IsEnum)(InstrumentEnum_1.InstrumentEnum),
|
|
60
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
61
|
+
__metadata("design:type", String)
|
|
62
|
+
], CreditContractCreateRequest.prototype, "instrument", void 0);
|
|
63
|
+
__decorate([
|
|
64
|
+
(0, class_validator_1.IsNumber)(),
|
|
65
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
66
|
+
__metadata("design:type", Number)
|
|
67
|
+
], CreditContractCreateRequest.prototype, "amountBlocked", void 0);
|
|
68
|
+
__decorate([
|
|
69
|
+
(0, class_validator_1.IsString)(),
|
|
70
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
71
|
+
__metadata("design:type", String)
|
|
72
|
+
], CreditContractCreateRequest.prototype, "relatedPocketId", void 0);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { TypeOfContactIdEnum } from "../../contactInfo";
|
|
2
|
+
export declare class CreateHelpdeskUser {
|
|
3
|
+
directoryId: string;
|
|
4
|
+
indexName: string;
|
|
5
|
+
usaDebitAccount: boolean;
|
|
6
|
+
mxnDebitAccount: boolean;
|
|
7
|
+
otherContacts: {
|
|
8
|
+
contact: string;
|
|
9
|
+
typeOfContactId: TypeOfContactIdEnum;
|
|
10
|
+
}[];
|
|
11
|
+
directoryStatus: string;
|
|
12
|
+
bankSponsor: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.CreateHelpdeskUser = void 0;
|
|
13
|
+
const class_validator_1 = require("class-validator");
|
|
14
|
+
class CreateHelpdeskUser {
|
|
15
|
+
}
|
|
16
|
+
exports.CreateHelpdeskUser = CreateHelpdeskUser;
|
|
17
|
+
__decorate([
|
|
18
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], CreateHelpdeskUser.prototype, "directoryId", void 0);
|
|
22
|
+
__decorate([
|
|
23
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
24
|
+
(0, class_validator_1.IsString)(),
|
|
25
|
+
__metadata("design:type", String)
|
|
26
|
+
], CreateHelpdeskUser.prototype, "indexName", void 0);
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, class_validator_1.IsBoolean)(),
|
|
29
|
+
__metadata("design:type", Boolean)
|
|
30
|
+
], CreateHelpdeskUser.prototype, "usaDebitAccount", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, class_validator_1.IsBoolean)(),
|
|
33
|
+
__metadata("design:type", Boolean)
|
|
34
|
+
], CreateHelpdeskUser.prototype, "mxnDebitAccount", void 0);
|
|
35
|
+
__decorate([
|
|
36
|
+
(0, class_validator_1.IsString)(),
|
|
37
|
+
(0, class_validator_1.IsNotEmpty)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], CreateHelpdeskUser.prototype, "directoryStatus", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, class_validator_1.IsString)(),
|
|
42
|
+
__metadata("design:type", String)
|
|
43
|
+
], CreateHelpdeskUser.prototype, "bankSponsor", void 0);
|
|
@@ -1,2 +1,24 @@
|
|
|
1
|
+
import { AppEnum } from "../../transactionProcessor";
|
|
2
|
+
import { SexDocument } from "../enums/SexDocument";
|
|
1
3
|
export declare class PeopleCreateRequest {
|
|
4
|
+
id: string;
|
|
5
|
+
creationMethod?: AppEnum | null;
|
|
6
|
+
preferredName?: string | null;
|
|
7
|
+
preferredPronoun?: string | null;
|
|
8
|
+
countryOfBirth?: string | null;
|
|
9
|
+
dateOfBirth?: string | null;
|
|
10
|
+
stateOfBirth?: string | null;
|
|
11
|
+
nationalities?: string[] | null;
|
|
12
|
+
docSex?: SexDocument | null;
|
|
13
|
+
occupation?: string | null;
|
|
14
|
+
MXN_FundsPurpose?: number | null;
|
|
15
|
+
MXN_UsageMonthly?: number | null;
|
|
16
|
+
MXN_MaximumTX?: number | null;
|
|
17
|
+
USA_DebitAccountWish: boolean;
|
|
18
|
+
MEX_DebitAccountWish?: boolean | null;
|
|
19
|
+
countryOfDomicile?: string | null;
|
|
20
|
+
email: string | null;
|
|
21
|
+
secondaryPhoneNumber: string | null;
|
|
22
|
+
phoneNumber: string | null;
|
|
23
|
+
directoryId: string | null;
|
|
2
24
|
}
|
|
@@ -1,26 +1,25 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AuthorizationNeededMXNStatus } from '../enums/AuthorizationNeededMXNStatus';
|
|
3
|
-
import { InfoSelfVerifiedStatus } from '../enums/InfoSelfVerifiedStatus';
|
|
1
|
+
import { AppEnum } from '../../transactionProcessor';
|
|
4
2
|
import { SexDocument } from '../enums/SexDocument';
|
|
5
3
|
import { IdentificationDocument } from './IdentificationDocument';
|
|
6
4
|
export declare class PeopleResponse {
|
|
7
5
|
id: string;
|
|
8
6
|
createDate: string;
|
|
9
|
-
lastUpdateDate:
|
|
10
|
-
creationMethod:
|
|
11
|
-
indexName: string;
|
|
12
|
-
preferredName: string;
|
|
7
|
+
lastUpdateDate: AppEnum | null;
|
|
8
|
+
creationMethod: AppEnum | null;
|
|
9
|
+
indexName: string | null;
|
|
10
|
+
preferredName: string | null;
|
|
13
11
|
usSuffix: string | null;
|
|
14
12
|
usLastNames: string | null;
|
|
15
13
|
usNames: string | null;
|
|
16
14
|
latNames: string | null;
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
latFirstLastName: string | null;
|
|
16
|
+
latSecondLastName: string | null;
|
|
19
17
|
aliasNames: string[] | null;
|
|
20
18
|
preferredPronoun: string | null;
|
|
21
19
|
SSN_ITIN: string | null;
|
|
22
20
|
rfc: string | null;
|
|
23
21
|
curp: string | null;
|
|
22
|
+
electorKey: string | null;
|
|
24
23
|
passportNumber: string | null;
|
|
25
24
|
countryOfPassport: string | null;
|
|
26
25
|
documents: IdentificationDocument[] | null;
|
|
@@ -30,53 +29,62 @@ export declare class PeopleResponse {
|
|
|
30
29
|
nationalities: string[] | null;
|
|
31
30
|
docSex: SexDocument | null;
|
|
32
31
|
internalEmail: string | null;
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
notes: string | null;
|
|
32
|
+
USD_IncomeSource: string | null;
|
|
33
|
+
operationId: string | null;
|
|
36
34
|
tenantId: string | null;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
MEX_CreditAdditional: boolean;
|
|
41
|
-
magicNumber: boolean;
|
|
42
|
-
USA_UploadDocument: boolean;
|
|
43
|
-
MEX_UploadDocument: boolean;
|
|
44
|
-
videoSelfieVerified: boolean;
|
|
45
|
-
MEX_ValidDocument: string;
|
|
46
|
-
USA_ValidDocument: string;
|
|
47
|
-
USA_FacematchVerified: boolean | null;
|
|
48
|
-
MEX_FacematchVerified: boolean | null;
|
|
49
|
-
fiadoListApproved: boolean | null;
|
|
50
|
-
cnbvListApproved: boolean | null;
|
|
51
|
-
blackListApproved: boolean | null;
|
|
52
|
-
whiteList: boolean | null;
|
|
53
|
-
hasOwner: boolean;
|
|
54
|
-
older18: boolean | null;
|
|
55
|
-
USA_Address: boolean;
|
|
56
|
-
MEX_Address: boolean;
|
|
57
|
-
MEX_ProofAddress: boolean;
|
|
58
|
-
USA_DebitAccountWish: boolean;
|
|
59
|
-
MEX_DebitAccountWish: boolean;
|
|
60
|
-
MEX_CreditAdditionalWish: boolean;
|
|
61
|
-
MEX_CreditClientWish: boolean;
|
|
62
|
-
SSN_ITINRequired: boolean | null;
|
|
35
|
+
occupation: string | null;
|
|
36
|
+
MXN_MonthlyIncome: string | null;
|
|
37
|
+
MXN_MonthlyExtraSupport: string | null;
|
|
63
38
|
MXN_FundsPurpose: string | null;
|
|
64
39
|
MXN_UsageMonthly: string | null;
|
|
65
40
|
MXN_MaximumTX: string | null;
|
|
66
|
-
signature: boolean;
|
|
67
|
-
MEX_Beneficiaries: boolean;
|
|
68
|
-
MoneySource: string | null;
|
|
69
|
-
MXN_MonthlyIncome: string | null;
|
|
70
|
-
MXN_MonthlyExtraSupport: string | null;
|
|
71
41
|
pepLevel: string | null;
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
actMXN: "SELF" | "OTHER";
|
|
76
|
-
beneficialOwnerMXN: string | null;
|
|
42
|
+
USD_BeneficialOwner: string | null;
|
|
43
|
+
USD_WeeklyIncome: string | null;
|
|
44
|
+
MXN_BeneficialOwner: string | null;
|
|
77
45
|
monthlyIncomeMXN: string | null;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
46
|
+
publicServer: string | null;
|
|
47
|
+
USD_MonthlySentHome: string | null;
|
|
48
|
+
USD_MaximumTX: string | null;
|
|
49
|
+
accountRequirement: {
|
|
50
|
+
id: string;
|
|
51
|
+
authorizationNeededMXN: string;
|
|
52
|
+
authorizerEmail: string;
|
|
53
|
+
blackListApproved: boolean | null;
|
|
54
|
+
cnbvListApproved: boolean | null;
|
|
55
|
+
countryOfDomicile: string | null;
|
|
56
|
+
dateOfVeredict: boolean | null;
|
|
57
|
+
duplicateUserDetection: boolean | null;
|
|
58
|
+
fiadoListApproved: boolean | null;
|
|
59
|
+
infoSelfVerified: boolean | null;
|
|
60
|
+
magicNumber: boolean | null;
|
|
61
|
+
MEX_Address: boolean | null;
|
|
62
|
+
MEX_Beneficiaries: boolean | null;
|
|
63
|
+
MEX_DebitAccount: boolean | null;
|
|
64
|
+
MEX_DebitAccountWish: boolean | null;
|
|
65
|
+
MEX_FacematchVerified: boolean | null;
|
|
66
|
+
MEX_ProofAddress: boolean | null;
|
|
67
|
+
MEX_TemplateMatch: boolean | null;
|
|
68
|
+
MEX_UploadDocument: boolean | null;
|
|
69
|
+
USA_UploadDocument: boolean | null;
|
|
70
|
+
MEX_AlterationDetection: boolean | null;
|
|
71
|
+
MEX_CURPValidation: boolean | null;
|
|
72
|
+
MEX_INEValidation: boolean | null;
|
|
73
|
+
MEX_Signed: boolean | null;
|
|
74
|
+
USA_Beneficiaries: boolean | null;
|
|
75
|
+
USA_infoSelfVerified: boolean | null;
|
|
76
|
+
USA_Signed: boolean | null;
|
|
77
|
+
older18: boolean | null;
|
|
78
|
+
signature: boolean | null;
|
|
79
|
+
USA_Address: boolean | null;
|
|
80
|
+
USA_DebitAccount: boolean | null;
|
|
81
|
+
USA_DebitAccountWish: boolean | null;
|
|
82
|
+
USA_FacematchVerified: boolean | null;
|
|
83
|
+
USA_ProgramWish: boolean | null;
|
|
84
|
+
USA_TemplateMatch: boolean | null;
|
|
85
|
+
USA_AlterationDetection: boolean | null;
|
|
86
|
+
uploadSelfie: boolean | null;
|
|
87
|
+
createdAt: number;
|
|
88
|
+
updatedAt: number;
|
|
89
|
+
};
|
|
82
90
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TransactionSourceEnum = void 0;
|
|
4
|
+
var TransactionSourceEnum;
|
|
5
|
+
(function (TransactionSourceEnum) {
|
|
6
|
+
TransactionSourceEnum["FIADO_INC"] = "FIADO_INC";
|
|
7
|
+
TransactionSourceEnum["FIADO_IFPE"] = "FIADO_IFPE";
|
|
8
|
+
TransactionSourceEnum["FIADO_SA"] = "FIADO_SA";
|
|
9
|
+
})(TransactionSourceEnum || (exports.TransactionSourceEnum = TransactionSourceEnum = {}));
|
package/package.json
CHANGED
|
@@ -1,8 +1,26 @@
|
|
|
1
|
+
import { AppEnum } from "../../transactionProcessor"
|
|
2
|
+
import { SexDocument } from "../enums/SexDocument"
|
|
1
3
|
|
|
2
4
|
|
|
3
5
|
export class PeopleCreateRequest {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
id: string
|
|
7
|
+
creationMethod?: AppEnum | null
|
|
8
|
+
preferredName?: string | null
|
|
9
|
+
preferredPronoun?: string | null
|
|
10
|
+
countryOfBirth?: string | null
|
|
11
|
+
dateOfBirth?: string | null
|
|
12
|
+
stateOfBirth?: string | null
|
|
13
|
+
nationalities?: string[] | null
|
|
14
|
+
docSex?: SexDocument | null
|
|
15
|
+
occupation?: string | null
|
|
16
|
+
MXN_FundsPurpose?:number | null;
|
|
17
|
+
MXN_UsageMonthly?:number | null;
|
|
18
|
+
MXN_MaximumTX?:number | null;
|
|
19
|
+
USA_DebitAccountWish: boolean
|
|
20
|
+
MEX_DebitAccountWish?: boolean | null
|
|
21
|
+
countryOfDomicile?: string | null
|
|
22
|
+
email: string | null
|
|
23
|
+
secondaryPhoneNumber: string | null
|
|
24
|
+
phoneNumber: string | null
|
|
25
|
+
directoryId: string | null
|
|
8
26
|
}
|
|
@@ -1,30 +1,27 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
3
|
-
import { AuthorizationNeededMXNStatus } from '../enums/AuthorizationNeededMXNStatus';
|
|
4
|
-
import { InfoSelfVerifiedStatus } from '../enums/InfoSelfVerifiedStatus';
|
|
2
|
+
import { AppEnum } from '../../transactionProcessor';
|
|
5
3
|
import { SexDocument } from '../enums/SexDocument';
|
|
6
4
|
import { IdentificationDocument } from './IdentificationDocument';
|
|
7
5
|
|
|
8
|
-
|
|
9
6
|
export class PeopleResponse {
|
|
10
|
-
|
|
11
7
|
id: string;
|
|
12
8
|
createDate: string;
|
|
13
|
-
lastUpdateDate:
|
|
14
|
-
creationMethod:
|
|
15
|
-
indexName: string;
|
|
16
|
-
preferredName: string;
|
|
9
|
+
lastUpdateDate: AppEnum | null;
|
|
10
|
+
creationMethod: AppEnum | null;
|
|
11
|
+
indexName: string | null;
|
|
12
|
+
preferredName: string | null;
|
|
17
13
|
usSuffix: string | null;
|
|
18
14
|
usLastNames: string | null;
|
|
19
15
|
usNames: string | null;
|
|
20
16
|
latNames: string | null;
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
latFirstLastName: string | null;
|
|
18
|
+
latSecondLastName: string | null;
|
|
23
19
|
aliasNames: string[] | null;
|
|
24
20
|
preferredPronoun: string | null;
|
|
25
21
|
SSN_ITIN: string | null;
|
|
26
22
|
rfc: string | null;
|
|
27
23
|
curp: string | null;
|
|
24
|
+
electorKey: string | null;
|
|
28
25
|
passportNumber: string | null;
|
|
29
26
|
countryOfPassport: string | null;
|
|
30
27
|
documents: IdentificationDocument[] | null;
|
|
@@ -34,56 +31,62 @@ export class PeopleResponse {
|
|
|
34
31
|
nationalities: string[] | null;
|
|
35
32
|
docSex: SexDocument | null;
|
|
36
33
|
internalEmail: string | null;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
notes: string | null;
|
|
34
|
+
USD_IncomeSource: string | null;
|
|
35
|
+
operationId: string | null;
|
|
40
36
|
tenantId: string | null;
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
MEX_CreditAdditional: boolean;
|
|
45
|
-
magicNumber: boolean;
|
|
46
|
-
USA_UploadDocument: boolean;
|
|
47
|
-
MEX_UploadDocument: boolean;
|
|
48
|
-
videoSelfieVerified: boolean;
|
|
49
|
-
MEX_ValidDocument: string;
|
|
50
|
-
USA_ValidDocument: string;
|
|
51
|
-
USA_FacematchVerified: boolean | null;
|
|
52
|
-
MEX_FacematchVerified: boolean | null;
|
|
53
|
-
fiadoListApproved: boolean | null;
|
|
54
|
-
cnbvListApproved: boolean | null;
|
|
55
|
-
blackListApproved: boolean | null;
|
|
56
|
-
whiteList: boolean | null;
|
|
57
|
-
hasOwner: boolean;
|
|
58
|
-
older18: boolean | null;
|
|
59
|
-
USA_Address: boolean;
|
|
60
|
-
MEX_Address: boolean;
|
|
61
|
-
MEX_ProofAddress: boolean;
|
|
62
|
-
USA_DebitAccountWish: boolean;
|
|
63
|
-
MEX_DebitAccountWish: boolean;
|
|
64
|
-
MEX_CreditAdditionalWish: boolean;
|
|
65
|
-
MEX_CreditClientWish: boolean;
|
|
66
|
-
SSN_ITINRequired: boolean | null;
|
|
67
|
-
|
|
37
|
+
occupation: string | null;
|
|
38
|
+
MXN_MonthlyIncome: string | null;
|
|
39
|
+
MXN_MonthlyExtraSupport: string | null;
|
|
68
40
|
MXN_FundsPurpose: string | null;
|
|
69
41
|
MXN_UsageMonthly: string | null;
|
|
70
42
|
MXN_MaximumTX: string | null;
|
|
71
|
-
signature: boolean;
|
|
72
|
-
MEX_Beneficiaries: boolean;
|
|
73
|
-
MoneySource: string | null;
|
|
74
|
-
MXN_MonthlyIncome: string | null;
|
|
75
|
-
MXN_MonthlyExtraSupport: string | null;
|
|
76
43
|
pepLevel: string | null;
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
beneficialOwner:string | null;
|
|
81
|
-
weeklyIncomeUSD: string | null;
|
|
82
|
-
actMXN: "SELF" | "OTHER";
|
|
83
|
-
beneficialOwnerMXN: string | null;
|
|
44
|
+
USD_BeneficialOwner: string | null;
|
|
45
|
+
USD_WeeklyIncome: string | null;
|
|
46
|
+
MXN_BeneficialOwner: string | null;
|
|
84
47
|
monthlyIncomeMXN: string | null;
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
48
|
+
publicServer: string | null;
|
|
49
|
+
USD_MonthlySentHome: string | null;
|
|
50
|
+
USD_MaximumTX: string | null;
|
|
51
|
+
accountRequirement:{
|
|
52
|
+
id: string;
|
|
53
|
+
authorizationNeededMXN:string;
|
|
54
|
+
authorizerEmail:string;
|
|
55
|
+
blackListApproved:boolean| null;
|
|
56
|
+
cnbvListApproved:boolean| null;
|
|
57
|
+
countryOfDomicile:string|null;
|
|
58
|
+
dateOfVeredict:boolean| null;
|
|
59
|
+
duplicateUserDetection:boolean| null;
|
|
60
|
+
fiadoListApproved:boolean| null;
|
|
61
|
+
infoSelfVerified:boolean| null;
|
|
62
|
+
magicNumber:boolean| null;
|
|
63
|
+
MEX_Address:boolean| null;
|
|
64
|
+
MEX_Beneficiaries:boolean| null;
|
|
65
|
+
MEX_DebitAccount:boolean| null;
|
|
66
|
+
MEX_DebitAccountWish:boolean| null;
|
|
67
|
+
MEX_FacematchVerified:boolean| null;
|
|
68
|
+
MEX_ProofAddress:boolean| null;
|
|
69
|
+
MEX_TemplateMatch:boolean| null;
|
|
70
|
+
MEX_UploadDocument:boolean| null;
|
|
71
|
+
USA_UploadDocument: boolean | null;
|
|
72
|
+
MEX_AlterationDetection:boolean | null;
|
|
73
|
+
MEX_CURPValidation:boolean | null;
|
|
74
|
+
MEX_INEValidation:boolean | null;
|
|
75
|
+
MEX_Signed:boolean | null;
|
|
76
|
+
USA_Beneficiaries:boolean | null;
|
|
77
|
+
USA_infoSelfVerified:boolean | null;
|
|
78
|
+
USA_Signed:boolean | null;
|
|
79
|
+
older18:boolean | null;
|
|
80
|
+
signature:boolean | null;
|
|
81
|
+
USA_Address:boolean | null;
|
|
82
|
+
USA_DebitAccount:boolean | null;
|
|
83
|
+
USA_DebitAccountWish:boolean | null;
|
|
84
|
+
USA_FacematchVerified:boolean|null;
|
|
85
|
+
USA_ProgramWish:boolean | null;
|
|
86
|
+
USA_TemplateMatch:boolean | null;
|
|
87
|
+
USA_AlterationDetection:boolean | null;
|
|
88
|
+
uploadSelfie:boolean| null;
|
|
89
|
+
createdAt:number,
|
|
90
|
+
updatedAt:number
|
|
91
|
+
}
|
|
89
92
|
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.GroupDirectoryRetationsUpdateRequest = void 0;
|
|
13
|
-
const class_validator_1 = require("class-validator");
|
|
14
|
-
class GroupDirectoryRetationsUpdateRequest {
|
|
15
|
-
}
|
|
16
|
-
exports.GroupDirectoryRetationsUpdateRequest = GroupDirectoryRetationsUpdateRequest;
|
|
17
|
-
__decorate([
|
|
18
|
-
(0, class_validator_1.IsOptional)(),
|
|
19
|
-
(0, class_validator_1.IsString)(),
|
|
20
|
-
(0, class_validator_1.Length)(1, 20),
|
|
21
|
-
__metadata("design:type", String)
|
|
22
|
-
], GroupDirectoryRetationsUpdateRequest.prototype, "agent", void 0);
|