ggez-banking-sdk 0.0.29 → 0.0.31
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum RequestStatus {
|
|
2
2
|
Undefined = 0,
|
|
3
3
|
Pending = 1,
|
|
4
4
|
Processed = 2,
|
|
@@ -17,6 +17,21 @@ export declare enum requestStatus {
|
|
|
17
17
|
Problem = 15,
|
|
18
18
|
Initiate = 16
|
|
19
19
|
}
|
|
20
|
+
export declare enum OrderStatus {
|
|
21
|
+
Pending = 1,
|
|
22
|
+
Completed = 2,
|
|
23
|
+
Reserved = 3,
|
|
24
|
+
Canceled = 4,
|
|
25
|
+
Reversed = 5,
|
|
26
|
+
Refunded = 6,
|
|
27
|
+
Expired = 7,
|
|
28
|
+
Pending_Approval = 8,
|
|
29
|
+
Partial_Reversed = 9,
|
|
30
|
+
Completed_With_Error = 10,
|
|
31
|
+
Problem = 11,
|
|
32
|
+
Commit_In_Processing = 12,
|
|
33
|
+
Failed = 13
|
|
34
|
+
}
|
|
20
35
|
export declare enum ErrorLevel {
|
|
21
36
|
Unknown = -1,
|
|
22
37
|
Fatal = 0,
|
|
@@ -1,26 +1,42 @@
|
|
|
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.
|
|
4
|
-
var
|
|
5
|
-
(function (
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
})(
|
|
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;
|
|
4
|
+
var RequestStatus;
|
|
5
|
+
(function (RequestStatus) {
|
|
6
|
+
RequestStatus[RequestStatus["Undefined"] = 0] = "Undefined";
|
|
7
|
+
RequestStatus[RequestStatus["Pending"] = 1] = "Pending";
|
|
8
|
+
RequestStatus[RequestStatus["Processed"] = 2] = "Processed";
|
|
9
|
+
RequestStatus[RequestStatus["Cleared"] = 3] = "Cleared";
|
|
10
|
+
RequestStatus[RequestStatus["Canceled"] = 4] = "Canceled";
|
|
11
|
+
RequestStatus[RequestStatus["Reversed"] = 5] = "Reversed";
|
|
12
|
+
RequestStatus[RequestStatus["Failed"] = 6] = "Failed";
|
|
13
|
+
RequestStatus[RequestStatus["Blocked"] = 7] = "Blocked";
|
|
14
|
+
RequestStatus[RequestStatus["Declined"] = 8] = "Declined";
|
|
15
|
+
RequestStatus[RequestStatus["Network_Canceled"] = 9] = "Network_Canceled";
|
|
16
|
+
RequestStatus[RequestStatus["Pending_Processing"] = 10] = "Pending_Processing";
|
|
17
|
+
RequestStatus[RequestStatus["Pending_Reversal"] = 11] = "Pending_Reversal";
|
|
18
|
+
RequestStatus[RequestStatus["Pending_Cancellation"] = 12] = "Pending_Cancellation";
|
|
19
|
+
RequestStatus[RequestStatus["Manual_Review"] = 13] = "Manual_Review";
|
|
20
|
+
RequestStatus[RequestStatus["Critical"] = 14] = "Critical";
|
|
21
|
+
RequestStatus[RequestStatus["Problem"] = 15] = "Problem";
|
|
22
|
+
RequestStatus[RequestStatus["Initiate"] = 16] = "Initiate";
|
|
23
|
+
})(RequestStatus || (exports.RequestStatus = RequestStatus = {}));
|
|
24
|
+
var OrderStatus;
|
|
25
|
+
(function (OrderStatus) {
|
|
26
|
+
OrderStatus[OrderStatus["Pending"] = 1] = "Pending";
|
|
27
|
+
OrderStatus[OrderStatus["Completed"] = 2] = "Completed";
|
|
28
|
+
OrderStatus[OrderStatus["Reserved"] = 3] = "Reserved";
|
|
29
|
+
OrderStatus[OrderStatus["Canceled"] = 4] = "Canceled"; /*'if reserved*/
|
|
30
|
+
OrderStatus[OrderStatus["Reversed"] = 5] = "Reversed";
|
|
31
|
+
OrderStatus[OrderStatus["Refunded"] = 6] = "Refunded";
|
|
32
|
+
OrderStatus[OrderStatus["Expired"] = 7] = "Expired";
|
|
33
|
+
OrderStatus[OrderStatus["Pending_Approval"] = 8] = "Pending_Approval";
|
|
34
|
+
OrderStatus[OrderStatus["Partial_Reversed"] = 9] = "Partial_Reversed";
|
|
35
|
+
OrderStatus[OrderStatus["Completed_With_Error"] = 10] = "Completed_With_Error";
|
|
36
|
+
OrderStatus[OrderStatus["Problem"] = 11] = "Problem";
|
|
37
|
+
OrderStatus[OrderStatus["Commit_In_Processing"] = 12] = "Commit_In_Processing";
|
|
38
|
+
OrderStatus[OrderStatus["Failed"] = 13] = "Failed";
|
|
39
|
+
})(OrderStatus || (exports.OrderStatus = OrderStatus = {}));
|
|
24
40
|
var ErrorLevel;
|
|
25
41
|
(function (ErrorLevel) {
|
|
26
42
|
ErrorLevel[ErrorLevel["Unknown"] = -1] = "Unknown";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.31",
|
|
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",
|