@matchi/api 0.20240318.1 → 0.20240328.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 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -982,6 +982,10 @@ type playSessionSettings = {
|
|
|
982
982
|
* A comment on the play session written by the booking owner and displayed to all users.
|
|
983
983
|
*/
|
|
984
984
|
comment?: string;
|
|
985
|
+
/**
|
|
986
|
+
* Number slots that are locked and cannot be booked by other users.
|
|
987
|
+
*/
|
|
988
|
+
lockedSlots?: number;
|
|
985
989
|
};
|
|
986
990
|
|
|
987
991
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -982,6 +982,10 @@ type playSessionSettings = {
|
|
|
982
982
|
* A comment on the play session written by the booking owner and displayed to all users.
|
|
983
983
|
*/
|
|
984
984
|
comment?: string;
|
|
985
|
+
/**
|
|
986
|
+
* Number slots that are locked and cannot be booked by other users.
|
|
987
|
+
*/
|
|
988
|
+
lockedSlots?: number;
|
|
985
989
|
};
|
|
986
990
|
|
|
987
991
|
/**
|