@matchi/api 0.20241119.1 → 0.20241121.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
|
@@ -1173,6 +1173,10 @@ type playSessionSettings = {
|
|
|
1173
1173
|
* Contact details can be email, phone number or other contact information.
|
|
1174
1174
|
*/
|
|
1175
1175
|
contactDetails?: string;
|
|
1176
|
+
/**
|
|
1177
|
+
* The number of available spots on the play session.
|
|
1178
|
+
*/
|
|
1179
|
+
readonly availableSpots?: number;
|
|
1176
1180
|
};
|
|
1177
1181
|
declare namespace playSessionSettings {
|
|
1178
1182
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1173,6 +1173,10 @@ type playSessionSettings = {
|
|
|
1173
1173
|
* Contact details can be email, phone number or other contact information.
|
|
1174
1174
|
*/
|
|
1175
1175
|
contactDetails?: string;
|
|
1176
|
+
/**
|
|
1177
|
+
* The number of available spots on the play session.
|
|
1178
|
+
*/
|
|
1179
|
+
readonly availableSpots?: number;
|
|
1176
1180
|
};
|
|
1177
1181
|
declare namespace playSessionSettings {
|
|
1178
1182
|
/**
|