@better-giving/donation 1.1.2 → 1.1.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.
- package/dist/donation.d.mts +2 -1
- package/package.json +1 -1
- package/src/donation.mts +2 -1
package/dist/donation.d.mts
CHANGED
|
@@ -238,7 +238,8 @@ export declare namespace OnHoldDonation {
|
|
|
238
238
|
walletAddress: string;
|
|
239
239
|
/** status of this record should NOT be changed by our pipelines */
|
|
240
240
|
third_party?: true;
|
|
241
|
-
|
|
241
|
+
/** Nowpayments: number, custom: uuid */
|
|
242
|
+
payment_id?: number | string;
|
|
242
243
|
};
|
|
243
244
|
type FiatAttributes = {
|
|
244
245
|
chainId: ChainID.V2FiatChainID;
|
package/package.json
CHANGED
package/src/donation.mts
CHANGED
|
@@ -338,7 +338,8 @@ export declare namespace OnHoldDonation {
|
|
|
338
338
|
walletAddress: string;
|
|
339
339
|
/** status of this record should NOT be changed by our pipelines */
|
|
340
340
|
third_party?: true;
|
|
341
|
-
|
|
341
|
+
/** Nowpayments: number, custom: uuid */
|
|
342
|
+
payment_id?: number | string;
|
|
342
343
|
};
|
|
343
344
|
|
|
344
345
|
type FiatAttributes = {
|