squarefi-bff-api-module 1.32.1 → 1.32.2

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 (125) hide show
  1. package/dist/api/auth.d.ts +29 -0
  2. package/dist/api/auth.js +59 -0
  3. package/dist/api/bank-data.d.ts +4 -0
  4. package/dist/api/bank-data.js +6 -0
  5. package/dist/api/counterparties.d.ts +14 -0
  6. package/dist/api/counterparties.js +16 -0
  7. package/dist/api/developer.d.ts +12 -0
  8. package/dist/api/developer.js +12 -0
  9. package/dist/api/exchange.d.ts +14 -0
  10. package/dist/api/exchange.js +20 -0
  11. package/dist/api/frontend.d.ts +11 -0
  12. package/dist/api/frontend.js +11 -0
  13. package/dist/api/index.d.ts +38 -0
  14. package/dist/api/index.js +36 -0
  15. package/dist/api/issuing.d.ts +64 -0
  16. package/dist/api/issuing.js +140 -0
  17. package/dist/api/kyc.d.ts +21 -0
  18. package/dist/api/kyc.js +21 -0
  19. package/dist/api/list.d.ts +16 -0
  20. package/dist/api/list.js +16 -0
  21. package/dist/api/orders.d.ts +49 -0
  22. package/dist/api/orders.js +84 -0
  23. package/dist/api/persona.d.ts +7 -0
  24. package/dist/api/persona.js +7 -0
  25. package/dist/api/storage.d.ts +8 -0
  26. package/dist/api/storage.js +16 -0
  27. package/dist/api/tenants.d.ts +6 -0
  28. package/dist/api/tenants.js +6 -0
  29. package/dist/api/totp.d.ts +17 -0
  30. package/dist/api/totp.js +45 -0
  31. package/{src/api/types/autogen/apiV2.types.ts → dist/api/types/autogen/apiV2.types.d.ts} +0 -1
  32. package/dist/api/types/autogen/apiV2.types.js +5 -0
  33. package/dist/api/types/types.d.ts +2258 -0
  34. package/dist/api/types/types.js +1 -0
  35. package/dist/api/user.d.ts +18 -0
  36. package/dist/api/user.js +18 -0
  37. package/dist/api/virtual-accounts.d.ts +9 -0
  38. package/dist/api/virtual-accounts.js +9 -0
  39. package/dist/api/wallets.d.ts +24 -0
  40. package/dist/api/wallets.js +30 -0
  41. package/dist/constants.d.ts +303 -0
  42. package/dist/constants.js +332 -0
  43. package/dist/hooks/index.js +3 -0
  44. package/dist/hooks/useCalc.d.ts +25 -0
  45. package/dist/hooks/useCalc.js +115 -0
  46. package/dist/hooks/useFileUpload.d.ts +49 -0
  47. package/dist/hooks/useFileUpload.js +100 -0
  48. package/dist/hooks/useSupabaseSubscription/config.d.ts +2 -0
  49. package/dist/hooks/useSupabaseSubscription/config.js +5 -0
  50. package/dist/hooks/useSupabaseSubscription/index.js +2 -0
  51. package/dist/hooks/useSupabaseSubscription/specialized.d.ts +5 -0
  52. package/{src/hooks/useSupabaseSubscription/specialized.ts → dist/hooks/useSupabaseSubscription/specialized.js} +2 -5
  53. package/dist/hooks/useSupabaseSubscription/types.d.ts +16 -0
  54. package/dist/hooks/useSupabaseSubscription/types.js +1 -0
  55. package/dist/hooks/useSupabaseSubscription/useSupabaseSubscription.d.ts +5 -0
  56. package/dist/hooks/useSupabaseSubscription/useSupabaseSubscription.js +37 -0
  57. package/dist/index.d.ts +7 -0
  58. package/dist/utils/apiClientFactory.d.ts +31 -0
  59. package/dist/utils/apiClientFactory.js +138 -0
  60. package/dist/utils/converters.d.ts +1 -0
  61. package/dist/utils/converters.js +1 -0
  62. package/dist/utils/encrypt.d.ts +10 -0
  63. package/dist/utils/encrypt.js +77 -0
  64. package/dist/utils/fileStorage.d.ts +120 -0
  65. package/dist/utils/fileStorage.js +292 -0
  66. package/dist/utils/storage.d.ts +3 -0
  67. package/dist/utils/storage.js +24 -0
  68. package/dist/utils/supabase.d.ts +1 -0
  69. package/dist/utils/supabase.js +12 -0
  70. package/dist/utils/tokensFactory.d.ts +12 -0
  71. package/dist/utils/tokensFactory.js +42 -0
  72. package/package.json +4 -1
  73. package/.env.example +0 -1
  74. package/.husky/pre-commit +0 -2
  75. package/.prettierignore +0 -6
  76. package/.prettierrc +0 -7
  77. package/CHANGELOG.md +0 -1415
  78. package/FIXED_RLS_ERROR.md +0 -146
  79. package/QUICK_TEST.md +0 -127
  80. package/STORAGE_MODULE_SUMMARY.md +0 -228
  81. package/TEST_INSTRUCTIONS.md +0 -122
  82. package/docs/AUTH_TOKEN_USAGE.md +0 -290
  83. package/docs/BACKEND_SERVICE_URL.md +0 -334
  84. package/docs/FRONTEND_STORAGE_GUIDE.md +0 -529
  85. package/docs/STORAGE_MODULE.md +0 -490
  86. package/docs/STORAGE_QUICK_START.md +0 -76
  87. package/scripts/generate-openapi-types.ts +0 -41
  88. package/scripts/supabase-storage-setup.sql +0 -223
  89. package/src/api/auth.ts +0 -78
  90. package/src/api/bank-data.ts +0 -11
  91. package/src/api/counterparties.ts +0 -73
  92. package/src/api/developer.ts +0 -20
  93. package/src/api/exchange.ts +0 -44
  94. package/src/api/frontend.ts +0 -20
  95. package/src/api/index.ts +0 -57
  96. package/src/api/issuing.ts +0 -214
  97. package/src/api/kyc.ts +0 -41
  98. package/src/api/list.ts +0 -26
  99. package/src/api/orders.ts +0 -255
  100. package/src/api/persona.ts +0 -16
  101. package/src/api/storage.ts +0 -24
  102. package/src/api/tenants.ts +0 -8
  103. package/src/api/totp.ts +0 -51
  104. package/src/api/types/types.ts +0 -2820
  105. package/src/api/user.ts +0 -27
  106. package/src/api/virtual-accounts.ts +0 -15
  107. package/src/api/wallets.ts +0 -65
  108. package/src/constants.ts +0 -343
  109. package/src/hooks/useCalc.ts +0 -181
  110. package/src/hooks/useFileUpload.ts +0 -129
  111. package/src/hooks/useSupabaseSubscription/config.ts +0 -7
  112. package/src/hooks/useSupabaseSubscription/types.ts +0 -18
  113. package/src/hooks/useSupabaseSubscription/useSupabaseSubscription.ts +0 -53
  114. package/src/utils/apiClientFactory.ts +0 -194
  115. package/src/utils/converters.ts +0 -1
  116. package/src/utils/encrypt.ts +0 -96
  117. package/src/utils/fileStorage.ts +0 -353
  118. package/src/utils/storage.ts +0 -29
  119. package/src/utils/supabase.ts +0 -16
  120. package/src/utils/tokensFactory.ts +0 -59
  121. package/tsconfig.json +0 -15
  122. package/types.d.ts +0 -11
  123. /package/{src/hooks/index.ts → dist/hooks/index.d.ts} +0 -0
  124. /package/{src/hooks/useSupabaseSubscription/index.ts → dist/hooks/useSupabaseSubscription/index.d.ts} +0 -0
  125. /package/{src/index.ts → dist/index.js} +0 -0
package/CHANGELOG.md DELETED
@@ -1,1415 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [1.31] - 2025-11-19
9
-
10
- ### Changed
11
-
12
- - Updated useFileUpload hook to require bucket and support folder structure for file uploads
13
- - Removed useUserFiles hook
14
-
15
- ## [1.30.10] - 2025-11-19
16
-
17
- ### Added
18
-
19
- - Added balance and total_balance fields to wallet API response
20
-
21
- ## [1.30.9] - 2025-11-17
22
-
23
- ### Changed
24
-
25
- - Updated wallets API to accept query parameters and renamed type generation script in package.json
26
-
27
- ## [1.30.8] - 2025-11-14
28
-
29
- ### Changed
30
-
31
- - Removed outdated HIFI transaction types and added new L2F transaction types for deposits and withdrawals
32
- - Updated OrderType enum to include new deposit and withdrawal types for HIFI and L2F
33
-
34
- ## [1.30.7] - 2025-11-14
35
-
36
- ### Added
37
-
38
- - Added HIFI_ACH_WITHDRAWAL and HIFI_ACH_DEPOSIT to OrderType enum
39
- - Added check-types script to package.json
40
-
41
- ## [1.30.6] - 2025-11-14
42
-
43
- ### Changed
44
-
45
- - Removed DepositInstruction interface and updated deposit_instructions type in VirtualAccountAccountDetails
46
-
47
- ## [1.30.5] - 2025-11-14
48
-
49
- ### Added
50
-
51
- - Added from_crypto_address field to order request parameters in API types
52
-
53
- ## [1.30.4] - 2025-11-14
54
-
55
- ### Added
56
-
57
- - Added OrderTypeKycRail type and updated OrderInfo interface to include order_types_kyc_rails and is_trusted fields
58
-
59
- ## [1.30.3] - 2025-11-14
60
-
61
- ### Added
62
-
63
- - Added OrderPaymentMethod enum and updated OrderInfo interface to use it
64
-
65
- ## [1.30.2] - 2025-11-12
66
-
67
- ### Changed
68
-
69
- - Removed unused OrderMetaExtended type and simplified OrderDetails type definition
70
-
71
- ## [1.30.1] - 2025-11-12
72
-
73
- ### Added
74
-
75
- - Introduced new interfaces for simplified currency and wallet, renamed payment originator types, and extended order meta with additional fields
76
-
77
- ## [1.30.0] - 2025-11-10
78
-
79
- ### Added
80
-
81
- - Added new endpoints for listing orders by wallet and retrieving order details by ID, along with corresponding request/response types
82
-
83
- ## [1.29.3] - 2025-11-07
84
-
85
- ### Added
86
-
87
- - Extended DepositInstruction with CHAPS and FPS instruction types and added sort_code field
88
-
89
- ## [1.29.2] - 2025-11-07
90
-
91
- ### Added
92
-
93
- - Added iban field to ACH interface in API types
94
-
95
- ## [1.29.1] - 2025-11-07
96
-
97
- ### Added
98
-
99
- - Added SEPA_CT instruction type and corresponding SEPA interface to DepositInstruction
100
-
101
- ## [1.29.0] - 2025-10-29
102
-
103
- ### Added
104
-
105
- - Introduced EXCHANGE_OMNI order type and updated related API request/response types
106
- - Added Supabase Storage integration with user-level security and file management features
107
-
108
- ## [1.28.0] - 2025-10-27
109
-
110
- ### Added
111
-
112
- - Added new order types for card withdrawals and updated API types accordingly
113
-
114
- ## [1.27.8] - 2025-10-24
115
-
116
- ### Fixed
117
-
118
- - Corrected typo in WITHDRAWAL_CRYPTO request type by changing 'is_substract' to 'is_subsctract'
119
-
120
- ## [1.27.7] - 2025-10-24
121
-
122
- ### Fixed
123
-
124
- - Corrected typo in WITHDRAWAL_CRYPTO request type by changing 'is_subtract' to 'is_substract'
125
-
126
- ## [1.27.6] - 2025-10-24
127
-
128
- ### Changed
129
-
130
- - Enhanced tenant config type definition and removed deprecated endpoints for improved clarity and type safety
131
-
132
- ## [1.27.5] - 2025-10-23
133
-
134
- ### Fixed
135
-
136
- - Made virtual_account_id optional in OrderWithVirtualAccountParams for improved flexibility
137
-
138
- ## [1.27.4] - 2025-10-23
139
-
140
- ### Changed
141
-
142
- - Version bump for latest changes
143
-
144
- ## [1.27.3] - 2025-10-23
145
-
146
- ### Fixed
147
-
148
- - Simplified SEGREGATED_CRYPTO_TRANSFER request type by using Omit to exclude to_currency_id for better type safety
149
-
150
- ## [1.27.2] - 2025-10-23
151
-
152
- ### Fixed
153
-
154
- - Updated SEGREGATED_CRYPTO_TRANSFER request type to disallow to_currency_id for improved type safety
155
-
156
- ## [1.27.1] - 2025-10-23
157
-
158
- ### Added
159
-
160
- - Added is_reverse flag to transfer order parameters and refined order type definitions for improved clarity
161
-
162
- ## [1.27.0] - 2025-10-23
163
-
164
- ### Changed
165
-
166
- - Removed HIFI_CRYPTO_TRANSFER order type and consolidated order request/response structures for improved maintainability
167
-
168
- ### Added
169
-
170
- - Added new off-ramp order types and corresponding request/response structures for ACH, Wire, SWIFT, and SEPA transactions
171
- - Added Prettier for code formatting and enhanced OrderType enum with new onramp/offramp types
172
-
173
- ## [1.26.14] - 2025-10-22
174
-
175
- ### Fixed
176
-
177
- - Made deposit_instructions optional in VirtualAccount and VirtualAccountDetailItem interfaces
178
-
179
- ## [1.26.13] - 2025-10-22
180
-
181
- ### Changed
182
-
183
- - Enhanced DepositInstruction types with ACH, FEDWIRE, and SWIFT interfaces and restructured related account information
184
-
185
- ## [1.26.12] - 2025-10-03
186
-
187
- ### Changed
188
-
189
- - Version bump for latest changes
190
-
191
- ## [1.26.11] - 2025-10-03
192
-
193
- ### Changed
194
-
195
- - Version bump for latest changes
196
-
197
- ## [1.26.10] - 2025-10-03
198
-
199
- ### Changed
200
-
201
- - Updated VirtualAccount types to include VirtualAccountDetailItem and renamed VirtualAccountListItem
202
-
203
- ## [1.26.9] - 2025-10-03
204
-
205
- ### Added
206
-
207
- - Added VirtualAccountDetailItem type
208
-
209
- ### Changed
210
-
211
- - Formatted type definitions for clarity and added is_enabled field to APIKey interface
212
-
213
- ## [1.26.8] - 2025-09-19
214
-
215
- ### Fixed
216
-
217
- - Corrected type definition for bank data response and updated request field name for consistency
218
-
219
- ## [1.26.7] - 2025-09-18
220
-
221
- ### Changed
222
-
223
- - Version bump for latest changes
224
-
225
- ## [1.26.6] - 2025-09-18
226
-
227
- ### Changed
228
-
229
- - Updated bank data retrieval method to use GET with params for improved clarity and consistency
230
-
231
- ## [1.26.5] - 2025-09-18
232
-
233
- ### Fixed
234
-
235
- - Changed bank data retrieval method from GET to POST for improved data handling
236
-
237
- ## [1.26.4] - 2025-09-18
238
-
239
- ### Added
240
-
241
- - Integrated bank data module and defined TypeScript types for bank data retrieval
242
-
243
- ## [1.26.3] - 2025-09-16
244
-
245
- ### Added
246
-
247
- - Added resume inquiry endpoint and corresponding TypeScript types for enhanced inquiry management
248
-
249
- ## [1.26.2] - 2025-09-16
250
-
251
- ### Changed
252
-
253
- - Deprecated card_limit in favor of max_cards for improved clarity in card management
254
-
255
- ## [1.26.1] - 2025-09-11
256
-
257
- ### Fixed
258
-
259
- - Enhanced unauthorized error handling by adding context check to bypass handler
260
-
261
- ## [1.26.0] - 2025-09-11
262
-
263
- ### Fixed
264
-
265
- - Added context to authentication requests and updated TypeScript configuration to include type definitions
266
-
267
- ## [1.25.6] - 2025-09-10
268
-
269
- ### Added
270
-
271
- - Added new sign-in and sign-up endpoints
272
-
273
- ## [1.25.5] - 2025-09-05
274
-
275
- ### Added
276
-
277
- - Added TOTP status endpoint and response type for improved status tracking
278
-
279
- ## [1.25.4] - 2025-08-22
280
-
281
- ### Changed
282
-
283
- - Updated wallet transaction filter types to use Partial for improved flexibility
284
-
285
- ## [1.25.3] - 2025-08-22
286
-
287
- ### Changed
288
-
289
- - Streamlined wallet transaction filter types by utilizing shared schema for consistency
290
- - Enhanced ExportCsv request type to include comprehensive filter options for wallet transactions
291
-
292
- ## [1.25.2] - 2025-08-20
293
-
294
- ### Fixed
295
-
296
- - Updated channel initialization to use key prop if provided in subscription hooks
297
-
298
- ## [1.25.1] - 2025-08-20
299
-
300
- ### Changed
301
-
302
- - Simplified useWalletTransactionsSubscription and enhanced useSupabaseSubscription with key prop
303
-
304
- ## [1.25.0] - 2025-08-19
305
-
306
- ### Added
307
-
308
- - Real-time functionality with Supabase integration
309
-
310
- ## [1.24.35] - 2025-08-19
311
-
312
- ### Changed
313
-
314
- - Updated CSV export functionality for wallet transactions to use apiClientV2 and enhanced request type
315
-
316
- ## [1.24.34] - 2025-08-14
317
-
318
- ### Changed
319
-
320
- - Enhanced TransactionList request type by adding pagination and filtering options
321
-
322
- ## [1.24.33] - 2025-08-14
323
-
324
- ### Changed
325
-
326
- - Updated response type for WalletsTransactionsController to include total and data fields
327
-
328
- ## [1.24.32] - 2025-08-14
329
-
330
- ### Changed
331
-
332
- - Updated response type for WalletsTransactionsController to include JSON content structure
333
-
334
- ## [1.24.31] - 2025-08-14
335
-
336
- ### Changed
337
-
338
- - Streamlined TransactionList request type by integrating existing operations and removing redundant fields
339
-
340
- ## [1.24.30] - 2025-08-14
341
-
342
- ### Changed
343
-
344
- - Removed unused UserData types and enforced required fields for transaction list request
345
-
346
- ## [1.24.29] - 2025-08-11
347
-
348
- ### Added
349
-
350
- - PURCHASE type to CardTransactionType enum
351
-
352
- ## [1.24.28] - 2025-08-11
353
-
354
- ### Fixed
355
-
356
- - Enforced required fields for transaction list request parameters
357
-
358
- ## [1.24.27] - 2025-08-11
359
-
360
- ### Changed
361
-
362
- - Updated transaction list API types and simplified transaction retrieval parameters
363
-
364
- ## [1.24.26] - 2025-08-08
365
-
366
- ### Added
367
-
368
- - Terms confirmation endpoint and types for KYC process
369
-
370
- ## [1.24.25] - 2025-08-08
371
-
372
- ### Added
373
-
374
- - PAYMENT type to CardTransactionType enum
375
-
376
- ## [1.24.24] - 2025-08-08
377
-
378
- ### Added
379
-
380
- - DECLINED status to CardTransactionStatus enum
381
-
382
- ## [1.24.23] - 2025-08-08
383
-
384
- ### Added
385
-
386
- - COMPLETED status to CardTransactionStatus enum
387
-
388
- ## [1.24.22] - 2025-08-06
389
-
390
- ### Fixed
391
-
392
- - Updated tenant config endpoint and added optional limits property to API types
393
-
394
- ## [1.24.21] - 2025-08-01
395
-
396
- ### Changed
397
-
398
- - Introduced ExtendedKey interface to enhance key management types in API
399
-
400
- ## [1.24.20] - 2025-08-01
401
-
402
- ### Added
403
-
404
- - Integrated frontend module into API structure for enhanced functionality
405
-
406
- ## [1.24.19] - 2025-08-01
407
-
408
- ### Added
409
-
410
- - Frontend access key management types for creating, listing, regenerating, and revoking API keys
411
-
412
- ## [1.24.18] - 2025-08-01
413
-
414
- ### Changed
415
-
416
- - Made is_subtract and is_reverse fields mandatory in API types for consistency
417
-
418
- ## [1.24.17] - 2025-08-01
419
-
420
- ### Fixed
421
-
422
- - Corrected spelling of is_subsctract to is_subtract in API types and updated related calculations in useCalc hook
423
-
424
- ## [1.24.16] - 2025-08-01
425
-
426
- ### Added
427
-
428
- - Optional is_subsctract and is_reverse fields to various transaction types for improved flexibility
429
-
430
- ## [1.24.15] - 2025-07-31
431
-
432
- ### Added
433
-
434
- - Extended account details with optional ACH, RTP, wire, and SWIFT structures for enhanced payment processing
435
-
436
- ## [1.24.14] - 2025-07-31
437
-
438
- ### Changed
439
-
440
- - Enhanced issuing API methods to return ExtendedSubAccountResponse with sub_account_id
441
-
442
- ## [1.24.13] - 2025-07-30
443
-
444
- ### Changed
445
-
446
- - Updated SubAccountResponse type and enhanced balance method to return sub_account_id
447
-
448
- ## [1.24.12] - 2025-07-29
449
-
450
- ### Added
451
-
452
- - consent_text field to card details type for enhanced data handling
453
-
454
- ## [1.24.11] - 2025-07-28
455
-
456
- ### Added
457
-
458
- - New wallet transaction record types for card transfers
459
-
460
- ## [1.24.10] - 2025-07-28
461
-
462
- ### Added
463
-
464
- - RN_CARDS_OFFRAMP order type and corresponding API request/response structures
465
-
466
- ## [1.24.9] - 2025-07-23
467
-
468
- ### Changed
469
-
470
- - Removed unnecessary console logs from apiClientFactory and tokensFactory for cleaner code
471
-
472
- ## [1.24.8] - 2025-07-23
473
-
474
- ### Changed
475
-
476
- - Streamlined refreshTokens by removing miniApp logs and integrating initData restoration
477
-
478
- ## [1.24.7] - 2025-07-23
479
-
480
- ### Fixed
481
-
482
- - Awaited miniApp.mount() in refreshTokens to ensure proper initialization of the SDK
483
-
484
- ## [1.24.6] - 2025-07-23
485
-
486
- ### Added
487
-
488
- - Telegram SDK initialization in tokensFactory
489
-
490
- ## [1.24.4] - 2025-07-23
491
-
492
- ### Added
493
-
494
- - Console logs in tokensFactory for enhanced debugging of initData and miniApp
495
-
496
- ## [1.24.3] - 2025-07-23
497
-
498
- ### Added
499
-
500
- - Additional console logs in refreshTokens for improved debugging of token handling
501
-
502
- ## [1.24.2] - 2025-07-23
503
-
504
- ### Changed
505
-
506
- - Improved error handling in refreshTokens function and added debug logs for better traceability
507
-
508
- ## [1.24.1] - 2025-07-23
509
-
510
- ### Added
511
-
512
- - Console logs for token refresh handling and authentication flow insights
513
-
514
- ## [1.24.0] - 2025-07-23
515
-
516
- ### Changed
517
-
518
- - Enhanced refresh token handling for Telegram sign-in methods in TMA
519
- - Updated Telegram auth types to use request/response structures for improved type safety with optional refresh_token
520
-
521
- ### Added
522
-
523
- - Improved Telegram authentication workflow with better token management
524
-
525
- ## [1.23.5] - 2025-07-22
526
-
527
- ### Added
528
-
529
- - Additional optional fields to meta for enhanced transaction details
530
-
531
- ## [1.23.4] - 2025-07-22
532
-
533
- ### Changed
534
-
535
- - Made account_number, routing_number, and swift_bic optional in ExternalBankingData for improved flexibility
536
-
537
- ## [1.23.3] - 2025-07-22
538
-
539
- ### Added
540
-
541
- - Optional state field to address type for improved address detail accuracy
542
-
543
- ## [1.23.2] - 2025-07-22
544
-
545
- ### Added
546
-
547
- - Added state_id to address type for enhanced address details
548
-
549
- ## [1.23.1] - 2025-07-22
550
-
551
- ### Added
552
-
553
- - States API endpoint and related types for fetching states by country_id
554
-
555
- ## [1.23.0] - 2025-07-22
556
-
557
- ### Fixed
558
-
559
- - Updated Counterparty and related DTOs to require email and phone fields for improved data integrity
560
- - Added note to orderRequests
561
-
562
- ## [1.22.13] - 2025-07-21
563
-
564
- ### Fixed
565
-
566
- - Corrected Confirm.Request type to reference changeEmailConfirm operation for accurate API request handling
567
-
568
- ## [1.22.12] - 2025-07-20
569
-
570
- ### Added
571
-
572
- - PROCESSING status to OrderStatuses enum for enhanced order tracking
573
-
574
- ## [1.22.11] - 2025-07-20
575
-
576
- ### Fixed
577
-
578
- - Updated WithdrawCryptoRequest to include SEGREGATED_CRYPTO_TRANSFER in order_type for improved transaction handling
579
-
580
- ## [1.22.10] - 2025-07-20
581
-
582
- ### Added
583
-
584
- - SEGREGATED_CRYPTO_TRANSFER to WalletTransactionRecordType enum for expanded transaction support
585
-
586
- ## [1.22.9] - 2025-07-20
587
-
588
- ### Added
589
-
590
- - SEGREGATED_CRYPTO_TRANSFER order type and corresponding request/response types for enhanced order processing
591
-
592
- ## [1.22.8] - 2025-07-18
593
-
594
- ### Changed
595
-
596
- - Streamlined user phone and email request types by leveraging OpenAPI operations for improved type safety and maintainability
597
-
598
- ## [1.22.7] - 2025-07-18
599
-
600
- ### Added
601
-
602
- - wallet_id to pagination request in VirtualAccountPrograms Request
603
- - wallet_id to issuing_programs request
604
-
605
- ## [1.22.6] - 2025-07-18
606
-
607
- ### Added
608
-
609
- - Optional birth_date field to user types in API schema for enhanced user data handling
610
-
611
- ## [1.22.5] - 2025-07-18
612
-
613
- ### Changed
614
-
615
- - Updated user and userData types to align with new API schema
616
- - Enhanced type safety in user requests
617
-
618
- ## [1.22.4] - 2025-07-18
619
-
620
- ### Added
621
-
622
- - New OrderTypeKycRail type and updated OrderInfo structure
623
-
624
- ### Changed
625
-
626
- - Removed deprecated kyc_rails_id
627
-
628
- ## [1.22.3] - 2025-07-18
629
-
630
- ### Fixed
631
-
632
- - Made limits property optional in card configuration for flexibility
633
-
634
- ## [1.22.2] - 2025-07-05
635
-
636
- ### Added
637
-
638
- - Exported hooks from the hooks module for improved functionality
639
-
640
- ## [1.22.1] - 2025-07-04
641
-
642
- ### Added
643
-
644
- - useCalc hook for enhanced calculation functionality
645
-
646
- ## [1.22.0] - 2025-07-04
647
-
648
- ### Fixed
649
-
650
- - Renamed currency_id to from_currency_id in request parameters for clarity
651
-
652
- ## [1.21.9] - 2025-06-26
653
-
654
- ### Fixed
655
-
656
- - Renamed currency parameters in Calc.CommonRequestParams to use IDs for improved clarity
657
-
658
- ## [1.21.8] - 2025-06-25
659
-
660
- ### Fixed
661
-
662
- - Updated orderType request params to include to_currency
663
-
664
- ## [1.21.7] - 2025-06-24
665
-
666
- ### Added
667
-
668
- - HIFI_CRYPTO_TRANSFER order type with request and response types for enhanced order processing
669
-
670
- ## [1.21.6] - 2025-06-24
671
-
672
- ### Added
673
-
674
- - New wallet transaction record types for enhanced transaction handling
675
-
676
- ## [1.21.5] - 2025-06-24
677
-
678
- ### Added
679
-
680
- - count property to TransactionsList interface for improved transaction data handling
681
-
682
- ## [1.21.4] - 2025-06-23
683
-
684
- ### Changed
685
-
686
- - Refactored getAll method in issuing API to accept parameters as an object and updated types for improved flexibility
687
-
688
- ## [1.21.3] - 2025-06-23
689
-
690
- ### Added
691
-
692
- - TBD_SWIFT_WITHDRAWAL order type with request and response types
693
-
694
- ## [1.21.2] - 2025-06-17
695
-
696
- ### Added
697
-
698
- - Version bump for latest changes
699
-
700
- ## [1.21.1] - 2025-06-17
701
-
702
- ### Fixed
703
-
704
- - Correct endpoint for OMNIBUS_CRYPTO_TRANSFER in orders API
705
-
706
- ## [1.21.0] - 2025-06-17
707
-
708
- ### Added
709
-
710
- - Implemented v2 orders functionality with enhanced order management capabilities
711
-
712
- ## [1.19.4] - 2025-06-17
713
-
714
- ### Added
715
-
716
- - Extended OTPVerificationChannelType to include 'TG_TEST' for enhanced testing capabilities
717
-
718
- ## [1.19.3] - 2025-06-17
719
-
720
- ### Fixed
721
-
722
- - Updated OTP verification endpoint to include 'create' in the URL for accurate request handling
723
-
724
- ## [1.19.2] - 2025-06-17
725
-
726
- ### Added
727
-
728
- - Added OTP request functionality with updated types to improve verification process
729
-
730
- ## [1.19.1] - 2025-06-12
731
-
732
- ### Changed
733
-
734
- - Updated OrderType enum: removed deprecated values, added replacements, and aligned API request types accordingly for consistency
735
-
736
- ## [1.19.0] - 2025-06-12
737
-
738
- ### Added
739
-
740
- - Integrated Time-based One-Time Password (TOTP) functionality with new types and API client methods
741
-
742
- ## [1.18.9] - 2025-05-24
743
-
744
- ### Added
745
-
746
- - Added TBD_SWIFT_WITHDRAWAL to OrderType enum for future implementation
747
-
748
- ## [1.18.8] - 2025-05-24
749
-
750
- ### Added
751
-
752
- - Restructured orderTypes to include a list method and defined OrderTypes namespace with detailed OrderInfo type
753
-
754
- ### Fixed
755
-
756
- - Updated Response type to reflect VirtualAccount structure
757
-
758
- ## [1.18.7] - 2025-05-24
759
-
760
- ### Added
761
-
762
- - Integrated virtual accounts into API structure for enhanced functionality
763
-
764
- ## [1.18.6] - 2025-05-24
765
-
766
- ### Added
767
-
768
- - Added virtual accounts functionality
769
- - Enhanced KYC rail schema with WalletRailTermsAndConditions type
770
-
771
- ## [1.18.4] - 2025-05-23
772
-
773
- ### Changed
774
-
775
- - Streamlined KYC rail types by replacing interfaces with schema-based types for improved consistency and maintainability
776
-
777
- ## [1.18.3] - 2025-05-22
778
-
779
- ### Added
780
-
781
- - Added new fields for KYC and integration vendor IDs in API types
782
-
783
- ## [1.18.1] - 2025-05-20
784
-
785
- ### Fixed
786
-
787
- - Added return type annotations for various methods across multiple API modules
788
-
789
- ## [1.18.0] - 2025-05-19
790
-
791
- ### Added
792
-
793
- - Enhanced card creation functionality with prepaid and balance options for standalone cards
794
-
795
- ## [1.17.30] - 2025-05-18
796
-
797
- ### Fixed
798
-
799
- - Corrected persona inquiries endpoint path for initialization
800
- - Changed persona inquiries initialization method from GET to POST
801
- - Updated endpoint paths for currencies and chains in the API client to support nonAuth users
802
-
803
- ## [1.17.27] - 2025-05-16
804
-
805
- ### Added
806
-
807
- - Integrated persona module into API client for enhanced KYC and identity verification workflows
808
-
809
- ## [1.17.26] - 2025-05-15
810
-
811
- ### Fixed
812
-
813
- - Updated address creation endpoint to use apiClientV2 for improved reliability and consistency
814
-
815
- ## [1.17.25] - 2025-05-14
816
-
817
- ### Added
818
-
819
- - Added API types autogen for improved type coverage and automation
820
-
821
- ## [1.17.24] - 2025-05-14
822
-
823
- ### Added
824
-
825
- - Persona inquiries initialization for advanced KYC workflows
826
- - Rails and Forms namespaces with new types and methods for KYC integration (onboarding/compliance flows)
827
-
828
- ### Changed
829
-
830
- - Removed ExtendedSubAccount type definitions to streamline API types (simplified and unified sub-account type management)
831
-
832
- ## [1.17.23] - 2025-05-12
833
-
834
- ### Changed
835
-
836
- - Updated response types for issuing sub-accounts to include pagination support
837
- - Enhanced data retrieval capabilities
838
- - Improved handling of large datasets
839
-
840
- ## [1.17.22] - 2025-05-07
841
-
842
- ### Fixed
843
-
844
- - Updated order_types_id type in IssuingProgramOrderType to support both OrderType and string values
845
- - Improved type flexibility
846
- - Better backward compatibility
847
-
848
- ## [1.17.21] - 2025-05-07
849
-
850
- ### Added
851
-
852
- - Introduced IssuingProgramOrderType for enhanced order types definition in Cards
853
- - Better type safety for card operations
854
- - Improved order type management
855
-
856
- ## [1.17.20] - 2025-05-07
857
-
858
- ### Fixed
859
-
860
- - Corrected order_types type definition in IssuingPrograms
861
- - Fixed type inconsistencies
862
- - Improved type safety
863
-
864
- ## [1.17.19] - 2025-05-07
865
-
866
- ### Added
867
-
868
- - Added order_types to IssuingPrograms for better program type management
869
-
870
- ### Changed
871
-
872
- - Deprecated payment_types in SubAccount in favor of new order_types system
873
-
874
- ## [1.17.18] - 2025-05-07
875
-
876
- ### Changed
877
-
878
- - Deprecated old deposit fiat_types
879
- - Introduced new issuing types for enhanced clarity and better type safety
880
-
881
- ## [1.17.17] - 2025-05-06
882
-
883
- ### Fixed
884
-
885
- - Reverted wallet address creation method to use apiClientV1 (UTILA)
886
- - This change was necessary to maintain compatibility with the UTILA service
887
- - Ensures proper address generation and validation
888
-
889
- ## [1.17.16] - 2025-05-06
890
-
891
- ### Added
892
-
893
- - Added SubAccountCryptoDetail type and integrated into SubAccount type
894
- - Enhanced crypto details management
895
- - Improved type safety for crypto-related operations
896
- - Better support for crypto account features
897
-
898
- ## [1.17.15] - 2025-04-29
899
-
900
- ### Fixed
901
-
902
- - Updated address creation method to use apiClientV2 for improved functionality
903
-
904
- ## [1.17.14] - 2025-04-25
905
-
906
- ### Changed
907
-
908
- - Updated package.json with repository information
909
- - Enhanced README with additional documentation links
910
-
911
- ## [1.17.13] - 2025-04-24
912
-
913
- ### Changed
914
-
915
- - Streamlined exchange module by dynamically generating order type methods
916
-
917
- ## [1.17.12] - 2025-04-23
918
-
919
- ### Fixed
920
-
921
- - Enforced required fields in DestinationListItemExternalBankingData type address object
922
-
923
- ## [1.17.11] - 2025-04-23
924
-
925
- ### Changed
926
-
927
- - Removed unused memo field from DestinationListItemExternalBankingData type
928
-
929
- ## [1.17.10] - 2025-04-23
930
-
931
- ### Changed
932
-
933
- - Integrated location functionality into list module
934
- - Updated README documentation to reflect module changes
935
-
936
- ## [1.17.9] - 2025-04-23
937
-
938
- ### Changed
939
-
940
- - Updated Location.Countries.List.Response type to include total count and data array
941
-
942
- ## [1.17.8] - 2025-04-23
943
-
944
- ### Changed
945
-
946
- - Removed the `location` module as its functionality has been integrated into the `list` module
947
- - Updated the `list` module to include new endpoints for fetching countries
948
- - Modified existing endpoints for currencies and chains to use the `/system` prefix
949
-
950
- ## [1.17.7] - 2025-04-23
951
-
952
- ### Added
953
-
954
- - Expanded WithdrawCryptoRequest to include INTERNAL_TRANSFER order type
955
-
956
- ## [1.17.6] - 2025-04-21
957
-
958
- ### Added
959
-
960
- - Expanded order types and enhanced API request structures
961
-
962
- ## [1.17.5] - 2025-04-18
963
-
964
- ### Fixed
965
-
966
- - Fixed transaction retrieval endpoints for sub accounts
967
-
968
- ## [1.17.4] - 2025-04-18
969
-
970
- ### Fixed
971
-
972
- - Updated transaction retrieval to use sub_account_id and correct endpoint
973
-
974
- ## [1.17.3] - 2025-04-18
975
-
976
- ### Added
977
-
978
- - Added new enums for calculation types and card transaction statuses
979
-
980
- ## [1.17.2] - 2025-04-18
981
-
982
- ### Changed
983
-
984
- - Renamed fiat account references to sub account in API documentation and types
985
-
986
- ## [1.17.1] - 2025-04-18
987
-
988
- ### Changed
989
-
990
- - Updated crypto addresses generation endpoints to support tenant-specific processing configuration
991
-
992
- ## [1.17.0] - 2025-04-18
993
-
994
- ### Changed
995
-
996
- - Removed fiat_accounts API and integrated functionality into sub_accounts module
997
-
998
- ## [1.16.1] - 2025-04-16
999
-
1000
- ### Changed
1001
-
1002
- - Updated changelog documentation
1003
-
1004
- ## [1.16.0] - 2025-04-16
1005
-
1006
- ### Added
1007
-
1008
- - Added support for fetching transactions by fiat account ID
1009
-
1010
- ## [1.15.1] - 2025-04-16
1011
-
1012
- ### Changed
1013
-
1014
- - Simplified logout logic in API client
1015
-
1016
- ## [1.15.0] - 2025-04-14
1017
-
1018
- ### Added
1019
-
1020
- - Added CSV export functionality for transactions
1021
-
1022
- ## [1.14.0] - 2025-04-11
1023
-
1024
- ### Added
1025
-
1026
- - Added delete functionality for counterparties destinations
1027
-
1028
- ## [1.13.5] - 2025-04-11
1029
-
1030
- ### Fixed
1031
-
1032
- - Added optional memo field to external crypto data type
1033
-
1034
- ## [1.13.4] - 2025-04-11
1035
-
1036
- ### Fixed
1037
-
1038
- - Added optional memo field to external crypto data type
1039
-
1040
- ## [1.13.3] - 2025-04-10
1041
-
1042
- ### Fixed
1043
-
1044
- - Moved search parameter to filter object in API types
1045
-
1046
- ## [1.13.2] - 2025-04-08
1047
-
1048
- ### Changed
1049
-
1050
- - Refactored encryption logic for improved security and maintainability
1051
-
1052
- ## [1.13.1] - 2025-04-08
1053
-
1054
- ### Fixed
1055
-
1056
- - Deprecated card sensitive data retrieval method
1057
- - Improved error handling in API responses
1058
- - Fixed decryption handling in issuing API
1059
-
1060
- ## [1.13.0] - 2025-04-08
1061
-
1062
- ### Changed
1063
-
1064
- - Replaced JSEncrypt with NodeRSA for encryption implementation
1065
-
1066
- ## [1.12.1] - 2025-04-08
1067
-
1068
- ### Fixed
1069
-
1070
- - Improved encryption implementation for card data
1071
-
1072
- ## [1.12.0] - 2025-04-08
1073
-
1074
- ### Added
1075
-
1076
- - Implemented encryption for sensitive card data
1077
-
1078
- ## [1.11.3] - 2025-04-07
1079
-
1080
- ### Changed
1081
-
1082
- - Updated Telegram sign-in method to use apiClientV2
1083
-
1084
- ## [1.11.2] - 2025-04-07
1085
-
1086
- ### Changed
1087
-
1088
- - Updated Telegram sign-in path for versioning clarity
1089
-
1090
- ## [1.11.1] - 2025-04-07
1091
-
1092
- ### Changed
1093
-
1094
- - Switched to apiClientV1 for Telegram sign-in
1095
-
1096
- ## [1.11.0] - 2025-04-07
1097
-
1098
- ### Changed
1099
-
1100
- - Updated external_crypto_data type in Counterparty destination
1101
- - Simplified Response type for Counterparty destination
1102
-
1103
- ## [1.10.13] - 2025-04-07
1104
-
1105
- ### Changed
1106
-
1107
- - Updated external_crypto_data type in Counterparty destination
1108
-
1109
- ## [1.10.12] - 2025-04-07
1110
-
1111
- ### Changed
1112
-
1113
- - Simplified Response type for Counterparty destination
1114
-
1115
- ## [1.10.11] - 2025-04-05
1116
-
1117
- ### Fixed
1118
-
1119
- - Formatted phone numbers for Supabase compatibility
1120
-
1121
- ## [1.10.10] - 2025-04-04
1122
-
1123
- ### Fixed
1124
-
1125
- - Added search parameter to Counterparty request type
1126
-
1127
- ## [1.10.9] - 2025-04-04
1128
-
1129
- ### Fixed
1130
-
1131
- - Updated Counterparty fields to allow null values
1132
-
1133
- ## [1.10.8] - 2025-04-04
1134
-
1135
- ### Fixed
1136
-
1137
- - Added counterparty_account_id to Update request type for Counterparty
1138
-
1139
- ## [1.10.7] - 2025-04-04
1140
-
1141
- ### Fixed
1142
-
1143
- - Added wallet_id to Create and Update request types for Counterparty
1144
-
1145
- ## [1.10.6] - 2025-04-04
1146
-
1147
- ### Fixed
1148
-
1149
- - Made Counterparty fields optional in API types
1150
-
1151
- ## [1.10.5] - 2025-04-03
1152
-
1153
- ### Fixed
1154
-
1155
- - Included additional parameters in wallet transaction request
1156
-
1157
- ## [1.10.4] - 2025-04-03
1158
-
1159
- ### Fixed
1160
-
1161
- - Made wallet transaction filter fields optional
1162
-
1163
- ## [1.10.3] - 2025-04-03
1164
-
1165
- ### Added
1166
-
1167
- - Added WalletTransactionStatus enum
1168
- - Updated API types with new status enum
1169
-
1170
- ## [1.10.2] - 2025-04-02
1171
-
1172
- ### Added
1173
-
1174
- - Added IssuingProgramStatus enum
1175
- - Updated API types with new status enum
1176
-
1177
- ## [1.10.1] - 2025-04-02
1178
-
1179
- ### Fixed
1180
-
1181
- - Made filter object optional in wallet transaction request
1182
-
1183
- ## [1.10.0] - 2025-04-02
1184
-
1185
- ### Fixed
1186
-
1187
- - Simplified token refresh logic by removing TMA check
1188
-
1189
- ## [1.9.0] - 2025-03-31
1190
-
1191
- ### Added
1192
-
1193
- - Added filter options to wallet transaction request
1194
-
1195
- ## [1.8.2] - 2025-03-26
1196
-
1197
- ### Changed
1198
-
1199
- - Clarified LOGOUT_URL description in documentation
1200
-
1201
- ## [1.8.1] - 2025-03-26
1202
-
1203
- ### Added
1204
-
1205
- - Enhanced card retrieval with fiat account data integration
1206
-
1207
- ## [1.8.0] - 2025-03-26
1208
-
1209
- ### Fixed
1210
-
1211
- - Corrected default logout URL path in apiClientFactory
1212
-
1213
- ## [1.7.1] - 2025-03-26
1214
-
1215
- ### Added
1216
-
1217
- - Location module integration in API index
1218
-
1219
- ## [1.7.0] - 2025-03-26
1220
-
1221
- ### Added
1222
-
1223
- - Enhanced API client with logout URL functionality
1224
- - Updated API documentation
1225
-
1226
- ## [1.6.0] - 2025-03-26
1227
-
1228
- ### Added
1229
-
1230
- - New counterparties module with full CRUD operations
1231
- - New location module with country information
1232
- - Updated API types structure
1233
-
1234
- ## [1.5.17] - 2025-03-25
1235
-
1236
- ### Added
1237
-
1238
- - New counterparties module with full CRUD operations
1239
- - Support for different counterparty types (INDIVIDUAL, BUSINESS)
1240
- - Destination management with multiple types (DOMESTIC_WIRE, ACH, SWIFT, SEPA, CRYPTO)
1241
- - Detailed counterparty information handling
1242
- - New location module
1243
- - Countries list functionality
1244
- - Detailed country information including currency, timezone, and region data
1245
- - Enhanced API types and interfaces
1246
- - Reorganized types structure for better maintainability
1247
- - Added new enums for counterparty types
1248
- - Updated currency and wallet types
1249
-
1250
- ### Changed
1251
-
1252
- - Updated README.md with new modules documentation
1253
- - Improved API documentation with detailed examples
1254
- - Enhanced type definitions for better TypeScript support
1255
- - Reorganized API types structure for better maintainability
1256
-
1257
- ### Fixed
1258
-
1259
- - Improved type safety in API responses
1260
- - Enhanced error handling in API requests
1261
-
1262
- ## [1.5.16] - 2025-03-25
1263
-
1264
- ### Changed
1265
-
1266
- - Updated API types and interfaces
1267
- - Improved documentation
1268
-
1269
- ## [1.5.15] - 2025-03-25
1270
-
1271
- ### Added
1272
-
1273
- - Type property to SubAccount in API types for enhanced flexibility
1274
- - Refactored fiat_account type in IssuingCardDetailItem
1275
-
1276
- ## [1.5.14] - 2025-03-25
1277
-
1278
- ### Changed
1279
-
1280
- - Refactored fiat_account type in IssuingCardListItem
1281
- - Updated currency type in API types from Currencies.Currency to Currencies.FiatCurrency
1282
-
1283
- ## [1.5.13] - 2025-03-25
1284
-
1285
- ### Changed
1286
-
1287
- - Updated currency type in API types for improved clarity and specificity
1288
-
1289
- ## [1.5.12] - 2025-03-25
1290
-
1291
- ### Changed
1292
-
1293
- - Updated currency type in API types for improved clarity
1294
-
1295
- ## [1.5.11] - 2025-03-25
1296
-
1297
- ### Added
1298
-
1299
- - Optional security_code property to CardSensitiveData interface
1300
-
1301
- ## [1.5.10] - 2025-03-25
1302
-
1303
- ### Changed
1304
-
1305
- - Refactored StandAloneRequest type to simplify structure
1306
- - Removed unnecessary properties while maintaining compatibility
1307
-
1308
- ## [1.5.9] - 2025-03-25
1309
-
1310
- ### Added
1311
-
1312
- - CommonRequest interface for shared properties
1313
- - Enhanced API type structure
1314
-
1315
- ## [1.5.8] - 2025-03-25
1316
-
1317
- ### Added
1318
-
1319
- - Card issuing and fee properties to API types
1320
-
1321
- ## [1.5.7] - 2025-03-25
1322
-
1323
- ### Changed
1324
-
1325
- - Updated package dependencies to use caret versioning
1326
- - Made filter properties optional in API types
1327
-
1328
- ## [1.5.6] - 2025-03-25
1329
-
1330
- ### Changed
1331
-
1332
- - Updated API list filtering from array to object
1333
-
1334
- ## [1.5.5] - 2025-03-25
1335
-
1336
- ### Changed
1337
-
1338
- - Refactored logout handling to use window.location.href for redirection
1339
-
1340
- ## [1.5.4] - 2025-03-25
1341
-
1342
- ### Changed
1343
-
1344
- - Refactored authentication API types
1345
- - Replaced SupabaseGetSessionResponse with Tokens for sign-in and sign-up methods
1346
-
1347
- ## [1.5.3] - 2025-03-25
1348
-
1349
- ### Changed
1350
-
1351
- - Updated authentication API endpoints to include '/email' suffix
1352
-
1353
- ## [1.5.2] - 2025-03-25
1354
-
1355
- ### Added
1356
-
1357
- - New SortingDirection enum
1358
- - Updated types for issuing card details and limits
1359
-
1360
- ## [1.5.1] - 2025-03-25
1361
-
1362
- ### Changed
1363
-
1364
- - Enhanced API types and wallet transactions structure
1365
- - Added DetailedTransaction interface
1366
- - Refactored transaction retrieval methods
1367
-
1368
- ## [1.5.0] - 2025-03-25
1369
-
1370
- ### Changed
1371
-
1372
- - Updated README and API exports
1373
- - Enhanced documentation with installation, usage examples, and security practices
1374
-
1375
- ## [1.4.0] - 2025-03-25
1376
-
1377
- ### Changed
1378
-
1379
- - Removed react-icons dependency
1380
-
1381
- ## [1.3.0] - 2025-03-25
1382
-
1383
- ### Added
1384
-
1385
- - Tenants module to API
1386
-
1387
- ## [1.2.0] - 2025-03-25
1388
-
1389
- ### Changed
1390
-
1391
- - Refactored API request methods
1392
- - Removed unnecessary promise chaining in exchange, issuing, list, orders, and wallets modules
1393
-
1394
- ## [1.1.0] - 2025-03-25
1395
-
1396
- ### Changed
1397
-
1398
- - Exported squarefiBffApiClient as a named export
1399
- - Refactored API client imports to use centralized apiClientFactory
1400
-
1401
- ## [1.0.2] - 2025-03-25
1402
-
1403
- ### Added
1404
-
1405
- - Initial release
1406
- - Basic API client functionality
1407
- - TypeScript support
1408
- - Authentication methods
1409
- - Core API endpoints support
1410
-
1411
- ## [1.18.2] - 2025-05-21
1412
-
1413
- ### Added
1414
-
1415
- - Added entity retrieval functionality to KYC module with new endpoint and types