@matchi/api 0.20231110.2 → 0.20231212.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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -341,10 +341,13 @@ type coupon = {
|
|
|
341
341
|
unlimited: boolean;
|
|
342
342
|
punchesOriginal?: string;
|
|
343
343
|
punches?: string;
|
|
344
|
+
/**
|
|
345
|
+
* The maximum duration a punch will cover
|
|
346
|
+
*/
|
|
347
|
+
maxDuration?: number;
|
|
344
348
|
};
|
|
345
349
|
|
|
346
350
|
type paymentMethods = {
|
|
347
|
-
giftCards: Array<giftCard>;
|
|
348
351
|
coupons: Array<coupon>;
|
|
349
352
|
};
|
|
350
353
|
|
package/dist/index.d.ts
CHANGED
|
@@ -341,10 +341,13 @@ type coupon = {
|
|
|
341
341
|
unlimited: boolean;
|
|
342
342
|
punchesOriginal?: string;
|
|
343
343
|
punches?: string;
|
|
344
|
+
/**
|
|
345
|
+
* The maximum duration a punch will cover
|
|
346
|
+
*/
|
|
347
|
+
maxDuration?: number;
|
|
344
348
|
};
|
|
345
349
|
|
|
346
350
|
type paymentMethods = {
|
|
347
|
-
giftCards: Array<giftCard>;
|
|
348
351
|
coupons: Array<coupon>;
|
|
349
352
|
};
|
|
350
353
|
|