@tennac-booking/sdk 1.0.193 → 1.0.195

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.
@@ -7,6 +7,7 @@ All URIs are relative to *http://localhost*
7
7
  |[**getBookingWaitList**](#getbookingwaitlist) | **GET** /api/waitlist/booking/{bookingId}/list | |
8
8
  |[**getEventBookingWaitList**](#geteventbookingwaitlist) | **GET** /api/waitlist/event-booking/{eventBookingId}/list | |
9
9
  |[**getEventWaitList**](#geteventwaitlist) | **GET** /api/waitlist/event/{eventId}/list | |
10
+ |[**getEventWaitListPlayers**](#geteventwaitlistplayers) | **GET** /api/waitlist/event/{eventId}/players | |
10
11
  |[**processBookingWaitList**](#processbookingwaitlist) | **POST** /api/waitlist/booking/{bookingId}/process | |
11
12
  |[**processEventBookingWaitList**](#processeventbookingwaitlist) | **POST** /api/waitlist/event-booking/{eventBookingId}/process | |
12
13
  |[**processEventWaitList**](#processeventwaitlist) | **POST** /api/waitlist/event/{eventId}/process | |
@@ -170,6 +171,60 @@ const { status, data } = await apiInstance.getEventWaitList(
170
171
 
171
172
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
172
173
 
174
+ # **getEventWaitListPlayers**
175
+ > WaitListPlayersListResponse getEventWaitListPlayers()
176
+
177
+ Obtenir la liste des joueurs dans la file d\'attente pour un event (staff only)
178
+
179
+ ### Example
180
+
181
+ ```typescript
182
+ import {
183
+ WaitListStaffApi,
184
+ Configuration
185
+ } from '@tennac-booking/sdk';
186
+
187
+ const configuration = new Configuration();
188
+ const apiInstance = new WaitListStaffApi(configuration);
189
+
190
+ let eventId: string; // (default to undefined)
191
+
192
+ const { status, data } = await apiInstance.getEventWaitListPlayers(
193
+ eventId
194
+ );
195
+ ```
196
+
197
+ ### Parameters
198
+
199
+ |Name | Type | Description | Notes|
200
+ |------------- | ------------- | ------------- | -------------|
201
+ | **eventId** | [**string**] | | defaults to undefined|
202
+
203
+
204
+ ### Return type
205
+
206
+ **WaitListPlayersListResponse**
207
+
208
+ ### Authorization
209
+
210
+ [bearerAuth](../README.md#bearerAuth)
211
+
212
+ ### HTTP request headers
213
+
214
+ - **Content-Type**: Not defined
215
+ - **Accept**: application/json
216
+
217
+
218
+ ### HTTP response details
219
+ | Status code | Description | Response headers |
220
+ |-------------|-------------|------------------|
221
+ |**200** | Joueurs en file d\'attente récupérés avec succès | - |
222
+ |**400** | Requête invalide | - |
223
+ |**404** | Événement non trouvé | - |
224
+ |**500** | Erreur serveur | - |
225
+
226
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
227
+
173
228
  # **processBookingWaitList**
174
229
  > LeaveEventWaitList200Response processBookingWaitList()
175
230
 
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.185
7
+ * The version of the OpenAPI document: 1.0.195
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tennac-booking/sdk",
3
- "version": "1.0.193",
3
+ "version": "1.0.195",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {