ggez-banking-sdk 0.0.34 → 0.0.35
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.
|
@@ -1088,3 +1088,10 @@ export declare enum TransactionClassification {
|
|
|
1088
1088
|
ServiceFee = 8,
|
|
1089
1089
|
FeeReversal = 9
|
|
1090
1090
|
}
|
|
1091
|
+
export declare enum CurrencyConversionType {
|
|
1092
|
+
Not_Active = -1,
|
|
1093
|
+
Normal_Conversion = 1,
|
|
1094
|
+
Reverse_Conversion = 2,
|
|
1095
|
+
Two_Step_Conversion = 3,
|
|
1096
|
+
No_Conversion_Needed = 4
|
|
1097
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TransactionClassification = exports.WireTransferType = exports.ProgramTypes = exports.UserTrustLevelRange = exports.SourceApp = exports.CommerceProductSourceType = exports.OrderType = exports.PaymentMethodType = exports.ForgetPasswordSecurityTypes = exports.ForgetUserSecurityTypes = exports.ResponseStatusCode = exports.CountryCode = exports.DocumentType = exports.AccountStatus = exports.UserType = exports.BusinessType = exports.OrganizationRequestTypes = exports.SecurityOperationMethod = exports.TransactionInquiryStatus = exports.DeviceType = exports.TransactionType = exports.SettlementTransactionType = exports.AuthorizationOperationRequestType = exports.TransactionRequestStatus = exports.EntityStatus = exports.OperationStatus = exports.BankBeneficiaryType = exports.BankAccountTypes = exports.SecurityQuestion2 = exports.SecurityQuestion1 = exports.TrustLimits = exports.EntityVerificationStatus = exports.DocumentStatus = exports.IdentificationTypes = exports.AddressType = exports.Gender = exports.ChainRequestType = exports.ServiceProvider = exports.SecurityAuthenticationTypes = exports.ActivityType = exports.EntityData = exports.Entity = exports.ErrorLevel = exports.OrderStatus = exports.RequestStatus = void 0;
|
|
3
|
+
exports.CurrencyConversionType = exports.TransactionClassification = exports.WireTransferType = exports.ProgramTypes = exports.UserTrustLevelRange = exports.SourceApp = exports.CommerceProductSourceType = exports.OrderType = exports.PaymentMethodType = exports.ForgetPasswordSecurityTypes = exports.ForgetUserSecurityTypes = exports.ResponseStatusCode = exports.CountryCode = exports.DocumentType = exports.AccountStatus = exports.UserType = exports.BusinessType = exports.OrganizationRequestTypes = exports.SecurityOperationMethod = exports.TransactionInquiryStatus = exports.DeviceType = exports.TransactionType = exports.SettlementTransactionType = exports.AuthorizationOperationRequestType = exports.TransactionRequestStatus = exports.EntityStatus = exports.OperationStatus = exports.BankBeneficiaryType = exports.BankAccountTypes = exports.SecurityQuestion2 = exports.SecurityQuestion1 = exports.TrustLimits = exports.EntityVerificationStatus = exports.DocumentStatus = exports.IdentificationTypes = exports.AddressType = exports.Gender = exports.ChainRequestType = exports.ServiceProvider = exports.SecurityAuthenticationTypes = exports.ActivityType = exports.EntityData = exports.Entity = exports.ErrorLevel = exports.OrderStatus = exports.RequestStatus = void 0;
|
|
4
4
|
var RequestStatus;
|
|
5
5
|
(function (RequestStatus) {
|
|
6
6
|
RequestStatus[RequestStatus["Undefined"] = 0] = "Undefined";
|
|
@@ -1144,3 +1144,11 @@ var TransactionClassification;
|
|
|
1144
1144
|
TransactionClassification[TransactionClassification["ServiceFee"] = 8] = "ServiceFee";
|
|
1145
1145
|
TransactionClassification[TransactionClassification["FeeReversal"] = 9] = "FeeReversal";
|
|
1146
1146
|
})(TransactionClassification || (exports.TransactionClassification = TransactionClassification = {}));
|
|
1147
|
+
var CurrencyConversionType;
|
|
1148
|
+
(function (CurrencyConversionType) {
|
|
1149
|
+
CurrencyConversionType[CurrencyConversionType["Not_Active"] = -1] = "Not_Active";
|
|
1150
|
+
CurrencyConversionType[CurrencyConversionType["Normal_Conversion"] = 1] = "Normal_Conversion";
|
|
1151
|
+
CurrencyConversionType[CurrencyConversionType["Reverse_Conversion"] = 2] = "Reverse_Conversion";
|
|
1152
|
+
CurrencyConversionType[CurrencyConversionType["Two_Step_Conversion"] = 3] = "Two_Step_Conversion";
|
|
1153
|
+
CurrencyConversionType[CurrencyConversionType["No_Conversion_Needed"] = 4] = "No_Conversion_Needed";
|
|
1154
|
+
})(CurrencyConversionType || (exports.CurrencyConversionType = CurrencyConversionType = {}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.35",
|
|
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
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|