@matchi/api 0.20240620.1 → 0.20240703.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 +5 -2
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1077,6 +1077,7 @@ type playSessionUser = {
|
|
|
1077
1077
|
lastUpdated: timeStamp;
|
|
1078
1078
|
comment?: string;
|
|
1079
1079
|
contactDetails?: string;
|
|
1080
|
+
level?: string;
|
|
1080
1081
|
};
|
|
1081
1082
|
|
|
1082
1083
|
type playSession = {
|
|
@@ -1099,6 +1100,7 @@ type playSessionResponse = {
|
|
|
1099
1100
|
type playsessionUserDetails = {
|
|
1100
1101
|
comment?: string;
|
|
1101
1102
|
contactDetails?: string;
|
|
1103
|
+
level?: string;
|
|
1102
1104
|
};
|
|
1103
1105
|
|
|
1104
1106
|
type priceDetails = {
|
|
@@ -2088,7 +2090,8 @@ declare class PlaySessionServiceV1Service {
|
|
|
2088
2090
|
*/
|
|
2089
2091
|
static getPlaySessionByBookingId(bookingId: string): CancelablePromise<playSession>;
|
|
2090
2092
|
/**
|
|
2091
|
-
*
|
|
2093
|
+
* @deprecated
|
|
2094
|
+
* Add player to play session given user id. Deprecated: Use POST /playsessions/{sessionId}/users/{userId} instead
|
|
2092
2095
|
* @param sessionId Play Session ID
|
|
2093
2096
|
* @param userId The user ID of the play session participant to add
|
|
2094
2097
|
* @returns playSession User is added to playsession
|
|
@@ -2130,7 +2133,7 @@ declare class PlaySessionServiceV1Service {
|
|
|
2130
2133
|
static updatePlaySessionSettings(sessionId: string, requestBody: playSessionSettings): CancelablePromise<playSession>;
|
|
2131
2134
|
/**
|
|
2132
2135
|
* @deprecated
|
|
2133
|
-
* Join play session. Deprecated: Use POST /playsessions/{sessionId}/
|
|
2136
|
+
* Join play session. Deprecated: Use POST /playsessions/{sessionId}/users/{userId} instead
|
|
2134
2137
|
* @param sessionId Play Session ID
|
|
2135
2138
|
* @returns playSession Updated play session data
|
|
2136
2139
|
* @throws ApiError
|
package/dist/index.d.ts
CHANGED
|
@@ -1077,6 +1077,7 @@ type playSessionUser = {
|
|
|
1077
1077
|
lastUpdated: timeStamp;
|
|
1078
1078
|
comment?: string;
|
|
1079
1079
|
contactDetails?: string;
|
|
1080
|
+
level?: string;
|
|
1080
1081
|
};
|
|
1081
1082
|
|
|
1082
1083
|
type playSession = {
|
|
@@ -1099,6 +1100,7 @@ type playSessionResponse = {
|
|
|
1099
1100
|
type playsessionUserDetails = {
|
|
1100
1101
|
comment?: string;
|
|
1101
1102
|
contactDetails?: string;
|
|
1103
|
+
level?: string;
|
|
1102
1104
|
};
|
|
1103
1105
|
|
|
1104
1106
|
type priceDetails = {
|
|
@@ -2088,7 +2090,8 @@ declare class PlaySessionServiceV1Service {
|
|
|
2088
2090
|
*/
|
|
2089
2091
|
static getPlaySessionByBookingId(bookingId: string): CancelablePromise<playSession>;
|
|
2090
2092
|
/**
|
|
2091
|
-
*
|
|
2093
|
+
* @deprecated
|
|
2094
|
+
* Add player to play session given user id. Deprecated: Use POST /playsessions/{sessionId}/users/{userId} instead
|
|
2092
2095
|
* @param sessionId Play Session ID
|
|
2093
2096
|
* @param userId The user ID of the play session participant to add
|
|
2094
2097
|
* @returns playSession User is added to playsession
|
|
@@ -2130,7 +2133,7 @@ declare class PlaySessionServiceV1Service {
|
|
|
2130
2133
|
static updatePlaySessionSettings(sessionId: string, requestBody: playSessionSettings): CancelablePromise<playSession>;
|
|
2131
2134
|
/**
|
|
2132
2135
|
* @deprecated
|
|
2133
|
-
* Join play session. Deprecated: Use POST /playsessions/{sessionId}/
|
|
2136
|
+
* Join play session. Deprecated: Use POST /playsessions/{sessionId}/users/{userId} instead
|
|
2134
2137
|
* @param sessionId Play Session ID
|
|
2135
2138
|
* @returns playSession Updated play session data
|
|
2136
2139
|
* @throws ApiError
|