@fiado/type-kit 1.4.77 → 1.4.79
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/card/dtos/AccountCancelGetResponse.d.ts +18 -0
- package/bin/card/dtos/AccountCancelGetResponse.js +6 -0
- package/bin/card/enums/AccountCancellationStatus.d.ts +5 -0
- package/bin/card/enums/AccountCancellationStatus.js +9 -0
- package/bin/card/index.d.ts +2 -0
- package/bin/card/index.js +2 -0
- package/bin/identity/dtos/PeopleResponse.d.ts +11 -0
- package/bin/identity/dtos/PeopleUpdateRequest.d.ts +11 -0
- package/bin/identity/enums/AuthorizationNeededMXNStatus.d.ts +6 -0
- package/bin/identity/enums/AuthorizationNeededMXNStatus.js +10 -0
- package/bin/identity/enums/InfoSelfVerifiedStatus.d.ts +6 -0
- package/bin/identity/enums/InfoSelfVerifiedStatus.js +10 -0
- package/bin/identity/index.d.ts +2 -0
- package/bin/identity/index.js +2 -0
- package/package.json +1 -1
- package/src/card/dtos/AccountCancelGetResponse.ts +25 -0
- package/src/card/enums/AccountCancellationStatus.ts +8 -0
- package/src/card/index.ts +2 -0
- package/src/identity/dtos/PeopleResponse.ts +13 -0
- package/src/identity/dtos/PeopleUpdateRequest.ts +13 -1
- package/src/identity/enums/AuthorizationNeededMXNStatus.ts +10 -0
- package/src/identity/enums/InfoSelfVerifiedStatus.ts +10 -0
- package/src/identity/index.ts +2 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { AccountCancellationStatus } from "../enums/AccountCancellationStatus";
|
|
2
|
+
export declare class AccountCancelGetResponse {
|
|
3
|
+
id: string;
|
|
4
|
+
cancellationNumber: string;
|
|
5
|
+
closeDate: string;
|
|
6
|
+
directoryId: string;
|
|
7
|
+
status: AccountCancellationStatus;
|
|
8
|
+
companyName: string;
|
|
9
|
+
cancellationReason: string;
|
|
10
|
+
createdBy: string;
|
|
11
|
+
executedBy: string;
|
|
12
|
+
observations: string;
|
|
13
|
+
tenantId: string;
|
|
14
|
+
createdAt: string;
|
|
15
|
+
updatedAt: string;
|
|
16
|
+
indexName: string;
|
|
17
|
+
phoneNumber: string;
|
|
18
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AccountCancellationStatus = void 0;
|
|
4
|
+
var AccountCancellationStatus;
|
|
5
|
+
(function (AccountCancellationStatus) {
|
|
6
|
+
AccountCancellationStatus["EXECUTED"] = "EXECUTED";
|
|
7
|
+
AccountCancellationStatus["PENDING"] = "PENDING";
|
|
8
|
+
AccountCancellationStatus["REJECTED"] = "REJECTED";
|
|
9
|
+
})(AccountCancellationStatus || (exports.AccountCancellationStatus = AccountCancellationStatus = {}));
|
package/bin/card/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export * from './dtos/CardAdditionalRequest';
|
|
|
22
22
|
export * from './dtos/CardSensitiveInformationResponse';
|
|
23
23
|
export * from './dtos/CardSummaryResponse';
|
|
24
24
|
export * from './dtos/CardAdditionalResponse';
|
|
25
|
+
export * from './dtos/AccountCancelGetResponse';
|
|
25
26
|
export * from './enums/CardType';
|
|
26
27
|
export * from './enums/CardUpdateKey';
|
|
27
28
|
export * from './enums/IssuanceType';
|
|
@@ -38,3 +39,4 @@ export * from './enums/VirtualOrPhysical';
|
|
|
38
39
|
export * from './enums/DeliveryChannel';
|
|
39
40
|
export * from './enums/ExternalShippingStatus';
|
|
40
41
|
export * from './enums/ExternalShippingStatusDetails';
|
|
42
|
+
export * from './enums/AccountCancellationStatus';
|
package/bin/card/index.js
CHANGED
|
@@ -40,6 +40,7 @@ __exportStar(require("./dtos/CardAdditionalRequest"), exports);
|
|
|
40
40
|
__exportStar(require("./dtos/CardSensitiveInformationResponse"), exports);
|
|
41
41
|
__exportStar(require("./dtos/CardSummaryResponse"), exports);
|
|
42
42
|
__exportStar(require("./dtos/CardAdditionalResponse"), exports);
|
|
43
|
+
__exportStar(require("./dtos/AccountCancelGetResponse"), exports);
|
|
43
44
|
//enums
|
|
44
45
|
__exportStar(require("./enums/CardType"), exports);
|
|
45
46
|
__exportStar(require("./enums/CardUpdateKey"), exports);
|
|
@@ -57,3 +58,4 @@ __exportStar(require("./enums/VirtualOrPhysical"), exports);
|
|
|
57
58
|
__exportStar(require("./enums/DeliveryChannel"), exports);
|
|
58
59
|
__exportStar(require("./enums/ExternalShippingStatus"), exports);
|
|
59
60
|
__exportStar(require("./enums/ExternalShippingStatusDetails"), exports);
|
|
61
|
+
__exportStar(require("./enums/AccountCancellationStatus"), exports);
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { App } from '../../app/enums/App';
|
|
2
|
+
import { AuthorizationNeededMXNStatus } from '../enums/AuthorizationNeededMXNStatus';
|
|
3
|
+
import { InfoSelfVerifiedStatus } from '../enums/InfoSelfVerifiedStatus';
|
|
2
4
|
import { SexDocument } from '../enums/SexDocument';
|
|
3
5
|
import { IdentificationDocument } from './IdentificationDocument';
|
|
4
6
|
export declare class PeopleResponse {
|
|
@@ -67,4 +69,13 @@ export declare class PeopleResponse {
|
|
|
67
69
|
MXN_MonthlyIncome: string | null;
|
|
68
70
|
MXN_MonthlyExtraSupport: string | null;
|
|
69
71
|
pepLevel: string | null;
|
|
72
|
+
infoSelfVerified: InfoSelfVerifiedStatus;
|
|
73
|
+
beneficialOwner: string | null;
|
|
74
|
+
weeklyIncomeUSD: string | null;
|
|
75
|
+
actMXN: "SELF" | "OTHER";
|
|
76
|
+
beneficialOwnerMXN: string | null;
|
|
77
|
+
monthlyIncomeMXN: string | null;
|
|
78
|
+
authorizationNeededMXN: AuthorizationNeededMXNStatus;
|
|
79
|
+
authorizerEmail: string | null;
|
|
80
|
+
dateOfVeredict: string | null;
|
|
70
81
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { AuthorizationNeededMXNStatus } from "../enums/AuthorizationNeededMXNStatus";
|
|
2
|
+
import { InfoSelfVerifiedStatus } from "../enums/InfoSelfVerifiedStatus";
|
|
1
3
|
import { SexDocument } from "../enums/SexDocument";
|
|
2
4
|
import { IdentificationDocument } from "./IdentificationDocument";
|
|
3
5
|
export declare class PeopleUpdateRequest {
|
|
@@ -68,4 +70,13 @@ export declare class PeopleUpdateRequest {
|
|
|
68
70
|
MXN_MonthlyIncome?: string | null;
|
|
69
71
|
MXN_MonthlyExtraSupport?: string | null;
|
|
70
72
|
pepLevel?: string | null;
|
|
73
|
+
infoSelfVerified?: InfoSelfVerifiedStatus;
|
|
74
|
+
beneficialOwner?: string | null;
|
|
75
|
+
weeklyIncomeUSD?: string | null;
|
|
76
|
+
actMXN?: "SELF" | "OTHER";
|
|
77
|
+
beneficialOwnerMXN?: string | null;
|
|
78
|
+
monthlyIncomeMXN?: string | null;
|
|
79
|
+
authorizationNeededMXN?: AuthorizationNeededMXNStatus;
|
|
80
|
+
authorizerEmail?: string | null;
|
|
81
|
+
dateOfVeredict?: string | null;
|
|
71
82
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AuthorizationNeededMXNStatus = void 0;
|
|
4
|
+
var AuthorizationNeededMXNStatus;
|
|
5
|
+
(function (AuthorizationNeededMXNStatus) {
|
|
6
|
+
AuthorizationNeededMXNStatus["NOT_REQUIRED"] = "NOT_REQUIRED";
|
|
7
|
+
AuthorizationNeededMXNStatus["AUTH_REQUIRED"] = "AUTH_REQUIRED";
|
|
8
|
+
AuthorizationNeededMXNStatus["APROVED"] = "APROVED";
|
|
9
|
+
AuthorizationNeededMXNStatus["DENIED"] = "DENIED";
|
|
10
|
+
})(AuthorizationNeededMXNStatus || (exports.AuthorizationNeededMXNStatus = AuthorizationNeededMXNStatus = {}));
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.InfoSelfVerifiedStatus = void 0;
|
|
4
|
+
var InfoSelfVerifiedStatus;
|
|
5
|
+
(function (InfoSelfVerifiedStatus) {
|
|
6
|
+
InfoSelfVerifiedStatus["PENDING"] = "PENDING";
|
|
7
|
+
InfoSelfVerifiedStatus["USER_CONFIRMED"] = "USER_CONFIRMED";
|
|
8
|
+
InfoSelfVerifiedStatus["CHANGE_REQUEST"] = "CHANGE_REQUEST";
|
|
9
|
+
InfoSelfVerifiedStatus["CHANGE_EXECUTED"] = "CHANGE_EXECUTED";
|
|
10
|
+
})(InfoSelfVerifiedStatus || (exports.InfoSelfVerifiedStatus = InfoSelfVerifiedStatus = {}));
|
package/bin/identity/index.d.ts
CHANGED
|
@@ -5,3 +5,5 @@ export * from './dtos/TypeOfDocument';
|
|
|
5
5
|
export * from './dtos/PeopleUpdateRequest';
|
|
6
6
|
export * from './enums/IdentificationDocumentStatus';
|
|
7
7
|
export * from './enums/SexDocument';
|
|
8
|
+
export * from './enums/InfoSelfVerifiedStatus';
|
|
9
|
+
export * from './enums/AuthorizationNeededMXNStatus';
|
package/bin/identity/index.js
CHANGED
|
@@ -23,3 +23,5 @@ __exportStar(require("./dtos/PeopleUpdateRequest"), exports);
|
|
|
23
23
|
//enums
|
|
24
24
|
__exportStar(require("./enums/IdentificationDocumentStatus"), exports);
|
|
25
25
|
__exportStar(require("./enums/SexDocument"), exports);
|
|
26
|
+
__exportStar(require("./enums/InfoSelfVerifiedStatus"), exports);
|
|
27
|
+
__exportStar(require("./enums/AuthorizationNeededMXNStatus"), exports);
|
package/package.json
CHANGED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { AccountCancellationStatus } from "../enums/AccountCancellationStatus";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
export class AccountCancelGetResponse {
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
id: string;
|
|
8
|
+
cancellationNumber: string;
|
|
9
|
+
closeDate: string;
|
|
10
|
+
directoryId: string;
|
|
11
|
+
status: AccountCancellationStatus;
|
|
12
|
+
companyName: string;
|
|
13
|
+
cancellationReason: string;
|
|
14
|
+
createdBy: string;
|
|
15
|
+
executedBy: string;
|
|
16
|
+
observations: string;
|
|
17
|
+
tenantId: string;
|
|
18
|
+
createdAt: string;
|
|
19
|
+
updatedAt: string;
|
|
20
|
+
indexName: string;
|
|
21
|
+
phoneNumber: string;
|
|
22
|
+
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
|
package/src/card/index.ts
CHANGED
|
@@ -26,6 +26,7 @@ export * from './dtos/CardAdditionalRequest'
|
|
|
26
26
|
export * from './dtos/CardSensitiveInformationResponse'
|
|
27
27
|
export * from './dtos/CardSummaryResponse'
|
|
28
28
|
export * from './dtos/CardAdditionalResponse'
|
|
29
|
+
export * from './dtos/AccountCancelGetResponse'
|
|
29
30
|
|
|
30
31
|
//enums
|
|
31
32
|
export * from './enums/CardType';
|
|
@@ -44,6 +45,7 @@ export * from './enums/VirtualOrPhysical'
|
|
|
44
45
|
export * from './enums/DeliveryChannel'
|
|
45
46
|
export * from './enums/ExternalShippingStatus'
|
|
46
47
|
export * from './enums/ExternalShippingStatusDetails'
|
|
48
|
+
export * from './enums/AccountCancellationStatus'
|
|
47
49
|
|
|
48
50
|
|
|
49
51
|
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
import { App } from '../../app/enums/App';
|
|
3
|
+
import { AuthorizationNeededMXNStatus } from '../enums/AuthorizationNeededMXNStatus';
|
|
4
|
+
import { InfoSelfVerifiedStatus } from '../enums/InfoSelfVerifiedStatus';
|
|
3
5
|
import { SexDocument } from '../enums/SexDocument';
|
|
4
6
|
import { IdentificationDocument } from './IdentificationDocument';
|
|
5
7
|
|
|
@@ -72,4 +74,15 @@ export class PeopleResponse {
|
|
|
72
74
|
MXN_MonthlyIncome: string | null;
|
|
73
75
|
MXN_MonthlyExtraSupport: string | null;
|
|
74
76
|
pepLevel: string | null;
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
infoSelfVerified: InfoSelfVerifiedStatus;
|
|
80
|
+
beneficialOwner:string | null;
|
|
81
|
+
weeklyIncomeUSD: string | null;
|
|
82
|
+
actMXN: "SELF" | "OTHER";
|
|
83
|
+
beneficialOwnerMXN: string | null;
|
|
84
|
+
monthlyIncomeMXN: string | null;
|
|
85
|
+
authorizationNeededMXN: AuthorizationNeededMXNStatus;
|
|
86
|
+
authorizerEmail: string | null;
|
|
87
|
+
dateOfVeredict: string | null;
|
|
75
88
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { AuthorizationNeededMXNStatus } from "../enums/AuthorizationNeededMXNStatus";
|
|
2
|
+
import { InfoSelfVerifiedStatus } from "../enums/InfoSelfVerifiedStatus";
|
|
1
3
|
import { SexDocument } from "../enums/SexDocument";
|
|
2
4
|
import { IdentificationDocument } from "./IdentificationDocument";
|
|
3
5
|
|
|
@@ -71,6 +73,16 @@ export class PeopleUpdateRequest {
|
|
|
71
73
|
MEX_Beneficiaries?: boolean;
|
|
72
74
|
MXN_MonthlyIncome?: string | null;
|
|
73
75
|
MXN_MonthlyExtraSupport ?: string | null;
|
|
74
|
-
|
|
75
76
|
pepLevel?: string | null;
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
infoSelfVerified?: InfoSelfVerifiedStatus;
|
|
80
|
+
beneficialOwner?:string | null;
|
|
81
|
+
weeklyIncomeUSD?: string | null;
|
|
82
|
+
actMXN?: "SELF" | "OTHER";
|
|
83
|
+
beneficialOwnerMXN?: string | null;
|
|
84
|
+
monthlyIncomeMXN?: string | null;
|
|
85
|
+
authorizationNeededMXN?: AuthorizationNeededMXNStatus;
|
|
86
|
+
authorizerEmail?: string | null;
|
|
87
|
+
dateOfVeredict?: string | null;
|
|
76
88
|
}
|
package/src/identity/index.ts
CHANGED