@beabee/beabee-common 0.21.0-alpha.7 → 0.21.0-alpha.9
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/browser/beabee-common.js +3 -1
- package/dist/browser/beabee-common.js.map +2 -2
- package/dist/browser/beabee-common.min.js +1 -1
- package/dist/browser/index.js +3 -1
- package/dist/cjs/data/payment-status.cjs +1 -0
- package/dist/cjs/search/payments.cjs +2 -1
- package/dist/cjs/types/index.cjs +2 -0
- package/dist/cjs/types/payment-source-base.cjs +16 -0
- package/dist/esm/data/payment-status.js +1 -0
- package/dist/esm/search/payments.js +2 -1
- package/dist/esm/types/index.js +1 -0
- package/dist/esm/types/payment-source-base.js +0 -0
- package/dist/types/data/payment-status.d.ts +1 -0
- package/dist/types/search/contacts.d.ts +2 -2
- package/dist/types/search/payments.d.ts +1 -1
- package/dist/types/types/index.d.ts +1 -0
- package/dist/types/types/payment-source-base.d.ts +4 -0
- package/dist/types/types/payment-source-go-cardless-direct-debit.d.ts +2 -1
- package/dist/types/types/payment-source-manual.d.ts +2 -1
- package/dist/types/types/payment-source-stripe-bacs.d.ts +2 -1
- package/dist/types/types/payment-source-stripe-card.d.ts +9 -1
- package/dist/types/types/payment-source-stripe-paypal.d.ts +2 -1
- package/dist/types/types/payment-source-stripe-sepa.d.ts +2 -1
- package/dist/types/types/payment-source.d.ts +1 -1
- package/package.json +1 -1
|
@@ -272,6 +272,7 @@
|
|
|
272
272
|
|
|
273
273
|
// src/data/payment-status.ts
|
|
274
274
|
var PaymentStatus = /* @__PURE__ */ ((PaymentStatus2) => {
|
|
275
|
+
PaymentStatus2["Draft"] = "draft";
|
|
275
276
|
PaymentStatus2["Pending"] = "pending";
|
|
276
277
|
PaymentStatus2["Successful"] = "successful";
|
|
277
278
|
PaymentStatus2["Failed"] = "failed";
|
|
@@ -611,8 +612,9 @@
|
|
|
611
612
|
status: {
|
|
612
613
|
type: "enum",
|
|
613
614
|
options: [
|
|
614
|
-
"
|
|
615
|
+
"draft" /* Draft */,
|
|
615
616
|
"pending" /* Pending */,
|
|
617
|
+
"successful" /* Successful */,
|
|
616
618
|
"failed" /* Failed */,
|
|
617
619
|
"cancelled" /* Cancelled */
|
|
618
620
|
]
|