ggez-banking-sdk 0.0.28 → 0.0.30
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.
|
@@ -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,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.requestStatus = void 0;
|
|
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
4
|
var requestStatus;
|
|
5
5
|
(function (requestStatus) {
|
|
6
6
|
requestStatus[requestStatus["Undefined"] = 0] = "Undefined";
|
|
@@ -21,6 +21,22 @@ var requestStatus;
|
|
|
21
21
|
requestStatus[requestStatus["Problem"] = 15] = "Problem";
|
|
22
22
|
requestStatus[requestStatus["Initiate"] = 16] = "Initiate";
|
|
23
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";
|
|
@@ -2653,7 +2653,7 @@ declare const Data: () => {
|
|
|
2653
2653
|
start_index: number;
|
|
2654
2654
|
transaction_type: number;
|
|
2655
2655
|
account_id: number;
|
|
2656
|
-
transaction_classification:
|
|
2656
|
+
transaction_classification: number;
|
|
2657
2657
|
geo_coordinates: IGeoCoordinates;
|
|
2658
2658
|
time_zone: string;
|
|
2659
2659
|
};
|
|
@@ -18,7 +18,7 @@ export interface GetTransactionInterface {
|
|
|
18
18
|
start_index?: number;
|
|
19
19
|
transaction_type?: number | null;
|
|
20
20
|
account_id?: number;
|
|
21
|
-
transaction_classification?:
|
|
21
|
+
transaction_classification?: number;
|
|
22
22
|
geoCoordinates?: IGeoCoordinates;
|
|
23
23
|
}
|
|
24
24
|
export interface GetAccountLimit {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ggez-banking-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
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",
|