@matchi/api 0.20231215.1 → 0.20231215.2

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.mts CHANGED
@@ -828,7 +828,14 @@ type paymentDetails = {
828
828
  checkoutSessionData?: string;
829
829
  checkoutToken?: string;
830
830
  checkoutUrl?: string;
831
+ /**
832
+ * If this is a booking payment, this is the ID of the booking
833
+ */
831
834
  bookingId?: number;
835
+ /**
836
+ * If this is a subscription payment, this is the ID of the subscription
837
+ */
838
+ subscriptionId?: number;
832
839
  skipCheckout: boolean;
833
840
  orderSplitPayments?: OrderSplitPayments;
834
841
  };
package/dist/index.d.ts CHANGED
@@ -828,7 +828,14 @@ type paymentDetails = {
828
828
  checkoutSessionData?: string;
829
829
  checkoutToken?: string;
830
830
  checkoutUrl?: string;
831
+ /**
832
+ * If this is a booking payment, this is the ID of the booking
833
+ */
831
834
  bookingId?: number;
835
+ /**
836
+ * If this is a subscription payment, this is the ID of the subscription
837
+ */
838
+ subscriptionId?: number;
832
839
  skipCheckout: boolean;
833
840
  orderSplitPayments?: OrderSplitPayments;
834
841
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matchi/api",
3
- "version": "0.20231215.1",
3
+ "version": "0.20231215.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.mjs",