ravcredit-lib 0.0.61 → 0.0.63
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/fesm2022/ravcredit-lib.mjs +2 -1
- package/fesm2022/ravcredit-lib.mjs.map +1 -1
- package/index.d.ts +194 -219
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { Injector } from '@angular/core';
|
|
3
|
+
import { UntypedFormControl, UntypedFormArray } from '@angular/forms';
|
|
4
4
|
import { MatSnackBarConfig } from '@angular/material/snack-bar';
|
|
5
5
|
import * as idb from 'idb';
|
|
6
6
|
import { IDBPDatabase } from 'idb';
|
|
@@ -27,15 +27,6 @@ interface oAddress {
|
|
|
27
27
|
state: string;
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
interface iBusinessInfo {
|
|
31
|
-
address: WritableSignal<oAddress>;
|
|
32
|
-
schedule: WritableSignal<oSchedule>;
|
|
33
|
-
businessData: WritableSignal<oBusinessInfo>;
|
|
34
|
-
updateBusinessData(data: oBusinessInfo): boolean;
|
|
35
|
-
getBusinessDataAPI(): oBusinessInfo;
|
|
36
|
-
getBusinessDataLocal(): oBusinessInfo;
|
|
37
|
-
initFormBusiness(): UntypedFormGroup;
|
|
38
|
-
}
|
|
39
30
|
interface oSchedule {
|
|
40
31
|
day: string;
|
|
41
32
|
open: number;
|
|
@@ -227,7 +218,7 @@ declare enum eGCActions {
|
|
|
227
218
|
declare enum eOrderType {
|
|
228
219
|
DYNAMIC_REFERENCE = "DYNAMIC_REFERENCE",
|
|
229
220
|
DYNAMIC_SPEI = "DYNAMIC_SPEI",
|
|
230
|
-
|
|
221
|
+
FEMSA_REFERENCE = "FEMSA_REFERENCE",
|
|
231
222
|
CONEKTA_SPEI = "CONEKTA_SPEI",
|
|
232
223
|
PASSPORT_REFERENCE = "PASSPORT_REFERENCE"
|
|
233
224
|
}
|
|
@@ -779,6 +770,180 @@ interface oContract {
|
|
|
779
770
|
photo?: string;
|
|
780
771
|
}
|
|
781
772
|
|
|
773
|
+
interface oCustomer {
|
|
774
|
+
livemode: boolean;
|
|
775
|
+
name: string;
|
|
776
|
+
email: string;
|
|
777
|
+
phone: string;
|
|
778
|
+
id: string;
|
|
779
|
+
object: string;
|
|
780
|
+
created_at: number;
|
|
781
|
+
corporate: boolean;
|
|
782
|
+
custom_reference: string;
|
|
783
|
+
}
|
|
784
|
+
interface oCustomerInfo {
|
|
785
|
+
customer_id: string;
|
|
786
|
+
name?: string;
|
|
787
|
+
email?: string;
|
|
788
|
+
phone?: string;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
interface oAuth {
|
|
792
|
+
username: string;
|
|
793
|
+
password: string;
|
|
794
|
+
}
|
|
795
|
+
interface oAuthRes {
|
|
796
|
+
status: number;
|
|
797
|
+
data: {};
|
|
798
|
+
}
|
|
799
|
+
declare enum eDestinationType {
|
|
800
|
+
auth = "auth",
|
|
801
|
+
login = "login",
|
|
802
|
+
idle = ""
|
|
803
|
+
}
|
|
804
|
+
interface iAuthConfig {
|
|
805
|
+
title: string;
|
|
806
|
+
desc: string;
|
|
807
|
+
data: boolean;
|
|
808
|
+
}
|
|
809
|
+
interface iAuthConfig {
|
|
810
|
+
title: string;
|
|
811
|
+
desc: string;
|
|
812
|
+
data: boolean;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
interface iNewPayment {
|
|
816
|
+
getContract(): Promise<void>;
|
|
817
|
+
getContractApi(): Promise<oContract>;
|
|
818
|
+
getClient(contract: oContract): Promise<void>;
|
|
819
|
+
getClientApi(contract: oContract): Promise<oClientBase>;
|
|
820
|
+
getParams(): Promise<void>;
|
|
821
|
+
getAccount(): Promise<boolean>;
|
|
822
|
+
createPayment(): Promise<string>;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
declare const cTopic = "RavCreditClients";
|
|
826
|
+
interface oNotificationResponses {
|
|
827
|
+
successCount: number;
|
|
828
|
+
failureCount: number;
|
|
829
|
+
}
|
|
830
|
+
interface oNotification {
|
|
831
|
+
ids?: string[];
|
|
832
|
+
type?: string;
|
|
833
|
+
tokens?: string[];
|
|
834
|
+
topic?: string;
|
|
835
|
+
notification: {
|
|
836
|
+
title: string;
|
|
837
|
+
body: string;
|
|
838
|
+
};
|
|
839
|
+
data: any;
|
|
840
|
+
notification_id?: number;
|
|
841
|
+
recipient?: string;
|
|
842
|
+
responses?: oNotificationResponses;
|
|
843
|
+
}
|
|
844
|
+
declare const cNotification: oNotification;
|
|
845
|
+
|
|
846
|
+
/** *********************************************************************************/
|
|
847
|
+
interface iPassportAdditional {
|
|
848
|
+
client?: string;
|
|
849
|
+
clientID?: string;
|
|
850
|
+
credit?: string;
|
|
851
|
+
}
|
|
852
|
+
interface iPassportReferenceData {
|
|
853
|
+
name: string;
|
|
854
|
+
email: string;
|
|
855
|
+
amount: number;
|
|
856
|
+
expirationDate: string;
|
|
857
|
+
additional: iPassportAdditional;
|
|
858
|
+
}
|
|
859
|
+
/** Passport request interface base */
|
|
860
|
+
interface iPassportReference {
|
|
861
|
+
type: string;
|
|
862
|
+
data: iPassportReferenceData;
|
|
863
|
+
}
|
|
864
|
+
/** Global passport reference aPI */
|
|
865
|
+
interface iGlobalPassport {
|
|
866
|
+
passport: iPassportReference;
|
|
867
|
+
contract: oContract;
|
|
868
|
+
date?: number;
|
|
869
|
+
}
|
|
870
|
+
/** ******************************** */
|
|
871
|
+
interface iPassportResponseData {
|
|
872
|
+
name: string;
|
|
873
|
+
email: string;
|
|
874
|
+
amount: number;
|
|
875
|
+
expirationDate: string;
|
|
876
|
+
additional: iPassportAdditional;
|
|
877
|
+
}
|
|
878
|
+
interface iPassportReferenceCenters {
|
|
879
|
+
name: string;
|
|
880
|
+
logo: string;
|
|
881
|
+
}
|
|
882
|
+
interface iPassportReferenceRes {
|
|
883
|
+
reference: string;
|
|
884
|
+
centers: iPassportReferenceCenters[];
|
|
885
|
+
centerId: number;
|
|
886
|
+
barcode: string;
|
|
887
|
+
}
|
|
888
|
+
/** Passport response interface base */
|
|
889
|
+
interface iPassportResponse {
|
|
890
|
+
type: string;
|
|
891
|
+
data: iPassportResponseData;
|
|
892
|
+
message: string;
|
|
893
|
+
references: iPassportReference[];
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
declare enum eRoles {
|
|
897
|
+
Administrator = "Administrator",
|
|
898
|
+
Seller = "Seller",
|
|
899
|
+
Consultant = "Consultant",
|
|
900
|
+
Client = "Client",
|
|
901
|
+
User = "User"
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
interface oUser {
|
|
905
|
+
id: string;
|
|
906
|
+
username: string;
|
|
907
|
+
name: string;
|
|
908
|
+
password: string;
|
|
909
|
+
role: eRoles;
|
|
910
|
+
lastLogin?: number;
|
|
911
|
+
createdAt?: number;
|
|
912
|
+
access_token: string;
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
interface ISendCodeAttempt {
|
|
916
|
+
time: string;
|
|
917
|
+
channel: eVerificationChannel;
|
|
918
|
+
attemptSid: string;
|
|
919
|
+
}
|
|
920
|
+
interface IBaseVerification {
|
|
921
|
+
sid: string;
|
|
922
|
+
service_sid: string;
|
|
923
|
+
account_sid: string;
|
|
924
|
+
to: string;
|
|
925
|
+
channel: eVerificationChannel;
|
|
926
|
+
status: eVerificationStatus;
|
|
927
|
+
valid: boolean;
|
|
928
|
+
date_created: string;
|
|
929
|
+
date_updated: string;
|
|
930
|
+
amount: any;
|
|
931
|
+
payee: any;
|
|
932
|
+
}
|
|
933
|
+
interface IVerificationSms extends IBaseVerification {
|
|
934
|
+
lookup: any;
|
|
935
|
+
send_code_attempts: ISendCodeAttempt[];
|
|
936
|
+
sna: any;
|
|
937
|
+
url: string;
|
|
938
|
+
}
|
|
939
|
+
interface IVerificationCheckSms {
|
|
940
|
+
sna_attempts_error_codes: any[];
|
|
941
|
+
}
|
|
942
|
+
interface IVerificationData {
|
|
943
|
+
Phone?: string;
|
|
944
|
+
VerificationCode?: string;
|
|
945
|
+
}
|
|
946
|
+
|
|
782
947
|
declare enum eReferenceStatusRav {
|
|
783
948
|
"Disponible" = "Disponible",
|
|
784
949
|
"Active" = "Activo con credito vigente",
|
|
@@ -1230,14 +1395,6 @@ declare class FactoryDynamiCore {
|
|
|
1230
1395
|
};
|
|
1231
1396
|
}
|
|
1232
1397
|
|
|
1233
|
-
declare enum eRoles {
|
|
1234
|
-
Administrator = "Administrator",
|
|
1235
|
-
Seller = "Seller",
|
|
1236
|
-
Consultant = "Consultant",
|
|
1237
|
-
Client = "Client",
|
|
1238
|
-
User = "User"
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
1398
|
type tyClientContract = oClientBase & oContract;
|
|
1242
1399
|
interface oContractMetrics {
|
|
1243
1400
|
total: number;
|
|
@@ -1259,6 +1416,10 @@ interface oContractMetrics {
|
|
|
1259
1416
|
interface HasUnsavedChanges {
|
|
1260
1417
|
hasUnsavedChanges(): boolean;
|
|
1261
1418
|
}
|
|
1419
|
+
interface HasUnsavedChanges {
|
|
1420
|
+
week: number;
|
|
1421
|
+
date: number;
|
|
1422
|
+
}
|
|
1262
1423
|
interface oPaymentDates {
|
|
1263
1424
|
week: number;
|
|
1264
1425
|
date: number;
|
|
@@ -1293,204 +1454,6 @@ interface iPaymentDelay {
|
|
|
1293
1454
|
late: boolean;
|
|
1294
1455
|
}
|
|
1295
1456
|
|
|
1296
|
-
interface iContractAll {
|
|
1297
|
-
getAllLocal(): Promise<void>;
|
|
1298
|
-
getAllServer(): Promise<void>;
|
|
1299
|
-
getDynamicTransactionsManual(account: number): Promise<boolean>;
|
|
1300
|
-
createNewReferenceDynamic(client: tyClientContract): Promise<boolean>;
|
|
1301
|
-
createNewReferenceConekta(client: tyClientContract): Promise<void>;
|
|
1302
|
-
createNewReferencePassport(client: tyClientContract): Promise<void>;
|
|
1303
|
-
referenceCreated(response: boolean, provider: string): void;
|
|
1304
|
-
getColumnName(column: string): string;
|
|
1305
|
-
searchDynamicAccount(client: tyClientContract): Promise<IDCAccount | null>;
|
|
1306
|
-
updateClient(client: Partial<oClientBase>): Promise<boolean>;
|
|
1307
|
-
updateContract(id: string, contract: Partial<oContract>): Promise<boolean>;
|
|
1308
|
-
deleteClient(client: oClientBase): Promise<boolean>;
|
|
1309
|
-
deleteContract(contract: oContract): Promise<boolean>;
|
|
1310
|
-
updateClientAppAccess(client: Partial<oClientBase>, id: string): Promise<boolean>;
|
|
1311
|
-
calcTotal(contract: oContract): number;
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
interface oCustomer {
|
|
1315
|
-
livemode: boolean;
|
|
1316
|
-
name: string;
|
|
1317
|
-
email: string;
|
|
1318
|
-
phone: string;
|
|
1319
|
-
id: string;
|
|
1320
|
-
object: string;
|
|
1321
|
-
created_at: number;
|
|
1322
|
-
corporate: boolean;
|
|
1323
|
-
custom_reference: string;
|
|
1324
|
-
}
|
|
1325
|
-
interface oCustomerInfo {
|
|
1326
|
-
customer_id: string;
|
|
1327
|
-
name?: string;
|
|
1328
|
-
email?: string;
|
|
1329
|
-
phone?: string;
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
|
-
interface iAuthConfig {
|
|
1333
|
-
title: string;
|
|
1334
|
-
desc: string;
|
|
1335
|
-
data: boolean;
|
|
1336
|
-
}
|
|
1337
|
-
interface ISignIn {
|
|
1338
|
-
username: WritableSignal<string>;
|
|
1339
|
-
password: WritableSignal<string>;
|
|
1340
|
-
login(credentials: oAuth, destination: string): Promise<void>;
|
|
1341
|
-
success(): void;
|
|
1342
|
-
}
|
|
1343
|
-
interface oAuth {
|
|
1344
|
-
username: string;
|
|
1345
|
-
password: string;
|
|
1346
|
-
}
|
|
1347
|
-
interface oAuthRes {
|
|
1348
|
-
status: number;
|
|
1349
|
-
data: {};
|
|
1350
|
-
}
|
|
1351
|
-
declare enum eDestinationType {
|
|
1352
|
-
auth = "auth",
|
|
1353
|
-
login = "login",
|
|
1354
|
-
idle = ""
|
|
1355
|
-
}
|
|
1356
|
-
|
|
1357
|
-
interface iNewPayment {
|
|
1358
|
-
getContract(): Promise<void>;
|
|
1359
|
-
getContractApi(): Promise<oContract>;
|
|
1360
|
-
getClient(contract: oContract): Promise<void>;
|
|
1361
|
-
getClientApi(contract: oContract): Promise<oClientBase>;
|
|
1362
|
-
getParams(): Promise<void>;
|
|
1363
|
-
getAccount(): Promise<boolean>;
|
|
1364
|
-
createPayment(): Promise<string>;
|
|
1365
|
-
}
|
|
1366
|
-
|
|
1367
|
-
declare const cTopic = "RavCreditClients";
|
|
1368
|
-
interface oNotificationResponses {
|
|
1369
|
-
successCount: number;
|
|
1370
|
-
failureCount: number;
|
|
1371
|
-
}
|
|
1372
|
-
interface oNotification {
|
|
1373
|
-
ids?: string[];
|
|
1374
|
-
type?: string;
|
|
1375
|
-
tokens?: string[];
|
|
1376
|
-
topic?: string;
|
|
1377
|
-
notification: {
|
|
1378
|
-
title: string;
|
|
1379
|
-
body: string;
|
|
1380
|
-
};
|
|
1381
|
-
data: any;
|
|
1382
|
-
notification_id?: number;
|
|
1383
|
-
recipient?: string;
|
|
1384
|
-
responses?: oNotificationResponses;
|
|
1385
|
-
}
|
|
1386
|
-
declare const cNotification: oNotification;
|
|
1387
|
-
|
|
1388
|
-
/** *********************************************************************************/
|
|
1389
|
-
interface iPassportAdditional {
|
|
1390
|
-
client?: string;
|
|
1391
|
-
clientID?: string;
|
|
1392
|
-
credit?: string;
|
|
1393
|
-
}
|
|
1394
|
-
interface iPassportReferenceData {
|
|
1395
|
-
name: string;
|
|
1396
|
-
email: string;
|
|
1397
|
-
amount: number;
|
|
1398
|
-
expirationDate: string;
|
|
1399
|
-
additional: iPassportAdditional;
|
|
1400
|
-
}
|
|
1401
|
-
/** Passport request interface base */
|
|
1402
|
-
interface iPassportReference {
|
|
1403
|
-
type: string;
|
|
1404
|
-
data: iPassportReferenceData;
|
|
1405
|
-
}
|
|
1406
|
-
/** Global passport reference aPI */
|
|
1407
|
-
interface iGlobalPassport {
|
|
1408
|
-
passport: iPassportReference;
|
|
1409
|
-
contract: oContract;
|
|
1410
|
-
date?: number;
|
|
1411
|
-
}
|
|
1412
|
-
/** ******************************** */
|
|
1413
|
-
interface iPassportResponseData {
|
|
1414
|
-
name: string;
|
|
1415
|
-
email: string;
|
|
1416
|
-
amount: number;
|
|
1417
|
-
expirationDate: string;
|
|
1418
|
-
additional: iPassportAdditional;
|
|
1419
|
-
}
|
|
1420
|
-
interface iPassportReferenceCenters {
|
|
1421
|
-
name: string;
|
|
1422
|
-
logo: string;
|
|
1423
|
-
}
|
|
1424
|
-
interface iPassportReferenceRes {
|
|
1425
|
-
reference: string;
|
|
1426
|
-
centers: iPassportReferenceCenters[];
|
|
1427
|
-
centerId: number;
|
|
1428
|
-
barcode: string;
|
|
1429
|
-
}
|
|
1430
|
-
/** Passport response interface base */
|
|
1431
|
-
interface iPassportResponse {
|
|
1432
|
-
type: string;
|
|
1433
|
-
data: iPassportResponseData;
|
|
1434
|
-
message: string;
|
|
1435
|
-
references: iPassportReference[];
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
|
-
interface iUser {
|
|
1439
|
-
pUser: oUser;
|
|
1440
|
-
getAllUsers(): void;
|
|
1441
|
-
editUser(user: oUser): void;
|
|
1442
|
-
deleteUser(user: oUser): void;
|
|
1443
|
-
}
|
|
1444
|
-
interface oUser {
|
|
1445
|
-
id: string;
|
|
1446
|
-
username: string;
|
|
1447
|
-
name: string;
|
|
1448
|
-
password: string;
|
|
1449
|
-
role: eRoles;
|
|
1450
|
-
lastLogin?: number;
|
|
1451
|
-
createdAt?: number;
|
|
1452
|
-
access_token: string;
|
|
1453
|
-
}
|
|
1454
|
-
interface iServiceUser {
|
|
1455
|
-
users: WritableSignal<oUser[]>;
|
|
1456
|
-
getAllUsersServer(): void;
|
|
1457
|
-
createUser(o: oUser): void;
|
|
1458
|
-
updateUser(o: oUser): void;
|
|
1459
|
-
deleteUser(id: string): void;
|
|
1460
|
-
}
|
|
1461
|
-
|
|
1462
|
-
interface ISendCodeAttempt {
|
|
1463
|
-
time: string;
|
|
1464
|
-
channel: eVerificationChannel;
|
|
1465
|
-
attemptSid: string;
|
|
1466
|
-
}
|
|
1467
|
-
interface IBaseVerification {
|
|
1468
|
-
sid: string;
|
|
1469
|
-
service_sid: string;
|
|
1470
|
-
account_sid: string;
|
|
1471
|
-
to: string;
|
|
1472
|
-
channel: eVerificationChannel;
|
|
1473
|
-
status: eVerificationStatus;
|
|
1474
|
-
valid: boolean;
|
|
1475
|
-
date_created: string;
|
|
1476
|
-
date_updated: string;
|
|
1477
|
-
amount: any;
|
|
1478
|
-
payee: any;
|
|
1479
|
-
}
|
|
1480
|
-
interface IVerificationSms extends IBaseVerification {
|
|
1481
|
-
lookup: any;
|
|
1482
|
-
send_code_attempts: ISendCodeAttempt[];
|
|
1483
|
-
sna: any;
|
|
1484
|
-
url: string;
|
|
1485
|
-
}
|
|
1486
|
-
interface IVerificationCheckSms {
|
|
1487
|
-
sna_attempts_error_codes: any[];
|
|
1488
|
-
}
|
|
1489
|
-
interface IVerificationData {
|
|
1490
|
-
Phone?: string;
|
|
1491
|
-
VerificationCode?: string;
|
|
1492
|
-
}
|
|
1493
|
-
|
|
1494
1457
|
interface oClientConekta {
|
|
1495
1458
|
ravcredit: oClient;
|
|
1496
1459
|
conekta: iConektaRecurrent;
|
|
@@ -1820,6 +1783,18 @@ interface oResponseFuncEmail {
|
|
|
1820
1783
|
success: boolean;
|
|
1821
1784
|
message: any;
|
|
1822
1785
|
}
|
|
1786
|
+
interface gResponse {
|
|
1787
|
+
status?: boolean;
|
|
1788
|
+
path: string;
|
|
1789
|
+
statusCode: number;
|
|
1790
|
+
error?: string;
|
|
1791
|
+
epochTime: number;
|
|
1792
|
+
data: any;
|
|
1793
|
+
}
|
|
1794
|
+
interface gResponseFuncEmail {
|
|
1795
|
+
success: boolean;
|
|
1796
|
+
message: any;
|
|
1797
|
+
}
|
|
1823
1798
|
|
|
1824
1799
|
declare const cSingleOptionClientStatus: iOptionsSelect;
|
|
1825
1800
|
declare const cOptionsClientStatus: iOptionsSelect[];
|
|
@@ -2087,4 +2062,4 @@ interface oPayloadToken {
|
|
|
2087
2062
|
}
|
|
2088
2063
|
|
|
2089
2064
|
export { EnumDynamicClientStatus, ErrorMessages, FactoryBusiness, FactoryClient, FactoryConekta, FactoryContract, FactoryDynamiCore, FactoryNotification, FactoryPassport, FactoryPayment, IndexedDbService, ROLES_KEY, ROUTE_GLOBAL_REFERENCE2, ROUTE_NOTIFICATIONS, RavcreditLibComponent, RavcreditLibService, RouteData, TIME_FORMAT_TABLE, UtilGeneral, UtilTime, UtilsHttp, cAddress, cAuthConfig, cBusinessConfig, cBusinessDeadlines, cBusinessInfo, cClient, cClientBase, cClientConekta, cClientContract, cClientDynamicStatus, cConektaRecurrent, cContract, cContractMetrics, cDaySchedule, cDefinedSchedule, cDevice, cEmptyDay, cFinancial, cIDCCharge, cIDCCustomer, cIDCDataPii, cIDCGeneratedReference, cIDCPayment, cMediaIdentity, cNotification, cOptionsClientStatus, cOxxoRecurrentSources, cOxxoRecurrentSourcesData, cPaymentDelay, cResponse, cResponseError, cResponseErrorData, cSchedule, cScore, cScoreAddress, cScoreGeneral, cScoreHit, 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, eConektaRes, eContractStatus, eContractSteps, eDestinationType, eEmailType, eGCActions, eIdentityTypes, eLoginStatus, eNotificationType, eOrderType, ePassportTypes, ePaymentType, eProcessStatus, eProvider, eReferenceStatusRav, eRequestVerb, eRoles, eRolesSelect, eVerificationChannel, eVerificationStatus, eVerificationStep, emailContact, expiredPayment, keyPathId, keyUserID, ravCreditFunctions, snackBarConfigAction, snackBarConfigNoAction, snackBarConfigNoActionLong, timeFormat, timeFormatTable, week };
|
|
2090
|
-
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,
|
|
2065
|
+
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, IVerificationCheckSms, IVerificationData, IVerificationSms, LineItemListSpei, LineItemSpei, RoutingParams, Tokens, gResponse, gResponseFuncEmail, iAuthConfig, iClientContract, iConektaRecurrent, iConektaResData, iConektaResObjChargePaid, iConektaResObjChargePaidMethod, iConektaResPrevAttr, iConektaSources, iConfigUUID, iContract, iGlobalPassport, iInformativeDialog, iNewPayment, iOptionsSelect, iOxxoRecurrentSources, iOxxorecurrentSourcesData, iPassportAdditional, iPassportReference, iPassportReferenceCenters, iPassportReferenceData, iPassportReferenceRes, iPassportResponse, iPassportResponseData, iPaymentDelay, iSelect, iSnackBarMessage, oAddress, oAsset, oAssetBrand, oAssetCategory, oAssetOffer, oAuth, oAuthRes, oBusinessConfig, oBusinessDeadlines, oBusinessInfo, oCatalog, oClient, oClientConekta, oClientPayments, oClientReferences, oCompany, oConektaChannel, oConektaChargeData, oConektaCharges, oConektaCheckout, oConektaCustomerInfo, oConektaLineItem, oConektaLineItems, oConektaMixOrder, 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 };
|