@plyaz/types 1.39.2 → 1.39.3
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.
|
@@ -429,6 +429,11 @@ export interface PayoutParams<TMetadata extends object = object> {
|
|
|
429
429
|
destinationId?: string;
|
|
430
430
|
/** Optional description */
|
|
431
431
|
description?: string;
|
|
432
|
+
/**
|
|
433
|
+
* Idempotency key to prevent duplicate payment processing
|
|
434
|
+
* Should be unique per payment attempt, recommended: UUID v4
|
|
435
|
+
*/
|
|
436
|
+
idempotencyKey?: string;
|
|
432
437
|
/** Optional metadata */
|
|
433
438
|
metadata?: TMetadata;
|
|
434
439
|
}
|
package/package.json
CHANGED