@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.
@@ -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
- "successful" /* Successful */,
615
+ "draft" /* Draft */,
615
616
  "pending" /* Pending */,
617
+ "successful" /* Successful */,
616
618
  "failed" /* Failed */,
617
619
  "cancelled" /* Cancelled */
618
620
  ]