ravcredit-lib 0.0.47 → 0.0.49
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/index.d.ts +52 -46
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -127,6 +127,50 @@ declare enum eConektaOrderType {
|
|
|
127
127
|
SPEI = "SPEI"
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
+
interface oClientPayments$1 {
|
|
131
|
+
date: number;
|
|
132
|
+
dayPayment: number;
|
|
133
|
+
amount: number;
|
|
134
|
+
id: string;
|
|
135
|
+
}
|
|
136
|
+
interface oUserReference$1 {
|
|
137
|
+
name: string;
|
|
138
|
+
phone: string;
|
|
139
|
+
relationship: string;
|
|
140
|
+
}
|
|
141
|
+
interface oClientReferences$1 {
|
|
142
|
+
date?: number;
|
|
143
|
+
amount?: number;
|
|
144
|
+
id: string;
|
|
145
|
+
url?: string;
|
|
146
|
+
}
|
|
147
|
+
interface oClient {
|
|
148
|
+
id: string;
|
|
149
|
+
name: string;
|
|
150
|
+
username: string;
|
|
151
|
+
password?: string;
|
|
152
|
+
email: string;
|
|
153
|
+
phone: string;
|
|
154
|
+
curp: string;
|
|
155
|
+
contract?: string;
|
|
156
|
+
createdAt?: number;
|
|
157
|
+
lastLogin?: number;
|
|
158
|
+
contract_temporary?: string;
|
|
159
|
+
exists?: boolean;
|
|
160
|
+
conekta_id?: string;
|
|
161
|
+
dynamic_id?: number | string;
|
|
162
|
+
dynamic_account?: string | number;
|
|
163
|
+
dynamic_ref?: string;
|
|
164
|
+
passport_id?: string;
|
|
165
|
+
payments?: oClientPayments$1[];
|
|
166
|
+
reference?: string;
|
|
167
|
+
references?: oClientReferences$1[];
|
|
168
|
+
token?: string;
|
|
169
|
+
userReferences: oUserReference$1[];
|
|
170
|
+
contractUrl?: string;
|
|
171
|
+
status: string;
|
|
172
|
+
}
|
|
173
|
+
|
|
130
174
|
interface oConektaResObjChargePaid {
|
|
131
175
|
id: string;
|
|
132
176
|
livemode: boolean;
|
|
@@ -210,6 +254,7 @@ interface oConektaPaymentMethod {
|
|
|
210
254
|
store_name: string;
|
|
211
255
|
reference: string;
|
|
212
256
|
cashier_id: string;
|
|
257
|
+
clabe?: string;
|
|
213
258
|
}
|
|
214
259
|
interface oConektaChargeData {
|
|
215
260
|
id: string;
|
|
@@ -337,6 +382,11 @@ interface oConektaNewOrder {
|
|
|
337
382
|
date?: number;
|
|
338
383
|
id: string;
|
|
339
384
|
}
|
|
385
|
+
interface oConektaOrderSpei {
|
|
386
|
+
data: oConektaOrderCreate;
|
|
387
|
+
date?: number;
|
|
388
|
+
client: oClient;
|
|
389
|
+
}
|
|
340
390
|
interface oConektaResPrevAttr {
|
|
341
391
|
status: string;
|
|
342
392
|
}
|
|
@@ -422,7 +472,7 @@ interface iConektaRecurrent {
|
|
|
422
472
|
custom_id: string;
|
|
423
473
|
payment_sources: iOxxoRecurrentSources;
|
|
424
474
|
}
|
|
425
|
-
interface
|
|
475
|
+
interface oConektaOrderResponseSpei {
|
|
426
476
|
livemode: boolean;
|
|
427
477
|
amount: number;
|
|
428
478
|
currency: string;
|
|
@@ -586,50 +636,6 @@ interface oContract {
|
|
|
586
636
|
photo?: string;
|
|
587
637
|
}
|
|
588
638
|
|
|
589
|
-
interface oClientPayments$1 {
|
|
590
|
-
date: number;
|
|
591
|
-
dayPayment: number;
|
|
592
|
-
amount: number;
|
|
593
|
-
id: string;
|
|
594
|
-
}
|
|
595
|
-
interface oUserReference$1 {
|
|
596
|
-
name: string;
|
|
597
|
-
phone: string;
|
|
598
|
-
relationship: string;
|
|
599
|
-
}
|
|
600
|
-
interface oClientReferences$1 {
|
|
601
|
-
date?: number;
|
|
602
|
-
amount?: number;
|
|
603
|
-
id: string;
|
|
604
|
-
url?: string;
|
|
605
|
-
}
|
|
606
|
-
interface oClient {
|
|
607
|
-
id: string;
|
|
608
|
-
name: string;
|
|
609
|
-
username: string;
|
|
610
|
-
password?: string;
|
|
611
|
-
email: string;
|
|
612
|
-
phone: string;
|
|
613
|
-
curp: string;
|
|
614
|
-
contract?: string;
|
|
615
|
-
createdAt?: number;
|
|
616
|
-
lastLogin?: number;
|
|
617
|
-
contract_temporary?: string;
|
|
618
|
-
exists?: boolean;
|
|
619
|
-
conekta_id?: string;
|
|
620
|
-
dynamic_id?: number | string;
|
|
621
|
-
dynamic_account?: string | number;
|
|
622
|
-
dynamic_ref?: string;
|
|
623
|
-
passport_id?: string;
|
|
624
|
-
payments?: oClientPayments$1[];
|
|
625
|
-
reference?: string;
|
|
626
|
-
references?: oClientReferences$1[];
|
|
627
|
-
token?: string;
|
|
628
|
-
userReferences: oUserReference$1[];
|
|
629
|
-
contractUrl?: string;
|
|
630
|
-
status: string;
|
|
631
|
-
}
|
|
632
|
-
|
|
633
639
|
declare enum eReferenceStatusRav {
|
|
634
640
|
"Disponible" = "Disponible",
|
|
635
641
|
"Active" = "Activo con credito vigente",
|
|
@@ -2011,4 +2017,4 @@ declare enum eGCActions {
|
|
|
2011
2017
|
}
|
|
2012
2018
|
|
|
2013
2019
|
export { EnumDynamicClientStatus, ErrorMessages, FactoryBusiness, FactoryClient, FactoryConekta, FactoryContract, FactoryDynamiCore, FactoryNotification, FactoryPassport, FactoryPayment, IndexedDbService, ROLES_KEY, ROUTE_GLOBAL_REFERENCE2, ROUTE_NOTIFICATIONS, RavcreditLibComponent, RavcreditLibService, TIME_FORMAT_TABLE, UtilTime, UtilsHttp, cAddress, cAuthConfig, cBusinessConfig, cBusinessDeadlines, cBusinessInfo, cClient, cClientConekta, cClientContract, cClientDynamicStatus, cConektaRecurrent, cContract, cContractMetrics, cDaySchedule, cDefinedSchedule, cDevice, cEmptyDay, cFinancial, cIDCCharge, cIDCCustomer, cIDCDataPii, cIDCGeneratedReference, cIDCPayment, cNotification, cOptionsClientStatus, cOxxoRecurrentSources, cOxxoRecurrentSourcesData, cPaymentDelay, cResponse, cSchedule, cSingleOptionClientStatus, cTopic, cTyClientContract, cUserReference, dateCompleteFormat, dateFormat, dateFormatSimple, dbAuthStore, dbBusinessConfig, dbBusinessInfo, dbClientsStore, dbConektaClientsStore, dbConektaReferencesStore, dbConektaSpeiStore, dbContractsStore, dbDynamicAccountStore, dbDynamicReferencesStore, dbIndexAuth, dbIndexBusiness, dbIndexClients, dbIndexConektaClients, dbIndexConektaClientsRef, dbIndexContracts, dbIndexNotification, dbIndexPassportClientsRef, dbIndexPayments, dbIndexUsers, dbName, dbNotificationsStore, dbPassportReferencesStore, dbPaymentsStore, dbUsersStore, dbVersion, eAccountDynamicStatus, eAssetPeriod, eAuthActions, eAuthType, eAuthType2, eClientDynamicStatus, eClientStatus, eConektaOrderStatus, eConektaOrderType, eConektaRes, eContractStatus, eContractSteps, eGCActions, eIdentityTypes, eLoginStatus, eNotificationType, ePassportTypes, ePaymentType, eProcessStatus, eProvider, eReferenceStatusRav, eRequestVerb, eRoles, eRolesSelect, eVerificationChannel, eVerificationStatus, eVerificationStep, expiredPayment, keyPathId, keyUserID, ravCreditFunctions, snackBarConfigAction, snackBarConfigNoAction, snackBarConfigNoActionLong, timeFormat, timeFormatTable, week };
|
|
2014
|
-
export type { BankTransferPaymentSpei, ChargeListSpei, ChargeSpei, CustomerInfoSpei, HasUnsavedChanges, IBaseVerification, IDCAccount, IDCAccountConfig, IDCAccountProps, IDCCharge, IDCClient, IDCClientObjFilter, IDCClientPiiFilter, IDCClientQuery, IDCCredit, IDCCreditConfig, IDCCreditProperties, IDCDataPii, IDCGeneratedReference, IDCMntryCycle, IDCMntryPymt, IDCMntryPymtAll, IDCMntryPymtAllPaidTotal, IDCMntryPymtCal, IDCMntryPymtDue, IDCMntryPymtDueTax, IDCMntryPymtOpen, IDCMntryPymtPaid, IDCMntryPymtPymt, IDCMsg, IDCNewReference, IDCOxxoRef, IDCOxxoRefItem, IDCOxxoRefPymtMth, IDCPayment, IDCRefCustInfo, IDCRefItems, IDCRefPymtMethod, IDCReference, IDCTransaction, IDCTxn, IDCTxnHeader, IDCTxnRow, IDCTxnRowExtras, IDynamiCore, ILambdaResponse, ISendCodeAttempt, ISignIn, IVerificationCheckSms, IVerificationData, IVerificationSms, LineItemListSpei, LineItemSpei, Tokens, iAuthConfig, iBusinessInfo, iClientContract, iConektaRecurrent, iConektaResData, iConektaResObjChargePaid, iConektaResObjChargePaidMethod, iConektaResPrevAttr, iConektaSources, iConfigUUID, iContract, iContractAll, iGlobalPassport, iInformativeDialog, iNewPayment, iOptionsSelect, iOxxoRecurrentSources, iOxxorecurrentSourcesData, iPassportAdditional, iPassportReference, iPassportReferenceCenters, iPassportReferenceData, iPassportReferenceRes, iPassportResponse, iPassportResponseData, iPaymentDelay, iSelect, iServiceUser, iSnackBarMessage, iUser, oAddress, oAsset, oAssetBrand, oAssetCategory, oAssetOffer, oAuth, oAuthRes, oBusinessConfig, oBusinessDeadlines, oBusinessInfo, oCatalog, oClientConekta, oClientPayments, oClientReferences, oClientV2, oCompany, oConektaChannel, oConektaChargeData, oConektaCharges, oConektaCheckout, oConektaCustomerInfo, oConektaLineItem, oConektaLineItems, oConektaNewOrder, oConektaNewOrderAntifraudInfo, oConektaNewOrderCharge, oConektaNewOrderCustomerInfo, oConektaNewOrderLineItem, oConektaNewOrderPymMethod, oConektaOrder, oConektaOrderCreate, oConektaOrderSpei, oConektaOrdersResponse, oConektaPaymentMethod, oConektaRes, oConektaResData, oConektaResObjChargePaid, oConektaResObjOrderPaid, oConektaResPrevAttr, oContract, oContractMetrics, oContractV2, oCustomer, oCustomerInfo, oDaySchedule, oDevice, oFinancial, oFinancialProgress, oMediaIdentity, oMessaging, oMessagingData, oNotification, oNotificationResponses, oPayloadToken, oPaymentDates, oPaymentGlobal, oPaymentOption, oResponse, oResponseFuncEmail, oSchedule, oScore, oScoreAddress, oScoreGeneral, oScoreHit, oScoreNoHit, oScoreReference, oTmpBusinessConfig, oUser, oUserReference, oWeekSchedule, partialIDCData, tyClientContract };
|
|
2020
|
+
export type { BankTransferPaymentSpei, ChargeListSpei, ChargeSpei, CustomerInfoSpei, HasUnsavedChanges, IBaseVerification, IDCAccount, IDCAccountConfig, IDCAccountProps, IDCCharge, IDCClient, IDCClientObjFilter, IDCClientPiiFilter, IDCClientQuery, IDCCredit, IDCCreditConfig, IDCCreditProperties, IDCDataPii, IDCGeneratedReference, IDCMntryCycle, IDCMntryPymt, IDCMntryPymtAll, IDCMntryPymtAllPaidTotal, IDCMntryPymtCal, IDCMntryPymtDue, IDCMntryPymtDueTax, IDCMntryPymtOpen, IDCMntryPymtPaid, IDCMntryPymtPymt, IDCMsg, IDCNewReference, IDCOxxoRef, IDCOxxoRefItem, IDCOxxoRefPymtMth, IDCPayment, IDCRefCustInfo, IDCRefItems, IDCRefPymtMethod, IDCReference, IDCTransaction, IDCTxn, IDCTxnHeader, IDCTxnRow, IDCTxnRowExtras, IDynamiCore, ILambdaResponse, ISendCodeAttempt, ISignIn, IVerificationCheckSms, IVerificationData, IVerificationSms, LineItemListSpei, LineItemSpei, Tokens, iAuthConfig, iBusinessInfo, iClientContract, iConektaRecurrent, iConektaResData, iConektaResObjChargePaid, iConektaResObjChargePaidMethod, iConektaResPrevAttr, iConektaSources, iConfigUUID, iContract, iContractAll, iGlobalPassport, iInformativeDialog, iNewPayment, iOptionsSelect, iOxxoRecurrentSources, iOxxorecurrentSourcesData, iPassportAdditional, iPassportReference, iPassportReferenceCenters, iPassportReferenceData, iPassportReferenceRes, iPassportResponse, iPassportResponseData, iPaymentDelay, iSelect, iServiceUser, iSnackBarMessage, iUser, oAddress, oAsset, oAssetBrand, oAssetCategory, oAssetOffer, oAuth, oAuthRes, oBusinessConfig, oBusinessDeadlines, oBusinessInfo, oCatalog, oClientConekta, oClientPayments, oClientReferences, oClientV2, oCompany, oConektaChannel, oConektaChargeData, oConektaCharges, oConektaCheckout, oConektaCustomerInfo, oConektaLineItem, oConektaLineItems, oConektaNewOrder, oConektaNewOrderAntifraudInfo, oConektaNewOrderCharge, oConektaNewOrderCustomerInfo, oConektaNewOrderLineItem, oConektaNewOrderPymMethod, oConektaOrder, oConektaOrderCreate, oConektaOrderResponseSpei, oConektaOrderSpei, oConektaOrdersResponse, oConektaPaymentMethod, oConektaRes, oConektaResData, oConektaResObjChargePaid, oConektaResObjOrderPaid, oConektaResPrevAttr, oContract, oContractMetrics, oContractV2, oCustomer, oCustomerInfo, oDaySchedule, oDevice, oFinancial, oFinancialProgress, oMediaIdentity, oMessaging, oMessagingData, oNotification, oNotificationResponses, oPayloadToken, oPaymentDates, oPaymentGlobal, oPaymentOption, oResponse, oResponseFuncEmail, oSchedule, oScore, oScoreAddress, oScoreGeneral, oScoreHit, oScoreNoHit, oScoreReference, oTmpBusinessConfig, oUser, oUserReference, oWeekSchedule, partialIDCData, tyClientContract };
|