ggez-banking-sdk 0.0.4 → 0.0.5
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/README.md +0 -0
- package/dist/bank-system/constants/enum.d.ts +1061 -0
- package/dist/bank-system/constants/enum.js +1115 -0
- package/dist/bank-system/constants/index.d.ts +1 -0
- package/dist/bank-system/constants/index.js +17 -0
- package/dist/bank-system/content/accountCurrencies.d.ts +12 -0
- package/dist/bank-system/content/accountCurrencies.js +37 -0
- package/dist/bank-system/content/countries.d.ts +24 -0
- package/dist/bank-system/content/countries.js +6472 -0
- package/dist/bank-system/content/currencies.d.ts +32 -0
- package/dist/bank-system/content/currencies.js +5836 -0
- package/dist/bank-system/content/index.d.ts +4 -0
- package/dist/bank-system/content/index.js +12 -0
- package/dist/bank-system/content/state.d.ts +6 -0
- package/dist/bank-system/content/state.js +350 -0
- package/dist/bank-system/helper/data.d.ts +46 -0
- package/dist/bank-system/helper/data.js +57 -0
- package/dist/bank-system/helper/dataStructure.d.ts +3220 -0
- package/dist/bank-system/helper/dataStructure.js +1051 -0
- package/dist/bank-system/helper/index.d.ts +28 -0
- package/dist/bank-system/helper/index.js +394 -0
- package/dist/bank-system/interfaces/accountInterface.d.ts +26 -0
- package/dist/bank-system/interfaces/accountInterface.js +2 -0
- package/dist/bank-system/interfaces/bankingSystemInterface.d.ts +306 -0
- package/dist/bank-system/interfaces/bankingSystemInterface.js +2 -0
- package/dist/bank-system/interfaces/deviceInterface.d.ts +34 -0
- package/dist/bank-system/interfaces/deviceInterface.js +2 -0
- package/dist/bank-system/interfaces/index.d.ts +4 -0
- package/dist/bank-system/interfaces/index.js +20 -0
- package/dist/bank-system/interfaces/interface.d.ts +460 -0
- package/dist/bank-system/interfaces/interface.js +2 -0
- package/dist/bank-system/interfaces/organizationInterface.d.ts +118 -0
- package/dist/bank-system/interfaces/organizationInterface.js +2 -0
- package/dist/bank-system/interfaces/signInterface.d.ts +89 -0
- package/dist/bank-system/interfaces/signInterface.js +2 -0
- package/dist/bank-system/interfaces/transactionInterface.d.ts +17 -0
- package/dist/bank-system/interfaces/transactionInterface.js +2 -0
- package/dist/bank-system/restApi/index.d.ts +8 -0
- package/dist/bank-system/restApi/index.js +41 -0
- package/dist/bank-system/services/account.d.ts +33 -0
- package/dist/bank-system/services/account.js +129 -0
- package/dist/bank-system/services/addresses.d.ts +48 -0
- package/dist/bank-system/services/addresses.js +130 -0
- package/dist/bank-system/services/auth.d.ts +71 -0
- package/dist/bank-system/services/auth.js +250 -0
- package/dist/bank-system/services/bankAccount.d.ts +48 -0
- package/dist/bank-system/services/bankAccount.js +131 -0
- package/dist/bank-system/services/device.d.ts +46 -0
- package/dist/bank-system/services/device.js +212 -0
- package/dist/bank-system/services/document.d.ts +15 -0
- package/dist/bank-system/services/document.js +58 -0
- package/dist/bank-system/services/email.d.ts +70 -0
- package/dist/bank-system/services/email.js +175 -0
- package/dist/bank-system/services/history.d.ts +14 -0
- package/dist/bank-system/services/history.js +55 -0
- package/dist/bank-system/services/identification.d.ts +37 -0
- package/dist/bank-system/services/identification.js +107 -0
- package/dist/bank-system/services/index.d.ts +17 -0
- package/dist/bank-system/services/index.js +35 -0
- package/dist/bank-system/services/organization.d.ts +28 -0
- package/dist/bank-system/services/organization.js +129 -0
- package/dist/bank-system/services/personalInfo.d.ts +26 -0
- package/dist/bank-system/services/personalInfo.js +91 -0
- package/dist/bank-system/services/phone.d.ts +70 -0
- package/dist/bank-system/services/phone.js +175 -0
- package/dist/bank-system/services/security.d.ts +114 -0
- package/dist/bank-system/services/security.js +267 -0
- package/dist/bank-system/services/token.d.ts +11 -0
- package/dist/bank-system/services/token.js +83 -0
- package/dist/bank-system/services/transaction.d.ts +9 -0
- package/dist/bank-system/services/transaction.js +62 -0
- package/dist/bank-system/services/verifyAndConfirm.d.ts +116 -0
- package/dist/bank-system/services/verifyAndConfirm.js +308 -0
- package/dist/bank-system/utils/chainAddressMasking.d.ts +2 -0
- package/dist/bank-system/utils/chainAddressMasking.js +12 -0
- package/dist/bank-system/utils/copyText.d.ts +5 -0
- package/dist/bank-system/utils/copyText.js +22 -0
- package/dist/bank-system/utils/countryAndCurrencyData.d.ts +11 -0
- package/dist/bank-system/utils/countryAndCurrencyData.js +22 -0
- package/dist/bank-system/utils/enumToOption.d.ts +4 -0
- package/dist/bank-system/utils/enumToOption.js +18 -0
- package/dist/bank-system/utils/fillDeviceDetails.d.ts +23 -0
- package/dist/bank-system/utils/fillDeviceDetails.js +44 -0
- package/dist/bank-system/utils/generateOneLiner.d.ts +1 -0
- package/dist/bank-system/utils/generateOneLiner.js +16 -0
- package/dist/bank-system/utils/generateSourceId.d.ts +1 -0
- package/dist/bank-system/utils/generateSourceId.js +12 -0
- package/dist/bank-system/utils/getCountryName.d.ts +1 -0
- package/dist/bank-system/utils/getCountryName.js +15 -0
- package/dist/bank-system/utils/getEnumName.d.ts +1 -0
- package/dist/bank-system/utils/getEnumName.js +10 -0
- package/dist/bank-system/utils/getStateByCountryCode.d.ts +1 -0
- package/dist/bank-system/utils/getStateByCountryCode.js +14 -0
- package/dist/bank-system/utils/handleEncryption/decryptData.d.ts +15 -0
- package/dist/bank-system/utils/handleEncryption/decryptData.js +77 -0
- package/dist/bank-system/utils/handleEncryption/encryptData.d.ts +2 -0
- package/dist/bank-system/utils/handleEncryption/encryptData.js +36 -0
- package/dist/bank-system/utils/handleEncryption/index.d.ts +4 -0
- package/dist/bank-system/utils/handleEncryption/index.js +12 -0
- package/dist/bank-system/utils/handleEncryption/key.d.ts +13 -0
- package/dist/bank-system/utils/handleEncryption/key.js +40 -0
- package/dist/bank-system/utils/index.d.ts +15 -0
- package/dist/bank-system/utils/index.js +42 -0
- package/dist/bank-system/utils/info.d.ts +8 -0
- package/dist/bank-system/utils/info.js +79 -0
- package/dist/bank-system/utils/maskingFunction.d.ts +1 -0
- package/dist/bank-system/utils/maskingFunction.js +27 -0
- package/dist/bank-system/utils/regex.d.ts +106 -0
- package/dist/bank-system/utils/regex.js +110 -0
- package/dist/bank-system/utils/sortUserInfo.d.ts +1 -0
- package/dist/bank-system/utils/sortUserInfo.js +42 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +54 -0
- package/dist/keplr-config/chainInfo.d.ts +8 -0
- package/dist/keplr-config/chainInfo.js +111 -0
- package/package.json +1 -1
|
@@ -0,0 +1,1061 @@
|
|
|
1
|
+
export declare enum requestStatus {
|
|
2
|
+
Undefined = 0,
|
|
3
|
+
Pending = 1,
|
|
4
|
+
Processed = 2,
|
|
5
|
+
Cleared = 3,
|
|
6
|
+
Canceled = 4,
|
|
7
|
+
Reversed = 5,
|
|
8
|
+
Failed = 6,
|
|
9
|
+
Blocked = 7,
|
|
10
|
+
Declined = 8,
|
|
11
|
+
Network_Canceled = 9,
|
|
12
|
+
Pending_Processing = 10,
|
|
13
|
+
Pending_Reversal = 11,
|
|
14
|
+
Pending_Cancellation = 12,
|
|
15
|
+
Manual_Review = 13,
|
|
16
|
+
Critical = 14,
|
|
17
|
+
Problem = 15,
|
|
18
|
+
Initiate = 16
|
|
19
|
+
}
|
|
20
|
+
export declare enum ErrorLevel {
|
|
21
|
+
Unknown = -1,
|
|
22
|
+
Fatal = 0,
|
|
23
|
+
Unhandled = 1,
|
|
24
|
+
Handled = 2,
|
|
25
|
+
External_WebService = 3
|
|
26
|
+
}
|
|
27
|
+
export declare enum Entity {
|
|
28
|
+
Undefined = -1,
|
|
29
|
+
System = 1,
|
|
30
|
+
Program = 2,
|
|
31
|
+
Program_User = 3,//by_entity
|
|
32
|
+
Program_Fulfilment = 4,
|
|
33
|
+
BIN = 5,
|
|
34
|
+
BIN_Settlement = 6,
|
|
35
|
+
User = 7,
|
|
36
|
+
Group = 8,
|
|
37
|
+
Group_User = 9,
|
|
38
|
+
Account = 10,
|
|
39
|
+
Transaction = 11,
|
|
40
|
+
POS = 12,
|
|
41
|
+
POS_User = 13,
|
|
42
|
+
Catalog = 14,
|
|
43
|
+
Entity_Address = 15,
|
|
44
|
+
Entity_Bank = 16,
|
|
45
|
+
Entity_Credit_Card = 17,
|
|
46
|
+
Entity_Device = 18,
|
|
47
|
+
Entity_Email = 19,
|
|
48
|
+
Entity_Location = 20,
|
|
49
|
+
Entity_Phone = 21,
|
|
50
|
+
Entity_Picture = 22,
|
|
51
|
+
Entity_Relationship = 23,
|
|
52
|
+
Entity_Social_Media = 24,
|
|
53
|
+
Entity_Identification = 25,
|
|
54
|
+
Entity_Document = 26,
|
|
55
|
+
Entity_Custom_Field = 27,
|
|
56
|
+
Entity_Terms_Conditions = 28,
|
|
57
|
+
User_Personal_Info = 29,
|
|
58
|
+
POS_Security = 30,
|
|
59
|
+
User_Currency = 31,
|
|
60
|
+
Order = 32,
|
|
61
|
+
Order_Item = 33,
|
|
62
|
+
FIS_Transaction = 34,
|
|
63
|
+
MC_Transaction = 35,
|
|
64
|
+
Entity_Login = 36,
|
|
65
|
+
Management_Connection = 37,
|
|
66
|
+
External_Service = 38,
|
|
67
|
+
Validation_Service = 39,
|
|
68
|
+
Message = 40,
|
|
69
|
+
Shopping_Cart_Data = 41,
|
|
70
|
+
User_Signup_Request = 42,
|
|
71
|
+
System_Transaction = 43,
|
|
72
|
+
Transfer_Transaction = 44,
|
|
73
|
+
Supplied_Account = 45,
|
|
74
|
+
Transaction_Scheduler = 46,
|
|
75
|
+
Commerce = 47,
|
|
76
|
+
Program_Role = 48,
|
|
77
|
+
User_Security = 49,
|
|
78
|
+
Country = 50,
|
|
79
|
+
State_Province = 51,
|
|
80
|
+
City = 52,
|
|
81
|
+
Area = 53,
|
|
82
|
+
Landmark = 54,
|
|
83
|
+
Messaging_Setup = 55,
|
|
84
|
+
Messaging_Template_Setup = 56,
|
|
85
|
+
Messaging_Templates_Localization = 57,
|
|
86
|
+
Location_Group = 58,
|
|
87
|
+
Entity_Device_History = 59,
|
|
88
|
+
Entity_General_Requirement = 60,
|
|
89
|
+
Payment_Service = 61,
|
|
90
|
+
Payment_Gateway_Transaction = 62,
|
|
91
|
+
Agent_KPI_Stats = 63,
|
|
92
|
+
Batch = 64,
|
|
93
|
+
Cluster = 65,
|
|
94
|
+
Payment_Gateway_JSON = 66,
|
|
95
|
+
Payment_Gateway_Result = 67,
|
|
96
|
+
Anonymous_User = 68,
|
|
97
|
+
Report = 69,
|
|
98
|
+
Product = 70,
|
|
99
|
+
Variant = 71,
|
|
100
|
+
Interchange_Transaction = 72,
|
|
101
|
+
Ticket = 73,
|
|
102
|
+
Main_Menu = 74,
|
|
103
|
+
Organization = 75,
|
|
104
|
+
Dial_Code = 76,
|
|
105
|
+
Product_Template = 77,
|
|
106
|
+
Transaction_Statement = 78,
|
|
107
|
+
Organization_Info = 79,
|
|
108
|
+
Organization_Details = 80,
|
|
109
|
+
Entity_Classification = 81,
|
|
110
|
+
Organization_OwnerShip = 82,
|
|
111
|
+
Entity_Working_Hour = 83,
|
|
112
|
+
Product_Template_Variable = 84,
|
|
113
|
+
Localization = 85,
|
|
114
|
+
Store = 86,
|
|
115
|
+
PinCode = 87,
|
|
116
|
+
Fee_Setup = 88,
|
|
117
|
+
Invoice = 89,
|
|
118
|
+
Package_Mapping = 90,
|
|
119
|
+
Custom_PEP_Names = 91,
|
|
120
|
+
Campaign = 92,
|
|
121
|
+
Limit_Setup = 93,
|
|
122
|
+
System_Error = 94,
|
|
123
|
+
External_Error = 95,
|
|
124
|
+
Commerce_Inventory = 101,
|
|
125
|
+
Trade_Transaction = 200
|
|
126
|
+
}
|
|
127
|
+
export declare enum EntityData {
|
|
128
|
+
Undefined = -1,
|
|
129
|
+
Info = 1,
|
|
130
|
+
Personal_Info = 2,
|
|
131
|
+
Preferences = 3,
|
|
132
|
+
Security = 4,
|
|
133
|
+
Status = 5,
|
|
134
|
+
Password = 6,
|
|
135
|
+
Security_Code = 7,
|
|
136
|
+
PIN_Code = 8,
|
|
137
|
+
DoB = 9,
|
|
138
|
+
Security_Question = 10,
|
|
139
|
+
Security_Answer = 11,
|
|
140
|
+
Geo_Coordinates = 12,
|
|
141
|
+
Currency = 13,
|
|
142
|
+
Terms_Conditions = 14,
|
|
143
|
+
Commerce_Info = 15,
|
|
144
|
+
Program_Messaging = 17,
|
|
145
|
+
Account_Fulfilment = 18,
|
|
146
|
+
Verification = 19,
|
|
147
|
+
Confirm = 20,
|
|
148
|
+
Verify = 21,
|
|
149
|
+
Add_Program = 22,
|
|
150
|
+
User_UI = 23,
|
|
151
|
+
Program_UI = 24,
|
|
152
|
+
Program_System_Options = 25,
|
|
153
|
+
Program_Maintenance_Job = 26,
|
|
154
|
+
Program_Validation_Options = 27,
|
|
155
|
+
Program_Advanced_Options = 28,
|
|
156
|
+
Program_Validation_Setup = 29,
|
|
157
|
+
Program_Localization = 30,
|
|
158
|
+
Program_Localization_Content = 31,
|
|
159
|
+
Program_Localization_User_Verification_Content = 32,
|
|
160
|
+
Program_Social_Media = 33,
|
|
161
|
+
User_Pages_Setup = 34,
|
|
162
|
+
Program_Messaging_Setup = 35,
|
|
163
|
+
Program_Messaging_Template_Setup = 36,
|
|
164
|
+
Program_Terms_And_Conditions = 37,
|
|
165
|
+
Program_Bins = 38,
|
|
166
|
+
Program_Bins_Features = 39,
|
|
167
|
+
Program_Registration_Process = 40,
|
|
168
|
+
Program_Deposit_Checks_Manual = 41,
|
|
169
|
+
Program_Deposit_Bank_Wire_Transfer_Manual = 42,
|
|
170
|
+
Program_Deposit_Credit_Card = 43,
|
|
171
|
+
Program_Payment_Gateways = 44,
|
|
172
|
+
Program_Deposit_Voucher = 45,
|
|
173
|
+
Program_Deposit_Local_System_Bin = 46,
|
|
174
|
+
Program_Deposit_Cash_U_Load = 47,
|
|
175
|
+
Program_Withdrawal_Methods = 48,
|
|
176
|
+
Program_Transfer_Option = 49,
|
|
177
|
+
Program_Multi_Currency = 50,
|
|
178
|
+
Program_Fee_Information = 51,
|
|
179
|
+
Program_Trust_Level = 52,
|
|
180
|
+
Program_Scheduled_Transaction = 53,
|
|
181
|
+
Program_Mobile_Options = 54,
|
|
182
|
+
Program_Mobile_Options_For_User = 55,
|
|
183
|
+
Program_ECommerce_Settings = 56,
|
|
184
|
+
Program_External_Service_Setup = 57,
|
|
185
|
+
Program_Role_Definitions = 58,
|
|
186
|
+
Program_User_Definitions = 59,
|
|
187
|
+
Program_Rest_Service_Role_Definitions = 60,
|
|
188
|
+
Program_Rest_ACL_Transaction = 61,
|
|
189
|
+
Supported_POS_Users = 62,
|
|
190
|
+
Supported_POS_Accounts = 63,
|
|
191
|
+
Configuration = 64,
|
|
192
|
+
Working_Hour = 65,
|
|
193
|
+
Landmark = 66,
|
|
194
|
+
AccessToken = 67,
|
|
195
|
+
UserCredentials = 68,
|
|
196
|
+
AccountImageBin = 69,
|
|
197
|
+
Data = 70,
|
|
198
|
+
ProgramContent = 71,
|
|
199
|
+
AccountLimits = 72,
|
|
200
|
+
SignupRequirements = 73,
|
|
201
|
+
ExpenseReportingSettings = 74,
|
|
202
|
+
UserPhotoAsBytes = 75,
|
|
203
|
+
LastLoginInfo = 76,
|
|
204
|
+
Receipt = 77,
|
|
205
|
+
Shared_Custom_Field = 78,
|
|
206
|
+
Zain_KSA = 79,
|
|
207
|
+
Sign_Status = 80,
|
|
208
|
+
Activation_Status = 81,
|
|
209
|
+
Classification = 82,
|
|
210
|
+
POS_Application = 83,
|
|
211
|
+
FacebookInfo = 84,
|
|
212
|
+
Action = 85,
|
|
213
|
+
User_Application = 86,
|
|
214
|
+
Order_User = 87,
|
|
215
|
+
BIN_Configuration = 88,
|
|
216
|
+
STC_Configuration = 89,
|
|
217
|
+
Linked_Bank = 90,
|
|
218
|
+
EPay_Configuration = 91,
|
|
219
|
+
Fulfilment = 92,
|
|
220
|
+
External_Authentication = 93,
|
|
221
|
+
Account_Options = 94,
|
|
222
|
+
REST_ACL_Setup = 95,
|
|
223
|
+
User_Trust_Level = 96,
|
|
224
|
+
Account_Key_Set = 97,
|
|
225
|
+
Two_Factor_Authentication = 98,
|
|
226
|
+
Account_Batch = 99,
|
|
227
|
+
POS_User_ID = 100,
|
|
228
|
+
User_Name = 101,
|
|
229
|
+
Email_Address = 102,
|
|
230
|
+
Phone_Number = 103,
|
|
231
|
+
Temp_Security_Data = 104,
|
|
232
|
+
Program_Feature_Verification_Requirements = 105,
|
|
233
|
+
Program_Feature_Identification_Setup = 106,
|
|
234
|
+
Taleed_Funds_Load_Code = 107,
|
|
235
|
+
Program_Feature_Users_Signup_Setup = 108,
|
|
236
|
+
Program_Feature_Rest_Service_Options = 109,
|
|
237
|
+
Program_Feature_Masking_Options = 110,
|
|
238
|
+
Program_Feature_Security_Pages_Options = 111,
|
|
239
|
+
Program_Feature_Password_Settings = 112,
|
|
240
|
+
Program_Feature_Credit_Card_Security_Options = 113,
|
|
241
|
+
Program_Feature_Advance_UI_Options = 114,
|
|
242
|
+
Program_Feature_User_UI_Options = 115,
|
|
243
|
+
Program_Feature_Currency_Converter = 116,
|
|
244
|
+
Program_BIN_Feature_Activation_Setup = 117,
|
|
245
|
+
Program_BIN_Feature_Virtual_Card_Display = 118,
|
|
246
|
+
Program_BIN_Feature_Account_Renewals = 119,
|
|
247
|
+
Program_BIN_Feature_Display_Options = 120,
|
|
248
|
+
Program_BIN_Feature_Security_Features = 121,
|
|
249
|
+
Program_BIN_Feature_Settlement_Account = 122,
|
|
250
|
+
Program_BIN_Feature_SMS_Options = 123,
|
|
251
|
+
Program_BIN_Feature_Authorizations_AVS = 124,
|
|
252
|
+
Program_BIN_Feature_Interchange_Options = 125,
|
|
253
|
+
Program_BIN_Feature_Fraud_Detection_System = 126,
|
|
254
|
+
Commerce_Inventory_Quantities = 127,
|
|
255
|
+
Program_Feature_Interchange_Options = 128,
|
|
256
|
+
Push_Notification = 129,
|
|
257
|
+
Limited_Token = 130,
|
|
258
|
+
Employee_Info = 131,
|
|
259
|
+
Backend_Access_Controls = 132,
|
|
260
|
+
Program_BIN_Multi_Currency_Configuration = 133,
|
|
261
|
+
Program_Multi_Currency_Configuration = 134,
|
|
262
|
+
Reseller_KPI = 135,
|
|
263
|
+
Agent_KPI = 136,
|
|
264
|
+
Token_Status = 137,
|
|
265
|
+
Account_Trust_Level = 138,
|
|
266
|
+
Program_Feature_Backend_Admin_Options = 139,
|
|
267
|
+
Pending_Transaction = 140,
|
|
268
|
+
User_Fulfilment = 142,
|
|
269
|
+
Amazon_Configuration = 143,
|
|
270
|
+
ID = 144,
|
|
271
|
+
Number = 145,
|
|
272
|
+
Program_BIN_Feature_Card_Option = 146,
|
|
273
|
+
Fulfilment_Batch = 147,
|
|
274
|
+
User_Commerce_Configuration = 148,
|
|
275
|
+
Location = 149,
|
|
276
|
+
Order_Report = 150,
|
|
277
|
+
Transaction_Report = 151,
|
|
278
|
+
One_Time_Password = 152,
|
|
279
|
+
System_Health = 153,
|
|
280
|
+
Order_Store_Movement = 154,
|
|
281
|
+
User_Catalog_Preferences = 155,
|
|
282
|
+
G2A_Configuration = 156,
|
|
283
|
+
Print_Count = 157,
|
|
284
|
+
Currency_Pairs = 158,
|
|
285
|
+
Audit_Account_Balance = 159,
|
|
286
|
+
Program_Currency_Conversion = 160,
|
|
287
|
+
Usage_Status = 161,
|
|
288
|
+
Latest_Order_Item = 162,
|
|
289
|
+
Program_Feature_DDA_Options = 163,
|
|
290
|
+
POS_Configuration = 164,
|
|
291
|
+
Contactless_Count = 165,
|
|
292
|
+
Balance = 166,
|
|
293
|
+
RealTime_Status = 167,
|
|
294
|
+
Export_Database = 168,
|
|
295
|
+
Message = 169,
|
|
296
|
+
PIN_Trials = 170,
|
|
297
|
+
Catalog = 171,
|
|
298
|
+
Supplied_Card_Details = 172,
|
|
299
|
+
New_PAN = 173,
|
|
300
|
+
Product_Template = 174,
|
|
301
|
+
Program_Feature_Ticket_Options = 175,
|
|
302
|
+
Program_BIN_Feature_Deposit_And_Withdrawal_Setup = 176,
|
|
303
|
+
Variant_Stock = 177,
|
|
304
|
+
External_Service_Request = 178,
|
|
305
|
+
Attachment_Status = 179,
|
|
306
|
+
Invoice_Configuration = 180,
|
|
307
|
+
Package_Mapping = 181,
|
|
308
|
+
Mada_Payment = 182,
|
|
309
|
+
EWallet_Trasfer = 183,
|
|
310
|
+
Account_External_Balance = 184,
|
|
311
|
+
PinCode_Print_Status = 185,
|
|
312
|
+
Inner_Exception = 186,
|
|
313
|
+
Stack_Trace = 187,
|
|
314
|
+
Source = 188,
|
|
315
|
+
Program_BIN_Feature_Tokenization_Option = 189,
|
|
316
|
+
Program_BIN_Feature_Payment_And_Orders_Options = 190,
|
|
317
|
+
Report_Problem = 191,
|
|
318
|
+
Program_BIN_Feature_Credit_Limit = 192
|
|
319
|
+
}
|
|
320
|
+
export declare enum ActivityType {
|
|
321
|
+
None = 0,
|
|
322
|
+
Create = 1,
|
|
323
|
+
Update = 2,
|
|
324
|
+
Delete = 3,
|
|
325
|
+
Add = 4,
|
|
326
|
+
Activate = 5,
|
|
327
|
+
Review = 6,
|
|
328
|
+
Process = 7,
|
|
329
|
+
Validate = 8,
|
|
330
|
+
Check_Online = 9,
|
|
331
|
+
Rule_Applied = 10,
|
|
332
|
+
Reverse = 11,
|
|
333
|
+
Partial_Reverse = 12,
|
|
334
|
+
Cancel = 13,
|
|
335
|
+
Print = 14,
|
|
336
|
+
Export = 15,
|
|
337
|
+
Download = 16,
|
|
338
|
+
Reserve = 17,
|
|
339
|
+
Pending = 18,
|
|
340
|
+
Cleared = 19,
|
|
341
|
+
Exclude = 20,
|
|
342
|
+
Reset = 21,
|
|
343
|
+
Confirm = 22,
|
|
344
|
+
Save = 23,
|
|
345
|
+
Unlock = 24,
|
|
346
|
+
Accept_Term = 25,
|
|
347
|
+
Program_Copy_Add = 26,
|
|
348
|
+
Program_Copy_Update = 27,
|
|
349
|
+
View = 28,
|
|
350
|
+
Forget = 29,
|
|
351
|
+
Tracking = 30,
|
|
352
|
+
Group_Process = 31,
|
|
353
|
+
Group_Reverse = 32,
|
|
354
|
+
Group_Cancel = 33,
|
|
355
|
+
Reverse_Program_Fee = 34,
|
|
356
|
+
Reverse_User_Fee = 35,
|
|
357
|
+
Reverse_Sender_Program_Fee = 36,
|
|
358
|
+
Reverse_Receiver_Program_Fee = 37,
|
|
359
|
+
Reverse_Sender_User_Fee = 38,
|
|
360
|
+
Reverse_Receiver_User_Fee = 39,
|
|
361
|
+
Read = 40,
|
|
362
|
+
Force_Process = 41,
|
|
363
|
+
Group_Delete = 42,
|
|
364
|
+
Group_Validate = 43,
|
|
365
|
+
Group_Force_Process = 44
|
|
366
|
+
}
|
|
367
|
+
export declare enum SecurityAuthenticationTypes {
|
|
368
|
+
Undefined = -1,
|
|
369
|
+
None = 0,
|
|
370
|
+
Password = 1,
|
|
371
|
+
OAuth = 2,
|
|
372
|
+
User_Security_Code = 3,
|
|
373
|
+
Account_Security_Code = 4,
|
|
374
|
+
Security_Screening = 5,
|
|
375
|
+
OTP_SMS = 6,
|
|
376
|
+
OTP_Email = 7,
|
|
377
|
+
Email_Link = 8,
|
|
378
|
+
Email_Code = 9,
|
|
379
|
+
SMS_Code = 10,
|
|
380
|
+
Google_Authenticator = 11,
|
|
381
|
+
Touch_ID = 12,
|
|
382
|
+
Finger_Print = 13,
|
|
383
|
+
One_Time_Token = 14,
|
|
384
|
+
Expiry_Time_Token = 15,
|
|
385
|
+
Account_PIN_Code = 16,
|
|
386
|
+
Account_Auth_Code = 17,
|
|
387
|
+
Security_Question_1 = 18,
|
|
388
|
+
Security_Question_2 = 19,
|
|
389
|
+
POS_User_PIN_Code = 20,
|
|
390
|
+
Verified_Email = 21,
|
|
391
|
+
Verified_Mobile = 22,
|
|
392
|
+
Secondary_Email = 23,
|
|
393
|
+
Identification_Number = 24,
|
|
394
|
+
Postal_Code = 25,
|
|
395
|
+
DOB = 26,
|
|
396
|
+
Device_Fingerprint = 27,
|
|
397
|
+
Device_Unique_ID = 28,
|
|
398
|
+
Username = 29,
|
|
399
|
+
Three_D_Secure_Code = 30,
|
|
400
|
+
Program_Token = 31,
|
|
401
|
+
User_Token = 32,
|
|
402
|
+
POS_Token = 33,
|
|
403
|
+
Limited_Token = 34,
|
|
404
|
+
Message_Encryption_Key = 35,
|
|
405
|
+
Mada_Payment_Auth_Code = 36
|
|
406
|
+
}
|
|
407
|
+
export declare enum ServiceProvider {
|
|
408
|
+
Undefined = -1,
|
|
409
|
+
System = 0,
|
|
410
|
+
IdentityMind = 1,
|
|
411
|
+
Maxmind = 2,
|
|
412
|
+
Lyons = 3,
|
|
413
|
+
Stripe = 4,
|
|
414
|
+
Strikeiron = 5,
|
|
415
|
+
Equifax = 6,
|
|
416
|
+
URU = 7,
|
|
417
|
+
Mastercard = 8,
|
|
418
|
+
DowJones = 9,
|
|
419
|
+
UniFonic = 10,
|
|
420
|
+
ClickaTell = 11,
|
|
421
|
+
SMTPMail = 12,
|
|
422
|
+
AppCenter = 13,
|
|
423
|
+
eFAWATEERcom = 16,
|
|
424
|
+
Fortnox = 17,
|
|
425
|
+
HyperPay = 18,
|
|
426
|
+
FourStop = 20,
|
|
427
|
+
Qvitoo = 21,
|
|
428
|
+
STC = 22,
|
|
429
|
+
PaySafe = 23,
|
|
430
|
+
Ding = 24,
|
|
431
|
+
TransferTo = 25,
|
|
432
|
+
CashU = 26,
|
|
433
|
+
JCLottery = 27,
|
|
434
|
+
Banking_Circle = 28,
|
|
435
|
+
ExternalHost = 29,
|
|
436
|
+
Service_Fee = 30,
|
|
437
|
+
EPay = 31,
|
|
438
|
+
Firebase = 32,
|
|
439
|
+
Mastercard_Currency_Rate = 33,
|
|
440
|
+
ECB_Currency_Rate = 34,
|
|
441
|
+
XE_Currency_Rate = 35,
|
|
442
|
+
Azure_Notification_Hubs = 36,
|
|
443
|
+
OpenPayd = 37,
|
|
444
|
+
Webhook = 38,
|
|
445
|
+
Google = 39,
|
|
446
|
+
Amazon = 40,
|
|
447
|
+
Twilio = 41,
|
|
448
|
+
Peoples = 42,
|
|
449
|
+
CurrencyCloud = 43,
|
|
450
|
+
Fawry = 44,
|
|
451
|
+
G2A = 45,
|
|
452
|
+
SNB = 46,
|
|
453
|
+
Hala = 47,
|
|
454
|
+
Google_Cloud_Realtime = 48,
|
|
455
|
+
ANB = 49,
|
|
456
|
+
Binance = 50,
|
|
457
|
+
Coinify = 51,
|
|
458
|
+
FSS = 52,
|
|
459
|
+
Zatca = 53,
|
|
460
|
+
Mada = 54,
|
|
461
|
+
ShuftiPro = 55,
|
|
462
|
+
ComplyCube = 56
|
|
463
|
+
}
|
|
464
|
+
export declare enum ChainRequestType {
|
|
465
|
+
Create_Trade = 0,
|
|
466
|
+
Process_Trade = 1
|
|
467
|
+
}
|
|
468
|
+
export declare enum Gender {
|
|
469
|
+
N_A = 0,
|
|
470
|
+
Male = 1,
|
|
471
|
+
Female = 2
|
|
472
|
+
}
|
|
473
|
+
export declare enum AddressType {
|
|
474
|
+
Home = 0,
|
|
475
|
+
Work = 1,
|
|
476
|
+
Billing = 2,
|
|
477
|
+
Shipping = 3
|
|
478
|
+
}
|
|
479
|
+
export declare enum IdentificationTypes {
|
|
480
|
+
Passport = 0,
|
|
481
|
+
Drivers_License = 1,
|
|
482
|
+
National_ID = 2,
|
|
483
|
+
SSN = 3,
|
|
484
|
+
SIN = 4,
|
|
485
|
+
Credit_Bureau = 6,
|
|
486
|
+
Electronic_Verification = 7
|
|
487
|
+
}
|
|
488
|
+
export declare enum DocumentStatus {
|
|
489
|
+
None = 0,
|
|
490
|
+
Pending = 1,
|
|
491
|
+
Processed = 2,
|
|
492
|
+
Rejected = 3,
|
|
493
|
+
Canceled = 4,
|
|
494
|
+
Pending_Validation = 5,
|
|
495
|
+
Not_Acceptable = 6,
|
|
496
|
+
Pending_Review = 7
|
|
497
|
+
}
|
|
498
|
+
export declare enum EntityVerificationStatus {
|
|
499
|
+
Undefined = -1,
|
|
500
|
+
Not_Verified = 0,
|
|
501
|
+
Verified = 1,
|
|
502
|
+
Pending = 2,
|
|
503
|
+
Failed = 3
|
|
504
|
+
}
|
|
505
|
+
export declare enum TrustLimits {
|
|
506
|
+
Limited = "Limited",
|
|
507
|
+
Confirmed = "Confirmed",
|
|
508
|
+
Trusted = "Trusted",
|
|
509
|
+
Unverified = "Unverified"
|
|
510
|
+
}
|
|
511
|
+
export declare enum SecurityQuestion1 {
|
|
512
|
+
Mothers_Maiden_Name = 1,
|
|
513
|
+
Last_4_Characters_Of_Drivers_License = 2,
|
|
514
|
+
City_Of_Birth = 3,
|
|
515
|
+
Fathers_City_Of_Birth = 4,
|
|
516
|
+
Mothers_City_Of_Birth = 5,
|
|
517
|
+
Who_Is_My_Favourite_Author = 6,
|
|
518
|
+
What_Is_My_Favourite_Movie = 7,
|
|
519
|
+
Who_Was_My_Best_Friend_On_The_First_Day_Of_School = 8,
|
|
520
|
+
What_Was_The_Name_Of_My_Favourite_High_School_Teacher = 9,
|
|
521
|
+
What_Is_My_Hobby = 10,
|
|
522
|
+
My_Favourite_Food = 11,
|
|
523
|
+
My_Favourite_Book = 12,
|
|
524
|
+
My_Favourite_Restaurant = 13
|
|
525
|
+
}
|
|
526
|
+
export declare enum SecurityQuestion2 {
|
|
527
|
+
What_Is_My_Favourite_Candy = 1,
|
|
528
|
+
What_Is_My_Favourite_Song = 2,
|
|
529
|
+
What_Is_My_Favourite_Band = 3,
|
|
530
|
+
What_Is_My_Favourite_Dessert = 4,
|
|
531
|
+
What_Is_My_Favourite_TV_Show = 5,
|
|
532
|
+
What_Was_My_First_Pets_Name = 6,
|
|
533
|
+
Who_Is_My_Favourite_Teacher = 7,
|
|
534
|
+
What_Is_My_Favourite_Colour = 8,
|
|
535
|
+
Where_Do_I_Want_To_Retire = 9,
|
|
536
|
+
Where_Was_My_First_Job = 10,
|
|
537
|
+
What_Sport_Am_I_Best_At = 11,
|
|
538
|
+
What_Was_My_Grandmothers_Given_Name = 12,
|
|
539
|
+
Who_Was_The_Best_Man_At_My_Wedding = 13,
|
|
540
|
+
Who_Was_The_Maid_Of_Honor_At_My_Wedding = 14,
|
|
541
|
+
Name_Of_City_Where_My_Father_Was_Born = 15,
|
|
542
|
+
What_Is_My_Favourite_Vacation_Spot = 16,
|
|
543
|
+
What_Was_My_Nickname_In_Grade_School = 17,
|
|
544
|
+
What_Was_The_Make_Of_My_First_Car = 18
|
|
545
|
+
}
|
|
546
|
+
export declare enum BankAccountTypes {
|
|
547
|
+
Undefined = -1,
|
|
548
|
+
Personal_Savings = 1,
|
|
549
|
+
Personal_Checking = 2,
|
|
550
|
+
Corporate = 3,
|
|
551
|
+
Direct_Deposit = 4
|
|
552
|
+
}
|
|
553
|
+
export declare enum BankBeneficiaryType {
|
|
554
|
+
My_Account = 1,
|
|
555
|
+
Beneficiary_Account = 2
|
|
556
|
+
}
|
|
557
|
+
export declare enum OperationStatus {
|
|
558
|
+
Undefined = -1,
|
|
559
|
+
Pending = 0,
|
|
560
|
+
In_Progress = 1,
|
|
561
|
+
Completed = 2,
|
|
562
|
+
Error_Occured = 3
|
|
563
|
+
}
|
|
564
|
+
export declare enum EntityStatus {
|
|
565
|
+
Undefined = -1,
|
|
566
|
+
Active = 1,
|
|
567
|
+
Suspended = 2,
|
|
568
|
+
Not_Active = 3,
|
|
569
|
+
Lost = 4,
|
|
570
|
+
Stolen = 5,
|
|
571
|
+
Closed = 6,
|
|
572
|
+
Prohibit_Use = 7,
|
|
573
|
+
Expired = 8,
|
|
574
|
+
Blocked = 9,
|
|
575
|
+
Suspended_By_User = 10,
|
|
576
|
+
Suspended_By_System = 11,
|
|
577
|
+
Deactivated_By_User = 12,
|
|
578
|
+
Suspected_Fraud = 13,
|
|
579
|
+
Deleted = 14,
|
|
580
|
+
Pending_Activation = 15,
|
|
581
|
+
Validation_Suspended = 16,
|
|
582
|
+
Pending_Validation = 17,
|
|
583
|
+
Pending_Deactivation_By_User = 18,
|
|
584
|
+
Pending_Password_Confirmation = 19,
|
|
585
|
+
Pending_User_Action = 20
|
|
586
|
+
}
|
|
587
|
+
export declare enum TransactionRequestStatus {
|
|
588
|
+
Undefined = 0,
|
|
589
|
+
Pending = 1,
|
|
590
|
+
Processed = 2,
|
|
591
|
+
Cleared = 3,
|
|
592
|
+
Canceled = 4,
|
|
593
|
+
Reversed = 5,
|
|
594
|
+
Failed = 6,
|
|
595
|
+
Blocked = 7,
|
|
596
|
+
Declined = 8,
|
|
597
|
+
Network_Canceled = 9,
|
|
598
|
+
Pending_Processing = 10,
|
|
599
|
+
Pending_Reversal = 11,
|
|
600
|
+
Pending_Cancellation = 12,
|
|
601
|
+
Manual_Review = 13,
|
|
602
|
+
Critical = 14,
|
|
603
|
+
Problem = 15
|
|
604
|
+
}
|
|
605
|
+
export declare enum AuthorizationOperationRequestType {
|
|
606
|
+
User_Creation = 1,
|
|
607
|
+
Create_Currency = 2,
|
|
608
|
+
Add_Loading_Card_Details = 3,
|
|
609
|
+
Add_Linked_Bank_Account = 4,
|
|
610
|
+
Add_ID_Details = 5,
|
|
611
|
+
Create_Address = 6,
|
|
612
|
+
Create_Document = 7,
|
|
613
|
+
Create_Group = 8,
|
|
614
|
+
Create_Relationship = 9,
|
|
615
|
+
Create_Device = 10,
|
|
616
|
+
Add_Custom_Field_Data = 11,
|
|
617
|
+
Add_Ticket = 12,
|
|
618
|
+
Create_Picture = 13,
|
|
619
|
+
Add_User_Location = 14,
|
|
620
|
+
Create_Social_Media = 15,
|
|
621
|
+
Update_User = 16,
|
|
622
|
+
Edit_Loading_Card_Details = 17,
|
|
623
|
+
Edit_Linked_Bank_Account = 18,
|
|
624
|
+
Edit_ID_Details = 19,
|
|
625
|
+
Edit_Personal_Info = 20,
|
|
626
|
+
Update_Security = 21,
|
|
627
|
+
Edit_Preferences = 22,
|
|
628
|
+
Update_Group = 23,
|
|
629
|
+
Update_Relationship = 24,
|
|
630
|
+
Update_Device = 25,
|
|
631
|
+
Edit_Custom_Field_Data = 26,
|
|
632
|
+
Update_Ticket = 27,
|
|
633
|
+
Update_Picture = 28,
|
|
634
|
+
Edit_User_Location = 29,
|
|
635
|
+
Update_Social_Media = 30,
|
|
636
|
+
Delete_User = 31,
|
|
637
|
+
Delete_Address = 32,
|
|
638
|
+
Delete_Currency = 33,
|
|
639
|
+
Delete_Phone_Number = 34,
|
|
640
|
+
Delete_Email_Address = 35,
|
|
641
|
+
Delete_Loading_Card_Details = 36,
|
|
642
|
+
Delete_Linked_Bank_Account = 37,
|
|
643
|
+
Delete_ID_Details = 38,
|
|
644
|
+
Delete_Group = 39,
|
|
645
|
+
Delete_Relationship = 40,
|
|
646
|
+
Delete_Device = 41,
|
|
647
|
+
Delete_Custom_Field_Data = 42,
|
|
648
|
+
Delete_Ticket = 43,
|
|
649
|
+
Delete_Picture = 44,
|
|
650
|
+
Delete_User_Location = 45,
|
|
651
|
+
Delete_Social_Media = 46,
|
|
652
|
+
Reset_Security_Info = 47,
|
|
653
|
+
Verify_Security_Data = 48,
|
|
654
|
+
Confirm_Security_Data = 49,
|
|
655
|
+
Validate_Security_Data = 50,
|
|
656
|
+
Account_Creation = 51,
|
|
657
|
+
Edit_Address = 52,
|
|
658
|
+
Edit_Credit_Limit = 54,
|
|
659
|
+
Credit_Limit_Assignment = 55,
|
|
660
|
+
Account_Activation = 56,
|
|
661
|
+
Add_Phone_Number = 57,
|
|
662
|
+
Edit_Phone_Number = 58,
|
|
663
|
+
Add_Email_Address = 59,
|
|
664
|
+
Edit_Email_Address = 60,
|
|
665
|
+
Credit_Funds_To_Settlement_Account = 61,
|
|
666
|
+
Debit_Funds_From_Settlement_Account = 62,
|
|
667
|
+
Credit_Funds = 63,
|
|
668
|
+
Debit_Funds = 64,
|
|
669
|
+
Transfer_Funds = 65,
|
|
670
|
+
Transfer_Funds_to_Settlement_Account = 66,
|
|
671
|
+
Edit_Trust_Level_and_Status = 67,
|
|
672
|
+
Update_Account_Options = 68,
|
|
673
|
+
Update_Usage_Status = 69,
|
|
674
|
+
Update_Account = 70,
|
|
675
|
+
Update_User_Password = 71,
|
|
676
|
+
Update_User_Security_Code = 72,
|
|
677
|
+
Update_User_Security_Question = 73,
|
|
678
|
+
Update_User_2FA_Settings = 74,
|
|
679
|
+
Authentication_Delete = 75,
|
|
680
|
+
Update_Device_Verification_Status = 76,
|
|
681
|
+
Add_Crypto_Address = 77,
|
|
682
|
+
Delete_Crypto_Address = 78,
|
|
683
|
+
Edit_Crypto_Address = 79
|
|
684
|
+
}
|
|
685
|
+
export declare enum SettlementTransactionType {
|
|
686
|
+
Debit = 0,
|
|
687
|
+
Credit = 1
|
|
688
|
+
}
|
|
689
|
+
export declare enum TransactionType {
|
|
690
|
+
Undefined = -1,
|
|
691
|
+
Interchange_Cash_Withdrawal = 46,
|
|
692
|
+
Interchange_Cash_Withdrawal_Fee = 47,
|
|
693
|
+
Interchange_Cash_Withdrawal_ATM = 3,
|
|
694
|
+
Interchange_Cash_Withdrawal_ATM_Fee = 10,
|
|
695
|
+
Interchange_Purchase = 48,
|
|
696
|
+
Interchange_Purchase_Fee = 49,
|
|
697
|
+
Interchange_Purchase_POS = 4,
|
|
698
|
+
Interchange_Purchase_POS_Fee = 9,
|
|
699
|
+
Interchange_Purchase_Credit_Adjustment = 26,
|
|
700
|
+
Interchange_Purchase_Credit_Adjustment_Fee = 27,
|
|
701
|
+
Interchange_Purchase_Return = 30,
|
|
702
|
+
Interchange_Purchase_Return_Fee = 31,
|
|
703
|
+
Interchange_Purchase_Cashback = 142,
|
|
704
|
+
Interchange_Purchase_Cashback_Fee = 143,
|
|
705
|
+
Interchange_Purchase_Internet = 38,
|
|
706
|
+
Interchange_Purchase_Internet_Fee = 39,
|
|
707
|
+
Interchange_Cash_Disbursement = 150,
|
|
708
|
+
Interchange_Cash_Disbursement_Fee = 151,
|
|
709
|
+
Interchange_Merchant_Payment = 200,
|
|
710
|
+
Interchange_Merchant_Payment_Fee = 201,
|
|
711
|
+
Interchange_Charge_Back = 202,
|
|
712
|
+
Interchange_Charge_Back_Fee = 203,
|
|
713
|
+
Interchange_Payment = 212,
|
|
714
|
+
Interchange_Payment_Fee = 213,
|
|
715
|
+
Interchange_Balance_Inquiry = 216,
|
|
716
|
+
Interchange_Balance_Inquiry_Fee = 217,
|
|
717
|
+
System_Deposit_Merchant = 32,
|
|
718
|
+
System_Deposit_Merchant_Fee = 33,
|
|
719
|
+
System_Withdrawal_Merchant = 34,
|
|
720
|
+
System_Withdrawal_Merchant_Fee = 35,
|
|
721
|
+
System_Transaction_Reversal = 13,
|
|
722
|
+
System_Bank_Account_Load = 14,
|
|
723
|
+
System_Bank_Account_Load_Fee = 15,
|
|
724
|
+
System_Bank_Account_Withdrawal = 16,
|
|
725
|
+
System_Bank_Account_Withdrawal_Fee = 17,
|
|
726
|
+
System_Wire_Load = 18,
|
|
727
|
+
System_Wire_Load_Fee = 19,
|
|
728
|
+
System_Wire_Withdrawal = 20,
|
|
729
|
+
System_Wire_Withdrawal_Fee = 21,
|
|
730
|
+
System_Check_Load = 22,
|
|
731
|
+
System_Check_Load_Fee = 23,
|
|
732
|
+
System_Check_Withdrawal = 24,
|
|
733
|
+
System_Check_Withdrawal_Fee = 25,
|
|
734
|
+
System_Manual_Load = 84,
|
|
735
|
+
System_Manual_Load_Fee = 85,
|
|
736
|
+
System_Manual_Withdrawal = 86,
|
|
737
|
+
System_Manual_Withdrawal_Fee = 87,
|
|
738
|
+
System_Payment_Received = 88,
|
|
739
|
+
System_Payment_Received_Fee = 89,
|
|
740
|
+
System_Generic_Transfer_Send = 220,
|
|
741
|
+
System_Generic_Transfer_Send_Fee = 221,
|
|
742
|
+
System_Generic_Transfer_Receive = 222,
|
|
743
|
+
System_Generic_Transfer_Receive_Fee = 223,
|
|
744
|
+
System_Refund = 224,
|
|
745
|
+
System_Refund_Fee = 225,
|
|
746
|
+
System_Sales_Tax = 226,
|
|
747
|
+
System_Sales_Tax_Fee = 227,
|
|
748
|
+
System_Limited_Debit = 228,
|
|
749
|
+
System_Limited_Debit_Fee = 229,
|
|
750
|
+
System_Negative_Balance_Load = 232,
|
|
751
|
+
System_Negative_Balance_Load_Fee = 233,
|
|
752
|
+
System_General_Debit = 136,
|
|
753
|
+
System_General_Debit_Fee = 137,
|
|
754
|
+
System_General_Credit = 138,
|
|
755
|
+
System_General_Credit_Fee = 139,
|
|
756
|
+
System_Voucher_Load = 162,
|
|
757
|
+
System_Voucher_Load_Fee = 163,
|
|
758
|
+
System_Voucher_Payment_Send = 164,
|
|
759
|
+
System_Voucher_Payment_Send_Fee = 165,
|
|
760
|
+
System_Voucher_Payment_Receive = 166,
|
|
761
|
+
System_Voucher_Payment_Receive_Fee = 167,
|
|
762
|
+
System_General_Transfer_Send = 242,
|
|
763
|
+
System_General_Transfer_Send_Fee = 243,
|
|
764
|
+
System_General_Transfer_Receive = 244,
|
|
765
|
+
System_General_Transfer_Receive_Fee = 245,
|
|
766
|
+
System_External_Auth_Credit = 246,
|
|
767
|
+
System_External_Auth_Credit_Fee = 247,
|
|
768
|
+
System_External_Auth_Debit = 248,
|
|
769
|
+
System_External_Auth_Debit_Fee = 249,
|
|
770
|
+
System_Reseller_Purchase = 188,
|
|
771
|
+
System_Reseller_Purchase_Fee = 189,
|
|
772
|
+
System_User_Purchase = 190,
|
|
773
|
+
System_User_Purchase_Fee = 191,
|
|
774
|
+
System_Crypto_Load = 192,
|
|
775
|
+
System_Crypto_Load_Fee = 193,
|
|
776
|
+
System_Crypto_Withdrawal = 194,
|
|
777
|
+
System_Crypto_Withdrawal_Fee = 195,
|
|
778
|
+
Gateway_Payment_Gateway_Load = 234,
|
|
779
|
+
Gateway_Payment_Gateway_Load_Fee = 235,
|
|
780
|
+
Gateway_Payment_Gateway_Purchase = 236,
|
|
781
|
+
Gateway_Payment_Gateway_Purchase_Fee = 237,
|
|
782
|
+
Gateway_Payment_Gateway_Withdrawal = 250,
|
|
783
|
+
Gateway_Payment_Gateway_Withdrawal_Fee = 251,
|
|
784
|
+
Gateway_Payment_Gateway_E_Transfer = 252,
|
|
785
|
+
Gateway_Payment_Gateway_E_Transfer_Fee = 253,
|
|
786
|
+
Service_Account_Activation = 116,
|
|
787
|
+
Service_Account_Activation_Fee = 117,
|
|
788
|
+
Service_Account_Termination = 118,
|
|
789
|
+
Service_Account_Termination_Fee = 119,
|
|
790
|
+
Service_Debit_Card_Shipping = 120,
|
|
791
|
+
Service_Debit_Card_Shipping_Fee = 121,
|
|
792
|
+
Service_NSF = 122,
|
|
793
|
+
Service_NSF_Fee = 123,
|
|
794
|
+
Service_Lost_Card = 124,
|
|
795
|
+
Service_Lost_Card_Fee = 125,
|
|
796
|
+
Service_Support = 126,
|
|
797
|
+
Service_Support_Fee = 127,
|
|
798
|
+
Service_Administration = 128,
|
|
799
|
+
Service_Administration_Fee = 129,
|
|
800
|
+
Service_Account_Suspension = 130,
|
|
801
|
+
Service_Account_Suspension_Fee = 131,
|
|
802
|
+
Service_Account_Reactivation = 132,
|
|
803
|
+
Service_Account_Reactivation_Fee = 133,
|
|
804
|
+
Service_Generic = 134,
|
|
805
|
+
Service_Generic_Fee = 135,
|
|
806
|
+
Service_Balance_Request = 140,
|
|
807
|
+
Service_Balance_Request_Fee = 141,
|
|
808
|
+
Service_Decline = 160,
|
|
809
|
+
Service_Decline_Fee = 161,
|
|
810
|
+
Service_Cash_Withdrawal_NSF = 230,
|
|
811
|
+
Service_Cash_Withdrawal_NSF_Fee = 231,
|
|
812
|
+
Service_Account_Renewal = 170,
|
|
813
|
+
Service_Account_Renewal_Fee = 171,
|
|
814
|
+
Service_Generic_Inactivity = 172,
|
|
815
|
+
Service_Generic_Inactivity_Fee = 173,
|
|
816
|
+
Service_Account_Replacement = 174,
|
|
817
|
+
Service_Account_Replacement_Fee = 175,
|
|
818
|
+
Service_Account_Multipan = 176,
|
|
819
|
+
Service_Account_Multipan_Fee = 177
|
|
820
|
+
}
|
|
821
|
+
export declare enum DeviceType {
|
|
822
|
+
Undefined = -1,
|
|
823
|
+
Mobile_Application = 1,
|
|
824
|
+
Desktop_Application = 2,
|
|
825
|
+
API_Integration = 3,
|
|
826
|
+
POS_Terminal = 4,
|
|
827
|
+
Browser = 5
|
|
828
|
+
}
|
|
829
|
+
export declare enum TransactionInquiryStatus {
|
|
830
|
+
All = -1,
|
|
831
|
+
Posted = 0,
|
|
832
|
+
Pending = 1,
|
|
833
|
+
Declined = 2,
|
|
834
|
+
Canceled = 3
|
|
835
|
+
}
|
|
836
|
+
export declare enum SecurityOperationMethod {
|
|
837
|
+
Undefined = -1,
|
|
838
|
+
Email_Link = 1,
|
|
839
|
+
Email_Code = 2,
|
|
840
|
+
SMS_Code = 3,
|
|
841
|
+
Insert = 4,
|
|
842
|
+
Update = 5,
|
|
843
|
+
Delete = 6,
|
|
844
|
+
Access = 7,
|
|
845
|
+
Get_Data = 8,
|
|
846
|
+
Login = 9,
|
|
847
|
+
Bulk = 10,
|
|
848
|
+
OTP_Email = 11,
|
|
849
|
+
OTP_SMS = 12,
|
|
850
|
+
Logout = 13
|
|
851
|
+
}
|
|
852
|
+
export declare enum OrganizationRequestTypes {
|
|
853
|
+
Create_Organization = 1,
|
|
854
|
+
Update_Organization = 2,
|
|
855
|
+
Get_Organization = 3,
|
|
856
|
+
Delete_Organization = 4,
|
|
857
|
+
Get_History = 5,
|
|
858
|
+
Get_Latest_History = 6,
|
|
859
|
+
Create_Email = 7,
|
|
860
|
+
Update_Email = 8,
|
|
861
|
+
Get_Email = 9,
|
|
862
|
+
Delete_Email = 10,
|
|
863
|
+
Create_Address = 11,
|
|
864
|
+
Update_Address = 12,
|
|
865
|
+
Get_Address = 13,
|
|
866
|
+
Delete_Address = 14,
|
|
867
|
+
Create_Phone = 15,
|
|
868
|
+
Update_Phone = 16,
|
|
869
|
+
Get_Phone = 17,
|
|
870
|
+
Delete_Phone = 18,
|
|
871
|
+
Get_Relationship = 19,
|
|
872
|
+
Create_Relationship = 20,
|
|
873
|
+
Create_Social_Media = 21,
|
|
874
|
+
Create_Document = 22,
|
|
875
|
+
Get_User = 23,
|
|
876
|
+
Get_Account = 24
|
|
877
|
+
}
|
|
878
|
+
export declare enum BusinessType {
|
|
879
|
+
Sole_Proprietorship = 1,
|
|
880
|
+
Limited_Partnership = 2,
|
|
881
|
+
Corporation = 3,
|
|
882
|
+
Limited_Liability_Company = 4,
|
|
883
|
+
Nonprofit_Organization = 5,
|
|
884
|
+
Cooperative = 6,
|
|
885
|
+
Partnerships = 7,
|
|
886
|
+
Individual_Group = 8
|
|
887
|
+
}
|
|
888
|
+
export declare enum UserType {
|
|
889
|
+
Undefined = 0,
|
|
890
|
+
Individual = 1,
|
|
891
|
+
System = 2,
|
|
892
|
+
Organization = 3
|
|
893
|
+
}
|
|
894
|
+
export declare enum AccountStatus {
|
|
895
|
+
Undefined = -1,
|
|
896
|
+
Inactive = 0,
|
|
897
|
+
Active = 1,
|
|
898
|
+
Lost = 2,
|
|
899
|
+
Stolen = 3,
|
|
900
|
+
Closed = 4,
|
|
901
|
+
Suspended = 5,
|
|
902
|
+
Prohibit_Use = 6,
|
|
903
|
+
Expired = 7,
|
|
904
|
+
Pending = 8,
|
|
905
|
+
Blocked = 9,
|
|
906
|
+
Refer_To_Card_Issuer = 10,
|
|
907
|
+
Capture_Card = 11,
|
|
908
|
+
Pending_Activation = 12,
|
|
909
|
+
Replaced = 13,
|
|
910
|
+
Suspected_Fraud = 14,
|
|
911
|
+
Suspended_By_User = 15,
|
|
912
|
+
Renewed = 16,
|
|
913
|
+
Deleted = 17,
|
|
914
|
+
Canceled = 18
|
|
915
|
+
}
|
|
916
|
+
export declare enum DocumentType {
|
|
917
|
+
Profile_Picture = 1,
|
|
918
|
+
Passport = 2,
|
|
919
|
+
National_ID = 3,
|
|
920
|
+
Driver_License = 4,
|
|
921
|
+
Utility_Bill = 5,
|
|
922
|
+
Credit_Card_Statement = 6,
|
|
923
|
+
Bank_Statement = 7,
|
|
924
|
+
Financial_Statement = 8,
|
|
925
|
+
Receipt = 9,
|
|
926
|
+
Tax_Document = 10,
|
|
927
|
+
Insurance_Document = 11,
|
|
928
|
+
Other = 12,
|
|
929
|
+
Signed_Agreement = 13,
|
|
930
|
+
Social_Security_Number = 14,// SSN
|
|
931
|
+
Social_Insurance_Number = 15,// SIN
|
|
932
|
+
Selfie = 16,
|
|
933
|
+
Profile_Background_Picture = 17,
|
|
934
|
+
Beneficiary_Card = 18,
|
|
935
|
+
Medical_Card = 19,
|
|
936
|
+
Generic = 20,
|
|
937
|
+
Company_Registration = 21,
|
|
938
|
+
Executive_Authority = 22,
|
|
939
|
+
Trade_License = 23,
|
|
940
|
+
Organization_Document = 24
|
|
941
|
+
}
|
|
942
|
+
export declare enum CountryCode {
|
|
943
|
+
Undefined = -1,
|
|
944
|
+
Canada = 124,
|
|
945
|
+
Iraq = 368,
|
|
946
|
+
Jordan = 400,
|
|
947
|
+
Saudi_Arabia = 682,
|
|
948
|
+
United_Kingdom = 826,
|
|
949
|
+
United_States = 840,
|
|
950
|
+
Brazil = 76,
|
|
951
|
+
International = 999
|
|
952
|
+
}
|
|
953
|
+
export declare enum ResponseStatusCode {
|
|
954
|
+
Approved = "0000",
|
|
955
|
+
Token_Is_Not_Active = "5035",
|
|
956
|
+
Invalid_Token = "5025",
|
|
957
|
+
Invalid_Authentication_Code = "6049",
|
|
958
|
+
Invalid_Verification_Code = "2053",
|
|
959
|
+
Verification_Code_Is_Expired = "2054"
|
|
960
|
+
}
|
|
961
|
+
export declare enum ForgetUserSecurityTypes {
|
|
962
|
+
Forget_Password = 1
|
|
963
|
+
}
|
|
964
|
+
export declare enum ForgetPasswordSecurityTypes {
|
|
965
|
+
Security_Code = 1,
|
|
966
|
+
DOB = 2,
|
|
967
|
+
National_ID = 3,
|
|
968
|
+
Bank_Account = 4,
|
|
969
|
+
Google_Auth = 5
|
|
970
|
+
}
|
|
971
|
+
export declare enum PaymentMethodType {
|
|
972
|
+
Credit_Card = 1,
|
|
973
|
+
Cash_On_Delivery = 2,
|
|
974
|
+
System = 3,
|
|
975
|
+
Mada = 4,
|
|
976
|
+
Crypto_Offline = 5,
|
|
977
|
+
Apex = 6,
|
|
978
|
+
Tabadul = 7,
|
|
979
|
+
Castles = 8
|
|
980
|
+
}
|
|
981
|
+
export declare enum OrderType {
|
|
982
|
+
Normal = 1,
|
|
983
|
+
Reserve = 3,
|
|
984
|
+
Bulk_Order = 4,
|
|
985
|
+
Reverse = 5,
|
|
986
|
+
Commit = 6,
|
|
987
|
+
Cancel = 7,
|
|
988
|
+
Store_Movement = 8
|
|
989
|
+
}
|
|
990
|
+
export declare enum CommerceProductSourceType {
|
|
991
|
+
PinCode = 1,
|
|
992
|
+
Reseller_Offline_Invoice = 2,
|
|
993
|
+
Giftango = 3,
|
|
994
|
+
STC = 4,
|
|
995
|
+
Offline = 5,
|
|
996
|
+
CashU = 6,
|
|
997
|
+
OneCard = 7,
|
|
998
|
+
PaySafe = 8,
|
|
999
|
+
TransferTo = 9,
|
|
1000
|
+
Ding = 10,
|
|
1001
|
+
JC_Lottery = 11,
|
|
1002
|
+
EPay = 12,
|
|
1003
|
+
Ding_PIN = 13,
|
|
1004
|
+
Ding_Topup = 14,
|
|
1005
|
+
Amazon = 15,
|
|
1006
|
+
Fawry_Payment = 16,
|
|
1007
|
+
G2A = 17,
|
|
1008
|
+
Physical_Product = 18,
|
|
1009
|
+
Fawry_Voucher = 19,
|
|
1010
|
+
Codati = 20,
|
|
1011
|
+
GGEZ1 = 21
|
|
1012
|
+
}
|
|
1013
|
+
export declare enum SourceApp {
|
|
1014
|
+
Undefined = -1,
|
|
1015
|
+
Programs_UI = 0,
|
|
1016
|
+
Cardholder_UI = 1,
|
|
1017
|
+
WebService_SOAP = 2,
|
|
1018
|
+
WebService_REST = 3,
|
|
1019
|
+
Commerce_User = 4,
|
|
1020
|
+
Commerce_Admin = 5,
|
|
1021
|
+
System = 6,
|
|
1022
|
+
DowJones_Console = 7,
|
|
1023
|
+
Mastercard_API = 8,
|
|
1024
|
+
Task_Scheduler = 9,
|
|
1025
|
+
MQ_Consumer = 10,
|
|
1026
|
+
External_Host_Service = 11,
|
|
1027
|
+
Messaging_Service = 12,
|
|
1028
|
+
Automation = 13,
|
|
1029
|
+
Webhook_Service = 14,
|
|
1030
|
+
Task_Scheduler_Service = 15,
|
|
1031
|
+
Switch_Service = 16,
|
|
1032
|
+
Fraud_Service = 17,
|
|
1033
|
+
Realtime_APP = 18,
|
|
1034
|
+
User_Web = 19,
|
|
1035
|
+
GGEZ_Admin = 20,
|
|
1036
|
+
GGEZ_Investors_Portal = 21,
|
|
1037
|
+
GGEZ_API = 22,
|
|
1038
|
+
Node_API = 23,
|
|
1039
|
+
Block_Explore = 24
|
|
1040
|
+
}
|
|
1041
|
+
export declare enum UserTrustLevelRange {
|
|
1042
|
+
Unverified = 0,
|
|
1043
|
+
Limited = 1,
|
|
1044
|
+
Limited_Max = 2,
|
|
1045
|
+
Confirmed = 3,
|
|
1046
|
+
Confirmed_Max = 4,
|
|
1047
|
+
Trusted = 5,
|
|
1048
|
+
Trusted_Organization = 6,
|
|
1049
|
+
Trusted_Max = 10
|
|
1050
|
+
}
|
|
1051
|
+
export declare enum ProgramTypes {
|
|
1052
|
+
Undefined = -1,
|
|
1053
|
+
DebitCard = 0,
|
|
1054
|
+
EWallet = 1,
|
|
1055
|
+
Points = 2,
|
|
1056
|
+
Blockchain = 3
|
|
1057
|
+
}
|
|
1058
|
+
export declare enum WireTransferType {
|
|
1059
|
+
Domestic = 1,
|
|
1060
|
+
International = 2
|
|
1061
|
+
}
|