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