ggez-banking-sdk 0.0.4 → 0.0.6

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.
Files changed (116) hide show
  1. package/README.md +0 -0
  2. package/dist/bank-system/constants/enum.d.ts +1061 -0
  3. package/dist/bank-system/constants/enum.js +1115 -0
  4. package/dist/bank-system/constants/index.d.ts +1 -0
  5. package/dist/bank-system/constants/index.js +17 -0
  6. package/dist/bank-system/content/accountCurrencies.d.ts +12 -0
  7. package/dist/bank-system/content/accountCurrencies.js +37 -0
  8. package/dist/bank-system/content/countries.d.ts +24 -0
  9. package/dist/bank-system/content/countries.js +6472 -0
  10. package/dist/bank-system/content/currencies.d.ts +32 -0
  11. package/dist/bank-system/content/currencies.js +5836 -0
  12. package/dist/bank-system/content/index.d.ts +4 -0
  13. package/dist/bank-system/content/index.js +12 -0
  14. package/dist/bank-system/content/state.d.ts +6 -0
  15. package/dist/bank-system/content/state.js +350 -0
  16. package/dist/bank-system/helper/data.d.ts +46 -0
  17. package/dist/bank-system/helper/data.js +57 -0
  18. package/dist/bank-system/helper/dataStructure.d.ts +3220 -0
  19. package/dist/bank-system/helper/dataStructure.js +1055 -0
  20. package/dist/bank-system/helper/index.d.ts +28 -0
  21. package/dist/bank-system/helper/index.js +394 -0
  22. package/dist/bank-system/interfaces/accountInterface.d.ts +26 -0
  23. package/dist/bank-system/interfaces/accountInterface.js +2 -0
  24. package/dist/bank-system/interfaces/bankingSystemInterface.d.ts +306 -0
  25. package/dist/bank-system/interfaces/bankingSystemInterface.js +2 -0
  26. package/dist/bank-system/interfaces/deviceInterface.d.ts +34 -0
  27. package/dist/bank-system/interfaces/deviceInterface.js +2 -0
  28. package/dist/bank-system/interfaces/index.d.ts +4 -0
  29. package/dist/bank-system/interfaces/index.js +20 -0
  30. package/dist/bank-system/interfaces/interface.d.ts +460 -0
  31. package/dist/bank-system/interfaces/interface.js +2 -0
  32. package/dist/bank-system/interfaces/organizationInterface.d.ts +118 -0
  33. package/dist/bank-system/interfaces/organizationInterface.js +2 -0
  34. package/dist/bank-system/interfaces/signInterface.d.ts +91 -0
  35. package/dist/bank-system/interfaces/signInterface.js +2 -0
  36. package/dist/bank-system/interfaces/transactionInterface.d.ts +17 -0
  37. package/dist/bank-system/interfaces/transactionInterface.js +2 -0
  38. package/dist/bank-system/restApi/index.d.ts +8 -0
  39. package/dist/bank-system/restApi/index.js +41 -0
  40. package/dist/bank-system/services/account.d.ts +33 -0
  41. package/dist/bank-system/services/account.js +129 -0
  42. package/dist/bank-system/services/addresses.d.ts +48 -0
  43. package/dist/bank-system/services/addresses.js +130 -0
  44. package/dist/bank-system/services/auth.d.ts +71 -0
  45. package/dist/bank-system/services/auth.js +250 -0
  46. package/dist/bank-system/services/bankAccount.d.ts +48 -0
  47. package/dist/bank-system/services/bankAccount.js +131 -0
  48. package/dist/bank-system/services/device.d.ts +46 -0
  49. package/dist/bank-system/services/device.js +212 -0
  50. package/dist/bank-system/services/document.d.ts +15 -0
  51. package/dist/bank-system/services/document.js +58 -0
  52. package/dist/bank-system/services/email.d.ts +70 -0
  53. package/dist/bank-system/services/email.js +175 -0
  54. package/dist/bank-system/services/history.d.ts +14 -0
  55. package/dist/bank-system/services/history.js +55 -0
  56. package/dist/bank-system/services/identification.d.ts +37 -0
  57. package/dist/bank-system/services/identification.js +107 -0
  58. package/dist/bank-system/services/index.d.ts +17 -0
  59. package/dist/bank-system/services/index.js +35 -0
  60. package/dist/bank-system/services/organization.d.ts +28 -0
  61. package/dist/bank-system/services/organization.js +129 -0
  62. package/dist/bank-system/services/personalInfo.d.ts +26 -0
  63. package/dist/bank-system/services/personalInfo.js +91 -0
  64. package/dist/bank-system/services/phone.d.ts +70 -0
  65. package/dist/bank-system/services/phone.js +175 -0
  66. package/dist/bank-system/services/security.d.ts +114 -0
  67. package/dist/bank-system/services/security.js +267 -0
  68. package/dist/bank-system/services/token.d.ts +11 -0
  69. package/dist/bank-system/services/token.js +83 -0
  70. package/dist/bank-system/services/transaction.d.ts +9 -0
  71. package/dist/bank-system/services/transaction.js +62 -0
  72. package/dist/bank-system/services/verifyAndConfirm.d.ts +116 -0
  73. package/dist/bank-system/services/verifyAndConfirm.js +308 -0
  74. package/dist/bank-system/utils/chainAddressMasking.d.ts +2 -0
  75. package/dist/bank-system/utils/chainAddressMasking.js +12 -0
  76. package/dist/bank-system/utils/copyText.d.ts +5 -0
  77. package/dist/bank-system/utils/copyText.js +22 -0
  78. package/dist/bank-system/utils/countryAndCurrencyData.d.ts +11 -0
  79. package/dist/bank-system/utils/countryAndCurrencyData.js +22 -0
  80. package/dist/bank-system/utils/enumToOption.d.ts +4 -0
  81. package/dist/bank-system/utils/enumToOption.js +18 -0
  82. package/dist/bank-system/utils/fillDeviceDetails.d.ts +23 -0
  83. package/dist/bank-system/utils/fillDeviceDetails.js +44 -0
  84. package/dist/bank-system/utils/generateOneLiner.d.ts +1 -0
  85. package/dist/bank-system/utils/generateOneLiner.js +16 -0
  86. package/dist/bank-system/utils/generateSourceId.d.ts +1 -0
  87. package/dist/bank-system/utils/generateSourceId.js +12 -0
  88. package/dist/bank-system/utils/getCountryName.d.ts +2 -0
  89. package/dist/bank-system/utils/getCountryName.js +29 -0
  90. package/dist/bank-system/utils/getEnumName.d.ts +1 -0
  91. package/dist/bank-system/utils/getEnumName.js +10 -0
  92. package/dist/bank-system/utils/getStateByCountryCode.d.ts +1 -0
  93. package/dist/bank-system/utils/getStateByCountryCode.js +14 -0
  94. package/dist/bank-system/utils/handleEncryption/decryptData.d.ts +15 -0
  95. package/dist/bank-system/utils/handleEncryption/decryptData.js +77 -0
  96. package/dist/bank-system/utils/handleEncryption/encryptData.d.ts +2 -0
  97. package/dist/bank-system/utils/handleEncryption/encryptData.js +36 -0
  98. package/dist/bank-system/utils/handleEncryption/index.d.ts +4 -0
  99. package/dist/bank-system/utils/handleEncryption/index.js +12 -0
  100. package/dist/bank-system/utils/handleEncryption/key.d.ts +13 -0
  101. package/dist/bank-system/utils/handleEncryption/key.js +40 -0
  102. package/dist/bank-system/utils/index.d.ts +15 -0
  103. package/dist/bank-system/utils/index.js +42 -0
  104. package/dist/bank-system/utils/info.d.ts +8 -0
  105. package/dist/bank-system/utils/info.js +79 -0
  106. package/dist/bank-system/utils/maskingFunction.d.ts +1 -0
  107. package/dist/bank-system/utils/maskingFunction.js +27 -0
  108. package/dist/bank-system/utils/regex.d.ts +106 -0
  109. package/dist/bank-system/utils/regex.js +110 -0
  110. package/dist/bank-system/utils/sortUserInfo.d.ts +1 -0
  111. package/dist/bank-system/utils/sortUserInfo.js +42 -0
  112. package/dist/index.d.ts +8 -0
  113. package/dist/index.js +54 -0
  114. package/dist/keplr-config/chainInfo.d.ts +8 -0
  115. package/dist/keplr-config/chainInfo.js +111 -0
  116. package/package.json +1 -1
@@ -0,0 +1,3220 @@
1
+ import { AddressType, AuthorizationOperationRequestType, BankAccountTypes, BankBeneficiaryType, DeviceType, DocumentType, Entity, EntityStatus } from "../constants/enum";
2
+ import { CreateDeviceInterface, UpdateDeviceInterface, DeleteDeviceInterface, VerifyDeviceInterface, ConfirmDeviceInterface, LogoutDeviceInterface } from "../interfaces/deviceInterface";
3
+ import { SignUpInterface, SignUpWithGoogleInterface } from "../interfaces/signInterface";
4
+ import { doTransactionInterface, GetTransactionInterface } from "../interfaces/accountInterface";
5
+ import { CreateAddressInterface, DeleteUserAddressInterface, MakeAddressPrimaryInterface, UpdateAddressInterface, CreateUserEmailInterface, DeleteUserEmailInterface, UpdateUserEmailInterface, ConfirmLimitedEmailInterface, MakePrimaryUserEmailInterface, VerifyLimitedEmailInterface, ConfirmLimitedPhoneInterface, CreateUserPhoneInterface, DeleteUserPhoneInterface, MakeUserPhonePrimaryInterface, UpdateUserPhoneInterface, VerifyLimitedPhoneInterface, CreateBankAccountInterFace, UpdateBankAccountInterFace, DeleteBankAccountInterFace, MakeBankAccountPrimaryInterFace, CreateIdentificationInterface, DeleteIdentificationInterface, UpdateIdentificationInterface, UpdatePersonalInfoInterface, UpdateProfilePictureInterface, ChangeUserSecurityCodeInterface, ResetPasswordInterface, ResetSecurityQuestionsInterface, UpdateUserPreferencesInterface, ValidateSecurityCodeInterface, ActivateGoogleAuthInterface, ValidateLimitedPhoneInterface, IsEmailPresentAndValidInterface, IsPhonePresentAndValidInterface, SendOTPPhoneInterface, SendOTPEmailInterface, CreateDocumentInterface, ForgetPasswordConfirmInterface, ForgetPasswordValidateInterface, DeleteGoogleAuthInterface } from "../interfaces/bankingSystemInterface";
6
+ import { orderInterface } from "../interfaces/transactionInterface";
7
+ import { CreateDocumentOrganizationInterface, CreateOrganizationInterface, UpdateOrganizationInterface } from "../interfaces/organizationInterface";
8
+ import { IGeoCoordinates } from "../interfaces";
9
+ declare const Data: () => {
10
+ dataSignUpApi: (values: SignUpInterface) => {
11
+ info: {
12
+ type: number;
13
+ };
14
+ personal_info: {
15
+ title: string;
16
+ first_name: string;
17
+ last_name: string;
18
+ date_of_birth: string;
19
+ gender: string | number;
20
+ verification_status: number;
21
+ };
22
+ address: {
23
+ country_code: number;
24
+ state_region: number;
25
+ verification_status: number;
26
+ };
27
+ email: {
28
+ id: number;
29
+ address: string;
30
+ is_primary: number;
31
+ verification_status: number;
32
+ }[];
33
+ phone: {
34
+ id: number;
35
+ type: number;
36
+ country_code: string;
37
+ number: string;
38
+ is_primary: number;
39
+ verification_status: number;
40
+ }[];
41
+ authentication: {
42
+ type: number;
43
+ code: string;
44
+ }[];
45
+ security: {
46
+ password: string;
47
+ security_code: number;
48
+ };
49
+ preferences: {
50
+ preferred_language_code: string;
51
+ enable_promotion_notification: string;
52
+ enable_email_notification: string;
53
+ enable_sms_notification: string;
54
+ enable_push_notification: string;
55
+ enable_device_authentication: string;
56
+ time_zone: string;
57
+ };
58
+ currency: {
59
+ id: number;
60
+ code: string;
61
+ is_primary: number;
62
+ }[];
63
+ terms_conditions: {
64
+ id: number;
65
+ acceptance: string;
66
+ };
67
+ device: {
68
+ type: DeviceType;
69
+ brand: string;
70
+ os: any;
71
+ status: EntityStatus;
72
+ verification_status: string;
73
+ installation_id: string;
74
+ extended_info: {
75
+ cpu: any;
76
+ system_language: any;
77
+ user_agent: any;
78
+ };
79
+ }[];
80
+ custom_field: {
81
+ referral_code: string;
82
+ type: string;
83
+ };
84
+ geo_coordinates: IGeoCoordinates;
85
+ result: any;
86
+ addresses: any;
87
+ identification: any;
88
+ bank_account: any;
89
+ credit_card: any;
90
+ notification: any;
91
+ documents: any;
92
+ credit_limit: any;
93
+ account: any;
94
+ group: any;
95
+ device_info: any;
96
+ device_history: any;
97
+ commerce: any;
98
+ external_auth: any;
99
+ validation_data: any;
100
+ relationship: any;
101
+ history: any;
102
+ access_rule: any;
103
+ ticket: any;
104
+ general_requirements: any;
105
+ organization: any;
106
+ authentication_data: any;
107
+ crypto_address: any;
108
+ activity: any;
109
+ notes: any;
110
+ last_activity: any;
111
+ validate: any;
112
+ function_code: any;
113
+ response_time: any;
114
+ time_zone: string;
115
+ time_zone_name: string;
116
+ };
117
+ dataSignUpWithGoogle: (values: SignUpWithGoogleInterface) => {
118
+ info: {
119
+ type: number;
120
+ };
121
+ personal_info: {
122
+ title: string;
123
+ first_name: string;
124
+ last_name: string;
125
+ date_of_birth: string;
126
+ gender: string | number;
127
+ verification_status: number;
128
+ };
129
+ address: {
130
+ country_code: number;
131
+ state_region: number;
132
+ verification_status: number;
133
+ };
134
+ email: {
135
+ id: number;
136
+ address: string;
137
+ is_primary: number;
138
+ verification_status: number;
139
+ }[];
140
+ phone: {
141
+ id: number;
142
+ type: number;
143
+ country_code: string;
144
+ number: string;
145
+ is_primary: number;
146
+ verification_status: number;
147
+ }[];
148
+ authentication: {
149
+ type: number;
150
+ code: string;
151
+ }[];
152
+ security: {
153
+ password: string;
154
+ security_code: number;
155
+ };
156
+ preferences: {
157
+ preferred_language_code: string;
158
+ enable_promotion_notification: string;
159
+ enable_email_notification: string;
160
+ enable_sms_notification: string;
161
+ enable_push_notification: string;
162
+ enable_device_authentication: string;
163
+ time_zone: string;
164
+ };
165
+ currency: {
166
+ id: number;
167
+ code: string;
168
+ is_primary: number;
169
+ }[];
170
+ terms_conditions: {
171
+ id: number;
172
+ acceptance: string;
173
+ };
174
+ external_auth: {
175
+ id: number;
176
+ login_id: string;
177
+ token: string;
178
+ status: number;
179
+ type: number;
180
+ verification_status: number;
181
+ }[];
182
+ device: {
183
+ type: DeviceType;
184
+ brand: string;
185
+ os: any;
186
+ status: EntityStatus;
187
+ verification_status: string;
188
+ installation_id: string;
189
+ extended_info: {
190
+ cpu: any;
191
+ system_language: any;
192
+ user_agent: any;
193
+ };
194
+ }[];
195
+ custom_field: {
196
+ referral_code: string;
197
+ type: string;
198
+ };
199
+ geo_coordinates: IGeoCoordinates;
200
+ client_time_zone: string;
201
+ result: any;
202
+ addresses: any;
203
+ identification: any;
204
+ bank_account: any;
205
+ credit_card: any;
206
+ notification: any;
207
+ documents: any;
208
+ credit_limit: any;
209
+ account: any;
210
+ group: any;
211
+ device_info: any;
212
+ device_history: any;
213
+ commerce: any;
214
+ validation_data: any;
215
+ relationship: any;
216
+ history: any;
217
+ access_rule: any;
218
+ ticket: any;
219
+ general_requirements: any;
220
+ organization: any;
221
+ authentication_data: any;
222
+ crypto_address: any;
223
+ activity: any;
224
+ notes: any;
225
+ last_activity: any;
226
+ validate: any;
227
+ function_code: any;
228
+ response_time: any;
229
+ time_zone: string;
230
+ time_zone_name: string;
231
+ };
232
+ dataAddress: () => {
233
+ createDataAddress: (values: CreateAddressInterface) => {
234
+ addresses: {
235
+ type: number;
236
+ address_line1: string;
237
+ address_line2: string;
238
+ country_code: string;
239
+ city_town: string;
240
+ state_region: string;
241
+ verification_status: number;
242
+ postal_zip_code: string;
243
+ }[];
244
+ geo_coordinates: IGeoCoordinates;
245
+ result: any;
246
+ info: any;
247
+ personal_info: any;
248
+ address: any;
249
+ email: any;
250
+ phone: any;
251
+ security: any;
252
+ preferences: any;
253
+ identification: any;
254
+ bank_account: any;
255
+ credit_card: any;
256
+ notification: any;
257
+ documents: any;
258
+ currency: any;
259
+ credit_limit: any;
260
+ account: any;
261
+ group: any;
262
+ terms_conditions: any;
263
+ device_info: any;
264
+ device: any;
265
+ device_history: any;
266
+ commerce: any;
267
+ external_auth: any;
268
+ validation_data: any;
269
+ relationship: any;
270
+ custom_field: any;
271
+ history: any;
272
+ access_rule: any;
273
+ ticket: any;
274
+ general_requirements: any;
275
+ organization: any;
276
+ authentication_data: any;
277
+ crypto_address: any;
278
+ activity: any;
279
+ notes: any;
280
+ last_activity: any;
281
+ authentication: any;
282
+ validate: any;
283
+ function_code: any;
284
+ response_time: any;
285
+ time_zone: string;
286
+ time_zone_name: string;
287
+ };
288
+ updateDataAddress: (values: UpdateAddressInterface) => {
289
+ addresses: {
290
+ id: number;
291
+ type: number;
292
+ address_line1: string;
293
+ address_line2: string;
294
+ country_code: string;
295
+ city_town: string;
296
+ state_region: string;
297
+ verification_status: number;
298
+ postal_zip_code: string;
299
+ }[];
300
+ geo_coordinates: IGeoCoordinates;
301
+ result: any;
302
+ info: any;
303
+ personal_info: any;
304
+ address: any;
305
+ email: any;
306
+ phone: any;
307
+ security: any;
308
+ preferences: any;
309
+ identification: any;
310
+ bank_account: any;
311
+ credit_card: any;
312
+ notification: any;
313
+ documents: any;
314
+ currency: any;
315
+ credit_limit: any;
316
+ account: any;
317
+ group: any;
318
+ terms_conditions: any;
319
+ device_info: any;
320
+ device: any;
321
+ device_history: any;
322
+ commerce: any;
323
+ external_auth: any;
324
+ validation_data: any;
325
+ relationship: any;
326
+ custom_field: any;
327
+ history: any;
328
+ access_rule: any;
329
+ ticket: any;
330
+ general_requirements: any;
331
+ organization: any;
332
+ authentication_data: any;
333
+ crypto_address: any;
334
+ activity: any;
335
+ notes: any;
336
+ last_activity: any;
337
+ authentication: any;
338
+ validate: any;
339
+ function_code: any;
340
+ response_time: any;
341
+ time_zone: string;
342
+ time_zone_name: string;
343
+ };
344
+ deleteDataAddress: (values: DeleteUserAddressInterface) => {
345
+ addresses: {
346
+ id: any;
347
+ }[];
348
+ geo_coordinates: IGeoCoordinates;
349
+ result: any;
350
+ info: any;
351
+ personal_info: any;
352
+ address: any;
353
+ email: any;
354
+ phone: any;
355
+ security: any;
356
+ preferences: any;
357
+ identification: any;
358
+ bank_account: any;
359
+ credit_card: any;
360
+ notification: any;
361
+ documents: any;
362
+ currency: any;
363
+ credit_limit: any;
364
+ account: any;
365
+ group: any;
366
+ terms_conditions: any;
367
+ device_info: any;
368
+ device: any;
369
+ device_history: any;
370
+ commerce: any;
371
+ external_auth: any;
372
+ validation_data: any;
373
+ relationship: any;
374
+ custom_field: any;
375
+ history: any;
376
+ access_rule: any;
377
+ ticket: any;
378
+ general_requirements: any;
379
+ organization: any;
380
+ authentication_data: any;
381
+ crypto_address: any;
382
+ activity: any;
383
+ notes: any;
384
+ last_activity: any;
385
+ authentication: any;
386
+ validate: any;
387
+ function_code: any;
388
+ response_time: any;
389
+ time_zone: string;
390
+ time_zone_name: string;
391
+ };
392
+ primaryDataAddress: (values: MakeAddressPrimaryInterface) => {
393
+ addresses: {
394
+ id: number;
395
+ is_primary: number;
396
+ }[];
397
+ geo_coordinates: IGeoCoordinates;
398
+ result: any;
399
+ info: any;
400
+ personal_info: any;
401
+ address: any;
402
+ email: any;
403
+ phone: any;
404
+ security: any;
405
+ preferences: any;
406
+ identification: any;
407
+ bank_account: any;
408
+ credit_card: any;
409
+ notification: any;
410
+ documents: any;
411
+ currency: any;
412
+ credit_limit: any;
413
+ account: any;
414
+ group: any;
415
+ terms_conditions: any;
416
+ device_info: any;
417
+ device: any;
418
+ device_history: any;
419
+ commerce: any;
420
+ external_auth: any;
421
+ validation_data: any;
422
+ relationship: any;
423
+ custom_field: any;
424
+ history: any;
425
+ access_rule: any;
426
+ ticket: any;
427
+ general_requirements: any;
428
+ organization: any;
429
+ authentication_data: any;
430
+ crypto_address: any;
431
+ activity: any;
432
+ notes: any;
433
+ last_activity: any;
434
+ authentication: any;
435
+ validate: any;
436
+ function_code: any;
437
+ response_time: any;
438
+ time_zone: string;
439
+ time_zone_name: string;
440
+ };
441
+ };
442
+ dataEmail: () => {
443
+ createDataEmail: (values: CreateUserEmailInterface) => {
444
+ email: {
445
+ address: string;
446
+ is_primary: string;
447
+ }[];
448
+ geo_coordinates: IGeoCoordinates;
449
+ result: any;
450
+ info: any;
451
+ personal_info: any;
452
+ address: any;
453
+ addresses: any;
454
+ phone: any;
455
+ security: any;
456
+ preferences: any;
457
+ identification: any;
458
+ bank_account: any;
459
+ credit_card: any;
460
+ notification: any;
461
+ documents: any;
462
+ currency: any;
463
+ credit_limit: any;
464
+ account: any;
465
+ group: any;
466
+ terms_conditions: any;
467
+ device_info: any;
468
+ device: any;
469
+ device_history: any;
470
+ commerce: any;
471
+ external_auth: any;
472
+ validation_data: any;
473
+ relationship: any;
474
+ custom_field: any;
475
+ history: any;
476
+ access_rule: any;
477
+ ticket: any;
478
+ general_requirements: any;
479
+ organization: any;
480
+ authentication_data: any;
481
+ crypto_address: any;
482
+ activity: any;
483
+ notes: any;
484
+ last_activity: any;
485
+ authentication: any;
486
+ validate: any;
487
+ function_code: any;
488
+ response_time: any;
489
+ time_zone: string;
490
+ time_zone_name: string;
491
+ };
492
+ verifyDataEmail: (values: VerifyLimitedEmailInterface) => {
493
+ verify_data: {
494
+ email: {
495
+ address: string;
496
+ };
497
+ };
498
+ info: {
499
+ type: string;
500
+ };
501
+ geo_coordinates: IGeoCoordinates;
502
+ result: any;
503
+ personal_info: any;
504
+ address: any;
505
+ addresses: any;
506
+ email: any;
507
+ phone: any;
508
+ security: any;
509
+ preferences: any;
510
+ identification: any;
511
+ bank_account: any;
512
+ credit_card: any;
513
+ notification: any;
514
+ documents: any;
515
+ currency: any;
516
+ credit_limit: any;
517
+ account: any;
518
+ group: any;
519
+ terms_conditions: any;
520
+ device_info: any;
521
+ device: any;
522
+ device_history: any;
523
+ commerce: any;
524
+ external_auth: any;
525
+ validation_data: any;
526
+ relationship: any;
527
+ custom_field: any;
528
+ history: any;
529
+ access_rule: any;
530
+ ticket: any;
531
+ general_requirements: any;
532
+ organization: any;
533
+ authentication_data: any;
534
+ crypto_address: any;
535
+ activity: any;
536
+ notes: any;
537
+ last_activity: any;
538
+ authentication: any;
539
+ validate: any;
540
+ function_code: any;
541
+ response_time: any;
542
+ time_zone: string;
543
+ time_zone_name: string;
544
+ };
545
+ confirmDataEmail: (values: ConfirmLimitedEmailInterface) => {
546
+ verify_data: {
547
+ email: {
548
+ address: string;
549
+ };
550
+ };
551
+ confirm_data: {
552
+ verification_code: string;
553
+ };
554
+ info: {
555
+ type: string;
556
+ };
557
+ geo_coordinates: IGeoCoordinates;
558
+ result: any;
559
+ personal_info: any;
560
+ address: any;
561
+ addresses: any;
562
+ email: any;
563
+ phone: any;
564
+ security: any;
565
+ preferences: any;
566
+ identification: any;
567
+ bank_account: any;
568
+ credit_card: any;
569
+ notification: any;
570
+ documents: any;
571
+ currency: any;
572
+ credit_limit: any;
573
+ account: any;
574
+ group: any;
575
+ terms_conditions: any;
576
+ device_info: any;
577
+ device: any;
578
+ device_history: any;
579
+ commerce: any;
580
+ external_auth: any;
581
+ validation_data: any;
582
+ relationship: any;
583
+ custom_field: any;
584
+ history: any;
585
+ access_rule: any;
586
+ ticket: any;
587
+ general_requirements: any;
588
+ organization: any;
589
+ authentication_data: any;
590
+ crypto_address: any;
591
+ activity: any;
592
+ notes: any;
593
+ last_activity: any;
594
+ authentication: any;
595
+ validate: any;
596
+ function_code: any;
597
+ response_time: any;
598
+ time_zone: string;
599
+ time_zone_name: string;
600
+ };
601
+ updateDataEmail: (values: UpdateUserEmailInterface) => {
602
+ email: {
603
+ id: any;
604
+ address: any;
605
+ verification_status: number;
606
+ }[];
607
+ geo_coordinates: IGeoCoordinates;
608
+ result: any;
609
+ info: any;
610
+ personal_info: any;
611
+ address: any;
612
+ addresses: any;
613
+ phone: any;
614
+ security: any;
615
+ preferences: any;
616
+ identification: any;
617
+ bank_account: any;
618
+ credit_card: any;
619
+ notification: any;
620
+ documents: any;
621
+ currency: any;
622
+ credit_limit: any;
623
+ account: any;
624
+ group: any;
625
+ terms_conditions: any;
626
+ device_info: any;
627
+ device: any;
628
+ device_history: any;
629
+ commerce: any;
630
+ external_auth: any;
631
+ validation_data: any;
632
+ relationship: any;
633
+ custom_field: any;
634
+ history: any;
635
+ access_rule: any;
636
+ ticket: any;
637
+ general_requirements: any;
638
+ organization: any;
639
+ authentication_data: any;
640
+ crypto_address: any;
641
+ activity: any;
642
+ notes: any;
643
+ last_activity: any;
644
+ authentication: any;
645
+ validate: any;
646
+ function_code: any;
647
+ response_time: any;
648
+ time_zone: string;
649
+ time_zone_name: string;
650
+ };
651
+ deleteDataEmail: (values: DeleteUserEmailInterface) => {
652
+ email: {
653
+ id: any;
654
+ }[];
655
+ geo_coordinates: IGeoCoordinates;
656
+ result: any;
657
+ info: any;
658
+ personal_info: any;
659
+ address: any;
660
+ addresses: any;
661
+ phone: any;
662
+ security: any;
663
+ preferences: any;
664
+ identification: any;
665
+ bank_account: any;
666
+ credit_card: any;
667
+ notification: any;
668
+ documents: any;
669
+ currency: any;
670
+ credit_limit: any;
671
+ account: any;
672
+ group: any;
673
+ terms_conditions: any;
674
+ device_info: any;
675
+ device: any;
676
+ device_history: any;
677
+ commerce: any;
678
+ external_auth: any;
679
+ validation_data: any;
680
+ relationship: any;
681
+ custom_field: any;
682
+ history: any;
683
+ access_rule: any;
684
+ ticket: any;
685
+ general_requirements: any;
686
+ organization: any;
687
+ authentication_data: any;
688
+ crypto_address: any;
689
+ activity: any;
690
+ notes: any;
691
+ last_activity: any;
692
+ authentication: any;
693
+ validate: any;
694
+ function_code: any;
695
+ response_time: any;
696
+ time_zone: string;
697
+ time_zone_name: string;
698
+ };
699
+ primaryDataEmail: (values: MakePrimaryUserEmailInterface) => {
700
+ email: {
701
+ id: any;
702
+ address: any;
703
+ is_primary: number;
704
+ }[];
705
+ geo_coordinates: IGeoCoordinates;
706
+ result: any;
707
+ info: any;
708
+ personal_info: any;
709
+ address: any;
710
+ addresses: any;
711
+ phone: any;
712
+ security: any;
713
+ preferences: any;
714
+ identification: any;
715
+ bank_account: any;
716
+ credit_card: any;
717
+ notification: any;
718
+ documents: any;
719
+ currency: any;
720
+ credit_limit: any;
721
+ account: any;
722
+ group: any;
723
+ terms_conditions: any;
724
+ device_info: any;
725
+ device: any;
726
+ device_history: any;
727
+ commerce: any;
728
+ external_auth: any;
729
+ validation_data: any;
730
+ relationship: any;
731
+ custom_field: any;
732
+ history: any;
733
+ access_rule: any;
734
+ ticket: any;
735
+ general_requirements: any;
736
+ organization: any;
737
+ authentication_data: any;
738
+ crypto_address: any;
739
+ activity: any;
740
+ notes: any;
741
+ last_activity: any;
742
+ authentication: any;
743
+ validate: any;
744
+ function_code: any;
745
+ response_time: any;
746
+ time_zone: string;
747
+ time_zone_name: string;
748
+ };
749
+ };
750
+ dataPhone: () => {
751
+ createDataPhone: (values: CreateUserPhoneInterface) => {
752
+ phone: {
753
+ type: string;
754
+ country_code: string;
755
+ number: string;
756
+ verification_status: string;
757
+ is_primary: string;
758
+ }[];
759
+ geo_coordinates: IGeoCoordinates;
760
+ result: any;
761
+ info: any;
762
+ personal_info: any;
763
+ address: any;
764
+ addresses: any;
765
+ email: any;
766
+ security: any;
767
+ preferences: any;
768
+ identification: any;
769
+ bank_account: any;
770
+ credit_card: any;
771
+ notification: any;
772
+ documents: any;
773
+ currency: any;
774
+ credit_limit: any;
775
+ account: any;
776
+ group: any;
777
+ terms_conditions: any;
778
+ device_info: any;
779
+ device: any;
780
+ device_history: any;
781
+ commerce: any;
782
+ external_auth: any;
783
+ validation_data: any;
784
+ relationship: any;
785
+ custom_field: any;
786
+ history: any;
787
+ access_rule: any;
788
+ ticket: any;
789
+ general_requirements: any;
790
+ organization: any;
791
+ authentication_data: any;
792
+ crypto_address: any;
793
+ activity: any;
794
+ notes: any;
795
+ last_activity: any;
796
+ authentication: any;
797
+ validate: any;
798
+ function_code: any;
799
+ response_time: any;
800
+ time_zone: string;
801
+ time_zone_name: string;
802
+ };
803
+ deleteDataPhone: (values: DeleteUserPhoneInterface) => {
804
+ phone: {
805
+ id: any;
806
+ }[];
807
+ geo_coordinates: IGeoCoordinates;
808
+ result: any;
809
+ info: any;
810
+ personal_info: any;
811
+ address: any;
812
+ addresses: any;
813
+ email: any;
814
+ security: any;
815
+ preferences: any;
816
+ identification: any;
817
+ bank_account: any;
818
+ credit_card: any;
819
+ notification: any;
820
+ documents: any;
821
+ currency: any;
822
+ credit_limit: any;
823
+ account: any;
824
+ group: any;
825
+ terms_conditions: any;
826
+ device_info: any;
827
+ device: any;
828
+ device_history: any;
829
+ commerce: any;
830
+ external_auth: any;
831
+ validation_data: any;
832
+ relationship: any;
833
+ custom_field: any;
834
+ history: any;
835
+ access_rule: any;
836
+ ticket: any;
837
+ general_requirements: any;
838
+ organization: any;
839
+ authentication_data: any;
840
+ crypto_address: any;
841
+ activity: any;
842
+ notes: any;
843
+ last_activity: any;
844
+ authentication: any;
845
+ validate: any;
846
+ function_code: any;
847
+ response_time: any;
848
+ time_zone: string;
849
+ time_zone_name: string;
850
+ };
851
+ verifyDataPhone: (values: VerifyLimitedPhoneInterface) => {
852
+ verify_data: {
853
+ phone: {
854
+ number: string;
855
+ };
856
+ };
857
+ info: {
858
+ type: string;
859
+ };
860
+ geo_coordinates: IGeoCoordinates;
861
+ result: any;
862
+ personal_info: any;
863
+ address: any;
864
+ addresses: any;
865
+ email: any;
866
+ phone: any;
867
+ security: any;
868
+ preferences: any;
869
+ identification: any;
870
+ bank_account: any;
871
+ credit_card: any;
872
+ notification: any;
873
+ documents: any;
874
+ currency: any;
875
+ credit_limit: any;
876
+ account: any;
877
+ group: any;
878
+ terms_conditions: any;
879
+ device_info: any;
880
+ device: any;
881
+ device_history: any;
882
+ commerce: any;
883
+ external_auth: any;
884
+ validation_data: any;
885
+ relationship: any;
886
+ custom_field: any;
887
+ history: any;
888
+ access_rule: any;
889
+ ticket: any;
890
+ general_requirements: any;
891
+ organization: any;
892
+ authentication_data: any;
893
+ crypto_address: any;
894
+ activity: any;
895
+ notes: any;
896
+ last_activity: any;
897
+ authentication: any;
898
+ validate: any;
899
+ function_code: any;
900
+ response_time: any;
901
+ time_zone: string;
902
+ time_zone_name: string;
903
+ };
904
+ confirmDataPhone: (values: ConfirmLimitedPhoneInterface) => {
905
+ verify_data: {
906
+ phone: {
907
+ number: string;
908
+ };
909
+ };
910
+ confirm_data: {
911
+ verification_code: string;
912
+ };
913
+ info: {
914
+ type: string;
915
+ };
916
+ geo_coordinates: IGeoCoordinates;
917
+ result: any;
918
+ personal_info: any;
919
+ address: any;
920
+ addresses: any;
921
+ email: any;
922
+ phone: any;
923
+ security: any;
924
+ preferences: any;
925
+ identification: any;
926
+ bank_account: any;
927
+ credit_card: any;
928
+ notification: any;
929
+ documents: any;
930
+ currency: any;
931
+ credit_limit: any;
932
+ account: any;
933
+ group: any;
934
+ terms_conditions: any;
935
+ device_info: any;
936
+ device: any;
937
+ device_history: any;
938
+ commerce: any;
939
+ external_auth: any;
940
+ validation_data: any;
941
+ relationship: any;
942
+ custom_field: any;
943
+ history: any;
944
+ access_rule: any;
945
+ ticket: any;
946
+ general_requirements: any;
947
+ organization: any;
948
+ authentication_data: any;
949
+ crypto_address: any;
950
+ activity: any;
951
+ notes: any;
952
+ last_activity: any;
953
+ authentication: any;
954
+ validate: any;
955
+ function_code: any;
956
+ response_time: any;
957
+ time_zone: string;
958
+ time_zone_name: string;
959
+ };
960
+ updateDataPhone: (values: UpdateUserPhoneInterface) => {
961
+ phone: {
962
+ id: any;
963
+ number: any;
964
+ verification_status: number;
965
+ }[];
966
+ geo_coordinates: IGeoCoordinates;
967
+ result: any;
968
+ info: any;
969
+ personal_info: any;
970
+ address: any;
971
+ addresses: any;
972
+ email: any;
973
+ security: any;
974
+ preferences: any;
975
+ identification: any;
976
+ bank_account: any;
977
+ credit_card: any;
978
+ notification: any;
979
+ documents: any;
980
+ currency: any;
981
+ credit_limit: any;
982
+ account: any;
983
+ group: any;
984
+ terms_conditions: any;
985
+ device_info: any;
986
+ device: any;
987
+ device_history: any;
988
+ commerce: any;
989
+ external_auth: any;
990
+ validation_data: any;
991
+ relationship: any;
992
+ custom_field: any;
993
+ history: any;
994
+ access_rule: any;
995
+ ticket: any;
996
+ general_requirements: any;
997
+ organization: any;
998
+ authentication_data: any;
999
+ crypto_address: any;
1000
+ activity: any;
1001
+ notes: any;
1002
+ last_activity: any;
1003
+ authentication: any;
1004
+ validate: any;
1005
+ function_code: any;
1006
+ response_time: any;
1007
+ time_zone: string;
1008
+ time_zone_name: string;
1009
+ };
1010
+ makePrimaryDataPhone: (values: MakeUserPhonePrimaryInterface) => {
1011
+ phone: {
1012
+ id: any;
1013
+ number: any;
1014
+ is_primary: number;
1015
+ }[];
1016
+ geo_coordinates: IGeoCoordinates;
1017
+ result: any;
1018
+ info: any;
1019
+ personal_info: any;
1020
+ address: any;
1021
+ addresses: any;
1022
+ email: any;
1023
+ security: any;
1024
+ preferences: any;
1025
+ identification: any;
1026
+ bank_account: any;
1027
+ credit_card: any;
1028
+ notification: any;
1029
+ documents: any;
1030
+ currency: any;
1031
+ credit_limit: any;
1032
+ account: any;
1033
+ group: any;
1034
+ terms_conditions: any;
1035
+ device_info: any;
1036
+ device: any;
1037
+ device_history: any;
1038
+ commerce: any;
1039
+ external_auth: any;
1040
+ validation_data: any;
1041
+ relationship: any;
1042
+ custom_field: any;
1043
+ history: any;
1044
+ access_rule: any;
1045
+ ticket: any;
1046
+ general_requirements: any;
1047
+ organization: any;
1048
+ authentication_data: any;
1049
+ crypto_address: any;
1050
+ activity: any;
1051
+ notes: any;
1052
+ last_activity: any;
1053
+ authentication: any;
1054
+ validate: any;
1055
+ function_code: any;
1056
+ response_time: any;
1057
+ time_zone: string;
1058
+ time_zone_name: string;
1059
+ };
1060
+ };
1061
+ dataBank: () => {
1062
+ createDataBank: (values: CreateBankAccountInterFace) => {
1063
+ bank_account: {
1064
+ name: string;
1065
+ holder_name: string;
1066
+ country_code: string;
1067
+ currency_code: string;
1068
+ settlement_currency_code: string;
1069
+ type: BankAccountTypes;
1070
+ number: string;
1071
+ swift_code: string;
1072
+ iban: string;
1073
+ transit_number: string;
1074
+ institution_number: string;
1075
+ routing_number: string;
1076
+ beneficiary_type: BankBeneficiaryType;
1077
+ verification_status: number;
1078
+ bank_address: string;
1079
+ state_region: string;
1080
+ }[];
1081
+ geo_coordinates: IGeoCoordinates;
1082
+ result: any;
1083
+ info: any;
1084
+ personal_info: any;
1085
+ address: any;
1086
+ addresses: any;
1087
+ email: any;
1088
+ phone: any;
1089
+ security: any;
1090
+ preferences: any;
1091
+ identification: any;
1092
+ credit_card: any;
1093
+ notification: any;
1094
+ documents: any;
1095
+ currency: any;
1096
+ credit_limit: any;
1097
+ account: any;
1098
+ group: any;
1099
+ terms_conditions: any;
1100
+ device_info: any;
1101
+ device: any;
1102
+ device_history: any;
1103
+ commerce: any;
1104
+ external_auth: any;
1105
+ validation_data: any;
1106
+ relationship: any;
1107
+ custom_field: any;
1108
+ history: any;
1109
+ access_rule: any;
1110
+ ticket: any;
1111
+ general_requirements: any;
1112
+ organization: any;
1113
+ authentication_data: any;
1114
+ crypto_address: any;
1115
+ activity: any;
1116
+ notes: any;
1117
+ last_activity: any;
1118
+ authentication: any;
1119
+ validate: any;
1120
+ function_code: any;
1121
+ response_time: any;
1122
+ time_zone: string;
1123
+ time_zone_name: string;
1124
+ };
1125
+ updateDataBank: (values: UpdateBankAccountInterFace) => {
1126
+ bank_account: {
1127
+ id: number;
1128
+ name: string;
1129
+ holder_name: string;
1130
+ country_code: string;
1131
+ currency_code: string;
1132
+ settlement_currency_code: string;
1133
+ type: BankAccountTypes;
1134
+ number: string;
1135
+ swift_code: string;
1136
+ iban: string;
1137
+ transit_number: string;
1138
+ institution_number: string;
1139
+ routing_number: string;
1140
+ status: string;
1141
+ beneficiary_type: BankBeneficiaryType;
1142
+ verification_status: number;
1143
+ bank_address: string;
1144
+ state_region: string;
1145
+ }[];
1146
+ geo_coordinates: IGeoCoordinates;
1147
+ result: any;
1148
+ info: any;
1149
+ personal_info: any;
1150
+ address: any;
1151
+ addresses: any;
1152
+ email: any;
1153
+ phone: any;
1154
+ security: any;
1155
+ preferences: any;
1156
+ identification: any;
1157
+ credit_card: any;
1158
+ notification: any;
1159
+ documents: any;
1160
+ currency: any;
1161
+ credit_limit: any;
1162
+ account: any;
1163
+ group: any;
1164
+ terms_conditions: any;
1165
+ device_info: any;
1166
+ device: any;
1167
+ device_history: any;
1168
+ commerce: any;
1169
+ external_auth: any;
1170
+ validation_data: any;
1171
+ relationship: any;
1172
+ custom_field: any;
1173
+ history: any;
1174
+ access_rule: any;
1175
+ ticket: any;
1176
+ general_requirements: any;
1177
+ organization: any;
1178
+ authentication_data: any;
1179
+ crypto_address: any;
1180
+ activity: any;
1181
+ notes: any;
1182
+ last_activity: any;
1183
+ authentication: any;
1184
+ validate: any;
1185
+ function_code: any;
1186
+ response_time: any;
1187
+ time_zone: string;
1188
+ time_zone_name: string;
1189
+ };
1190
+ deleteDataBank: (values: DeleteBankAccountInterFace) => {
1191
+ bank_account: {
1192
+ id: any;
1193
+ }[];
1194
+ geo_coordinates: IGeoCoordinates;
1195
+ result: any;
1196
+ info: any;
1197
+ personal_info: any;
1198
+ address: any;
1199
+ addresses: any;
1200
+ email: any;
1201
+ phone: any;
1202
+ security: any;
1203
+ preferences: any;
1204
+ identification: any;
1205
+ credit_card: any;
1206
+ notification: any;
1207
+ documents: any;
1208
+ currency: any;
1209
+ credit_limit: any;
1210
+ account: any;
1211
+ group: any;
1212
+ terms_conditions: any;
1213
+ device_info: any;
1214
+ device: any;
1215
+ device_history: any;
1216
+ commerce: any;
1217
+ external_auth: any;
1218
+ validation_data: any;
1219
+ relationship: any;
1220
+ custom_field: any;
1221
+ history: any;
1222
+ access_rule: any;
1223
+ ticket: any;
1224
+ general_requirements: any;
1225
+ organization: any;
1226
+ authentication_data: any;
1227
+ crypto_address: any;
1228
+ activity: any;
1229
+ notes: any;
1230
+ last_activity: any;
1231
+ authentication: any;
1232
+ validate: any;
1233
+ function_code: any;
1234
+ response_time: any;
1235
+ time_zone: string;
1236
+ time_zone_name: string;
1237
+ };
1238
+ primaryDataBank: (values: MakeBankAccountPrimaryInterFace) => {
1239
+ bank_account: {
1240
+ id: number;
1241
+ is_primary: number;
1242
+ }[];
1243
+ geo_coordinates: IGeoCoordinates;
1244
+ result: any;
1245
+ info: any;
1246
+ personal_info: any;
1247
+ address: any;
1248
+ addresses: any;
1249
+ email: any;
1250
+ phone: any;
1251
+ security: any;
1252
+ preferences: any;
1253
+ identification: any;
1254
+ credit_card: any;
1255
+ notification: any;
1256
+ documents: any;
1257
+ currency: any;
1258
+ credit_limit: any;
1259
+ account: any;
1260
+ group: any;
1261
+ terms_conditions: any;
1262
+ device_info: any;
1263
+ device: any;
1264
+ device_history: any;
1265
+ commerce: any;
1266
+ external_auth: any;
1267
+ validation_data: any;
1268
+ relationship: any;
1269
+ custom_field: any;
1270
+ history: any;
1271
+ access_rule: any;
1272
+ ticket: any;
1273
+ general_requirements: any;
1274
+ organization: any;
1275
+ authentication_data: any;
1276
+ crypto_address: any;
1277
+ activity: any;
1278
+ notes: any;
1279
+ last_activity: any;
1280
+ authentication: any;
1281
+ validate: any;
1282
+ function_code: any;
1283
+ response_time: any;
1284
+ time_zone: string;
1285
+ time_zone_name: string;
1286
+ };
1287
+ };
1288
+ dataIdentification: () => {
1289
+ createDataIdentification: (values: CreateIdentificationInterface) => {
1290
+ identification: {
1291
+ type: number;
1292
+ country_of_issue: string;
1293
+ country_of_residence: string;
1294
+ issue_date: string;
1295
+ expiry_date: string;
1296
+ number: string;
1297
+ verification_status: number;
1298
+ }[];
1299
+ geo_coordinates: IGeoCoordinates;
1300
+ result: any;
1301
+ info: any;
1302
+ personal_info: any;
1303
+ address: any;
1304
+ addresses: any;
1305
+ email: any;
1306
+ phone: any;
1307
+ security: any;
1308
+ preferences: any;
1309
+ bank_account: any;
1310
+ credit_card: any;
1311
+ notification: any;
1312
+ documents: any;
1313
+ currency: any;
1314
+ credit_limit: any;
1315
+ account: any;
1316
+ group: any;
1317
+ terms_conditions: any;
1318
+ device_info: any;
1319
+ device: any;
1320
+ device_history: any;
1321
+ commerce: any;
1322
+ external_auth: any;
1323
+ validation_data: any;
1324
+ relationship: any;
1325
+ custom_field: any;
1326
+ history: any;
1327
+ access_rule: any;
1328
+ ticket: any;
1329
+ general_requirements: any;
1330
+ organization: any;
1331
+ authentication_data: any;
1332
+ crypto_address: any;
1333
+ activity: any;
1334
+ notes: any;
1335
+ last_activity: any;
1336
+ authentication: any;
1337
+ validate: any;
1338
+ function_code: any;
1339
+ response_time: any;
1340
+ time_zone: string;
1341
+ time_zone_name: string;
1342
+ };
1343
+ updateDataIdentification: (values: UpdateIdentificationInterface) => {
1344
+ identification: {
1345
+ id: number;
1346
+ type: number;
1347
+ country_of_issue: string;
1348
+ country_of_residence: string;
1349
+ issue_date: string;
1350
+ expiry_date: string;
1351
+ number: string;
1352
+ verification_status: number;
1353
+ }[];
1354
+ geo_coordinates: IGeoCoordinates;
1355
+ result: any;
1356
+ info: any;
1357
+ personal_info: any;
1358
+ address: any;
1359
+ addresses: any;
1360
+ email: any;
1361
+ phone: any;
1362
+ security: any;
1363
+ preferences: any;
1364
+ bank_account: any;
1365
+ credit_card: any;
1366
+ notification: any;
1367
+ documents: any;
1368
+ currency: any;
1369
+ credit_limit: any;
1370
+ account: any;
1371
+ group: any;
1372
+ terms_conditions: any;
1373
+ device_info: any;
1374
+ device: any;
1375
+ device_history: any;
1376
+ commerce: any;
1377
+ external_auth: any;
1378
+ validation_data: any;
1379
+ relationship: any;
1380
+ custom_field: any;
1381
+ history: any;
1382
+ access_rule: any;
1383
+ ticket: any;
1384
+ general_requirements: any;
1385
+ organization: any;
1386
+ authentication_data: any;
1387
+ crypto_address: any;
1388
+ activity: any;
1389
+ notes: any;
1390
+ last_activity: any;
1391
+ authentication: any;
1392
+ validate: any;
1393
+ function_code: any;
1394
+ response_time: any;
1395
+ time_zone: string;
1396
+ time_zone_name: string;
1397
+ };
1398
+ deleteDataIdentification: (values: DeleteIdentificationInterface) => {
1399
+ identification: {
1400
+ id: any;
1401
+ }[];
1402
+ geo_coordinates: IGeoCoordinates;
1403
+ result: any;
1404
+ info: any;
1405
+ personal_info: any;
1406
+ address: any;
1407
+ addresses: any;
1408
+ email: any;
1409
+ phone: any;
1410
+ security: any;
1411
+ preferences: any;
1412
+ bank_account: any;
1413
+ credit_card: any;
1414
+ notification: any;
1415
+ documents: any;
1416
+ currency: any;
1417
+ credit_limit: any;
1418
+ account: any;
1419
+ group: any;
1420
+ terms_conditions: any;
1421
+ device_info: any;
1422
+ device: any;
1423
+ device_history: any;
1424
+ commerce: any;
1425
+ external_auth: any;
1426
+ validation_data: any;
1427
+ relationship: any;
1428
+ custom_field: any;
1429
+ history: any;
1430
+ access_rule: any;
1431
+ ticket: any;
1432
+ general_requirements: any;
1433
+ organization: any;
1434
+ authentication_data: any;
1435
+ crypto_address: any;
1436
+ activity: any;
1437
+ notes: any;
1438
+ last_activity: any;
1439
+ authentication: any;
1440
+ validate: any;
1441
+ function_code: any;
1442
+ response_time: any;
1443
+ time_zone: string;
1444
+ time_zone_name: string;
1445
+ };
1446
+ };
1447
+ dataDocument: (values: CreateDocumentInterface) => {
1448
+ info: {
1449
+ subject: string;
1450
+ entity: number;
1451
+ entity_id: string;
1452
+ type: string | number;
1453
+ };
1454
+ attachment: any;
1455
+ geo_coordinates: IGeoCoordinates;
1456
+ result: any;
1457
+ personal_info: any;
1458
+ address: any;
1459
+ addresses: any;
1460
+ email: any;
1461
+ phone: any;
1462
+ security: any;
1463
+ preferences: any;
1464
+ identification: any;
1465
+ bank_account: any;
1466
+ credit_card: any;
1467
+ notification: any;
1468
+ documents: any;
1469
+ currency: any;
1470
+ credit_limit: any;
1471
+ account: any;
1472
+ group: any;
1473
+ terms_conditions: any;
1474
+ device_info: any;
1475
+ device: any;
1476
+ device_history: any;
1477
+ commerce: any;
1478
+ external_auth: any;
1479
+ validation_data: any;
1480
+ relationship: any;
1481
+ custom_field: any;
1482
+ history: any;
1483
+ access_rule: any;
1484
+ ticket: any;
1485
+ general_requirements: any;
1486
+ organization: any;
1487
+ authentication_data: any;
1488
+ crypto_address: any;
1489
+ activity: any;
1490
+ notes: any;
1491
+ last_activity: any;
1492
+ authentication: any;
1493
+ validate: any;
1494
+ function_code: any;
1495
+ response_time: any;
1496
+ time_zone: string;
1497
+ time_zone_name: string;
1498
+ };
1499
+ dataPersonalInfo: () => {
1500
+ updateDataPersonalInfo: (values: UpdatePersonalInfoInterface) => {
1501
+ personal_info: {
1502
+ first_name: string;
1503
+ last_name: string;
1504
+ gender: string;
1505
+ date_of_birth: string;
1506
+ };
1507
+ geo_coordinates: IGeoCoordinates;
1508
+ result: any;
1509
+ info: any;
1510
+ address: any;
1511
+ addresses: any;
1512
+ email: any;
1513
+ phone: any;
1514
+ security: any;
1515
+ preferences: any;
1516
+ identification: any;
1517
+ bank_account: any;
1518
+ credit_card: any;
1519
+ notification: any;
1520
+ documents: any;
1521
+ currency: any;
1522
+ credit_limit: any;
1523
+ account: any;
1524
+ group: any;
1525
+ terms_conditions: any;
1526
+ device_info: any;
1527
+ device: any;
1528
+ device_history: any;
1529
+ commerce: any;
1530
+ external_auth: any;
1531
+ validation_data: any;
1532
+ relationship: any;
1533
+ custom_field: any;
1534
+ history: any;
1535
+ access_rule: any;
1536
+ ticket: any;
1537
+ general_requirements: any;
1538
+ organization: any;
1539
+ authentication_data: any;
1540
+ crypto_address: any;
1541
+ activity: any;
1542
+ notes: any;
1543
+ last_activity: any;
1544
+ authentication: any;
1545
+ validate: any;
1546
+ function_code: any;
1547
+ response_time: any;
1548
+ time_zone: string;
1549
+ time_zone_name: string;
1550
+ };
1551
+ updateProfilePicture: (values: UpdateProfilePictureInterface) => {
1552
+ info: {
1553
+ type: number;
1554
+ subject: string;
1555
+ };
1556
+ attachment: {
1557
+ file_name: string;
1558
+ file_extension: string;
1559
+ content: any;
1560
+ }[];
1561
+ geo_coordinates: IGeoCoordinates;
1562
+ result: any;
1563
+ personal_info: any;
1564
+ address: any;
1565
+ addresses: any;
1566
+ email: any;
1567
+ phone: any;
1568
+ security: any;
1569
+ preferences: any;
1570
+ identification: any;
1571
+ bank_account: any;
1572
+ credit_card: any;
1573
+ notification: any;
1574
+ documents: any;
1575
+ currency: any;
1576
+ credit_limit: any;
1577
+ account: any;
1578
+ group: any;
1579
+ terms_conditions: any;
1580
+ device_info: any;
1581
+ device: any;
1582
+ device_history: any;
1583
+ commerce: any;
1584
+ external_auth: any;
1585
+ validation_data: any;
1586
+ relationship: any;
1587
+ custom_field: any;
1588
+ history: any;
1589
+ access_rule: any;
1590
+ ticket: any;
1591
+ general_requirements: any;
1592
+ organization: any;
1593
+ authentication_data: any;
1594
+ crypto_address: any;
1595
+ activity: any;
1596
+ notes: any;
1597
+ last_activity: any;
1598
+ authentication: any;
1599
+ validate: any;
1600
+ function_code: any;
1601
+ response_time: any;
1602
+ time_zone: string;
1603
+ time_zone_name: string;
1604
+ };
1605
+ };
1606
+ dataSecurity: () => {
1607
+ resetDataPassword: (values: ResetPasswordInterface) => {
1608
+ reset_security_data: {
1609
+ reset_password: {
1610
+ current_password: string;
1611
+ new_password: string;
1612
+ };
1613
+ };
1614
+ info: {
1615
+ type: string;
1616
+ };
1617
+ authentication: {
1618
+ type: number;
1619
+ code: string;
1620
+ }[];
1621
+ geo_coordinates: IGeoCoordinates;
1622
+ result: any;
1623
+ personal_info: any;
1624
+ address: any;
1625
+ addresses: any;
1626
+ email: any;
1627
+ phone: any;
1628
+ security: any;
1629
+ preferences: any;
1630
+ identification: any;
1631
+ bank_account: any;
1632
+ credit_card: any;
1633
+ notification: any;
1634
+ documents: any;
1635
+ currency: any;
1636
+ credit_limit: any;
1637
+ account: any;
1638
+ group: any;
1639
+ terms_conditions: any;
1640
+ device_info: any;
1641
+ device: any;
1642
+ device_history: any;
1643
+ commerce: any;
1644
+ external_auth: any;
1645
+ validation_data: any;
1646
+ relationship: any;
1647
+ custom_field: any;
1648
+ history: any;
1649
+ access_rule: any;
1650
+ ticket: any;
1651
+ general_requirements: any;
1652
+ organization: any;
1653
+ authentication_data: any;
1654
+ crypto_address: any;
1655
+ activity: any;
1656
+ notes: any;
1657
+ last_activity: any;
1658
+ validate: any;
1659
+ function_code: any;
1660
+ response_time: any;
1661
+ time_zone: string;
1662
+ time_zone_name: string;
1663
+ };
1664
+ resetDataQuestion: (values: ResetSecurityQuestionsInterface) => {
1665
+ reset_security_data: {
1666
+ reset_security_questions: {
1667
+ current_password: string;
1668
+ secret_question_1: string;
1669
+ secret_answer_1: string;
1670
+ secret_question_2: string;
1671
+ secret_answer_2: string;
1672
+ };
1673
+ };
1674
+ info: {
1675
+ type: string;
1676
+ };
1677
+ authentication: {
1678
+ type: number;
1679
+ code: string;
1680
+ }[];
1681
+ geo_coordinates: IGeoCoordinates;
1682
+ result: any;
1683
+ personal_info: any;
1684
+ address: any;
1685
+ addresses: any;
1686
+ email: any;
1687
+ phone: any;
1688
+ security: any;
1689
+ preferences: any;
1690
+ identification: any;
1691
+ bank_account: any;
1692
+ credit_card: any;
1693
+ notification: any;
1694
+ documents: any;
1695
+ currency: any;
1696
+ credit_limit: any;
1697
+ account: any;
1698
+ group: any;
1699
+ terms_conditions: any;
1700
+ device_info: any;
1701
+ device: any;
1702
+ device_history: any;
1703
+ commerce: any;
1704
+ external_auth: any;
1705
+ validation_data: any;
1706
+ relationship: any;
1707
+ custom_field: any;
1708
+ history: any;
1709
+ access_rule: any;
1710
+ ticket: any;
1711
+ general_requirements: any;
1712
+ organization: any;
1713
+ authentication_data: any;
1714
+ crypto_address: any;
1715
+ activity: any;
1716
+ notes: any;
1717
+ last_activity: any;
1718
+ validate: any;
1719
+ function_code: any;
1720
+ response_time: any;
1721
+ time_zone: string;
1722
+ time_zone_name: string;
1723
+ };
1724
+ changeDataSecurityCode: (values: ChangeUserSecurityCodeInterface) => {
1725
+ reset_security_data: {
1726
+ reset_security_code: {
1727
+ current_password: string;
1728
+ new_security_code: string;
1729
+ };
1730
+ };
1731
+ info: {
1732
+ type: string;
1733
+ };
1734
+ authentication: {
1735
+ type: number;
1736
+ code: string;
1737
+ }[];
1738
+ geo_coordinates: IGeoCoordinates;
1739
+ result: any;
1740
+ personal_info: any;
1741
+ address: any;
1742
+ addresses: any;
1743
+ email: any;
1744
+ phone: any;
1745
+ security: any;
1746
+ preferences: any;
1747
+ identification: any;
1748
+ bank_account: any;
1749
+ credit_card: any;
1750
+ notification: any;
1751
+ documents: any;
1752
+ currency: any;
1753
+ credit_limit: any;
1754
+ account: any;
1755
+ group: any;
1756
+ terms_conditions: any;
1757
+ device_info: any;
1758
+ device: any;
1759
+ device_history: any;
1760
+ commerce: any;
1761
+ external_auth: any;
1762
+ validation_data: any;
1763
+ relationship: any;
1764
+ custom_field: any;
1765
+ history: any;
1766
+ access_rule: any;
1767
+ ticket: any;
1768
+ general_requirements: any;
1769
+ organization: any;
1770
+ authentication_data: any;
1771
+ crypto_address: any;
1772
+ activity: any;
1773
+ notes: any;
1774
+ last_activity: any;
1775
+ validate: any;
1776
+ function_code: any;
1777
+ response_time: any;
1778
+ time_zone: string;
1779
+ time_zone_name: string;
1780
+ };
1781
+ updateDataUserPreferences: (values: UpdateUserPreferencesInterface) => {
1782
+ preferences: {
1783
+ preferred_language_code: string;
1784
+ enable_promotion_notification: string;
1785
+ enable_sms_notification: string;
1786
+ enable_push_notification: string;
1787
+ };
1788
+ geo_coordinates: IGeoCoordinates;
1789
+ result: any;
1790
+ info: any;
1791
+ personal_info: any;
1792
+ address: any;
1793
+ addresses: any;
1794
+ email: any;
1795
+ phone: any;
1796
+ security: any;
1797
+ identification: any;
1798
+ bank_account: any;
1799
+ credit_card: any;
1800
+ notification: any;
1801
+ documents: any;
1802
+ currency: any;
1803
+ credit_limit: any;
1804
+ account: any;
1805
+ group: any;
1806
+ terms_conditions: any;
1807
+ device_info: any;
1808
+ device: any;
1809
+ device_history: any;
1810
+ commerce: any;
1811
+ external_auth: any;
1812
+ validation_data: any;
1813
+ relationship: any;
1814
+ custom_field: any;
1815
+ history: any;
1816
+ access_rule: any;
1817
+ ticket: any;
1818
+ general_requirements: any;
1819
+ organization: any;
1820
+ authentication_data: any;
1821
+ crypto_address: any;
1822
+ activity: any;
1823
+ notes: any;
1824
+ last_activity: any;
1825
+ authentication: any;
1826
+ validate: any;
1827
+ function_code: any;
1828
+ response_time: any;
1829
+ time_zone: string;
1830
+ time_zone_name: string;
1831
+ };
1832
+ dataValidateSecurityCode: (values: ValidateSecurityCodeInterface) => {
1833
+ validate_data: {
1834
+ security_code: string;
1835
+ };
1836
+ info: {
1837
+ type: string;
1838
+ };
1839
+ geo_coordinates: IGeoCoordinates;
1840
+ result: any;
1841
+ personal_info: any;
1842
+ address: any;
1843
+ addresses: any;
1844
+ email: any;
1845
+ phone: any;
1846
+ security: any;
1847
+ preferences: any;
1848
+ identification: any;
1849
+ bank_account: any;
1850
+ credit_card: any;
1851
+ notification: any;
1852
+ documents: any;
1853
+ currency: any;
1854
+ credit_limit: any;
1855
+ account: any;
1856
+ group: any;
1857
+ terms_conditions: any;
1858
+ device_info: any;
1859
+ device: any;
1860
+ device_history: any;
1861
+ commerce: any;
1862
+ external_auth: any;
1863
+ validation_data: any;
1864
+ relationship: any;
1865
+ custom_field: any;
1866
+ history: any;
1867
+ access_rule: any;
1868
+ ticket: any;
1869
+ general_requirements: any;
1870
+ organization: any;
1871
+ authentication_data: any;
1872
+ crypto_address: any;
1873
+ activity: any;
1874
+ notes: any;
1875
+ last_activity: any;
1876
+ authentication: any;
1877
+ validate: any;
1878
+ function_code: any;
1879
+ response_time: any;
1880
+ time_zone: string;
1881
+ time_zone_name: string;
1882
+ };
1883
+ dataEnrollGoogleAuth: () => {
1884
+ authentication_data: {
1885
+ type: number;
1886
+ }[];
1887
+ result: any;
1888
+ info: any;
1889
+ personal_info: any;
1890
+ address: any;
1891
+ addresses: any;
1892
+ email: any;
1893
+ phone: any;
1894
+ security: any;
1895
+ preferences: any;
1896
+ identification: any;
1897
+ bank_account: any;
1898
+ credit_card: any;
1899
+ notification: any;
1900
+ documents: any;
1901
+ currency: any;
1902
+ credit_limit: any;
1903
+ account: any;
1904
+ group: any;
1905
+ terms_conditions: any;
1906
+ device_info: any;
1907
+ device: any;
1908
+ device_history: any;
1909
+ commerce: any;
1910
+ external_auth: any;
1911
+ validation_data: any;
1912
+ relationship: any;
1913
+ geo_coordinates: any;
1914
+ custom_field: any;
1915
+ history: any;
1916
+ access_rule: any;
1917
+ ticket: any;
1918
+ general_requirements: any;
1919
+ organization: any;
1920
+ crypto_address: any;
1921
+ activity: any;
1922
+ notes: any;
1923
+ last_activity: any;
1924
+ authentication: any;
1925
+ validate: any;
1926
+ function_code: any;
1927
+ response_time: any;
1928
+ time_zone: string;
1929
+ time_zone_name: string;
1930
+ };
1931
+ dataActivateGoogleAuth: (values: ActivateGoogleAuthInterface) => {
1932
+ authentication_data: {
1933
+ type: number;
1934
+ code: string;
1935
+ }[];
1936
+ geo_coordinates: IGeoCoordinates;
1937
+ result: any;
1938
+ info: any;
1939
+ personal_info: any;
1940
+ address: any;
1941
+ addresses: any;
1942
+ email: any;
1943
+ phone: any;
1944
+ security: any;
1945
+ preferences: any;
1946
+ identification: any;
1947
+ bank_account: any;
1948
+ credit_card: any;
1949
+ notification: any;
1950
+ documents: any;
1951
+ currency: any;
1952
+ credit_limit: any;
1953
+ account: any;
1954
+ group: any;
1955
+ terms_conditions: any;
1956
+ device_info: any;
1957
+ device: any;
1958
+ device_history: any;
1959
+ commerce: any;
1960
+ external_auth: any;
1961
+ validation_data: any;
1962
+ relationship: any;
1963
+ custom_field: any;
1964
+ history: any;
1965
+ access_rule: any;
1966
+ ticket: any;
1967
+ general_requirements: any;
1968
+ organization: any;
1969
+ crypto_address: any;
1970
+ activity: any;
1971
+ notes: any;
1972
+ last_activity: any;
1973
+ authentication: any;
1974
+ validate: any;
1975
+ function_code: any;
1976
+ response_time: any;
1977
+ time_zone: string;
1978
+ time_zone_name: string;
1979
+ };
1980
+ dataDeleteGoogleAuth: (values: DeleteGoogleAuthInterface) => {
1981
+ authentication: {
1982
+ type: number;
1983
+ code: string;
1984
+ }[];
1985
+ geo_coordinates: IGeoCoordinates;
1986
+ };
1987
+ };
1988
+ dataValidate: () => {
1989
+ dataValidatePhone: (values: ValidateLimitedPhoneInterface) => {
1990
+ info: {
1991
+ type: number;
1992
+ };
1993
+ validate_data: {
1994
+ phone: {
1995
+ country_code: string;
1996
+ number: string;
1997
+ };
1998
+ };
1999
+ geo_coordinates: IGeoCoordinates;
2000
+ result: any;
2001
+ personal_info: any;
2002
+ address: any;
2003
+ addresses: any;
2004
+ email: any;
2005
+ phone: any;
2006
+ security: any;
2007
+ preferences: any;
2008
+ identification: any;
2009
+ bank_account: any;
2010
+ credit_card: any;
2011
+ notification: any;
2012
+ documents: any;
2013
+ currency: any;
2014
+ credit_limit: any;
2015
+ account: any;
2016
+ group: any;
2017
+ terms_conditions: any;
2018
+ device_info: any;
2019
+ device: any;
2020
+ device_history: any;
2021
+ commerce: any;
2022
+ external_auth: any;
2023
+ validation_data: any;
2024
+ relationship: any;
2025
+ custom_field: any;
2026
+ history: any;
2027
+ access_rule: any;
2028
+ ticket: any;
2029
+ general_requirements: any;
2030
+ organization: any;
2031
+ authentication_data: any;
2032
+ crypto_address: any;
2033
+ activity: any;
2034
+ notes: any;
2035
+ last_activity: any;
2036
+ authentication: any;
2037
+ validate: any;
2038
+ function_code: any;
2039
+ response_time: any;
2040
+ time_zone: string;
2041
+ time_zone_name: string;
2042
+ };
2043
+ dataVerifyEmail: (values: VerifyLimitedEmailInterface) => {
2044
+ info: {
2045
+ type: number;
2046
+ };
2047
+ verify_data: {
2048
+ email: {
2049
+ address: string;
2050
+ };
2051
+ };
2052
+ geo_coordinates: IGeoCoordinates;
2053
+ result: any;
2054
+ personal_info: any;
2055
+ address: any;
2056
+ addresses: any;
2057
+ email: any;
2058
+ phone: any;
2059
+ security: any;
2060
+ preferences: any;
2061
+ identification: any;
2062
+ bank_account: any;
2063
+ credit_card: any;
2064
+ notification: any;
2065
+ documents: any;
2066
+ currency: any;
2067
+ credit_limit: any;
2068
+ account: any;
2069
+ group: any;
2070
+ terms_conditions: any;
2071
+ device_info: any;
2072
+ device: any;
2073
+ device_history: any;
2074
+ commerce: any;
2075
+ external_auth: any;
2076
+ validation_data: any;
2077
+ relationship: any;
2078
+ custom_field: any;
2079
+ history: any;
2080
+ access_rule: any;
2081
+ ticket: any;
2082
+ general_requirements: any;
2083
+ organization: any;
2084
+ authentication_data: any;
2085
+ crypto_address: any;
2086
+ activity: any;
2087
+ notes: any;
2088
+ last_activity: any;
2089
+ authentication: any;
2090
+ validate: any;
2091
+ function_code: any;
2092
+ response_time: any;
2093
+ time_zone: string;
2094
+ time_zone_name: string;
2095
+ };
2096
+ dataVerifyPhone: (values: VerifyLimitedPhoneInterface) => {
2097
+ info: {
2098
+ type: number;
2099
+ };
2100
+ verify_data: {
2101
+ phone: {
2102
+ number: string;
2103
+ };
2104
+ };
2105
+ geo_coordinates: IGeoCoordinates;
2106
+ result: any;
2107
+ personal_info: any;
2108
+ address: any;
2109
+ addresses: any;
2110
+ email: any;
2111
+ phone: any;
2112
+ security: any;
2113
+ preferences: any;
2114
+ identification: any;
2115
+ bank_account: any;
2116
+ credit_card: any;
2117
+ notification: any;
2118
+ documents: any;
2119
+ currency: any;
2120
+ credit_limit: any;
2121
+ account: any;
2122
+ group: any;
2123
+ terms_conditions: any;
2124
+ device_info: any;
2125
+ device: any;
2126
+ device_history: any;
2127
+ commerce: any;
2128
+ external_auth: any;
2129
+ validation_data: any;
2130
+ relationship: any;
2131
+ custom_field: any;
2132
+ history: any;
2133
+ access_rule: any;
2134
+ ticket: any;
2135
+ general_requirements: any;
2136
+ organization: any;
2137
+ authentication_data: any;
2138
+ crypto_address: any;
2139
+ activity: any;
2140
+ notes: any;
2141
+ last_activity: any;
2142
+ authentication: any;
2143
+ validate: any;
2144
+ function_code: any;
2145
+ response_time: any;
2146
+ time_zone: string;
2147
+ time_zone_name: string;
2148
+ };
2149
+ dataConfirmEmail: (values: ConfirmLimitedEmailInterface) => {
2150
+ info: {
2151
+ type: number;
2152
+ };
2153
+ verify_data: {
2154
+ email: {
2155
+ address: string;
2156
+ };
2157
+ };
2158
+ confirm_data: {
2159
+ verification_code: string;
2160
+ };
2161
+ geo_coordinates: IGeoCoordinates;
2162
+ result: any;
2163
+ personal_info: any;
2164
+ address: any;
2165
+ addresses: any;
2166
+ email: any;
2167
+ phone: any;
2168
+ security: any;
2169
+ preferences: any;
2170
+ identification: any;
2171
+ bank_account: any;
2172
+ credit_card: any;
2173
+ notification: any;
2174
+ documents: any;
2175
+ currency: any;
2176
+ credit_limit: any;
2177
+ account: any;
2178
+ group: any;
2179
+ terms_conditions: any;
2180
+ device_info: any;
2181
+ device: any;
2182
+ device_history: any;
2183
+ commerce: any;
2184
+ external_auth: any;
2185
+ validation_data: any;
2186
+ relationship: any;
2187
+ custom_field: any;
2188
+ history: any;
2189
+ access_rule: any;
2190
+ ticket: any;
2191
+ general_requirements: any;
2192
+ organization: any;
2193
+ authentication_data: any;
2194
+ crypto_address: any;
2195
+ activity: any;
2196
+ notes: any;
2197
+ last_activity: any;
2198
+ authentication: any;
2199
+ validate: any;
2200
+ function_code: any;
2201
+ response_time: any;
2202
+ time_zone: string;
2203
+ time_zone_name: string;
2204
+ };
2205
+ dataConfirmPhone: (values: ConfirmLimitedPhoneInterface) => {
2206
+ info: {
2207
+ type: number;
2208
+ };
2209
+ verify_data: {
2210
+ phone: {
2211
+ number: string;
2212
+ };
2213
+ };
2214
+ confirm_data: {
2215
+ verification_code: string;
2216
+ verification_status: number;
2217
+ };
2218
+ geo_coordinates: IGeoCoordinates;
2219
+ result: any;
2220
+ personal_info: any;
2221
+ address: any;
2222
+ addresses: any;
2223
+ email: any;
2224
+ phone: any;
2225
+ security: any;
2226
+ preferences: any;
2227
+ identification: any;
2228
+ bank_account: any;
2229
+ credit_card: any;
2230
+ notification: any;
2231
+ documents: any;
2232
+ currency: any;
2233
+ credit_limit: any;
2234
+ account: any;
2235
+ group: any;
2236
+ terms_conditions: any;
2237
+ device_info: any;
2238
+ device: any;
2239
+ device_history: any;
2240
+ commerce: any;
2241
+ external_auth: any;
2242
+ validation_data: any;
2243
+ relationship: any;
2244
+ custom_field: any;
2245
+ history: any;
2246
+ access_rule: any;
2247
+ ticket: any;
2248
+ general_requirements: any;
2249
+ organization: any;
2250
+ authentication_data: any;
2251
+ crypto_address: any;
2252
+ activity: any;
2253
+ notes: any;
2254
+ last_activity: any;
2255
+ authentication: any;
2256
+ validate: any;
2257
+ function_code: any;
2258
+ response_time: any;
2259
+ time_zone: string;
2260
+ time_zone_name: string;
2261
+ };
2262
+ dataISEmailUsed: (values: IsEmailPresentAndValidInterface) => {
2263
+ info: {
2264
+ type: number;
2265
+ };
2266
+ validate_data: {
2267
+ email: {
2268
+ id: number;
2269
+ address: string;
2270
+ };
2271
+ };
2272
+ geo_coordinates: IGeoCoordinates;
2273
+ result: any;
2274
+ personal_info: any;
2275
+ address: any;
2276
+ addresses: any;
2277
+ email: any;
2278
+ phone: any;
2279
+ security: any;
2280
+ preferences: any;
2281
+ identification: any;
2282
+ bank_account: any;
2283
+ credit_card: any;
2284
+ notification: any;
2285
+ documents: any;
2286
+ currency: any;
2287
+ credit_limit: any;
2288
+ account: any;
2289
+ group: any;
2290
+ terms_conditions: any;
2291
+ device_info: any;
2292
+ device: any;
2293
+ device_history: any;
2294
+ commerce: any;
2295
+ external_auth: any;
2296
+ validation_data: any;
2297
+ relationship: any;
2298
+ custom_field: any;
2299
+ history: any;
2300
+ access_rule: any;
2301
+ ticket: any;
2302
+ general_requirements: any;
2303
+ organization: any;
2304
+ authentication_data: any;
2305
+ crypto_address: any;
2306
+ activity: any;
2307
+ notes: any;
2308
+ last_activity: any;
2309
+ authentication: any;
2310
+ validate: any;
2311
+ function_code: any;
2312
+ response_time: any;
2313
+ time_zone: string;
2314
+ time_zone_name: string;
2315
+ };
2316
+ dataIsPhoneUsed: (values: IsPhonePresentAndValidInterface) => {
2317
+ info: {
2318
+ type: number;
2319
+ };
2320
+ validate_data: {
2321
+ phone: {
2322
+ id: number;
2323
+ number: string;
2324
+ };
2325
+ };
2326
+ geo_coordinates: IGeoCoordinates;
2327
+ result: any;
2328
+ personal_info: any;
2329
+ address: any;
2330
+ addresses: any;
2331
+ email: any;
2332
+ phone: any;
2333
+ security: any;
2334
+ preferences: any;
2335
+ identification: any;
2336
+ bank_account: any;
2337
+ credit_card: any;
2338
+ notification: any;
2339
+ documents: any;
2340
+ currency: any;
2341
+ credit_limit: any;
2342
+ account: any;
2343
+ group: any;
2344
+ terms_conditions: any;
2345
+ device_info: any;
2346
+ device: any;
2347
+ device_history: any;
2348
+ commerce: any;
2349
+ external_auth: any;
2350
+ validation_data: any;
2351
+ relationship: any;
2352
+ custom_field: any;
2353
+ history: any;
2354
+ access_rule: any;
2355
+ ticket: any;
2356
+ general_requirements: any;
2357
+ organization: any;
2358
+ authentication_data: any;
2359
+ crypto_address: any;
2360
+ activity: any;
2361
+ notes: any;
2362
+ last_activity: any;
2363
+ authentication: any;
2364
+ validate: any;
2365
+ function_code: any;
2366
+ response_time: any;
2367
+ time_zone: string;
2368
+ time_zone_name: string;
2369
+ };
2370
+ dataSendOTPEmail: (values: SendOTPEmailInterface) => {
2371
+ info: {
2372
+ type: number;
2373
+ authorization_request_type: number;
2374
+ };
2375
+ verify_data: {
2376
+ email: {
2377
+ address: string;
2378
+ };
2379
+ };
2380
+ geo_coordinates: IGeoCoordinates;
2381
+ result: any;
2382
+ personal_info: any;
2383
+ address: any;
2384
+ addresses: any;
2385
+ email: any;
2386
+ phone: any;
2387
+ security: any;
2388
+ preferences: any;
2389
+ identification: any;
2390
+ bank_account: any;
2391
+ credit_card: any;
2392
+ notification: any;
2393
+ documents: any;
2394
+ currency: any;
2395
+ credit_limit: any;
2396
+ account: any;
2397
+ group: any;
2398
+ terms_conditions: any;
2399
+ device_info: any;
2400
+ device: any;
2401
+ device_history: any;
2402
+ commerce: any;
2403
+ external_auth: any;
2404
+ validation_data: any;
2405
+ relationship: any;
2406
+ custom_field: any;
2407
+ history: any;
2408
+ access_rule: any;
2409
+ ticket: any;
2410
+ general_requirements: any;
2411
+ organization: any;
2412
+ authentication_data: any;
2413
+ crypto_address: any;
2414
+ activity: any;
2415
+ notes: any;
2416
+ last_activity: any;
2417
+ authentication: any;
2418
+ validate: any;
2419
+ function_code: any;
2420
+ response_time: any;
2421
+ time_zone: string;
2422
+ time_zone_name: string;
2423
+ };
2424
+ dataSendOTPPhone: (values: SendOTPPhoneInterface) => {
2425
+ info: {
2426
+ type: number;
2427
+ authorization_request_type: number;
2428
+ };
2429
+ verify_data: {
2430
+ phone: {
2431
+ number: string;
2432
+ };
2433
+ };
2434
+ geo_coordinates: IGeoCoordinates;
2435
+ result: any;
2436
+ personal_info: any;
2437
+ address: any;
2438
+ addresses: any;
2439
+ email: any;
2440
+ phone: any;
2441
+ security: any;
2442
+ preferences: any;
2443
+ identification: any;
2444
+ bank_account: any;
2445
+ credit_card: any;
2446
+ notification: any;
2447
+ documents: any;
2448
+ currency: any;
2449
+ credit_limit: any;
2450
+ account: any;
2451
+ group: any;
2452
+ terms_conditions: any;
2453
+ device_info: any;
2454
+ device: any;
2455
+ device_history: any;
2456
+ commerce: any;
2457
+ external_auth: any;
2458
+ validation_data: any;
2459
+ relationship: any;
2460
+ custom_field: any;
2461
+ history: any;
2462
+ access_rule: any;
2463
+ ticket: any;
2464
+ general_requirements: any;
2465
+ organization: any;
2466
+ authentication_data: any;
2467
+ crypto_address: any;
2468
+ activity: any;
2469
+ notes: any;
2470
+ last_activity: any;
2471
+ authentication: any;
2472
+ validate: any;
2473
+ function_code: any;
2474
+ response_time: any;
2475
+ time_zone: string;
2476
+ time_zone_name: string;
2477
+ };
2478
+ dataValidateForgetPassword: (values: ForgetPasswordValidateInterface) => {
2479
+ validate_data: {
2480
+ email: string;
2481
+ phone: string;
2482
+ additional_security_type: number;
2483
+ additional_security_value: string;
2484
+ };
2485
+ info: {
2486
+ type: number;
2487
+ };
2488
+ geo_coordinates: IGeoCoordinates;
2489
+ result: any;
2490
+ personal_info: any;
2491
+ address: any;
2492
+ addresses: any;
2493
+ email: any;
2494
+ phone: any;
2495
+ security: any;
2496
+ preferences: any;
2497
+ identification: any;
2498
+ bank_account: any;
2499
+ credit_card: any;
2500
+ notification: any;
2501
+ documents: any;
2502
+ currency: any;
2503
+ credit_limit: any;
2504
+ account: any;
2505
+ group: any;
2506
+ terms_conditions: any;
2507
+ device_info: any;
2508
+ device: any;
2509
+ device_history: any;
2510
+ commerce: any;
2511
+ external_auth: any;
2512
+ validation_data: any;
2513
+ relationship: any;
2514
+ custom_field: any;
2515
+ history: any;
2516
+ access_rule: any;
2517
+ ticket: any;
2518
+ general_requirements: any;
2519
+ organization: any;
2520
+ authentication_data: any;
2521
+ crypto_address: any;
2522
+ activity: any;
2523
+ notes: any;
2524
+ last_activity: any;
2525
+ authentication: any;
2526
+ validate: any;
2527
+ function_code: any;
2528
+ response_time: any;
2529
+ time_zone: string;
2530
+ time_zone_name: string;
2531
+ };
2532
+ dataConfirmForgetPassword: (values: ForgetPasswordConfirmInterface) => {
2533
+ confirm_data: {
2534
+ password: string;
2535
+ verification_code: string;
2536
+ };
2537
+ info: {
2538
+ type: number;
2539
+ user_id: string | number;
2540
+ sub_entity: string | number;
2541
+ sub_entity_id: string | number;
2542
+ };
2543
+ geo_coordinates: IGeoCoordinates;
2544
+ result: any;
2545
+ personal_info: any;
2546
+ address: any;
2547
+ addresses: any;
2548
+ email: any;
2549
+ phone: any;
2550
+ security: any;
2551
+ preferences: any;
2552
+ identification: any;
2553
+ bank_account: any;
2554
+ credit_card: any;
2555
+ notification: any;
2556
+ documents: any;
2557
+ currency: any;
2558
+ credit_limit: any;
2559
+ account: any;
2560
+ group: any;
2561
+ terms_conditions: any;
2562
+ device_info: any;
2563
+ device: any;
2564
+ device_history: any;
2565
+ commerce: any;
2566
+ external_auth: any;
2567
+ validation_data: any;
2568
+ relationship: any;
2569
+ custom_field: any;
2570
+ history: any;
2571
+ access_rule: any;
2572
+ ticket: any;
2573
+ general_requirements: any;
2574
+ organization: any;
2575
+ authentication_data: any;
2576
+ crypto_address: any;
2577
+ activity: any;
2578
+ notes: any;
2579
+ last_activity: any;
2580
+ authentication: any;
2581
+ validate: any;
2582
+ function_code: any;
2583
+ response_time: any;
2584
+ time_zone: string;
2585
+ time_zone_name: string;
2586
+ };
2587
+ };
2588
+ dataAccount: () => {
2589
+ dataDoTransaction: (values: doTransactionInterface) => {
2590
+ info: {
2591
+ type: string | number;
2592
+ amount: string;
2593
+ currency: string;
2594
+ notes: string;
2595
+ };
2596
+ account: {
2597
+ info: {
2598
+ id: number;
2599
+ };
2600
+ };
2601
+ validate: string;
2602
+ bank_account: {
2603
+ id: string | number;
2604
+ };
2605
+ geo_coordinates: IGeoCoordinates;
2606
+ result: any;
2607
+ personal_info: any;
2608
+ address: any;
2609
+ addresses: any;
2610
+ email: any;
2611
+ phone: any;
2612
+ security: any;
2613
+ preferences: any;
2614
+ identification: any;
2615
+ credit_card: any;
2616
+ notification: any;
2617
+ documents: any;
2618
+ currency: any;
2619
+ credit_limit: any;
2620
+ group: any;
2621
+ terms_conditions: any;
2622
+ device_info: any;
2623
+ device: any;
2624
+ device_history: any;
2625
+ commerce: any;
2626
+ external_auth: any;
2627
+ validation_data: any;
2628
+ relationship: any;
2629
+ custom_field: any;
2630
+ history: any;
2631
+ access_rule: any;
2632
+ ticket: any;
2633
+ general_requirements: any;
2634
+ organization: any;
2635
+ authentication_data: any;
2636
+ crypto_address: any;
2637
+ activity: any;
2638
+ notes: any;
2639
+ last_activity: any;
2640
+ authentication: any;
2641
+ function_code: any;
2642
+ response_time: any;
2643
+ time_zone: string;
2644
+ time_zone_name: string;
2645
+ };
2646
+ paramGetTransaction: (values: GetTransactionInterface, userId: any) => {
2647
+ user_id: any;
2648
+ status: number;
2649
+ page_size: number;
2650
+ from_date: string;
2651
+ to_date: string;
2652
+ start_index: number;
2653
+ transaction_type: number;
2654
+ account_id: number;
2655
+ classification: string;
2656
+ geo_coordinates: IGeoCoordinates;
2657
+ time_zone: string;
2658
+ };
2659
+ };
2660
+ dataDevice: () => {
2661
+ dataCreateDevice: (values: CreateDeviceInterface) => {
2662
+ device: {
2663
+ type: DeviceType;
2664
+ brand: string;
2665
+ os: any;
2666
+ status: EntityStatus;
2667
+ verification_status: number;
2668
+ installation_id: string;
2669
+ extended_info: {
2670
+ cpu: any;
2671
+ system_language: any;
2672
+ user_agent: any;
2673
+ };
2674
+ }[];
2675
+ authentication: [{
2676
+ type: number;
2677
+ code: string;
2678
+ }];
2679
+ geo_coordinates: IGeoCoordinates;
2680
+ result: any;
2681
+ info: any;
2682
+ personal_info: any;
2683
+ address: any;
2684
+ addresses: any;
2685
+ email: any;
2686
+ phone: any;
2687
+ security: any;
2688
+ preferences: any;
2689
+ identification: any;
2690
+ bank_account: any;
2691
+ credit_card: any;
2692
+ notification: any;
2693
+ documents: any;
2694
+ currency: any;
2695
+ credit_limit: any;
2696
+ account: any;
2697
+ group: any;
2698
+ terms_conditions: any;
2699
+ device_info: any;
2700
+ device_history: any;
2701
+ commerce: any;
2702
+ external_auth: any;
2703
+ validation_data: any;
2704
+ relationship: any;
2705
+ custom_field: any;
2706
+ history: any;
2707
+ access_rule: any;
2708
+ ticket: any;
2709
+ general_requirements: any;
2710
+ organization: any;
2711
+ authentication_data: any;
2712
+ crypto_address: any;
2713
+ activity: any;
2714
+ notes: any;
2715
+ last_activity: any;
2716
+ validate: any;
2717
+ function_code: any;
2718
+ response_time: any;
2719
+ time_zone: string;
2720
+ time_zone_name: string;
2721
+ };
2722
+ dataUpdateDevice: (values: UpdateDeviceInterface) => {
2723
+ device: {
2724
+ id: number;
2725
+ type: DeviceType;
2726
+ status: number;
2727
+ verification_status: number;
2728
+ is_online: boolean;
2729
+ }[];
2730
+ geo_coordinates: IGeoCoordinates;
2731
+ result: any;
2732
+ info: any;
2733
+ personal_info: any;
2734
+ address: any;
2735
+ addresses: any;
2736
+ email: any;
2737
+ phone: any;
2738
+ security: any;
2739
+ preferences: any;
2740
+ identification: any;
2741
+ bank_account: any;
2742
+ credit_card: any;
2743
+ notification: any;
2744
+ documents: any;
2745
+ currency: any;
2746
+ credit_limit: any;
2747
+ account: any;
2748
+ group: any;
2749
+ terms_conditions: any;
2750
+ device_info: any;
2751
+ device_history: any;
2752
+ commerce: any;
2753
+ external_auth: any;
2754
+ validation_data: any;
2755
+ relationship: any;
2756
+ custom_field: any;
2757
+ history: any;
2758
+ access_rule: any;
2759
+ ticket: any;
2760
+ general_requirements: any;
2761
+ organization: any;
2762
+ authentication_data: any;
2763
+ crypto_address: any;
2764
+ activity: any;
2765
+ notes: any;
2766
+ last_activity: any;
2767
+ authentication: any;
2768
+ validate: any;
2769
+ function_code: any;
2770
+ response_time: any;
2771
+ time_zone: string;
2772
+ time_zone_name: string;
2773
+ };
2774
+ dataDeleteDevice: (values: DeleteDeviceInterface) => {
2775
+ device: {
2776
+ id: number;
2777
+ }[];
2778
+ geo_coordinates: IGeoCoordinates;
2779
+ result: any;
2780
+ info: any;
2781
+ personal_info: any;
2782
+ address: any;
2783
+ addresses: any;
2784
+ email: any;
2785
+ phone: any;
2786
+ security: any;
2787
+ preferences: any;
2788
+ identification: any;
2789
+ bank_account: any;
2790
+ credit_card: any;
2791
+ notification: any;
2792
+ documents: any;
2793
+ currency: any;
2794
+ credit_limit: any;
2795
+ account: any;
2796
+ group: any;
2797
+ terms_conditions: any;
2798
+ device_info: any;
2799
+ device_history: any;
2800
+ commerce: any;
2801
+ external_auth: any;
2802
+ validation_data: any;
2803
+ relationship: any;
2804
+ custom_field: any;
2805
+ history: any;
2806
+ access_rule: any;
2807
+ ticket: any;
2808
+ general_requirements: any;
2809
+ organization: any;
2810
+ authentication_data: any;
2811
+ crypto_address: any;
2812
+ activity: any;
2813
+ notes: any;
2814
+ last_activity: any;
2815
+ authentication: any;
2816
+ validate: any;
2817
+ function_code: any;
2818
+ response_time: any;
2819
+ time_zone: string;
2820
+ time_zone_name: string;
2821
+ };
2822
+ dataVerifyDevice: (values: VerifyDeviceInterface) => {
2823
+ info: {
2824
+ type: number;
2825
+ authorization_request_type: AuthorizationOperationRequestType;
2826
+ };
2827
+ verify_data: {
2828
+ device: {
2829
+ id: number;
2830
+ };
2831
+ };
2832
+ geo_coordinates: IGeoCoordinates;
2833
+ result: any;
2834
+ personal_info: any;
2835
+ address: any;
2836
+ addresses: any;
2837
+ email: any;
2838
+ phone: any;
2839
+ security: any;
2840
+ preferences: any;
2841
+ identification: any;
2842
+ bank_account: any;
2843
+ credit_card: any;
2844
+ notification: any;
2845
+ documents: any;
2846
+ currency: any;
2847
+ credit_limit: any;
2848
+ account: any;
2849
+ group: any;
2850
+ terms_conditions: any;
2851
+ device_info: any;
2852
+ device: any;
2853
+ device_history: any;
2854
+ commerce: any;
2855
+ external_auth: any;
2856
+ validation_data: any;
2857
+ relationship: any;
2858
+ custom_field: any;
2859
+ history: any;
2860
+ access_rule: any;
2861
+ ticket: any;
2862
+ general_requirements: any;
2863
+ organization: any;
2864
+ authentication_data: any;
2865
+ crypto_address: any;
2866
+ activity: any;
2867
+ notes: any;
2868
+ last_activity: any;
2869
+ authentication: any;
2870
+ validate: any;
2871
+ function_code: any;
2872
+ response_time: any;
2873
+ time_zone: string;
2874
+ time_zone_name: string;
2875
+ };
2876
+ dataConfirmDevice: (values: ConfirmDeviceInterface) => {
2877
+ info: {
2878
+ type: number;
2879
+ authorization_request_type: AuthorizationOperationRequestType;
2880
+ };
2881
+ verify_data: {
2882
+ device: {
2883
+ id: number;
2884
+ };
2885
+ };
2886
+ confirm_data: {
2887
+ verification_code: string;
2888
+ };
2889
+ geo_coordinates: IGeoCoordinates;
2890
+ result: any;
2891
+ personal_info: any;
2892
+ address: any;
2893
+ addresses: any;
2894
+ email: any;
2895
+ phone: any;
2896
+ security: any;
2897
+ preferences: any;
2898
+ identification: any;
2899
+ bank_account: any;
2900
+ credit_card: any;
2901
+ notification: any;
2902
+ documents: any;
2903
+ currency: any;
2904
+ credit_limit: any;
2905
+ account: any;
2906
+ group: any;
2907
+ terms_conditions: any;
2908
+ device_info: any;
2909
+ device: any;
2910
+ device_history: any;
2911
+ commerce: any;
2912
+ external_auth: any;
2913
+ validation_data: any;
2914
+ relationship: any;
2915
+ custom_field: any;
2916
+ history: any;
2917
+ access_rule: any;
2918
+ ticket: any;
2919
+ general_requirements: any;
2920
+ organization: any;
2921
+ authentication_data: any;
2922
+ crypto_address: any;
2923
+ activity: any;
2924
+ notes: any;
2925
+ last_activity: any;
2926
+ authentication: any;
2927
+ validate: any;
2928
+ function_code: any;
2929
+ response_time: any;
2930
+ time_zone: string;
2931
+ time_zone_name: string;
2932
+ };
2933
+ dataLogoutDevice: (values: LogoutDeviceInterface) => {
2934
+ device: {
2935
+ id: number;
2936
+ }[];
2937
+ geo_coordinates: IGeoCoordinates;
2938
+ result: any;
2939
+ info: any;
2940
+ personal_info: any;
2941
+ address: any;
2942
+ addresses: any;
2943
+ email: any;
2944
+ phone: any;
2945
+ security: any;
2946
+ preferences: any;
2947
+ identification: any;
2948
+ bank_account: any;
2949
+ credit_card: any;
2950
+ notification: any;
2951
+ documents: any;
2952
+ currency: any;
2953
+ credit_limit: any;
2954
+ account: any;
2955
+ group: any;
2956
+ terms_conditions: any;
2957
+ device_info: any;
2958
+ device_history: any;
2959
+ commerce: any;
2960
+ external_auth: any;
2961
+ validation_data: any;
2962
+ relationship: any;
2963
+ custom_field: any;
2964
+ history: any;
2965
+ access_rule: any;
2966
+ ticket: any;
2967
+ general_requirements: any;
2968
+ organization: any;
2969
+ authentication_data: any;
2970
+ crypto_address: any;
2971
+ activity: any;
2972
+ notes: any;
2973
+ last_activity: any;
2974
+ authentication: any;
2975
+ validate: any;
2976
+ function_code: any;
2977
+ response_time: any;
2978
+ time_zone: string;
2979
+ time_zone_name: string;
2980
+ };
2981
+ };
2982
+ dataOrder: () => {
2983
+ dataOrderRequest: (values: orderInterface) => {
2984
+ info: {
2985
+ process_type: string | number;
2986
+ };
2987
+ items: {
2988
+ variant: {
2989
+ type: string;
2990
+ };
2991
+ custom_form_data: {
2992
+ features: {
2993
+ delivery_mobile: string;
2994
+ delivery_email: string;
2995
+ };
2996
+ customer_info: number;
2997
+ };
2998
+ notes: {
2999
+ admin_notes: string;
3000
+ user_notes: string;
3001
+ };
3002
+ }[];
3003
+ payment_method: {
3004
+ type: string;
3005
+ account: {
3006
+ info: {
3007
+ id: string;
3008
+ };
3009
+ };
3010
+ };
3011
+ transaction: {
3012
+ info: {
3013
+ type: string;
3014
+ };
3015
+ };
3016
+ notes: {
3017
+ admin_notes: string;
3018
+ user_notes: string;
3019
+ };
3020
+ validate: string;
3021
+ geo_coordinates: IGeoCoordinates;
3022
+ };
3023
+ };
3024
+ dataOrganization: () => {
3025
+ dataCreateOrganization: (values: CreateOrganizationInterface, userId: string) => {
3026
+ info: {
3027
+ name: string;
3028
+ local_name: string;
3029
+ status: number;
3030
+ verification_status: number;
3031
+ type: number;
3032
+ entity: Entity;
3033
+ entity_id: string;
3034
+ };
3035
+ details: {
3036
+ established_date: string;
3037
+ registration_number: string;
3038
+ trade_license_number: string;
3039
+ };
3040
+ address: {
3041
+ type: AddressType;
3042
+ is_primary: number;
3043
+ is_billing: number;
3044
+ address_line1: string;
3045
+ address_line2: string;
3046
+ postal_zip_code: string;
3047
+ country_code: string;
3048
+ state_region: string;
3049
+ city_town: string;
3050
+ status: number;
3051
+ }[];
3052
+ geo_coordinates: IGeoCoordinates;
3053
+ result: any;
3054
+ personal_info: any;
3055
+ addresses: any;
3056
+ email: any;
3057
+ phone: any;
3058
+ security: any;
3059
+ preferences: any;
3060
+ identification: any;
3061
+ bank_account: any;
3062
+ credit_card: any;
3063
+ notification: any;
3064
+ documents: any;
3065
+ currency: any;
3066
+ credit_limit: any;
3067
+ account: any;
3068
+ group: any;
3069
+ terms_conditions: any;
3070
+ device_info: any;
3071
+ device: any;
3072
+ device_history: any;
3073
+ commerce: any;
3074
+ external_auth: any;
3075
+ validation_data: any;
3076
+ relationship: any;
3077
+ custom_field: any;
3078
+ history: any;
3079
+ access_rule: any;
3080
+ ticket: any;
3081
+ general_requirements: any;
3082
+ organization: any;
3083
+ authentication_data: any;
3084
+ crypto_address: any;
3085
+ activity: any;
3086
+ notes: any;
3087
+ last_activity: any;
3088
+ authentication: any;
3089
+ validate: any;
3090
+ function_code: any;
3091
+ response_time: any;
3092
+ time_zone: string;
3093
+ time_zone_name: string;
3094
+ };
3095
+ dataUpdateOrganization: (values: UpdateOrganizationInterface, userId: string | number) => {
3096
+ info: {
3097
+ name: string;
3098
+ local_name: string;
3099
+ status: number;
3100
+ verification_status: number;
3101
+ type: number;
3102
+ entity: Entity;
3103
+ entity_id: string | number;
3104
+ };
3105
+ details: {
3106
+ registration_number: string;
3107
+ trade_license_number: string;
3108
+ };
3109
+ address: {
3110
+ id: string;
3111
+ type: AddressType;
3112
+ is_primary: number;
3113
+ is_billing: number;
3114
+ address_line1: string;
3115
+ address_line2: string;
3116
+ postal_zip_code: string;
3117
+ country_code: string;
3118
+ state_region: string;
3119
+ city_town: string;
3120
+ status: number;
3121
+ }[];
3122
+ geo_coordinates: IGeoCoordinates;
3123
+ result: any;
3124
+ personal_info: any;
3125
+ addresses: any;
3126
+ email: any;
3127
+ phone: any;
3128
+ security: any;
3129
+ preferences: any;
3130
+ identification: any;
3131
+ bank_account: any;
3132
+ credit_card: any;
3133
+ notification: any;
3134
+ documents: any;
3135
+ currency: any;
3136
+ credit_limit: any;
3137
+ account: any;
3138
+ group: any;
3139
+ terms_conditions: any;
3140
+ device_info: any;
3141
+ device: any;
3142
+ device_history: any;
3143
+ commerce: any;
3144
+ external_auth: any;
3145
+ validation_data: any;
3146
+ relationship: any;
3147
+ custom_field: any;
3148
+ history: any;
3149
+ access_rule: any;
3150
+ ticket: any;
3151
+ general_requirements: any;
3152
+ organization: any;
3153
+ authentication_data: any;
3154
+ crypto_address: any;
3155
+ activity: any;
3156
+ notes: any;
3157
+ last_activity: any;
3158
+ authentication: any;
3159
+ validate: any;
3160
+ function_code: any;
3161
+ response_time: any;
3162
+ time_zone: string;
3163
+ time_zone_name: string;
3164
+ };
3165
+ dataCreateDocumentOrganization: (values: CreateDocumentOrganizationInterface) => {
3166
+ info: {
3167
+ type: DocumentType;
3168
+ language: string;
3169
+ subject: string;
3170
+ };
3171
+ attachment: any;
3172
+ custom_field: {
3173
+ "custom notes": string;
3174
+ };
3175
+ validate: string;
3176
+ geo_coordinates: IGeoCoordinates;
3177
+ result: any;
3178
+ personal_info: any;
3179
+ address: any;
3180
+ addresses: any;
3181
+ email: any;
3182
+ phone: any;
3183
+ security: any;
3184
+ preferences: any;
3185
+ identification: any;
3186
+ bank_account: any;
3187
+ credit_card: any;
3188
+ notification: any;
3189
+ documents: any;
3190
+ currency: any;
3191
+ credit_limit: any;
3192
+ account: any;
3193
+ group: any;
3194
+ terms_conditions: any;
3195
+ device_info: any;
3196
+ device: any;
3197
+ device_history: any;
3198
+ commerce: any;
3199
+ external_auth: any;
3200
+ validation_data: any;
3201
+ relationship: any;
3202
+ history: any;
3203
+ access_rule: any;
3204
+ ticket: any;
3205
+ general_requirements: any;
3206
+ organization: any;
3207
+ authentication_data: any;
3208
+ crypto_address: any;
3209
+ activity: any;
3210
+ notes: any;
3211
+ last_activity: any;
3212
+ authentication: any;
3213
+ function_code: any;
3214
+ response_time: any;
3215
+ time_zone: string;
3216
+ time_zone_name: string;
3217
+ };
3218
+ };
3219
+ };
3220
+ export default Data;