ravcredit-lib 0.0.20 → 0.0.21

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 CHANGED
@@ -25,7 +25,6 @@ interface oAddress {
25
25
  int: string;
26
26
  state: string;
27
27
  }
28
- declare const cAddress: oAddress;
29
28
 
30
29
  interface iBusinessInfo {
31
30
  address: WritableSignal<oAddress>;
@@ -41,35 +40,18 @@ interface oSchedule {
41
40
  open: number;
42
41
  close: number;
43
42
  }
44
- type weekSchedule = {
45
- monday: {
46
- open?: string;
47
- close?: string;
48
- };
49
- tuesday: {
50
- open?: string;
51
- close?: string;
52
- };
53
- wednesday: {
54
- open?: string;
55
- close?: string;
56
- };
57
- thursday: {
58
- open?: string;
59
- close?: string;
60
- };
61
- friday: {
62
- open?: string;
63
- close?: string;
64
- };
65
- saturday: {
66
- open?: string;
67
- close?: string;
68
- };
69
- sunday: {
70
- open?: string;
71
- close?: string;
72
- };
43
+ interface oDaySchedule {
44
+ open: number;
45
+ close: number;
46
+ }
47
+ type oWeekSchedule = {
48
+ monday: oDaySchedule;
49
+ tuesday: oDaySchedule;
50
+ wednesday: oDaySchedule;
51
+ thursday: oDaySchedule;
52
+ friday: oDaySchedule;
53
+ saturday: oDaySchedule;
54
+ sunday: oDaySchedule;
73
55
  };
74
56
  interface oBusinessInfo {
75
57
  version: string;
@@ -78,7 +60,7 @@ interface oBusinessInfo {
78
60
  address: oAddress;
79
61
  phones: string[];
80
62
  email: string;
81
- schedule?: weekSchedule;
63
+ schedule?: oWeekSchedule;
82
64
  }
83
65
  interface oBusinessDeadlines {
84
66
  weeks: number;
@@ -110,7 +92,7 @@ interface oTmpBusinessConfig {
110
92
  city?: string;
111
93
  state?: string;
112
94
  phones?: string[];
113
- mondayOpen?: string;
95
+ mondayOpen?: string | number;
114
96
  mondayClose?: string;
115
97
  tuesdayOpen?: string;
116
98
  tuesdayClose?: string;
@@ -183,6 +165,7 @@ declare enum eConektaOrderStatus {
183
165
  paid = "paid",
184
166
  pending_payment = "pending_payment"
185
167
  }
168
+
186
169
  interface oConektaResObjChargePaid {
187
170
  id: string;
188
171
  livemode: boolean;
@@ -471,10 +454,6 @@ interface iConektaRecurrent {
471
454
  custom_id: string;
472
455
  payment_sources: iOxxoRecurrentSources;
473
456
  }
474
- /******************************************************* New reference constant */
475
- declare const cOxxorecurrentSourcesData: iOxxorecurrentSourcesData;
476
- declare const cOxxoRecurrentSources: iOxxoRecurrentSources;
477
- declare const cConektaRecurrent: iConektaRecurrent;
478
457
 
479
458
  interface oDevice {
480
459
  device: string;
@@ -533,198 +512,6 @@ interface oContract {
533
512
  photo?: string;
534
513
  }
535
514
 
536
- interface iUser {
537
- pUser: oUser;
538
- getAllUsers(): void;
539
- editUser(user: oUser): void;
540
- deleteUser(user: oUser): void;
541
- }
542
- interface oUser {
543
- id: string;
544
- username: string;
545
- name: string;
546
- password: string;
547
- role: eRoles;
548
- lastLogin?: number;
549
- createdAt?: number;
550
- access_token: string;
551
- }
552
- interface iServiceUser {
553
- users: WritableSignal<oUser[]>;
554
- getAllUsersServer(): void;
555
- createUser(o: oUser): void;
556
- updateUser(o: oUser): void;
557
- deleteUser(id: string): void;
558
- }
559
-
560
- declare const cTopic = "RavCreditClients";
561
- declare enum eNotificationType {
562
- GLOBAL = "global",
563
- USER = "user",
564
- PAYMENT = "payment"
565
- }
566
- interface oNotificationResponses {
567
- successCount: number;
568
- failureCount: number;
569
- }
570
- interface oNotification {
571
- ids?: string[];
572
- type?: string;
573
- tokens?: string[];
574
- topic?: string;
575
- notification: {
576
- title: string;
577
- body: string;
578
- };
579
- data: any;
580
- notification_id?: number;
581
- recipient?: string;
582
- responses?: oNotificationResponses;
583
- }
584
- declare const cNotification: oNotification;
585
-
586
- declare enum eRoles {
587
- Administrator = "Administrator",
588
- Seller = "Seller",
589
- Consultant = "Consultant"
590
- }
591
- declare enum eProcessStatus {
592
- IDLE = "IDLE",
593
- ERROR = "ERROR",
594
- CANCELED = "CANCELED",
595
- COMPLETE = "COMPLETE",
596
- PROCESSING = "PROCESSING",
597
- WAITING = "WAITING"
598
- }
599
- declare enum eLoginStatus {
600
- IDLE = "IDLE",
601
- ERROR = "ERROR",
602
- AUTHORIZED = "AUTHORIZED",
603
- CHECKING = "CHECKING",
604
- NOAUTHORIZED = "NOAUTHORIZED",
605
- NOTFOUND = "NOTFOUND",
606
- ERRORPASSWORD = "ERRORPASSWORD"
607
- }
608
- declare enum eClientStatus {
609
- ACTIVE = "active",
610
- COMPLETED = "completed",
611
- PAUSED = "paused",
612
- CANCELED = "canceled",
613
- LATE = "late"
614
- }
615
- declare const cSingleOptionClientStatus: iOptionsSelect;
616
- declare const cOptionsClientStatus: iOptionsSelect[];
617
- interface iOptionsSelect {
618
- viewValue: String;
619
- value: String;
620
- }
621
- interface iSelect {
622
- viewValue: eRoles;
623
- value: eRoles;
624
- }
625
- declare const eRolesSelect: iSelect[];
626
- interface iConfigUUID {
627
- client_uuid?: string;
628
- contract_uuid: string;
629
- }
630
- interface iPaymentDelay {
631
- today: number;
632
- nextPayment: number;
633
- daysDelay: number;
634
- late: boolean;
635
- }
636
- declare const cPaymentDalay: iPaymentDelay;
637
- interface oResponse {
638
- error?: string;
639
- data: oUser | oUser[] | oBusinessInfo | oAddress | oSchedule | oFinancial | string | iPaymentDelay | oClient | oDevice | iConfigUUID | Response | oNotification;
640
- }
641
- interface gResponse {
642
- status?: boolean;
643
- path: string;
644
- statusCode: number;
645
- error?: string;
646
- epochTime: number;
647
- data?: any;
648
- }
649
- interface gResponseFuncEmail {
650
- success: boolean;
651
- message: any;
652
- }
653
- declare const snackBarConfigAction: MatSnackBarConfig;
654
- declare const snackBarConfigNoAction: MatSnackBarConfig;
655
- declare const snackBarConfigNoActionLong: MatSnackBarConfig;
656
- interface iInformativeDialog {
657
- message: string;
658
- title: string;
659
- cancel: string;
660
- continue: string;
661
- }
662
- interface iSnackBarMessage {
663
- message: string;
664
- action: string;
665
- config: MatSnackBarConfig;
666
- }
667
- type tyClientContract = oClient & oContract;
668
- declare const cTyClientContract: {
669
- id: string;
670
- dynamicAccount?: number;
671
- client: string;
672
- address: oAddress;
673
- device: oDevice;
674
- financial: oFinancial;
675
- createdAt?: number;
676
- lastPayment?: number;
677
- by: string;
678
- active: boolean;
679
- photo?: string;
680
- name: string;
681
- username: string;
682
- password?: string;
683
- email: string;
684
- phone: string;
685
- curp: string;
686
- contract?: string;
687
- lastLogin?: number;
688
- contract_temporary?: string;
689
- exists?: boolean;
690
- conekta_id?: string;
691
- dynamic_id?: number | string;
692
- dynamic_account?: string | number;
693
- dynamic_ref?: string;
694
- passport_id?: string;
695
- payments?: oClientPayments[];
696
- reference?: string;
697
- references?: oClientReferences[];
698
- token?: string;
699
- userReferences: oUserReference[];
700
- contractUrl?: string;
701
- status: string;
702
- };
703
- interface oContractMetrics {
704
- total: number;
705
- activated: number;
706
- paused: number;
707
- completed: number;
708
- canceled: number;
709
- late: number;
710
- dynamicCount: number;
711
- passportCount: number;
712
- conektaCount: number;
713
- rateTotal: number;
714
- rateActive: number;
715
- ratePaused: number;
716
- rateComplete: number;
717
- rateCanceled: number;
718
- rateLate: number;
719
- }
720
- interface HasUnsavedChanges {
721
- hasUnsavedChanges(): boolean;
722
- }
723
- interface oPaymentDates {
724
- week: number;
725
- date: number;
726
- }
727
-
728
515
  declare enum eReferenceStatusRav {
729
516
  "Disponible" = "Disponible",
730
517
  "Active" = "Activo con credito vigente",
@@ -1176,6 +963,67 @@ declare class FactoryDynamiCore {
1176
963
  };
1177
964
  }
1178
965
 
966
+ declare enum eRoles {
967
+ Administrator = "Administrator",
968
+ Seller = "Seller",
969
+ Consultant = "Consultant"
970
+ }
971
+
972
+ type tyClientContract = oClient & oContract;
973
+ interface oContractMetrics {
974
+ total: number;
975
+ activated: number;
976
+ paused: number;
977
+ completed: number;
978
+ canceled: number;
979
+ late: number;
980
+ dynamicCount: number;
981
+ passportCount: number;
982
+ conektaCount: number;
983
+ rateTotal: number;
984
+ rateActive: number;
985
+ ratePaused: number;
986
+ rateComplete: number;
987
+ rateCanceled: number;
988
+ rateLate: number;
989
+ }
990
+ interface HasUnsavedChanges {
991
+ hasUnsavedChanges(): boolean;
992
+ }
993
+ interface oPaymentDates {
994
+ week: number;
995
+ date: number;
996
+ }
997
+ interface iInformativeDialog {
998
+ message: string;
999
+ title: string;
1000
+ cancel: string;
1001
+ continue: string;
1002
+ }
1003
+ interface iSnackBarMessage {
1004
+ message: string;
1005
+ action: string;
1006
+ config: MatSnackBarConfig;
1007
+ }
1008
+ interface iOptionsSelect {
1009
+ viewValue: String;
1010
+ value: String;
1011
+ }
1012
+ interface iSelect {
1013
+ viewValue: eRoles;
1014
+ value: eRoles;
1015
+ }
1016
+ interface iConfigUUID {
1017
+ client_uuid?: string;
1018
+ contract_uuid: string;
1019
+ }
1020
+ interface iPaymentDelay {
1021
+ today: number;
1022
+ nextPayment: number;
1023
+ daysDelay: number;
1024
+ late: boolean;
1025
+ }
1026
+
1179
1027
  interface iContractAll {
1180
1028
  getAllLocal(): Promise<void>;
1181
1029
  getAllServer(): Promise<void>;
@@ -1212,21 +1060,11 @@ interface oCustomerInfo {
1212
1060
  phone?: string;
1213
1061
  }
1214
1062
 
1215
- declare enum eAuthActions {
1216
- delete = "delete",
1217
- auth = "auth"
1218
- }
1219
- declare enum eAuthType {
1220
- auth = "auth",
1221
- login = "login",
1222
- idle = ""
1223
- }
1224
1063
  interface iAuthConfig {
1225
1064
  title: string;
1226
1065
  desc: string;
1227
1066
  data: boolean;
1228
1067
  }
1229
- declare const cAuthConfig: iAuthConfig;
1230
1068
  interface ISignIn {
1231
1069
  username: WritableSignal<string>;
1232
1070
  password: WritableSignal<string>;
@@ -1252,10 +1090,27 @@ interface iNewPayment {
1252
1090
  createPayment(): Promise<string>;
1253
1091
  }
1254
1092
 
1255
- declare enum ePassportTypes {
1256
- CREATE = "create_references",
1257
- SEND = "send_references"
1093
+ declare const cTopic = "RavCreditClients";
1094
+ interface oNotificationResponses {
1095
+ successCount: number;
1096
+ failureCount: number;
1097
+ }
1098
+ interface oNotification {
1099
+ ids?: string[];
1100
+ type?: string;
1101
+ tokens?: string[];
1102
+ topic?: string;
1103
+ notification: {
1104
+ title: string;
1105
+ body: string;
1106
+ };
1107
+ data: any;
1108
+ notification_id?: number;
1109
+ recipient?: string;
1110
+ responses?: oNotificationResponses;
1258
1111
  }
1112
+ declare const cNotification: oNotification;
1113
+
1259
1114
  /** *********************************************************************************/
1260
1115
  interface iPassportAdditional {
1261
1116
  client?: string;
@@ -1306,6 +1161,30 @@ interface iPassportResponse {
1306
1161
  references: iPassportReference[];
1307
1162
  }
1308
1163
 
1164
+ interface iUser {
1165
+ pUser: oUser;
1166
+ getAllUsers(): void;
1167
+ editUser(user: oUser): void;
1168
+ deleteUser(user: oUser): void;
1169
+ }
1170
+ interface oUser {
1171
+ id: string;
1172
+ username: string;
1173
+ name: string;
1174
+ password: string;
1175
+ role: eRoles;
1176
+ lastLogin?: number;
1177
+ createdAt?: number;
1178
+ access_token: string;
1179
+ }
1180
+ interface iServiceUser {
1181
+ users: WritableSignal<oUser[]>;
1182
+ getAllUsersServer(): void;
1183
+ createUser(o: oUser): void;
1184
+ updateUser(o: oUser): void;
1185
+ deleteUser(id: string): void;
1186
+ }
1187
+
1309
1188
  declare enum eVerificationStep {
1310
1189
  IDLE = "IDLE",
1311
1190
  ERROR = "ERROR",
@@ -1326,6 +1205,7 @@ declare enum eVerificationChannel {
1326
1205
  EMAIL = "email",
1327
1206
  SNA = "sna"
1328
1207
  }
1208
+
1329
1209
  interface ISendCodeAttempt {
1330
1210
  time: string;
1331
1211
  channel: eVerificationChannel;
@@ -1730,6 +1610,11 @@ interface oScoreReference {
1730
1610
  score: number;
1731
1611
  }
1732
1612
 
1613
+ declare enum eAssetPeriod {
1614
+ MONTH = "MONTH",
1615
+ WEEK = "WEEK"
1616
+ }
1617
+
1733
1618
  interface oAssetCategory {
1734
1619
  name: string;
1735
1620
  id: string;
@@ -1746,10 +1631,6 @@ interface oAssetOffer {
1746
1631
  createAt: number;
1747
1632
  description: string;
1748
1633
  }
1749
- declare enum eAssetPeriod {
1750
- MONTH = "MONTH",
1751
- WEEK = "WEEK"
1752
- }
1753
1634
  interface oPaymentOption {
1754
1635
  deadline: number;
1755
1636
  score: oScoreNoHit;
@@ -1785,5 +1666,69 @@ interface oMediaIdentity {
1785
1666
  uploaded: number;
1786
1667
  }
1787
1668
 
1788
- export { FactoryBusiness, FactoryClient, FactoryConekta, FactoryContract, FactoryDynamiCore, FactoryNotification, FactoryPassport, FactoryPayment, IndexedDbService, ROUTE_GLOBAL_REFERENCE2, ROUTE_NOTIFICATIONS, RavcreditLibComponent, RavcreditLibService, UtilTime, UtilsHttp, cAddress, cAuthConfig, cBusinessConfig, cBusinessDeadlines, cBusinessInfo, cClient, cClientConekta, cClientContract, cClientDynamicStatus, cConektaRecurrent, cContract, cContractMetrics, cDefinedSchedule, cDevice, cEmptyDay, cFinancial, cIDCCharge, cIDCCustomer, cIDCDataPii, cIDCGeneratedReference, cIDCPayment, cNotification, cOptionsClientStatus, cOxxoRecurrentSources, cOxxorecurrentSourcesData, cPaymentDalay, cSchedule, cSingleOptionClientStatus, cTopic, cTyClientContract, cUserReference, dateCompleteFormat, dateFormat, dbAuthStore, dbBusinessConfig, dbBusinessInfo, dbClientsStore, dbConektaClientsStore, dbConektaReferencesStore, dbContractsStore, dbDynamicAccountStore, dbDynamicReferencesStore, dbIndexAuth, dbIndexBusiness, dbIndexClients, dbIndexConektaClients, dbIndexConektaClientsRef, dbIndexContracts, dbIndexNotification, dbIndexPassportClientsRef, dbIndexPayments, dbIndexUsers, dbName, dbNotificationsStore, dbPassportReferencesStore, dbPaymentsStore, dbUsersStore, dbVersion, eAccountDynamicStatus, eAssetPeriod, eAuthActions, eAuthType, eClientDynamicStatus, eClientStatus, eConektaOrderStatus, eConektaRes, eContractStatus, eContractSteps, eIdentityTypes, eLoginStatus, eNotificationType, ePassportTypes, ePaymentType, eProcessStatus, eProvider, eReferenceStatusRav, eRoles, eRolesSelect, eVerificationChannel, eVerificationStatus, eVerificationStep, expiredPayment, keyPathId, keyUserID, ravCreditFunctions, snackBarConfigAction, snackBarConfigNoAction, snackBarConfigNoActionLong, timeFormat, week };
1789
- export type { 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, gResponse, gResponseFuncEmail, 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, oClient, oClientConekta, oClientPayments, oClientReferences, oCompany, oConektaChannel, oConektaChargeData, oConektaCharges, oConektaCheckout, oConektaCustomerInfo, oConektaLineItem, oConektaLineItems, oConektaNewOrder, oConektaNewOrderAntifraudInfo, oConektaNewOrderCharge, oConektaNewOrderCustomerInfo, oConektaNewOrderLineItem, oConektaNewOrderPymMethod, oConektaOrder, oConektaOrderCreate, oConektaOrdersResponse, oConektaPaymentMethod, oConektaRes, oConektaResData, oConektaResObjChargePaid, oConektaResObjOrderPaid, oConektaResPrevAttr, oContract, oContractMetrics, oContractV2, oCustomer, oCustomerInfo, oDevice, oFinancial, oFinancialProgress, oMediaIdentity, oNotification, oNotificationResponses, oPaymentDates, oPaymentGlobal, oPaymentOption, oResponse, oSchedule, oScore, oScoreAddress, oScoreGeneral, oScoreHit, oScoreNoHit, oScoreReference, oTmpBusinessConfig, oUser, oUserReference, partialIDCData, tyClientContract, weekSchedule };
1669
+ interface oResponse {
1670
+ error?: string;
1671
+ data: oUser | oUser[] | oBusinessInfo | oAddress | oSchedule | oFinancial | string | iPaymentDelay | oClient | oDevice | iConfigUUID | Response | oNotification;
1672
+ }
1673
+ interface gResponse {
1674
+ status?: boolean;
1675
+ path: string;
1676
+ statusCode: number;
1677
+ error?: string;
1678
+ epochTime: number;
1679
+ data?: any;
1680
+ }
1681
+ interface gResponseFuncEmail {
1682
+ success: boolean;
1683
+ message: any;
1684
+ }
1685
+
1686
+ declare enum eLoginStatus {
1687
+ IDLE = "IDLE",
1688
+ ERROR = "ERROR",
1689
+ AUTHORIZED = "AUTHORIZED",
1690
+ CHECKING = "CHECKING",
1691
+ NOAUTHORIZED = "NOAUTHORIZED",
1692
+ NOTFOUND = "NOTFOUND",
1693
+ ERRORPASSWORD = "ERRORPASSWORD"
1694
+ }
1695
+ declare enum eAuthActions {
1696
+ delete = "delete",
1697
+ auth = "auth"
1698
+ }
1699
+ declare enum eAuthType {
1700
+ auth = "auth",
1701
+ login = "login",
1702
+ idle = ""
1703
+ }
1704
+
1705
+ declare enum eClientStatus {
1706
+ ACTIVE = "active",
1707
+ COMPLETED = "completed",
1708
+ PAUSED = "paused",
1709
+ CANCELED = "canceled",
1710
+ LATE = "late"
1711
+ }
1712
+
1713
+ declare enum eNotificationType {
1714
+ GLOBAL = "global",
1715
+ USER = "user",
1716
+ PAYMENT = "payment"
1717
+ }
1718
+
1719
+ declare enum ePassportTypes {
1720
+ CREATE = "create_references",
1721
+ SEND = "send_references"
1722
+ }
1723
+
1724
+ declare enum eProcessStatus {
1725
+ IDLE = "IDLE",
1726
+ ERROR = "ERROR",
1727
+ CANCELED = "CANCELED",
1728
+ COMPLETE = "COMPLETE",
1729
+ PROCESSING = "PROCESSING",
1730
+ WAITING = "WAITING"
1731
+ }
1732
+
1733
+ export { FactoryBusiness, FactoryClient, FactoryConekta, FactoryContract, FactoryDynamiCore, FactoryNotification, FactoryPassport, FactoryPayment, IndexedDbService, ROUTE_GLOBAL_REFERENCE2, ROUTE_NOTIFICATIONS, RavcreditLibComponent, RavcreditLibService, UtilTime, UtilsHttp, cBusinessConfig, cBusinessDeadlines, cBusinessInfo, cClient, cClientConekta, cClientContract, cClientDynamicStatus, cContract, cContractMetrics, cDefinedSchedule, cDevice, cEmptyDay, cFinancial, cIDCCharge, cIDCCustomer, cIDCDataPii, cIDCGeneratedReference, cIDCPayment, cNotification, cSchedule, cTopic, cUserReference, dateCompleteFormat, dateFormat, dbAuthStore, dbBusinessConfig, dbBusinessInfo, dbClientsStore, dbConektaClientsStore, dbConektaReferencesStore, dbContractsStore, dbDynamicAccountStore, dbDynamicReferencesStore, dbIndexAuth, dbIndexBusiness, dbIndexClients, dbIndexConektaClients, dbIndexConektaClientsRef, dbIndexContracts, dbIndexNotification, dbIndexPassportClientsRef, dbIndexPayments, dbIndexUsers, dbName, dbNotificationsStore, dbPassportReferencesStore, dbPaymentsStore, dbUsersStore, dbVersion, eAccountDynamicStatus, eAssetPeriod, eAuthActions, eAuthType, eClientDynamicStatus, eClientStatus, eConektaOrderStatus, eConektaRes, eContractStatus, eContractSteps, eIdentityTypes, eLoginStatus, eNotificationType, ePassportTypes, ePaymentType, eProcessStatus, eProvider, eReferenceStatusRav, eRoles, eVerificationChannel, eVerificationStatus, eVerificationStep, expiredPayment, keyPathId, keyUserID, ravCreditFunctions, timeFormat, week };
1734
+ export type { 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, gResponse, gResponseFuncEmail, 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, oClient, oClientConekta, oClientPayments, oClientReferences, oCompany, oConektaChannel, oConektaChargeData, oConektaCharges, oConektaCheckout, oConektaCustomerInfo, oConektaLineItem, oConektaLineItems, oConektaNewOrder, oConektaNewOrderAntifraudInfo, oConektaNewOrderCharge, oConektaNewOrderCustomerInfo, oConektaNewOrderLineItem, oConektaNewOrderPymMethod, oConektaOrder, oConektaOrderCreate, oConektaOrdersResponse, oConektaPaymentMethod, oConektaRes, oConektaResData, oConektaResObjChargePaid, oConektaResObjOrderPaid, oConektaResPrevAttr, oContract, oContractMetrics, oContractV2, oCustomer, oCustomerInfo, oDaySchedule, oDevice, oFinancial, oFinancialProgress, oMediaIdentity, oNotification, oNotificationResponses, oPaymentDates, oPaymentGlobal, oPaymentOption, oResponse, oSchedule, oScore, oScoreAddress, oScoreGeneral, oScoreHit, oScoreNoHit, oScoreReference, oTmpBusinessConfig, oUser, oUserReference, oWeekSchedule, partialIDCData, tyClientContract };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ravcredit-lib",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "types": "./index.d.ts",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",