@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 +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
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
|
};
|