ggez-banking-sdk 0.5.22 → 0.5.24
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/dist/constant/enum.d.ts +16 -10
- package/dist/constant/enum.js +17 -11
- package/package.json +1 -1
package/dist/constant/enum.d.ts
CHANGED
|
@@ -708,15 +708,6 @@ declare enum Gender {
|
|
|
708
708
|
Male = 1,
|
|
709
709
|
Female = 2
|
|
710
710
|
}
|
|
711
|
-
declare enum IdentificationTypes {
|
|
712
|
-
Passport = 0,
|
|
713
|
-
Drivers_License = 1,
|
|
714
|
-
National_ID = 2,
|
|
715
|
-
SSN = 3,
|
|
716
|
-
SIN = 4,
|
|
717
|
-
Credit_Bureau = 6,
|
|
718
|
-
Electronic_Verification = 7
|
|
719
|
-
}
|
|
720
711
|
declare enum OperationStatus {
|
|
721
712
|
Undefined = -1,
|
|
722
713
|
Pending = 0,
|
|
@@ -1327,6 +1318,21 @@ declare enum TrustLimits {
|
|
|
1327
1318
|
Trusted = "Trusted",
|
|
1328
1319
|
Unverified = "Unverified"
|
|
1329
1320
|
}
|
|
1321
|
+
declare enum UserIdentificationTypes {
|
|
1322
|
+
Undefined = -1,
|
|
1323
|
+
Passport = 0,
|
|
1324
|
+
Driver_License = 1,
|
|
1325
|
+
National_ID = 2,
|
|
1326
|
+
SSN = 3,
|
|
1327
|
+
SIN = 4,
|
|
1328
|
+
Number_Of_Mandatory = 5,
|
|
1329
|
+
Credit_Bureau = 6,
|
|
1330
|
+
Electronic_Verification = 7,
|
|
1331
|
+
Beneficiary_Card = 8,
|
|
1332
|
+
Medical_Card = 9,
|
|
1333
|
+
Generic = 10,
|
|
1334
|
+
MitID = 11
|
|
1335
|
+
}
|
|
1330
1336
|
declare enum UserTrustLevelRange {
|
|
1331
1337
|
Unverified = 0,
|
|
1332
1338
|
Limited = 1,
|
|
@@ -1363,4 +1369,4 @@ declare enum WireTransferType {
|
|
|
1363
1369
|
Domestic = 1,
|
|
1364
1370
|
International = 2
|
|
1365
1371
|
}
|
|
1366
|
-
export { AccountStatus, ActivityType, AddressType, AuthorizationOperationRequestType, BankAccountTypes, BankBeneficiaryType, BlockchainRequestType, BusinessType, ChainRequestType, ChainType, CommerceProductSourceType, CountryCode, CurrencyConversionType, DayOfWeek, DaysOfWeek, DeviceType, DocumentStatus, DocumentType, Entity, EntityData, EntityPriority, EntityStatus, EntityVerificationStatus, ErrorLevel, ExternalHostMessageType, ExternalHostMode, ForgetPasswordSecurityTypes, ForgetUserSecurityTypes, GGEZGiftType, Gender,
|
|
1372
|
+
export { AccountStatus, ActivityType, AddressType, AuthorizationOperationRequestType, BankAccountTypes, BankBeneficiaryType, BlockchainRequestType, BusinessType, ChainRequestType, ChainType, CommerceProductSourceType, CountryCode, CurrencyConversionType, DayOfWeek, DaysOfWeek, DeviceType, DocumentStatus, DocumentType, Entity, EntityData, EntityPriority, EntityStatus, EntityVerificationStatus, ErrorLevel, ExternalHostMessageType, ExternalHostMode, ForgetPasswordSecurityTypes, ForgetUserSecurityTypes, GGEZGiftType, Gender, OperationStatus, OrderStatus, OrderType, OrganizationRequestTypes, OrganizationType, PaymentMethodType, PhoneNumberTypes, ProgramTypes, PromotionGames, PromotionStatus, PromotionType, PromotionVisibility, RequestStatus, ResetSecurityType, SecurityAuthenticationTypes, SecurityLoginType, SecurityOperationMethod, SecurityQuestion1, SecurityQuestion2, SecurityValidationActionType, SecurityValidationStatus, SecurityValidationType, ServiceProvider, SettlementTransactionType, SourceApp, TicketCategory, TicketType, Titles, TransactionClassification, TransactionInquiryStatus, TransactionRequestStatus, TransactionType, TrustLimits, UserIdentificationTypes, UserTrustLevelRange, UserType, ValidateType, VariantType, VerificationMethod, WireTransferType, };
|
package/dist/constant/enum.js
CHANGED
|
@@ -742,16 +742,6 @@ var Gender;
|
|
|
742
742
|
Gender[Gender["Male"] = 1] = "Male";
|
|
743
743
|
Gender[Gender["Female"] = 2] = "Female";
|
|
744
744
|
})(Gender || (Gender = {}));
|
|
745
|
-
var IdentificationTypes;
|
|
746
|
-
(function (IdentificationTypes) {
|
|
747
|
-
IdentificationTypes[IdentificationTypes["Passport"] = 0] = "Passport";
|
|
748
|
-
IdentificationTypes[IdentificationTypes["Drivers_License"] = 1] = "Drivers_License";
|
|
749
|
-
IdentificationTypes[IdentificationTypes["National_ID"] = 2] = "National_ID";
|
|
750
|
-
IdentificationTypes[IdentificationTypes["SSN"] = 3] = "SSN";
|
|
751
|
-
IdentificationTypes[IdentificationTypes["SIN"] = 4] = "SIN";
|
|
752
|
-
IdentificationTypes[IdentificationTypes["Credit_Bureau"] = 6] = "Credit_Bureau";
|
|
753
|
-
IdentificationTypes[IdentificationTypes["Electronic_Verification"] = 7] = "Electronic_Verification";
|
|
754
|
-
})(IdentificationTypes || (IdentificationTypes = {}));
|
|
755
745
|
var OperationStatus;
|
|
756
746
|
(function (OperationStatus) {
|
|
757
747
|
OperationStatus[OperationStatus["Undefined"] = -1] = "Undefined";
|
|
@@ -1399,6 +1389,22 @@ var TrustLimits;
|
|
|
1399
1389
|
TrustLimits["Trusted"] = "Trusted";
|
|
1400
1390
|
TrustLimits["Unverified"] = "Unverified";
|
|
1401
1391
|
})(TrustLimits || (TrustLimits = {}));
|
|
1392
|
+
var UserIdentificationTypes;
|
|
1393
|
+
(function (UserIdentificationTypes) {
|
|
1394
|
+
UserIdentificationTypes[UserIdentificationTypes["Undefined"] = -1] = "Undefined";
|
|
1395
|
+
UserIdentificationTypes[UserIdentificationTypes["Passport"] = 0] = "Passport";
|
|
1396
|
+
UserIdentificationTypes[UserIdentificationTypes["Driver_License"] = 1] = "Driver_License";
|
|
1397
|
+
UserIdentificationTypes[UserIdentificationTypes["National_ID"] = 2] = "National_ID";
|
|
1398
|
+
UserIdentificationTypes[UserIdentificationTypes["SSN"] = 3] = "SSN";
|
|
1399
|
+
UserIdentificationTypes[UserIdentificationTypes["SIN"] = 4] = "SIN";
|
|
1400
|
+
UserIdentificationTypes[UserIdentificationTypes["Number_Of_Mandatory"] = 5] = "Number_Of_Mandatory";
|
|
1401
|
+
UserIdentificationTypes[UserIdentificationTypes["Credit_Bureau"] = 6] = "Credit_Bureau";
|
|
1402
|
+
UserIdentificationTypes[UserIdentificationTypes["Electronic_Verification"] = 7] = "Electronic_Verification";
|
|
1403
|
+
UserIdentificationTypes[UserIdentificationTypes["Beneficiary_Card"] = 8] = "Beneficiary_Card";
|
|
1404
|
+
UserIdentificationTypes[UserIdentificationTypes["Medical_Card"] = 9] = "Medical_Card";
|
|
1405
|
+
UserIdentificationTypes[UserIdentificationTypes["Generic"] = 10] = "Generic";
|
|
1406
|
+
UserIdentificationTypes[UserIdentificationTypes["MitID"] = 11] = "MitID";
|
|
1407
|
+
})(UserIdentificationTypes || (UserIdentificationTypes = {}));
|
|
1402
1408
|
var UserTrustLevelRange;
|
|
1403
1409
|
(function (UserTrustLevelRange) {
|
|
1404
1410
|
UserTrustLevelRange[UserTrustLevelRange["Unverified"] = 0] = "Unverified";
|
|
@@ -1441,4 +1447,4 @@ var WireTransferType;
|
|
|
1441
1447
|
WireTransferType[WireTransferType["Domestic"] = 1] = "Domestic";
|
|
1442
1448
|
WireTransferType[WireTransferType["International"] = 2] = "International";
|
|
1443
1449
|
})(WireTransferType || (WireTransferType = {}));
|
|
1444
|
-
export { AccountStatus, ActivityType, AddressType, AuthorizationOperationRequestType, BankAccountTypes, BankBeneficiaryType, BlockchainRequestType, BusinessType, ChainRequestType, ChainType, CommerceProductSourceType, CountryCode, CurrencyConversionType, DayOfWeek, DaysOfWeek, DeviceType, DocumentStatus, DocumentType, Entity, EntityData, EntityPriority, EntityStatus, EntityVerificationStatus, ErrorLevel, ExternalHostMessageType, ExternalHostMode, ForgetPasswordSecurityTypes, ForgetUserSecurityTypes, GGEZGiftType, Gender,
|
|
1450
|
+
export { AccountStatus, ActivityType, AddressType, AuthorizationOperationRequestType, BankAccountTypes, BankBeneficiaryType, BlockchainRequestType, BusinessType, ChainRequestType, ChainType, CommerceProductSourceType, CountryCode, CurrencyConversionType, DayOfWeek, DaysOfWeek, DeviceType, DocumentStatus, DocumentType, Entity, EntityData, EntityPriority, EntityStatus, EntityVerificationStatus, ErrorLevel, ExternalHostMessageType, ExternalHostMode, ForgetPasswordSecurityTypes, ForgetUserSecurityTypes, GGEZGiftType, Gender, OperationStatus, OrderStatus, OrderType, OrganizationRequestTypes, OrganizationType, PaymentMethodType, PhoneNumberTypes, ProgramTypes, PromotionGames, PromotionStatus, PromotionType, PromotionVisibility, RequestStatus, ResetSecurityType, SecurityAuthenticationTypes, SecurityLoginType, SecurityOperationMethod, SecurityQuestion1, SecurityQuestion2, SecurityValidationActionType, SecurityValidationStatus, SecurityValidationType, ServiceProvider, SettlementTransactionType, SourceApp, TicketCategory, TicketType, Titles, TransactionClassification, TransactionInquiryStatus, TransactionRequestStatus, TransactionType, TrustLimits, UserIdentificationTypes, UserTrustLevelRange, UserType, ValidateType, VariantType, VerificationMethod, WireTransferType, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.24",
|
|
4
4
|
"description": "A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"main": "dist/index.js",
|