@houlak/plexo-sdk 0.1.69 → 0.1.71
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/lib/sdk/models/FieldType.d.ts +17 -14
- package/lib/sdk/models/FieldType.js +17 -14
- package/package.json +1 -1
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
export declare enum FieldType {
|
|
2
2
|
Expiration = 257,
|
|
3
3
|
Name = 258,
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
4
|
+
Address = 259,
|
|
5
|
+
ZipCode = 260,
|
|
6
|
+
Email = 261,
|
|
7
|
+
Phone = 262,
|
|
8
|
+
Cellphone = 263,
|
|
9
|
+
AmountLimitExtension = 264,
|
|
10
|
+
Birthdate = 265,
|
|
11
|
+
InstrumentName = 266,
|
|
12
|
+
Identification = 267,
|
|
13
|
+
IdentificationType = 268,
|
|
14
|
+
IdentificationTypeExtended = 269,
|
|
15
|
+
AccountNumber = 270,
|
|
16
|
+
FirstName = 271,
|
|
17
|
+
LastName = 272,
|
|
18
|
+
City = 273,
|
|
18
19
|
Country = 513,
|
|
19
20
|
ShippingAddress = 514,
|
|
20
21
|
ShippingZipCode = 515,
|
|
@@ -37,6 +38,8 @@ export declare enum FieldType {
|
|
|
37
38
|
CrossBankTransfers = 532,
|
|
38
39
|
SourceBank = 533,
|
|
39
40
|
DestinationBank = 534,
|
|
41
|
+
BuyerFeeRate = 535,
|
|
42
|
+
BuyerFeeAmount = 536,
|
|
40
43
|
Provider = 1025,
|
|
41
44
|
SistarBancPaymentMethod = 1281,
|
|
42
45
|
RedPagosProductNumber = 1282,
|
|
@@ -6,20 +6,21 @@ var FieldType;
|
|
|
6
6
|
// User generic info
|
|
7
7
|
FieldType[FieldType["Expiration"] = 257] = "Expiration";
|
|
8
8
|
FieldType[FieldType["Name"] = 258] = "Name";
|
|
9
|
-
FieldType[FieldType["
|
|
10
|
-
FieldType[FieldType["
|
|
11
|
-
FieldType[FieldType["
|
|
12
|
-
FieldType[FieldType["
|
|
13
|
-
FieldType[FieldType["
|
|
14
|
-
FieldType[FieldType["
|
|
15
|
-
FieldType[FieldType["
|
|
16
|
-
FieldType[FieldType["
|
|
17
|
-
FieldType[FieldType["
|
|
18
|
-
FieldType[FieldType["
|
|
19
|
-
FieldType[FieldType["
|
|
20
|
-
FieldType[FieldType["
|
|
21
|
-
FieldType[FieldType["
|
|
22
|
-
FieldType[FieldType["
|
|
9
|
+
FieldType[FieldType["Address"] = 259] = "Address";
|
|
10
|
+
FieldType[FieldType["ZipCode"] = 260] = "ZipCode";
|
|
11
|
+
FieldType[FieldType["Email"] = 261] = "Email";
|
|
12
|
+
FieldType[FieldType["Phone"] = 262] = "Phone";
|
|
13
|
+
FieldType[FieldType["Cellphone"] = 263] = "Cellphone";
|
|
14
|
+
FieldType[FieldType["AmountLimitExtension"] = 264] = "AmountLimitExtension";
|
|
15
|
+
FieldType[FieldType["Birthdate"] = 265] = "Birthdate";
|
|
16
|
+
FieldType[FieldType["InstrumentName"] = 266] = "InstrumentName";
|
|
17
|
+
FieldType[FieldType["Identification"] = 267] = "Identification";
|
|
18
|
+
FieldType[FieldType["IdentificationType"] = 268] = "IdentificationType";
|
|
19
|
+
FieldType[FieldType["IdentificationTypeExtended"] = 269] = "IdentificationTypeExtended";
|
|
20
|
+
FieldType[FieldType["AccountNumber"] = 270] = "AccountNumber";
|
|
21
|
+
FieldType[FieldType["FirstName"] = 271] = "FirstName";
|
|
22
|
+
FieldType[FieldType["LastName"] = 272] = "LastName";
|
|
23
|
+
FieldType[FieldType["City"] = 273] = "City";
|
|
23
24
|
// New OptionalFields
|
|
24
25
|
FieldType[FieldType["Country"] = 513] = "Country";
|
|
25
26
|
FieldType[FieldType["ShippingAddress"] = 514] = "ShippingAddress";
|
|
@@ -43,6 +44,8 @@ var FieldType;
|
|
|
43
44
|
FieldType[FieldType["CrossBankTransfers"] = 532] = "CrossBankTransfers";
|
|
44
45
|
FieldType[FieldType["SourceBank"] = 533] = "SourceBank";
|
|
45
46
|
FieldType[FieldType["DestinationBank"] = 534] = "DestinationBank";
|
|
47
|
+
FieldType[FieldType["BuyerFeeRate"] = 535] = "BuyerFeeRate";
|
|
48
|
+
FieldType[FieldType["BuyerFeeAmount"] = 536] = "BuyerFeeAmount";
|
|
46
49
|
// Provider Related Information starts at 0x400
|
|
47
50
|
FieldType[FieldType["Provider"] = 1025] = "Provider";
|
|
48
51
|
// User/Provider Related Information starts at 0x500 // User Flag + Provider Flag
|