@tennac-booking/sdk 1.0.119 → 1.0.121

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.
Files changed (59) hide show
  1. package/.openapi-generator/FILES +329 -313
  2. package/README.md +22 -2
  3. package/api.ts +910 -27
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +721 -17
  8. package/dist/api.js +330 -15
  9. package/dist/base.d.ts +1 -1
  10. package/dist/base.js +1 -1
  11. package/dist/common.d.ts +1 -1
  12. package/dist/common.js +1 -1
  13. package/dist/configuration.d.ts +1 -1
  14. package/dist/configuration.js +1 -1
  15. package/dist/esm/api.d.ts +721 -17
  16. package/dist/esm/api.js +322 -11
  17. package/dist/esm/base.d.ts +1 -1
  18. package/dist/esm/base.js +1 -1
  19. package/dist/esm/common.d.ts +1 -1
  20. package/dist/esm/common.js +1 -1
  21. package/dist/esm/configuration.d.ts +1 -1
  22. package/dist/esm/configuration.js +1 -1
  23. package/dist/esm/index.d.ts +1 -1
  24. package/dist/esm/index.js +1 -1
  25. package/dist/index.d.ts +1 -1
  26. package/dist/index.js +1 -1
  27. package/docs/CheckTeamNameAvailability200Response.md +20 -0
  28. package/docs/ClientApi.md +47 -0
  29. package/docs/ClientFullOnboardingResponseClub.md +2 -0
  30. package/docs/ClientOnboardingRequestBody.md +2 -0
  31. package/docs/ClientSubscription.md +31 -0
  32. package/docs/ClientSubscriptionItem.md +25 -0
  33. package/docs/ClientSubscriptionsResponse.md +21 -0
  34. package/docs/ClubSettingsManagerApi.md +5 -5
  35. package/docs/CreateCourtRequest.md +2 -0
  36. package/docs/EstimateEventPrice200Response.md +32 -0
  37. package/docs/EstimateEventPriceRequest.md +26 -0
  38. package/docs/EstimateEventPriceRequestSharesInner.md +22 -0
  39. package/docs/EventResponse.md +1 -1
  40. package/docs/EventUser.md +28 -0
  41. package/docs/EventsApi.md +115 -0
  42. package/docs/ImageCleanupItem.md +22 -0
  43. package/docs/ImageCleanupRequestBody.md +20 -0
  44. package/docs/ImageCleanupResponse.md +22 -0
  45. package/docs/ImageContext.md +30 -0
  46. package/docs/ImageContextType.md +20 -0
  47. package/docs/ImageReferencePayload.md +24 -0
  48. package/docs/ImagesApi.md +59 -0
  49. package/docs/JoinEventRequest.md +2 -0
  50. package/docs/JoinEventRequestPlayersPaymentMethodsInner.md +2 -0
  51. package/docs/JoinEventResponse.md +14 -0
  52. package/docs/JoinEventResponseOnsitePaymentsInner.md +24 -0
  53. package/docs/Team.md +1 -1
  54. package/docs/UpdateClubGeneralSettingsRequest.md +1 -1
  55. package/docs/UpdateClubGeneralSettingsRequestLogo.md +24 -0
  56. package/docs/UpdateClubPresentationSettingsRequest.md +2 -2
  57. package/docs/UserProfileResponse.md +2 -0
  58. package/index.ts +1 -1
  59. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @tennac-booking/sdk@1.0.110
1
+ ## @tennac-booking/sdk@1.0.121
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @tennac-booking/sdk@1.0.110 --save
39
+ npm install @tennac-booking/sdk@1.0.121 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -67,6 +67,7 @@ Class | Method | HTTP request | Description
67
67
  *BookingsUserApi* | [**cancelBooking**](docs/BookingsUserApi.md#cancelbooking) | **DELETE** /api/bookings/{bookingId} |
68
68
  *BookingsUserApi* | [**createBooking**](docs/BookingsUserApi.md#createbooking) | **POST** /api/bookings |
69
69
  *ClientApi* | [**clientRegister**](docs/ClientApi.md#clientregister) | **POST** /clients/register |
70
+ *ClientApi* | [**getClientSubscriptions**](docs/ClientApi.md#getclientsubscriptions) | **GET** /clients/subscriptions |
70
71
  *ClientApi* | [**getManagedClubs**](docs/ClientApi.md#getmanagedclubs) | **GET** /clients/managed-clubs |
71
72
  *ClientApi* | [**onboardClub**](docs/ClientApi.md#onboardclub) | **POST** /clients/onboarding |
72
73
  *ClubAnalyticsApi* | [**getMostLikedClub**](docs/ClubAnalyticsApi.md#getmostlikedclub) | **GET** /api/club-analytics/most-liked-clubs |
@@ -147,6 +148,8 @@ Class | Method | HTTP request | Description
147
148
  *ClubsStaffApi* | [**getUserProfileStaff**](docs/ClubsStaffApi.md#getuserprofilestaff) | **GET** /api/clubs/staff/profile/{id} |
148
149
  *ClubsStaffApi* | [**updateUserCreditsStaff**](docs/ClubsStaffApi.md#updateusercreditsstaff) | **PUT** /api/clubs/staff/user-credits/{id} |
149
150
  *DefaultApi* | [**createClub**](docs/DefaultApi.md#createclub) | **POST** /api/clubs |
151
+ *EventsApi* | [**checkTeamNameAvailability**](docs/EventsApi.md#checkteamnameavailability) | **GET** /api/events/{eventId}/team-name-availability |
152
+ *EventsApi* | [**estimateEventPrice**](docs/EventsApi.md#estimateeventprice) | **POST** /api/events/{eventId}/estimate-price |
150
153
  *EventsApi* | [**getEventById**](docs/EventsApi.md#geteventbyid) | **GET** /api/events/{eventId} |
151
154
  *EventsApi* | [**getPublishedEventsByClubId**](docs/EventsApi.md#getpublishedeventsbyclubid) | **GET** /api/events |
152
155
  *EventsApi* | [**joinEvent**](docs/EventsApi.md#joinevent) | **POST** /api/events/{eventId}/join |
@@ -163,6 +166,7 @@ Class | Method | HTTP request | Description
163
166
  *EventsStaffApi* | [**getEventsByClub**](docs/EventsStaffApi.md#geteventsbyclub) | **GET** /api/events/staff/getEvents |
164
167
  *EventsStaffApi* | [**getMonthlyEvents**](docs/EventsStaffApi.md#getmonthlyevents) | **GET** /api/events/calendar/monthly |
165
168
  *EventsStaffApi* | [**getWeeklyEvents**](docs/EventsStaffApi.md#getweeklyevents) | **GET** /api/events/calendar/weekly |
169
+ *ImagesApi* | [**cleanupImages**](docs/ImagesApi.md#cleanupimages) | **POST** /api/images/cleanup |
166
170
  *SportsManagerApi* | [**createSport**](docs/SportsManagerApi.md#createsport) | **POST** /api/sports |
167
171
  *SportsManagerApi* | [**deleteSport**](docs/SportsManagerApi.md#deletesport) | **DELETE** /api/sports/{id} |
168
172
  *SportsManagerApi* | [**updateSport**](docs/SportsManagerApi.md#updatesport) | **PUT** /api/sports/{id} |
@@ -255,12 +259,16 @@ Class | Method | HTTP request | Description
255
259
  - [CheckInEventParticipantsRequest](docs/CheckInEventParticipantsRequest.md)
256
260
  - [CheckInPlayersRequest](docs/CheckInPlayersRequest.md)
257
261
  - [CheckInPlayersResponse](docs/CheckInPlayersResponse.md)
262
+ - [CheckTeamNameAvailability200Response](docs/CheckTeamNameAvailability200Response.md)
258
263
  - [CheckedInPlayer](docs/CheckedInPlayer.md)
259
264
  - [ClientFullOnboardingResponse](docs/ClientFullOnboardingResponse.md)
260
265
  - [ClientFullOnboardingResponseClub](docs/ClientFullOnboardingResponseClub.md)
261
266
  - [ClientOnboardingRequestBody](docs/ClientOnboardingRequestBody.md)
262
267
  - [ClientRegister201Response](docs/ClientRegister201Response.md)
263
268
  - [ClientRegisterRequest](docs/ClientRegisterRequest.md)
269
+ - [ClientSubscription](docs/ClientSubscription.md)
270
+ - [ClientSubscriptionItem](docs/ClientSubscriptionItem.md)
271
+ - [ClientSubscriptionsResponse](docs/ClientSubscriptionsResponse.md)
264
272
  - [ClubDaySchedule](docs/ClubDaySchedule.md)
265
273
  - [ClubEvent](docs/ClubEvent.md)
266
274
  - [ClubGeneralSettingsResponse](docs/ClubGeneralSettingsResponse.md)
@@ -325,10 +333,14 @@ Class | Method | HTTP request | Description
325
333
  - [DeleteSportResponse](docs/DeleteSportResponse.md)
326
334
  - [DeleteSubscriptionPlanResponse](docs/DeleteSubscriptionPlanResponse.md)
327
335
  - [DiscountType](docs/DiscountType.md)
336
+ - [EstimateEventPrice200Response](docs/EstimateEventPrice200Response.md)
337
+ - [EstimateEventPriceRequest](docs/EstimateEventPriceRequest.md)
338
+ - [EstimateEventPriceRequestSharesInner](docs/EstimateEventPriceRequestSharesInner.md)
328
339
  - [EventConflictCheckRequest](docs/EventConflictCheckRequest.md)
329
340
  - [EventConflictCheckResponse](docs/EventConflictCheckResponse.md)
330
341
  - [EventResponse](docs/EventResponse.md)
331
342
  - [EventSponsor](docs/EventSponsor.md)
343
+ - [EventUser](docs/EventUser.md)
332
344
  - [EventsListResponse](docs/EventsListResponse.md)
333
345
  - [FavoriteClubMutationResponse](docs/FavoriteClubMutationResponse.md)
334
346
  - [FavoriteClubRequestBody](docs/FavoriteClubRequestBody.md)
@@ -355,11 +367,18 @@ Class | Method | HTTP request | Description
355
367
  - [IUserAttributes](docs/IUserAttributes.md)
356
368
  - [IUserAttributesOrganizationsInner](docs/IUserAttributesOrganizationsInner.md)
357
369
  - [IUserLocation](docs/IUserLocation.md)
370
+ - [ImageCleanupItem](docs/ImageCleanupItem.md)
371
+ - [ImageCleanupRequestBody](docs/ImageCleanupRequestBody.md)
372
+ - [ImageCleanupResponse](docs/ImageCleanupResponse.md)
373
+ - [ImageContext](docs/ImageContext.md)
374
+ - [ImageContextType](docs/ImageContextType.md)
375
+ - [ImageReferencePayload](docs/ImageReferencePayload.md)
358
376
  - [InvoiceInfo](docs/InvoiceInfo.md)
359
377
  - [InvoiceStatus](docs/InvoiceStatus.md)
360
378
  - [JoinEventRequest](docs/JoinEventRequest.md)
361
379
  - [JoinEventRequestPlayersPaymentMethodsInner](docs/JoinEventRequestPlayersPaymentMethodsInner.md)
362
380
  - [JoinEventResponse](docs/JoinEventResponse.md)
381
+ - [JoinEventResponseOnsitePaymentsInner](docs/JoinEventResponseOnsitePaymentsInner.md)
363
382
  - [LastSixMonthsTurnoverItem](docs/LastSixMonthsTurnoverItem.md)
364
383
  - [LevelBySportEntry](docs/LevelBySportEntry.md)
365
384
  - [LoginRequestBody](docs/LoginRequestBody.md)
@@ -463,6 +482,7 @@ Class | Method | HTTP request | Description
463
482
  - [TimeBounds](docs/TimeBounds.md)
464
483
  - [UpdateActuality200Response](docs/UpdateActuality200Response.md)
465
484
  - [UpdateClubGeneralSettingsRequest](docs/UpdateClubGeneralSettingsRequest.md)
485
+ - [UpdateClubGeneralSettingsRequestLogo](docs/UpdateClubGeneralSettingsRequestLogo.md)
466
486
  - [UpdateClubHoursSettingsRequest](docs/UpdateClubHoursSettingsRequest.md)
467
487
  - [UpdateClubMemberRequest](docs/UpdateClubMemberRequest.md)
468
488
  - [UpdateClubPresentationSettingsRequest](docs/UpdateClubPresentationSettingsRequest.md)