@plyaz/types 1.39.1 → 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.
@@ -19,7 +19,7 @@ export interface UnifiedStrategy {
19
19
  /**
20
20
  * Unified strategy names for common API usage patterns
21
21
  */
22
- export type UnifiedStrategyName = 'realtime' | 'interactive' | 'background' | 'static' | 'offline';
22
+ export type UnifiedStrategyName = 'realtime' | 'interactive' | 'background' | 'static' | 'offline' | 'mutation';
23
23
  /**
24
24
  * Configuration object with resolved strategy names
25
25
  */
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.39.1",
3
+ "version": "1.39.3",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",