@edge-markets/connect 1.6.1 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -2336,7 +2336,16 @@ type InitiateTransferRequest = components['schemas']['InitiateTransferRequestDto
2336
2336
  * }
2337
2337
  * ```
2338
2338
  */
2339
- type Transfer = components['schemas']['TransferResponseDto'];
2339
+ type Transfer = components['schemas']['TransferResponseDto'] & {
2340
+ /** Transfer direction. Present on status/list responses and newer initiate responses. */
2341
+ type?: TransferType;
2342
+ /** Transfer amount. String responses preserve cents; older list endpoints may use number. */
2343
+ amount?: string | number;
2344
+ /** Settlement category when attributed by the partner or default policy. */
2345
+ category?: TransferCategory;
2346
+ createdAt?: string;
2347
+ updatedAt?: string;
2348
+ };
2340
2349
  /**
2341
2350
  * Transfer item in a list (includes additional fields like amount and timestamps).
2342
2351
  */
package/dist/index.d.ts CHANGED
@@ -2336,7 +2336,16 @@ type InitiateTransferRequest = components['schemas']['InitiateTransferRequestDto
2336
2336
  * }
2337
2337
  * ```
2338
2338
  */
2339
- type Transfer = components['schemas']['TransferResponseDto'];
2339
+ type Transfer = components['schemas']['TransferResponseDto'] & {
2340
+ /** Transfer direction. Present on status/list responses and newer initiate responses. */
2341
+ type?: TransferType;
2342
+ /** Transfer amount. String responses preserve cents; older list endpoints may use number. */
2343
+ amount?: string | number;
2344
+ /** Settlement category when attributed by the partner or default policy. */
2345
+ category?: TransferCategory;
2346
+ createdAt?: string;
2347
+ updatedAt?: string;
2348
+ };
2340
2349
  /**
2341
2350
  * Transfer item in a list (includes additional fields like amount and timestamps).
2342
2351
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edge-markets/connect",
3
- "version": "1.6.1",
3
+ "version": "1.7.0",
4
4
  "description": "Core types, configuration, and utilities for EDGE Connect SDK",
5
5
  "author": "EdgeBoost",
6
6
  "license": "MIT",