@matchi/api 0.20240529.1 → 0.20240529.2
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 +2 -3
- package/dist/index.d.ts +2 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2043,8 +2043,7 @@ declare class PlaySessionServiceV1Service {
|
|
|
2043
2043
|
*/
|
|
2044
2044
|
static getPlaySessionByBookingId(bookingId: string): CancelablePromise<playSession>;
|
|
2045
2045
|
/**
|
|
2046
|
-
*
|
|
2047
|
-
* Add player to play session given user id. Deprecated: Use POST /playsessions/{sessionId}/users/{userId} instead
|
|
2046
|
+
* Add player to play session given user id
|
|
2048
2047
|
* @param sessionId Play Session ID
|
|
2049
2048
|
* @param userId The user ID of the play session participant to add
|
|
2050
2049
|
* @returns playSession User is added to playsession
|
|
@@ -2086,7 +2085,7 @@ declare class PlaySessionServiceV1Service {
|
|
|
2086
2085
|
static updatePlaySessionSettings(sessionId: string, requestBody: playSessionSettings): CancelablePromise<playSession>;
|
|
2087
2086
|
/**
|
|
2088
2087
|
* @deprecated
|
|
2089
|
-
* Join play session. Deprecated: Use POST /playsessions/{sessionId}/
|
|
2088
|
+
* Join play session. Deprecated: Use POST /playsessions/{sessionId}/players/by-userid/{userId} instead
|
|
2090
2089
|
* @param sessionId Play Session ID
|
|
2091
2090
|
* @returns playSession Updated play session data
|
|
2092
2091
|
* @throws ApiError
|
package/dist/index.d.ts
CHANGED
|
@@ -2043,8 +2043,7 @@ declare class PlaySessionServiceV1Service {
|
|
|
2043
2043
|
*/
|
|
2044
2044
|
static getPlaySessionByBookingId(bookingId: string): CancelablePromise<playSession>;
|
|
2045
2045
|
/**
|
|
2046
|
-
*
|
|
2047
|
-
* Add player to play session given user id. Deprecated: Use POST /playsessions/{sessionId}/users/{userId} instead
|
|
2046
|
+
* Add player to play session given user id
|
|
2048
2047
|
* @param sessionId Play Session ID
|
|
2049
2048
|
* @param userId The user ID of the play session participant to add
|
|
2050
2049
|
* @returns playSession User is added to playsession
|
|
@@ -2086,7 +2085,7 @@ declare class PlaySessionServiceV1Service {
|
|
|
2086
2085
|
static updatePlaySessionSettings(sessionId: string, requestBody: playSessionSettings): CancelablePromise<playSession>;
|
|
2087
2086
|
/**
|
|
2088
2087
|
* @deprecated
|
|
2089
|
-
* Join play session. Deprecated: Use POST /playsessions/{sessionId}/
|
|
2088
|
+
* Join play session. Deprecated: Use POST /playsessions/{sessionId}/players/by-userid/{userId} instead
|
|
2090
2089
|
* @param sessionId Play Session ID
|
|
2091
2090
|
* @returns playSession Updated play session data
|
|
2092
2091
|
* @throws ApiError
|