@cuenca-mx/cuenca-js 1.2.2-dev0 → 2.0.0-dev0
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 +19 -0
- package/build/data-91da6d58.mjs +625 -0
- package/build/data-ca00ac2d.cjs +669 -0
- package/build/dts/client/client.d.ts +86 -0
- package/build/dts/client/index.d.ts +1 -0
- package/build/dts/errors.d.ts +25 -0
- package/build/dts/helpers/case.d.ts +5 -0
- package/build/dts/helpers/data.d.ts +3 -0
- package/build/dts/helpers/env.d.ts +7 -0
- package/build/dts/index.d.ts +52 -0
- package/build/dts/jwt.d.ts +8 -0
- package/build/dts/models/account.d.ts +12 -0
- package/build/dts/models/alert.d.ts +32 -0
- package/build/dts/models/apiKey.d.ts +13 -0
- package/build/dts/models/arpc.d.ts +10 -0
- package/build/dts/models/balanceEntry.d.ts +15 -0
- package/build/dts/models/baseUser.d.ts +23 -0
- package/build/dts/models/billPayment.d.ts +10 -0
- package/build/dts/models/bridgeAccount.d.ts +27 -0
- package/build/dts/models/bridgeBankAccount.d.ts +16 -0
- package/build/dts/models/bridgeClabe.d.ts +12 -0
- package/build/dts/models/bridgeTransaction.d.ts +32 -0
- package/build/dts/models/card.d.ts +19 -0
- package/build/dts/models/cardActivation.d.ts +12 -0
- package/build/dts/models/cardTransaction.d.ts +15 -0
- package/build/dts/models/cardValidation.d.ts +19 -0
- package/build/dts/models/commission.d.ts +9 -0
- package/build/dts/models/deposit.d.ts +11 -0
- package/build/dts/models/file.d.ts +10 -0
- package/build/dts/models/fraudFundsTransfer.d.ts +9 -0
- package/build/dts/models/index.d.ts +38 -0
- package/build/dts/models/kycValidations.d.ts +22 -0
- package/build/dts/models/loginToken.d.ts +7 -0
- package/build/dts/models/partner.d.ts +25 -0
- package/build/dts/models/postalCode.d.ts +14 -0
- package/build/dts/models/saving.d.ts +11 -0
- package/build/dts/models/serviceProvider.d.ts +10 -0
- package/build/dts/models/session.d.ts +14 -0
- package/build/dts/models/statement.d.ts +10 -0
- package/build/dts/models/transaction.d.ts +7 -0
- package/build/dts/models/transactionalProfile.d.ts +14 -0
- package/build/dts/models/transfer.d.ts +15 -0
- package/build/dts/models/user.d.ts +42 -0
- package/build/dts/models/userCredential.d.ts +10 -0
- package/build/dts/models/userLogin.d.ts +9 -0
- package/build/dts/models/userReport.d.ts +48 -0
- package/build/dts/models/userTosAgreement.d.ts +13 -0
- package/build/dts/models/verification.d.ts +12 -0
- package/build/dts/models/wallet.d.ts +8 -0
- package/build/dts/models/walletTransaction.d.ts +10 -0
- package/build/dts/models/whatsAppTransfer.d.ts +16 -0
- package/build/dts/requests/addressUpdateRequest.d.ts +17 -0
- package/build/dts/requests/alertRequest.d.ts +31 -0
- package/build/dts/requests/apiKeyRequest.d.ts +9 -0
- package/build/dts/requests/arpcRequest.d.ts +16 -0
- package/build/dts/requests/base.d.ts +2 -0
- package/build/dts/requests/cardActivationRequest.d.ts +11 -0
- package/build/dts/requests/cardRequest.d.ts +18 -0
- package/build/dts/requests/cardValidationRequest.d.ts +15 -0
- package/build/dts/requests/fileUploadRequest.d.ts +12 -0
- package/build/dts/requests/fraudFundsTransferRequest.d.ts +13 -0
- package/build/dts/requests/index.d.ts +24 -0
- package/build/dts/requests/kycValidationsRequest.d.ts +10 -0
- package/build/dts/requests/partnerUserRequest.d.ts +100 -0
- package/build/dts/requests/reportGenerateRequest.d.ts +8 -0
- package/build/dts/requests/savingRequest.d.ts +11 -0
- package/build/dts/requests/sessionRequest.d.ts +12 -0
- package/build/dts/requests/tosUpdateRequest.d.ts +11 -0
- package/build/dts/requests/transferRequest.d.ts +12 -0
- package/build/dts/requests/transferUpdateRequest.d.ts +8 -0
- package/build/dts/requests/userCredentialRequest.d.ts +15 -0
- package/build/dts/requests/userLoginRequest.d.ts +8 -0
- package/build/dts/requests/userReportCreateRequest.d.ts +9 -0
- package/build/dts/requests/userReportUpdateRequest.d.ts +28 -0
- package/build/dts/requests/userRequest.d.ts +39 -0
- package/build/dts/requests/verificationRequest.d.ts +17 -0
- package/build/dts/requests/walletTransactionRequest.d.ts +9 -0
- package/build/dts/resources/accounts.d.ts +33 -0
- package/build/dts/resources/alerts.d.ts +54 -0
- package/build/dts/resources/apiKeys.d.ts +63 -0
- package/build/dts/resources/arpc.d.ts +18 -0
- package/build/dts/resources/balanceEntries.d.ts +37 -0
- package/build/dts/resources/base.d.ts +135 -0
- package/build/dts/resources/billPayments.d.ts +34 -0
- package/build/dts/resources/bridgeAccounts.d.ts +49 -0
- package/build/dts/resources/bridgeBankAccounts.d.ts +33 -0
- package/build/dts/resources/bridgeClabes.d.ts +27 -0
- package/build/dts/resources/bridgeTransactions.d.ts +36 -0
- package/build/dts/resources/cardActivations.d.ts +19 -0
- package/build/dts/resources/cardTransactions.d.ts +34 -0
- package/build/dts/resources/cardValidations.d.ts +19 -0
- package/build/dts/resources/cards.d.ts +63 -0
- package/build/dts/resources/commissions.d.ts +34 -0
- package/build/dts/resources/deposits.d.ts +34 -0
- package/build/dts/resources/files.d.ts +30 -0
- package/build/dts/resources/fraudFundsTransfers.d.ts +18 -0
- package/build/dts/resources/index.d.ts +36 -0
- package/build/dts/resources/kycValidations.d.ts +53 -0
- package/build/dts/resources/loginTokens.d.ts +17 -0
- package/build/dts/resources/partners.d.ts +54 -0
- package/build/dts/resources/postalCodes.d.ts +24 -0
- package/build/dts/resources/reports.d.ts +8 -0
- package/build/dts/resources/savings.d.ts +62 -0
- package/build/dts/resources/serviceProviders.d.ts +32 -0
- package/build/dts/resources/sessions.d.ts +43 -0
- package/build/dts/resources/statements.d.ts +44 -0
- package/build/dts/resources/transfers.d.ts +64 -0
- package/build/dts/resources/userCredentials.d.ts +30 -0
- package/build/dts/resources/userLogins.d.ts +28 -0
- package/build/dts/resources/userReports.d.ts +54 -0
- package/build/dts/resources/users.d.ts +56 -0
- package/build/dts/resources/usersTosAgreements.d.ts +16 -0
- package/build/dts/resources/verifications.d.ts +31 -0
- package/build/dts/resources/walletTransactions.d.ts +48 -0
- package/build/dts/resources/whatsAppTransfers.d.ts +34 -0
- package/build/dts/types/enums.d.ts +579 -0
- package/build/dts/types/identities/address.d.ts +25 -0
- package/build/dts/types/identities/alertLog.d.ts +11 -0
- package/build/dts/types/identities/audit.d.ts +10 -0
- package/build/dts/types/identities/businessDetails.d.ts +9 -0
- package/build/dts/types/identities/externalAccount.d.ts +8 -0
- package/build/dts/types/identities/index.d.ts +17 -0
- package/build/dts/types/identities/kycFile.d.ts +14 -0
- package/build/dts/types/identities/legalRepresentatives.d.ts +12 -0
- package/build/dts/types/identities/license.d.ts +10 -0
- package/build/dts/types/identities/moralOperation.d.ts +8 -0
- package/build/dts/types/identities/physicalPerson.d.ts +12 -0
- package/build/dts/types/identities/shareholderMoral.d.ts +12 -0
- package/build/dts/types/identities/shareholderPhysical.d.ts +9 -0
- package/build/dts/types/identities/tosAgreements.d.ts +10 -0
- package/build/dts/types/identities/transactionalProfileServices.d.ts +10 -0
- package/build/dts/types/identities/verificationError.d.ts +10 -0
- package/build/dts/types/identities/vulnerableActivity.d.ts +10 -0
- package/build/dts/types/index.d.ts +3 -0
- package/build/dts/types/queries/accountQuery.d.ts +4 -0
- package/build/dts/types/queries/alertQuery.d.ts +12 -0
- package/build/dts/types/queries/apiKeyQuery.d.ts +4 -0
- package/build/dts/types/queries/balanceEntryQuery.d.ts +5 -0
- package/build/dts/types/queries/billPaymentQuery.d.ts +4 -0
- package/build/dts/types/queries/bridgeAccountQuery.d.ts +4 -0
- package/build/dts/types/queries/bridgeBankAccountQuery.d.ts +4 -0
- package/build/dts/types/queries/bridgeQuery.d.ts +7 -0
- package/build/dts/types/queries/bridgeTransactionQuery.d.ts +6 -0
- package/build/dts/types/queries/cardTransactionQuery.d.ts +4 -0
- package/build/dts/types/queries/cardsQuery.d.ts +4 -0
- package/build/dts/types/queries/depositQuery.d.ts +5 -0
- package/build/dts/types/queries/index.d.ts +26 -0
- package/build/dts/types/queries/partnerQuery.d.ts +4 -0
- package/build/dts/types/queries/postalCodeQuery.d.ts +4 -0
- package/build/dts/types/queries/queryParams.d.ts +15 -0
- package/build/dts/types/queries/statementQuery.d.ts +6 -0
- package/build/dts/types/queries/transactionQuery.d.ts +4 -0
- package/build/dts/types/queries/transferQuery.d.ts +7 -0
- package/build/dts/types/queries/userQuery.d.ts +11 -0
- package/build/dts/types/queries/userReportQuery.d.ts +4 -0
- package/build/dts/types/queries/walletQuery.d.ts +4 -0
- package/build/dts/types/queries/walletTransactionQuery.d.ts +4 -0
- package/build/errors/index.cjs +10 -0
- package/build/errors/index.mjs +10 -1
- package/build/index.cjs +1305 -2894
- package/build/index.mjs +1307 -2895
- package/build/jwt/index.cjs +11 -8
- package/build/jwt/index.mjs +11 -8
- package/build/requests/index.cjs +4 -22
- package/build/requests/index.mjs +2 -26
- package/build/types/index.cjs +18 -56
- package/build/types/index.mjs +9 -34
- package/build/umd/cuenca.umd.js +1 -1
- package/build/vulnerableActivity-61dc2846.mjs +278 -0
- package/build/vulnerableActivity-d5aed4a7.cjs +299 -0
- package/build/walletTransactionRequest-aab46c5e.cjs +461 -0
- package/build/walletTransactionRequest-dc11fc69.mjs +433 -0
- package/errors/index.d.ts +1 -0
- package/jwt/index.d.ts +1 -0
- package/package.json +26 -8
- package/requests/index.d.ts +1 -0
- package/types/index.d.ts +1 -0
- package/build/data-1fd00e5c.mjs +0 -1199
- package/build/data-72c37b60.cjs +0 -1240
- package/build/vulnerableActivity-7cc1734f.cjs +0 -867
- package/build/vulnerableActivity-bd344332.mjs +0 -831
- package/build/walletTransactionRequest-05d5305a.mjs +0 -1512
- package/build/walletTransactionRequest-c6a5c64d.cjs +0 -1539
|
@@ -0,0 +1,579 @@
|
|
|
1
|
+
export declare const AlertStatus: {
|
|
2
|
+
readonly Created: "created";
|
|
3
|
+
readonly ReadyForAnalysis: "ready_for_analysis";
|
|
4
|
+
readonly Analysis: "analysis";
|
|
5
|
+
readonly Dictum: "dictum";
|
|
6
|
+
readonly Justified: "justified";
|
|
7
|
+
readonly Unusual: "unusual";
|
|
8
|
+
readonly Reported: "reported";
|
|
9
|
+
readonly Questionary: "questionary";
|
|
10
|
+
readonly JustifiedByTime: "justified_by_time";
|
|
11
|
+
readonly AdditionalInformation: "additional_information";
|
|
12
|
+
readonly Documentation: "documentation";
|
|
13
|
+
readonly Xml: "xml";
|
|
14
|
+
};
|
|
15
|
+
export type AlertStatus = typeof AlertStatus[keyof typeof AlertStatus];
|
|
16
|
+
export declare const BridgeAccountStatus: {
|
|
17
|
+
readonly Succeeded: "succeeded";
|
|
18
|
+
readonly NotValidated: "not_validated";
|
|
19
|
+
readonly Failed: "failed";
|
|
20
|
+
readonly OnWaitList: "on_wait_list";
|
|
21
|
+
};
|
|
22
|
+
export type BridgeAccountStatus = typeof BridgeAccountStatus[keyof typeof BridgeAccountStatus];
|
|
23
|
+
export declare const BridgeBankAccountStatus: {
|
|
24
|
+
readonly Created: "created";
|
|
25
|
+
readonly Failed: "failed";
|
|
26
|
+
readonly Pending: "pending";
|
|
27
|
+
readonly Succeeded: "succeeded";
|
|
28
|
+
};
|
|
29
|
+
export type BridgeBankAccountStatus = typeof BridgeBankAccountStatus[keyof typeof BridgeBankAccountStatus];
|
|
30
|
+
export declare const BridgeTransactionType: {
|
|
31
|
+
readonly Buy: "buy";
|
|
32
|
+
readonly Sell: "sell";
|
|
33
|
+
};
|
|
34
|
+
export type BridgeTransactionType = typeof BridgeTransactionType[keyof typeof BridgeTransactionType];
|
|
35
|
+
export declare const CardErrorType: {
|
|
36
|
+
readonly Blocked: "blocked";
|
|
37
|
+
readonly Communication: "communication";
|
|
38
|
+
readonly ContactlessAmountLimit: "contactless_amount_limit";
|
|
39
|
+
readonly FraudDetection: "fraud_detection";
|
|
40
|
+
readonly FraudDetectionUncertain: "fraud_detection_uncertain";
|
|
41
|
+
readonly InsufficientFounds: "insufficient_founds";
|
|
42
|
+
readonly InvalidPin: "invalid_pin";
|
|
43
|
+
readonly Notification: "notification";
|
|
44
|
+
readonly NotificationDeactivatedCard: "notification_deactivated_card";
|
|
45
|
+
readonly CashAdvanceDailyLimit: "cash_advance_daily_limit";
|
|
46
|
+
};
|
|
47
|
+
export type CardErrorType = typeof CardErrorType[keyof typeof CardErrorType];
|
|
48
|
+
export declare const CardFundingType: {
|
|
49
|
+
readonly Credit: "credit";
|
|
50
|
+
readonly Debit: "debit";
|
|
51
|
+
};
|
|
52
|
+
export type CardFundingType = typeof CardFundingType[keyof typeof CardFundingType];
|
|
53
|
+
export declare const CardIssuer: {
|
|
54
|
+
readonly Accendo: "accendo";
|
|
55
|
+
readonly Cuenca: "cuenca";
|
|
56
|
+
};
|
|
57
|
+
export type CardIssuer = typeof CardIssuer[keyof typeof CardIssuer];
|
|
58
|
+
export declare const CardStatus: {
|
|
59
|
+
readonly Active: "active";
|
|
60
|
+
readonly Blocked: "blocked";
|
|
61
|
+
readonly Created: "created";
|
|
62
|
+
readonly Deactivated: "deactivated";
|
|
63
|
+
readonly Printing: "printing";
|
|
64
|
+
};
|
|
65
|
+
export type CardStatus = typeof CardStatus[keyof typeof CardStatus];
|
|
66
|
+
export declare const CardTransactionType: {
|
|
67
|
+
readonly Auth: "auth";
|
|
68
|
+
readonly Capture: "capture";
|
|
69
|
+
readonly Chargeback: "chargeback";
|
|
70
|
+
readonly Expiration: "expiration";
|
|
71
|
+
readonly Refund: "refund";
|
|
72
|
+
readonly Void: "void";
|
|
73
|
+
readonly FastFunds: "fast_funds";
|
|
74
|
+
readonly Push: "push";
|
|
75
|
+
readonly PushConfirmation: "push_confirmation";
|
|
76
|
+
};
|
|
77
|
+
export type CardTransactionType = typeof CardTransactionType[keyof typeof CardTransactionType];
|
|
78
|
+
export declare const CardType: {
|
|
79
|
+
readonly Physical: "physical";
|
|
80
|
+
readonly Virtual: "virtual";
|
|
81
|
+
};
|
|
82
|
+
export type CardType = typeof CardType[keyof typeof CardType];
|
|
83
|
+
export declare const CommissionType: {
|
|
84
|
+
readonly CardRequest: "card_request";
|
|
85
|
+
readonly CashDeposit: "cash_deposit";
|
|
86
|
+
readonly OutgoingSpei: "outgoing_spei";
|
|
87
|
+
readonly CardShipping: "card_shipping";
|
|
88
|
+
readonly AccountFee: "account_fee";
|
|
89
|
+
};
|
|
90
|
+
export type CommissionType = typeof CommissionType[keyof typeof CommissionType];
|
|
91
|
+
export declare const Currency: {
|
|
92
|
+
readonly Mxn: "mxn";
|
|
93
|
+
readonly Usdc: "usdc";
|
|
94
|
+
readonly Sol: "sol";
|
|
95
|
+
};
|
|
96
|
+
export type Currency = typeof Currency[keyof typeof Currency];
|
|
97
|
+
export declare const DepositNetwork: {
|
|
98
|
+
readonly Cash: "cash";
|
|
99
|
+
readonly Internal: "internal";
|
|
100
|
+
readonly Spei: "spei";
|
|
101
|
+
};
|
|
102
|
+
export type DepositNetwork = typeof DepositNetwork[keyof typeof DepositNetwork];
|
|
103
|
+
export declare const EntryType: {
|
|
104
|
+
readonly Credit: "credit";
|
|
105
|
+
readonly Debit: "debit";
|
|
106
|
+
};
|
|
107
|
+
export type EntryType = typeof EntryType[keyof typeof EntryType];
|
|
108
|
+
export declare const FileFormat: {
|
|
109
|
+
readonly Pdf: "application/pdf";
|
|
110
|
+
readonly Xml: "application/xml";
|
|
111
|
+
readonly Json: "application/json";
|
|
112
|
+
readonly Any: "*/*";
|
|
113
|
+
};
|
|
114
|
+
export type FileFormat = typeof FileFormat[keyof typeof FileFormat];
|
|
115
|
+
export declare const KYCFileType: {
|
|
116
|
+
readonly Curp: "curp";
|
|
117
|
+
readonly Dni: "dni";
|
|
118
|
+
readonly Ine: "ine";
|
|
119
|
+
readonly Passport: "passport";
|
|
120
|
+
readonly Residency: "residency";
|
|
121
|
+
readonly MatriculaConsular: "matricula_consular";
|
|
122
|
+
readonly ProofOfLiveness: "proof_of_liveness";
|
|
123
|
+
readonly ProofOfAddress: "proof_of_address";
|
|
124
|
+
readonly Signature: "signature";
|
|
125
|
+
readonly Tos: "tos";
|
|
126
|
+
};
|
|
127
|
+
export type KYCFileType = typeof KYCFileType[keyof typeof KYCFileType];
|
|
128
|
+
export declare const KYCValidationSource: {
|
|
129
|
+
readonly Client: "client";
|
|
130
|
+
readonly Server: "server";
|
|
131
|
+
};
|
|
132
|
+
export type KYCValidationSource = typeof KYCValidationSource[keyof typeof KYCValidationSource];
|
|
133
|
+
export declare const MLIndicatorLevel: {
|
|
134
|
+
readonly Low: "low";
|
|
135
|
+
readonly Medium: "medium";
|
|
136
|
+
readonly High: "high";
|
|
137
|
+
};
|
|
138
|
+
export type MLIndicatorLevel = typeof MLIndicatorLevel[keyof typeof MLIndicatorLevel];
|
|
139
|
+
export declare const MLIndicatorType: {
|
|
140
|
+
readonly Deposit: "deposit";
|
|
141
|
+
readonly Withdrawal: "withdrawal";
|
|
142
|
+
};
|
|
143
|
+
export type MLIndicatorType = typeof MLIndicatorType[keyof typeof MLIndicatorType];
|
|
144
|
+
export declare const MLIndicatorPeriod: {
|
|
145
|
+
readonly Bimester: "bimester";
|
|
146
|
+
readonly Trimester: "trimester";
|
|
147
|
+
readonly Semester: "semester";
|
|
148
|
+
};
|
|
149
|
+
export type MLIndicatorPeriod = typeof MLIndicatorPeriod[keyof typeof MLIndicatorPeriod];
|
|
150
|
+
export declare const Network: {
|
|
151
|
+
readonly Polygon: "polygon";
|
|
152
|
+
readonly Solana: "solana";
|
|
153
|
+
};
|
|
154
|
+
export type Network = typeof Network[keyof typeof Network];
|
|
155
|
+
export declare const Phase: {
|
|
156
|
+
readonly Sandbox: "sandbox";
|
|
157
|
+
readonly Stage: "stage";
|
|
158
|
+
readonly Api: "api";
|
|
159
|
+
};
|
|
160
|
+
export type Phase = typeof Phase[keyof typeof Phase];
|
|
161
|
+
export declare const PLDFilterType: {
|
|
162
|
+
readonly Amount: "amount";
|
|
163
|
+
readonly Volume: "volume";
|
|
164
|
+
};
|
|
165
|
+
export type PLDFilterType = typeof PLDFilterType[keyof typeof PLDFilterType];
|
|
166
|
+
export declare const Country: {
|
|
167
|
+
readonly AW: "AW";
|
|
168
|
+
readonly AF: "AF";
|
|
169
|
+
readonly AO: "AO";
|
|
170
|
+
readonly AI: "AI";
|
|
171
|
+
readonly AX: "AX";
|
|
172
|
+
readonly AL: "AL";
|
|
173
|
+
readonly AD: "AD";
|
|
174
|
+
readonly AE: "AE";
|
|
175
|
+
readonly AR: "AR";
|
|
176
|
+
readonly AM: "AM";
|
|
177
|
+
readonly AS: "AS";
|
|
178
|
+
readonly AQ: "AQ";
|
|
179
|
+
readonly TF: "TF";
|
|
180
|
+
readonly AG: "AG";
|
|
181
|
+
readonly AU: "AU";
|
|
182
|
+
readonly AT: "AT";
|
|
183
|
+
readonly AZ: "AZ";
|
|
184
|
+
readonly BI: "BI";
|
|
185
|
+
readonly BE: "BE";
|
|
186
|
+
readonly BJ: "BJ";
|
|
187
|
+
readonly BQ: "BQ";
|
|
188
|
+
readonly BF: "BF";
|
|
189
|
+
readonly BD: "BD";
|
|
190
|
+
readonly BG: "BG";
|
|
191
|
+
readonly BH: "BH";
|
|
192
|
+
readonly BS: "BS";
|
|
193
|
+
readonly BA: "BA";
|
|
194
|
+
readonly BL: "BL";
|
|
195
|
+
readonly BY: "BY";
|
|
196
|
+
readonly BZ: "BZ";
|
|
197
|
+
readonly BM: "BM";
|
|
198
|
+
readonly BO: "BO";
|
|
199
|
+
readonly BR: "BR";
|
|
200
|
+
readonly BB: "BB";
|
|
201
|
+
readonly BN: "BN";
|
|
202
|
+
readonly BT: "BT";
|
|
203
|
+
readonly BV: "BV";
|
|
204
|
+
readonly BW: "BW";
|
|
205
|
+
readonly CF: "CF";
|
|
206
|
+
readonly CA: "CA";
|
|
207
|
+
readonly CC: "CC";
|
|
208
|
+
readonly CH: "CH";
|
|
209
|
+
readonly CL: "CL";
|
|
210
|
+
readonly CN: "CN";
|
|
211
|
+
readonly CI: "CI";
|
|
212
|
+
readonly CM: "CM";
|
|
213
|
+
readonly CD: "CD";
|
|
214
|
+
readonly CG: "CG";
|
|
215
|
+
readonly CK: "CK";
|
|
216
|
+
readonly CO: "CO";
|
|
217
|
+
readonly KM: "KM";
|
|
218
|
+
readonly CV: "CV";
|
|
219
|
+
readonly CR: "CR";
|
|
220
|
+
readonly CU: "CU";
|
|
221
|
+
readonly CW: "CW";
|
|
222
|
+
readonly CX: "CX";
|
|
223
|
+
readonly KY: "KY";
|
|
224
|
+
readonly CY: "CY";
|
|
225
|
+
readonly CZ: "CZ";
|
|
226
|
+
readonly DE: "DE";
|
|
227
|
+
readonly DJ: "DJ";
|
|
228
|
+
readonly DM: "DM";
|
|
229
|
+
readonly DK: "DK";
|
|
230
|
+
readonly DO: "DO";
|
|
231
|
+
readonly DZ: "DZ";
|
|
232
|
+
readonly EC: "EC";
|
|
233
|
+
readonly EG: "EG";
|
|
234
|
+
readonly ER: "ER";
|
|
235
|
+
readonly EH: "EH";
|
|
236
|
+
readonly ES: "ES";
|
|
237
|
+
readonly EE: "EE";
|
|
238
|
+
readonly ET: "ET";
|
|
239
|
+
readonly FI: "FI";
|
|
240
|
+
readonly FJ: "FJ";
|
|
241
|
+
readonly FK: "FK";
|
|
242
|
+
readonly FR: "FR";
|
|
243
|
+
readonly FO: "FO";
|
|
244
|
+
readonly FM: "FM";
|
|
245
|
+
readonly GA: "GA";
|
|
246
|
+
readonly GB: "GB";
|
|
247
|
+
readonly GE: "GE";
|
|
248
|
+
readonly GG: "GG";
|
|
249
|
+
readonly GH: "GH";
|
|
250
|
+
readonly GI: "GI";
|
|
251
|
+
readonly GN: "GN";
|
|
252
|
+
readonly GP: "GP";
|
|
253
|
+
readonly GM: "GM";
|
|
254
|
+
readonly GW: "GW";
|
|
255
|
+
readonly GQ: "GQ";
|
|
256
|
+
readonly GR: "GR";
|
|
257
|
+
readonly GD: "GD";
|
|
258
|
+
readonly GL: "GL";
|
|
259
|
+
readonly GT: "GT";
|
|
260
|
+
readonly GF: "GF";
|
|
261
|
+
readonly GU: "GU";
|
|
262
|
+
readonly GY: "GY";
|
|
263
|
+
readonly HK: "HK";
|
|
264
|
+
readonly HM: "HM";
|
|
265
|
+
readonly HN: "HN";
|
|
266
|
+
readonly HR: "HR";
|
|
267
|
+
readonly HT: "HT";
|
|
268
|
+
readonly HU: "HU";
|
|
269
|
+
readonly ID: "ID";
|
|
270
|
+
readonly IM: "IM";
|
|
271
|
+
readonly IN: "IN";
|
|
272
|
+
readonly IO: "IO";
|
|
273
|
+
readonly IE: "IE";
|
|
274
|
+
readonly IR: "IR";
|
|
275
|
+
readonly IQ: "IQ";
|
|
276
|
+
readonly IS: "IS";
|
|
277
|
+
readonly IL: "IL";
|
|
278
|
+
readonly IT: "IT";
|
|
279
|
+
readonly JM: "JM";
|
|
280
|
+
readonly JE: "JE";
|
|
281
|
+
readonly JO: "JO";
|
|
282
|
+
readonly JP: "JP";
|
|
283
|
+
readonly KZ: "KZ";
|
|
284
|
+
readonly KE: "KE";
|
|
285
|
+
readonly KG: "KG";
|
|
286
|
+
readonly KH: "KH";
|
|
287
|
+
readonly KI: "KI";
|
|
288
|
+
readonly KN: "KN";
|
|
289
|
+
readonly KR: "KR";
|
|
290
|
+
readonly KW: "KW";
|
|
291
|
+
readonly LA: "LA";
|
|
292
|
+
readonly LB: "LB";
|
|
293
|
+
readonly LC: "LC";
|
|
294
|
+
readonly LI: "LI";
|
|
295
|
+
readonly LK: "LK";
|
|
296
|
+
readonly LR: "LR";
|
|
297
|
+
readonly LS: "LS";
|
|
298
|
+
readonly LT: "LT";
|
|
299
|
+
readonly LU: "LU";
|
|
300
|
+
readonly LV: "LV";
|
|
301
|
+
readonly LY: "LY";
|
|
302
|
+
readonly MA: "MA";
|
|
303
|
+
readonly MC: "MC";
|
|
304
|
+
readonly MD: "MD";
|
|
305
|
+
readonly MG: "MG";
|
|
306
|
+
readonly MV: "MV";
|
|
307
|
+
readonly MX: "MX";
|
|
308
|
+
readonly MH: "MH";
|
|
309
|
+
readonly MK: "MK";
|
|
310
|
+
readonly ML: "ML";
|
|
311
|
+
readonly MT: "MT";
|
|
312
|
+
readonly MM: "MM";
|
|
313
|
+
readonly ME: "ME";
|
|
314
|
+
readonly MN: "MN";
|
|
315
|
+
readonly MP: "MP";
|
|
316
|
+
readonly MZ: "MZ";
|
|
317
|
+
readonly MR: "MR";
|
|
318
|
+
readonly MS: "MS";
|
|
319
|
+
readonly MQ: "MQ";
|
|
320
|
+
readonly MU: "MU";
|
|
321
|
+
readonly MW: "MW";
|
|
322
|
+
readonly MY: "MY";
|
|
323
|
+
readonly YT: "YT";
|
|
324
|
+
readonly NA: "NA";
|
|
325
|
+
readonly NC: "NC";
|
|
326
|
+
readonly NE: "NE";
|
|
327
|
+
readonly NF: "NF";
|
|
328
|
+
readonly NG: "NG";
|
|
329
|
+
readonly NI: "NI";
|
|
330
|
+
readonly NU: "NU";
|
|
331
|
+
readonly NL: "NL";
|
|
332
|
+
readonly NO: "NO";
|
|
333
|
+
readonly NP: "NP";
|
|
334
|
+
readonly NR: "NR";
|
|
335
|
+
readonly NZ: "NZ";
|
|
336
|
+
readonly OM: "OM";
|
|
337
|
+
readonly PK: "PK";
|
|
338
|
+
readonly PA: "PA";
|
|
339
|
+
readonly PN: "PN";
|
|
340
|
+
readonly PE: "PE";
|
|
341
|
+
readonly PH: "PH";
|
|
342
|
+
readonly PW: "PW";
|
|
343
|
+
readonly PG: "PG";
|
|
344
|
+
readonly PL: "PL";
|
|
345
|
+
readonly PR: "PR";
|
|
346
|
+
readonly KP: "KP";
|
|
347
|
+
readonly PT: "PT";
|
|
348
|
+
readonly PY: "PY";
|
|
349
|
+
readonly PS: "PS";
|
|
350
|
+
readonly PF: "PF";
|
|
351
|
+
readonly QA: "QA";
|
|
352
|
+
readonly RE: "RE";
|
|
353
|
+
readonly RO: "RO";
|
|
354
|
+
readonly RU: "RU";
|
|
355
|
+
readonly RW: "RW";
|
|
356
|
+
readonly SA: "SA";
|
|
357
|
+
readonly SD: "SD";
|
|
358
|
+
readonly SN: "SN";
|
|
359
|
+
readonly SG: "SG";
|
|
360
|
+
readonly GS: "GS";
|
|
361
|
+
readonly SH: "SH";
|
|
362
|
+
readonly SJ: "SJ";
|
|
363
|
+
readonly SB: "SB";
|
|
364
|
+
readonly SL: "SL";
|
|
365
|
+
readonly SV: "SV";
|
|
366
|
+
readonly SM: "SM";
|
|
367
|
+
readonly SO: "SO";
|
|
368
|
+
readonly PM: "PM";
|
|
369
|
+
readonly RS: "RS";
|
|
370
|
+
readonly SS: "SS";
|
|
371
|
+
readonly ST: "ST";
|
|
372
|
+
readonly SR: "SR";
|
|
373
|
+
readonly SK: "SK";
|
|
374
|
+
readonly SI: "SI";
|
|
375
|
+
readonly SE: "SE";
|
|
376
|
+
readonly SZ: "SZ";
|
|
377
|
+
readonly SX: "SX";
|
|
378
|
+
readonly SC: "SC";
|
|
379
|
+
readonly SY: "SY";
|
|
380
|
+
readonly TC: "TC";
|
|
381
|
+
readonly TD: "TD";
|
|
382
|
+
readonly TG: "TG";
|
|
383
|
+
readonly TH: "TH";
|
|
384
|
+
readonly TJ: "TJ";
|
|
385
|
+
readonly TK: "TK";
|
|
386
|
+
readonly TM: "TM";
|
|
387
|
+
readonly TL: "TL";
|
|
388
|
+
readonly TO: "TO";
|
|
389
|
+
readonly TT: "TT";
|
|
390
|
+
readonly TN: "TN";
|
|
391
|
+
readonly TR: "TR";
|
|
392
|
+
readonly TV: "TV";
|
|
393
|
+
readonly TW: "TW";
|
|
394
|
+
readonly TZ: "TZ";
|
|
395
|
+
readonly UG: "UG";
|
|
396
|
+
readonly UA: "UA";
|
|
397
|
+
readonly UM: "UM";
|
|
398
|
+
readonly UY: "UY";
|
|
399
|
+
readonly US: "US";
|
|
400
|
+
readonly UZ: "UZ";
|
|
401
|
+
readonly VA: "VA";
|
|
402
|
+
readonly VC: "VC";
|
|
403
|
+
readonly VE: "VE";
|
|
404
|
+
readonly VG: "VG";
|
|
405
|
+
readonly VI: "VI";
|
|
406
|
+
readonly VN: "VN";
|
|
407
|
+
readonly VU: "VU";
|
|
408
|
+
readonly WF: "WF";
|
|
409
|
+
readonly WS: "WS";
|
|
410
|
+
readonly YE: "YE";
|
|
411
|
+
readonly ZA: "ZA";
|
|
412
|
+
readonly ZM: "ZM";
|
|
413
|
+
readonly ZW: "ZW";
|
|
414
|
+
readonly XA: "XA";
|
|
415
|
+
};
|
|
416
|
+
export type Country = typeof Country[keyof typeof Country];
|
|
417
|
+
export declare const State: {
|
|
418
|
+
readonly NE: "NE";
|
|
419
|
+
readonly AS: "AS";
|
|
420
|
+
readonly BC: "BC";
|
|
421
|
+
readonly BS: "BS";
|
|
422
|
+
readonly CC: "CC";
|
|
423
|
+
readonly CS: "CS";
|
|
424
|
+
readonly CH: "CH";
|
|
425
|
+
readonly CL: "CL";
|
|
426
|
+
readonly CM: "CM";
|
|
427
|
+
readonly DF: "DF";
|
|
428
|
+
readonly DG: "DG";
|
|
429
|
+
readonly GT: "GT";
|
|
430
|
+
readonly GR: "GR";
|
|
431
|
+
readonly HG: "HG";
|
|
432
|
+
readonly JC: "JC";
|
|
433
|
+
readonly MC: "MC";
|
|
434
|
+
readonly MN: "MN";
|
|
435
|
+
readonly MS: "MS";
|
|
436
|
+
readonly NT: "NT";
|
|
437
|
+
readonly NL: "NL";
|
|
438
|
+
readonly OC: "OC";
|
|
439
|
+
readonly PL: "PL";
|
|
440
|
+
readonly QT: "QT";
|
|
441
|
+
readonly QR: "QR";
|
|
442
|
+
readonly SP: "SP";
|
|
443
|
+
readonly SL: "SL";
|
|
444
|
+
readonly SR: "SR";
|
|
445
|
+
readonly TC: "TC";
|
|
446
|
+
readonly TL: "TL";
|
|
447
|
+
readonly TS: "TS";
|
|
448
|
+
readonly VZ: "VZ";
|
|
449
|
+
readonly YN: "YN";
|
|
450
|
+
readonly ZS: "ZS";
|
|
451
|
+
};
|
|
452
|
+
export type State = typeof State[keyof typeof State];
|
|
453
|
+
export declare const ServiceProviderCategory: {
|
|
454
|
+
readonly Cable: "cable";
|
|
455
|
+
readonly CreditCard: "credit_card";
|
|
456
|
+
readonly Electricity: "electricity";
|
|
457
|
+
readonly Gas: "gas";
|
|
458
|
+
readonly Internet: "internet";
|
|
459
|
+
readonly LandlineTelephone: "landline_telephone";
|
|
460
|
+
readonly MobileTelephonePostpaid: "mobile_telephone_postpaid";
|
|
461
|
+
readonly MobileTelephonePrepaid: "mobile_telephone_prepaid";
|
|
462
|
+
readonly SateliteTelevision: "satelite_television";
|
|
463
|
+
readonly Water: "water";
|
|
464
|
+
};
|
|
465
|
+
export type ServiceProviderCategory = typeof ServiceProviderCategory[keyof typeof ServiceProviderCategory];
|
|
466
|
+
export declare const SavingCategory: {
|
|
467
|
+
readonly General: "general";
|
|
468
|
+
readonly Home: "home";
|
|
469
|
+
readonly Vehicle: "vehicle";
|
|
470
|
+
readonly Travel: "travel";
|
|
471
|
+
readonly Clothing: "clothing";
|
|
472
|
+
readonly Other: "other";
|
|
473
|
+
readonly Medical: "medical";
|
|
474
|
+
readonly Accident: "accident";
|
|
475
|
+
readonly Education: "education";
|
|
476
|
+
};
|
|
477
|
+
export type SavingCategory = typeof SavingCategory[keyof typeof SavingCategory];
|
|
478
|
+
export declare const SessionType: {
|
|
479
|
+
readonly AccountEntries: "session.account_entries";
|
|
480
|
+
readonly DownloadFile: "session.download_file";
|
|
481
|
+
readonly Registration: "session.registration";
|
|
482
|
+
readonly ShowCard: "session.show_card";
|
|
483
|
+
readonly UploadFile: "session.upload_file";
|
|
484
|
+
readonly CurpValidation: "session.curp_validation";
|
|
485
|
+
readonly Agent: "session.agent";
|
|
486
|
+
};
|
|
487
|
+
export type SessionType = typeof SessionType[keyof typeof SessionType];
|
|
488
|
+
export declare const SourceAlertType: {
|
|
489
|
+
readonly Chester: "chester";
|
|
490
|
+
readonly External: "external";
|
|
491
|
+
readonly Manual: "manual";
|
|
492
|
+
};
|
|
493
|
+
export type SourceAlertType = typeof SourceAlertType[keyof typeof SourceAlertType];
|
|
494
|
+
export declare const TrackDataMethod: {
|
|
495
|
+
readonly NotSet: "not_set";
|
|
496
|
+
readonly Terminal: "terminal";
|
|
497
|
+
readonly Manual: "manual";
|
|
498
|
+
readonly Unknown: "unknown";
|
|
499
|
+
readonly Contactless: "contactless";
|
|
500
|
+
readonly FallBack: "fall_back";
|
|
501
|
+
readonly MagneticStripe: "magnetic_stripe";
|
|
502
|
+
readonly RecurringCharge: "recurring_charge";
|
|
503
|
+
};
|
|
504
|
+
export type TrackDataMethod = typeof TrackDataMethod[keyof typeof TrackDataMethod];
|
|
505
|
+
export declare const TransactionStatus: {
|
|
506
|
+
readonly Created: "created";
|
|
507
|
+
readonly Failed: "failed";
|
|
508
|
+
readonly InReview: "in_review";
|
|
509
|
+
readonly Submitted: "submitted";
|
|
510
|
+
readonly Succeeded: "succeeded";
|
|
511
|
+
};
|
|
512
|
+
export type TransactionStatus = typeof TransactionStatus[keyof typeof TransactionStatus];
|
|
513
|
+
export declare const TransferNetwork: {
|
|
514
|
+
readonly Internal: "internal";
|
|
515
|
+
readonly Spei: "spei";
|
|
516
|
+
};
|
|
517
|
+
export type TransferNetwork = typeof TransferNetwork[keyof typeof TransferNetwork];
|
|
518
|
+
export declare const UserStatus: {
|
|
519
|
+
readonly Active: "active";
|
|
520
|
+
readonly Deactivated: "deactivated";
|
|
521
|
+
readonly InReview: "in_review";
|
|
522
|
+
readonly Fraud: "fraud";
|
|
523
|
+
readonly PldBlocked: "pld_blocked";
|
|
524
|
+
readonly UserBlocked: "user_blocked";
|
|
525
|
+
readonly Inactive: "inactive";
|
|
526
|
+
};
|
|
527
|
+
export type UserStatus = typeof UserStatus[keyof typeof UserStatus];
|
|
528
|
+
export declare const UserType: {
|
|
529
|
+
readonly Moral: "moral";
|
|
530
|
+
readonly Physical: "physical";
|
|
531
|
+
};
|
|
532
|
+
export type UserType = typeof UserType[keyof typeof UserType];
|
|
533
|
+
export declare const VerificationStatus: {
|
|
534
|
+
readonly Created: "created";
|
|
535
|
+
readonly NotVerified: "not_verified";
|
|
536
|
+
readonly Rejected: "rejected";
|
|
537
|
+
readonly ReviewNeeded: "review_needed";
|
|
538
|
+
readonly Submitted: "submitted";
|
|
539
|
+
readonly Succeeded: "succeeded";
|
|
540
|
+
readonly UploadAgain: "upload_again";
|
|
541
|
+
};
|
|
542
|
+
export type VerificationStatus = typeof VerificationStatus[keyof typeof VerificationStatus];
|
|
543
|
+
export declare const VerificationType: {
|
|
544
|
+
readonly Phone: "phone";
|
|
545
|
+
readonly Email: "email";
|
|
546
|
+
};
|
|
547
|
+
export type VerificationType = typeof VerificationType[keyof typeof VerificationType];
|
|
548
|
+
export declare const WalletTransactionType: {
|
|
549
|
+
readonly Deposit: "deposit";
|
|
550
|
+
readonly Withdrawal: "withdrawal";
|
|
551
|
+
};
|
|
552
|
+
export type WalletTransactionType = typeof WalletTransactionType[keyof typeof WalletTransactionType];
|
|
553
|
+
export declare const SATRegimeCode: {
|
|
554
|
+
readonly GRL_PM: "601";
|
|
555
|
+
readonly PM_FN: "603";
|
|
556
|
+
readonly SAL_IS: "605";
|
|
557
|
+
readonly ARR: "606";
|
|
558
|
+
readonly ENAJ_ADQ: "607";
|
|
559
|
+
readonly DEM_ING: "608";
|
|
560
|
+
readonly CONS: "609";
|
|
561
|
+
readonly RES_EXT: "610";
|
|
562
|
+
readonly DIV: "611";
|
|
563
|
+
readonly PF_AEP: "612";
|
|
564
|
+
readonly INT: "614";
|
|
565
|
+
readonly ING_PREM: "615";
|
|
566
|
+
readonly SIN_OBL: "616";
|
|
567
|
+
readonly SCP_DIF: "620";
|
|
568
|
+
readonly INC_FISC: "621";
|
|
569
|
+
readonly AGRO_GAN_SILV_PES: "622";
|
|
570
|
+
readonly OP_GRUPO_SOC: "623";
|
|
571
|
+
readonly COOR: "624";
|
|
572
|
+
readonly AE_PLAT_TEC: "625";
|
|
573
|
+
readonly RS_CONF: "626";
|
|
574
|
+
readonly HID: "628";
|
|
575
|
+
readonly PREF_EM_MULT: "629";
|
|
576
|
+
readonly ENAJ_ACC_BOL: "630";
|
|
577
|
+
};
|
|
578
|
+
export type SATRegimeCode = typeof SATRegimeCode[keyof typeof SATRegimeCode];
|
|
579
|
+
export declare const SATRegimeLabels: Record<SATRegimeCode, string>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { WireObject } from '../../helpers/case';
|
|
2
|
+
export interface Address {
|
|
3
|
+
city?: string;
|
|
4
|
+
colonia?: string;
|
|
5
|
+
country?: string;
|
|
6
|
+
createdAt?: Date | null;
|
|
7
|
+
extNumber?: string;
|
|
8
|
+
fullName?: string;
|
|
9
|
+
intNumber?: string;
|
|
10
|
+
postalCode?: string;
|
|
11
|
+
state?: string;
|
|
12
|
+
street?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface AddressRequest {
|
|
15
|
+
street: string;
|
|
16
|
+
extNumber: string;
|
|
17
|
+
postalCodeId: string;
|
|
18
|
+
colonia?: string;
|
|
19
|
+
fullName?: string;
|
|
20
|
+
intNumber?: string;
|
|
21
|
+
postalCode?: string;
|
|
22
|
+
}
|
|
23
|
+
export declare const Address: {
|
|
24
|
+
fromObject: (obj?: WireObject) => Address;
|
|
25
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WireObject } from '../../helpers/case';
|
|
2
|
+
export interface AlertLog {
|
|
3
|
+
agent?: string;
|
|
4
|
+
comments?: string;
|
|
5
|
+
createdAt?: Date | null;
|
|
6
|
+
updatedAt?: Date | null;
|
|
7
|
+
status?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare const AlertLog: {
|
|
10
|
+
fromObject: (obj?: WireObject) => AlertLog;
|
|
11
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { WireObject } from '../../helpers/case';
|
|
2
|
+
export interface Audit {
|
|
3
|
+
hasAudit?: boolean;
|
|
4
|
+
auditProvider?: string;
|
|
5
|
+
auditDate?: Date | null;
|
|
6
|
+
auditComments?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const Audit: {
|
|
9
|
+
fromObject: (obj?: WireObject) => Audit;
|
|
10
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { WireObject } from '../../helpers/case';
|
|
2
|
+
export interface BusinessDetails {
|
|
3
|
+
accountUsageDescription: string | null;
|
|
4
|
+
businessDescription: string | null;
|
|
5
|
+
}
|
|
6
|
+
export declare const BusinessDetails: {
|
|
7
|
+
fromObject: (obj?: WireObject) => BusinessDetails;
|
|
8
|
+
toObject: (req: BusinessDetails) => WireObject;
|
|
9
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export { Address } from './address';
|
|
2
|
+
export type { AddressRequest } from './address';
|
|
3
|
+
export { AlertLog } from './alertLog';
|
|
4
|
+
export { Audit } from './audit';
|
|
5
|
+
export { BusinessDetails } from './businessDetails';
|
|
6
|
+
export { ExternalAccount } from './externalAccount';
|
|
7
|
+
export { KYCFile } from './kycFile';
|
|
8
|
+
export { License } from './license';
|
|
9
|
+
export { LegalRepresentatives } from './legalRepresentatives';
|
|
10
|
+
export { MoralOperation } from './moralOperation';
|
|
11
|
+
export { PhysicalPerson } from './physicalPerson';
|
|
12
|
+
export { ShareholderMoral } from './shareholderMoral';
|
|
13
|
+
export { ShareholderPhysical } from './shareholderPhysical';
|
|
14
|
+
export { TransactionalProfileServices } from './transactionalProfileServices';
|
|
15
|
+
export { TOSAgreements } from './tosAgreements';
|
|
16
|
+
export { VerificationError } from './verificationError';
|
|
17
|
+
export { VulnerableActivity } from './vulnerableActivity';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WireObject } from '../../helpers/case';
|
|
2
|
+
import { VerificationError } from './verificationError';
|
|
3
|
+
export interface KYCFile {
|
|
4
|
+
data?: string | undefined;
|
|
5
|
+
errors?: VerificationError[] | undefined;
|
|
6
|
+
isMx?: boolean | undefined;
|
|
7
|
+
status?: string | undefined;
|
|
8
|
+
type?: string | undefined;
|
|
9
|
+
uriBack?: string | undefined;
|
|
10
|
+
uriFront?: string | undefined;
|
|
11
|
+
}
|
|
12
|
+
export declare const KYCFile: {
|
|
13
|
+
fromObject: (obj?: WireObject) => KYCFile;
|
|
14
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { WireObject } from '../../helpers/case';
|
|
2
|
+
import { Address } from './address';
|
|
3
|
+
import { PhysicalPerson } from './physicalPerson';
|
|
4
|
+
export interface LegalRepresentatives extends PhysicalPerson {
|
|
5
|
+
job?: string | undefined;
|
|
6
|
+
phoneNumber?: string | undefined;
|
|
7
|
+
emailAddress?: string | undefined;
|
|
8
|
+
address?: Address | undefined;
|
|
9
|
+
}
|
|
10
|
+
export declare const LegalRepresentatives: {
|
|
11
|
+
fromObject: (obj?: WireObject) => LegalRepresentatives;
|
|
12
|
+
};
|