@matchi/api 0.20240318.1 → 0.20240404.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
@@ -85,7 +85,9 @@ type OccasionCourt = {
85
85
  type participants = {
86
86
  booked: number;
87
87
  max: number;
88
+ min: number;
88
89
  userIds?: Array<string>;
90
+ automaticCancellationDateTime: string;
89
91
  };
90
92
 
91
93
  type OrderSplitPrice = {
@@ -982,6 +984,10 @@ type playSessionSettings = {
982
984
  * A comment on the play session written by the booking owner and displayed to all users.
983
985
  */
984
986
  comment?: string;
987
+ /**
988
+ * Number slots that are locked and cannot be booked by other users.
989
+ */
990
+ lockedSlots?: number;
985
991
  };
986
992
 
987
993
  /**
package/dist/index.d.ts CHANGED
@@ -85,7 +85,9 @@ type OccasionCourt = {
85
85
  type participants = {
86
86
  booked: number;
87
87
  max: number;
88
+ min: number;
88
89
  userIds?: Array<string>;
90
+ automaticCancellationDateTime: string;
89
91
  };
90
92
 
91
93
  type OrderSplitPrice = {
@@ -982,6 +984,10 @@ type playSessionSettings = {
982
984
  * A comment on the play session written by the booking owner and displayed to all users.
983
985
  */
984
986
  comment?: string;
987
+ /**
988
+ * Number slots that are locked and cannot be booked by other users.
989
+ */
990
+ lockedSlots?: number;
985
991
  };
986
992
 
987
993
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matchi/api",
3
- "version": "0.20240318.1",
3
+ "version": "0.20240404.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "module": "dist/index.mjs",