@7365admin1/core 3.32.2-staging.40 → 3.32.2-staging.41

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/index.d.ts CHANGED
@@ -6920,6 +6920,8 @@ declare const useRedDotPaymentSvc: () => {
6920
6920
  type TBillingItems = {
6921
6921
  _id: ObjectId | string;
6922
6922
  name: string;
6923
+ amount: number;
6924
+ referenceNumber: string;
6923
6925
  };
6924
6926
  type TBillingPayments = {
6925
6927
  _id?: ObjectId;
package/dist/index.js CHANGED
@@ -64687,7 +64687,9 @@ var BillingPaymentStatus = /* @__PURE__ */ ((BillingPaymentStatus2) => {
64687
64687
  })(BillingPaymentStatus || {});
64688
64688
  var schemaBillingItems = import_joi126.default.object({
64689
64689
  _id: import_joi126.default.string().hex().optional(),
64690
- name: import_joi126.default.string().optional().allow(null, "")
64690
+ name: import_joi126.default.string().optional().allow(null, ""),
64691
+ amount: import_joi126.default.number().optional().allow(null, ""),
64692
+ referenceNumber: import_joi126.default.string().optional().allow(null, "")
64691
64693
  });
64692
64694
  var schemaBillingPayments = import_joi126.default.object({
64693
64695
  _id: import_joi126.default.string().hex().optional(),