@better-giving/donation 1.0.4 → 1.0.8

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.
@@ -399,4 +399,6 @@ export declare namespace StripeDonation {
399
399
  productId: string;
400
400
  subsQuantity: string;
401
401
  };
402
+ /** BG accepted payment methods */
403
+ type PaymentMethods = "acss_debit" | "amazon_pay" | "bancontact" | "card" | "cashapp" | "eps" | "ideal" | "link" | "p24" | "sepa_debit" | "sofort" | "us_bank_account";
402
404
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@better-giving/donation",
3
- "version": "1.0.4",
3
+ "version": "1.0.8",
4
4
  "devDependencies": {
5
5
  "@better-giving/config": "workspace:*"
6
6
  },
package/src/donation.mts CHANGED
@@ -534,4 +534,19 @@ export declare namespace StripeDonation {
534
534
  productId: string;
535
535
  subsQuantity: string;
536
536
  };
537
+
538
+ /** BG accepted payment methods */
539
+ type PaymentMethods =
540
+ | "acss_debit"
541
+ | "amazon_pay"
542
+ | "bancontact"
543
+ | "card"
544
+ | "cashapp"
545
+ | "eps"
546
+ | "ideal"
547
+ | "link"
548
+ | "p24"
549
+ | "sepa_debit"
550
+ | "sofort"
551
+ | "us_bank_account";
537
552
  }