@matchi/api 0.20240305.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 CHANGED
@@ -969,10 +969,6 @@ type playSessionSettings = {
969
969
  * Whether the play session is joinable by other users.
970
970
  */
971
971
  joinable?: boolean;
972
- /**
973
- * Determines what type of users that requires an approval from the booking owner to join
974
- */
975
- joinApproval?: string;
976
972
  /**
977
973
  * When the number of players on a play session is equal to or greater than than this number, a new player will not be able to join. If the value is "-1", there is no limit to the number of players that can join.
978
974
  */
@@ -986,6 +982,10 @@ type playSessionSettings = {
986
982
  * A comment on the play session written by the booking owner and displayed to all users.
987
983
  */
988
984
  comment?: string;
985
+ /**
986
+ * Number slots that are locked and cannot be booked by other users.
987
+ */
988
+ lockedSlots?: number;
989
989
  };
990
990
 
991
991
  /**
package/dist/index.d.ts CHANGED
@@ -969,10 +969,6 @@ type playSessionSettings = {
969
969
  * Whether the play session is joinable by other users.
970
970
  */
971
971
  joinable?: boolean;
972
- /**
973
- * Determines what type of users that requires an approval from the booking owner to join
974
- */
975
- joinApproval?: string;
976
972
  /**
977
973
  * When the number of players on a play session is equal to or greater than than this number, a new player will not be able to join. If the value is "-1", there is no limit to the number of players that can join.
978
974
  */
@@ -986,6 +982,10 @@ type playSessionSettings = {
986
982
  * A comment on the play session written by the booking owner and displayed to all users.
987
983
  */
988
984
  comment?: string;
985
+ /**
986
+ * Number slots that are locked and cannot be booked by other users.
987
+ */
988
+ lockedSlots?: number;
989
989
  };
990
990
 
991
991
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matchi/api",
3
- "version": "0.20240305.1",
3
+ "version": "0.20240328.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.mjs",