@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.
@@ -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
- payment_id?: number;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@better-giving/donation",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "devDependencies": {
5
5
  "@better-giving/config": "1.1.2"
6
6
  },
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
- payment_id?: number;
341
+ /** Nowpayments: number, custom: uuid */
342
+ payment_id?: number | string;
342
343
  };
343
344
 
344
345
  type FiatAttributes = {