@matchi/api 0.20231024.1 → 0.20231106.1
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -309,6 +309,10 @@ type booking = {
|
|
|
309
309
|
type: string;
|
|
310
310
|
subType?: bookingSubType;
|
|
311
311
|
paymentId: number;
|
|
312
|
+
/**
|
|
313
|
+
* If booking is a split payment this is the last time (UTC) a payment can be made
|
|
314
|
+
*/
|
|
315
|
+
lastPaymentTime?: string;
|
|
312
316
|
};
|
|
313
317
|
|
|
314
318
|
type bookingsResponse = {
|
|
@@ -877,6 +881,7 @@ type priceDetails = {
|
|
|
877
881
|
numberOfSlots?: number;
|
|
878
882
|
canUsePromoCode: boolean;
|
|
879
883
|
paymentMethods: Array<paymentType>;
|
|
884
|
+
facilityUsesSplitPrices: boolean;
|
|
880
885
|
};
|
|
881
886
|
|
|
882
887
|
type priceDetailsActivity = {
|
package/dist/index.d.ts
CHANGED
|
@@ -309,6 +309,10 @@ type booking = {
|
|
|
309
309
|
type: string;
|
|
310
310
|
subType?: bookingSubType;
|
|
311
311
|
paymentId: number;
|
|
312
|
+
/**
|
|
313
|
+
* If booking is a split payment this is the last time (UTC) a payment can be made
|
|
314
|
+
*/
|
|
315
|
+
lastPaymentTime?: string;
|
|
312
316
|
};
|
|
313
317
|
|
|
314
318
|
type bookingsResponse = {
|
|
@@ -877,6 +881,7 @@ type priceDetails = {
|
|
|
877
881
|
numberOfSlots?: number;
|
|
878
882
|
canUsePromoCode: boolean;
|
|
879
883
|
paymentMethods: Array<paymentType>;
|
|
884
|
+
facilityUsesSplitPrices: boolean;
|
|
880
885
|
};
|
|
881
886
|
|
|
882
887
|
type priceDetailsActivity = {
|