@temboplus/afloat 0.1.64 → 0.1.65
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.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/models/payout.model.d.ts +1 -18
- package/package.json +1 -1
|
@@ -59,24 +59,7 @@ export declare class Payout {
|
|
|
59
59
|
/** Information about who last actioned the payout */
|
|
60
60
|
get actionedBy(): PayoutAuthorizer | undefined | null;
|
|
61
61
|
/**
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
* @returns {ContactInfo | undefined} Contact information object:
|
|
65
|
-
* - MobileContactInfo for mobile money payouts
|
|
66
|
-
* - BankContactInfo for bank transfers
|
|
67
|
-
* - undefined if contact info cannot be constructed
|
|
68
|
-
*
|
|
69
|
-
* @remarks
|
|
70
|
-
* For bank payouts, expects msisdn in format "SWIFTCODE:ACCOUNTNUMBER"
|
|
71
|
-
*
|
|
72
|
-
* @example
|
|
73
|
-
* ``
|
|
74
|
-
* // Mobile payout
|
|
75
|
-
* payout.contactInfo // Returns MobileContactInfo with phone details
|
|
76
|
-
*
|
|
77
|
-
* // Bank payout
|
|
78
|
-
* payout.contactInfo // Returns BankContactInfo with bank and account details
|
|
79
|
-
* ```
|
|
62
|
+
* Tries to construct contact information from the payout data.
|
|
80
63
|
*/
|
|
81
64
|
get contactInfo(): ContactInfo | undefined;
|
|
82
65
|
/**
|