@tennac-booking/sdk 1.0.130 → 1.0.131

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 (51) hide show
  1. package/.openapi-generator/FILES +361 -344
  2. package/README.md +22 -2
  3. package/api.ts +1008 -28
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +826 -26
  8. package/dist/api.js +293 -10
  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 +826 -26
  16. package/dist/esm/api.js +289 -6
  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/EstimateEventPrice200Response.md +0 -2
  28. package/docs/EventBookingDetailSummary.md +40 -0
  29. package/docs/EventBookingDetailSummaryPaymentPerPlayersInner.md +30 -0
  30. package/docs/EventBookingResponse.md +36 -0
  31. package/docs/EventBookingResponsePlayersInner.md +28 -0
  32. package/docs/EventBookingResponsePlayersInnerInvoiceStatus.md +18 -0
  33. package/docs/EventBookingResponseSetupStatus.md +18 -0
  34. package/docs/EventBookingStatus.md +16 -0
  35. package/docs/EventsApi.md +4 -1
  36. package/docs/EventsManagerApi.md +110 -0
  37. package/docs/InvoiceStatusSETUPPENDING.md +8 -0
  38. package/docs/InvoiceStatusSETUPSUCCESS.md +8 -0
  39. package/docs/ParticipationType.md +10 -0
  40. package/docs/PublishEventResponse.md +4 -0
  41. package/docs/RecurringDefinitionResponse.md +34 -0
  42. package/docs/UpdateRecurringDefinition200Response.md +20 -0
  43. package/docs/UpdateRecurringDefinitionRequest.md +56 -0
  44. package/docs/UserClubSubscription.md +2 -0
  45. package/docs/UserEventParticipation.md +22 -0
  46. package/docs/UserEventSummary.md +44 -0
  47. package/docs/UserEventsResponse.md +28 -0
  48. package/docs/UsersApi.md +54 -0
  49. package/docs/VisibilityType.md +12 -0
  50. package/index.ts +1 -1
  51. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @tennac-booking/sdk@1.0.121
1
+ ## @tennac-booking/sdk@1.0.131
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.121 --save
39
+ npm install @tennac-booking/sdk@1.0.131 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -160,10 +160,12 @@ Class | Method | HTTP request | Description
160
160
  *EventsManagerApi* | [**checkEventConflicts**](docs/EventsManagerApi.md#checkeventconflicts) | **POST** /api/events/manager/checkConflicts |
161
161
  *EventsManagerApi* | [**createEvent**](docs/EventsManagerApi.md#createevent) | **POST** /api/events/manager/createEvent |
162
162
  *EventsManagerApi* | [**deleteEvent**](docs/EventsManagerApi.md#deleteevent) | **DELETE** /api/events/manager/deleteEvent/{eventId} |
163
+ *EventsManagerApi* | [**getExpiringRecurringDefinitions**](docs/EventsManagerApi.md#getexpiringrecurringdefinitions) | **GET** /api/events/manager/recurring/expiring |
163
164
  *EventsManagerApi* | [**publishEvent**](docs/EventsManagerApi.md#publishevent) | **PUT** /api/events/manager/publishEvent/{eventId} |
164
165
  *EventsManagerApi* | [**unpublishEvent**](docs/EventsManagerApi.md#unpublishevent) | **PUT** /api/events/manager/unpublishEvent/{eventId} |
165
166
  *EventsManagerApi* | [**updateEvent**](docs/EventsManagerApi.md#updateevent) | **PUT** /api/events/manager/updateEvent/{eventId} |
166
167
  *EventsManagerApi* | [**updatePublishedEvent**](docs/EventsManagerApi.md#updatepublishedevent) | **PUT** /api/events/manager/updatePublishedEvent/{eventId} |
168
+ *EventsManagerApi* | [**updateRecurringDefinition**](docs/EventsManagerApi.md#updaterecurringdefinition) | **PUT** /api/events/manager/recurring/{definitionId} |
167
169
  *EventsStaffApi* | [**checkInEventParticipants**](docs/EventsStaffApi.md#checkineventparticipants) | **POST** /api/events/{eventBookingId}/check-in |
168
170
  *EventsStaffApi* | [**getDailyEvents**](docs/EventsStaffApi.md#getdailyevents) | **GET** /api/events/calendar/daily |
169
171
  *EventsStaffApi* | [**getEventsByClub**](docs/EventsStaffApi.md#geteventsbyclub) | **GET** /api/events/staff/getEvents |
@@ -204,6 +206,7 @@ Class | Method | HTTP request | Description
204
206
  *UsersApi* | [**getNearestUsersFromCoordinates**](docs/UsersApi.md#getnearestusersfromcoordinates) | **GET** /api/users/nearest-players/coordinates |
205
207
  *UsersApi* | [**getPlayerCategories**](docs/UsersApi.md#getplayercategories) | **GET** /api/users/players/categories |
206
208
  *UsersApi* | [**getUserBookings**](docs/UsersApi.md#getuserbookings) | **GET** /api/users/me/bookings |
209
+ *UsersApi* | [**getUserEvents**](docs/UsersApi.md#getuserevents) | **GET** /api/users/me/events |
207
210
  *UsersApi* | [**getUserProfileById**](docs/UsersApi.md#getuserprofilebyid) | **GET** /api/users/profile/{id} |
208
211
  *UsersApi* | [**listPlayers**](docs/UsersApi.md#listplayers) | **GET** /api/users/players |
209
212
  *UsersApi* | [**login**](docs/UsersApi.md#login) | **POST** /api/users/login |
@@ -341,6 +344,13 @@ Class | Method | HTTP request | Description
341
344
  - [EstimateEventPrice200Response](docs/EstimateEventPrice200Response.md)
342
345
  - [EstimateEventPriceRequest](docs/EstimateEventPriceRequest.md)
343
346
  - [EstimateEventPriceRequestSharesInner](docs/EstimateEventPriceRequestSharesInner.md)
347
+ - [EventBookingDetailSummary](docs/EventBookingDetailSummary.md)
348
+ - [EventBookingDetailSummaryPaymentPerPlayersInner](docs/EventBookingDetailSummaryPaymentPerPlayersInner.md)
349
+ - [EventBookingResponse](docs/EventBookingResponse.md)
350
+ - [EventBookingResponsePlayersInner](docs/EventBookingResponsePlayersInner.md)
351
+ - [EventBookingResponsePlayersInnerInvoiceStatus](docs/EventBookingResponsePlayersInnerInvoiceStatus.md)
352
+ - [EventBookingResponseSetupStatus](docs/EventBookingResponseSetupStatus.md)
353
+ - [EventBookingStatus](docs/EventBookingStatus.md)
344
354
  - [EventConflictCheckRequest](docs/EventConflictCheckRequest.md)
345
355
  - [EventConflictCheckResponse](docs/EventConflictCheckResponse.md)
346
356
  - [EventResponse](docs/EventResponse.md)
@@ -382,6 +392,8 @@ Class | Method | HTTP request | Description
382
392
  - [ImageReferencePayload](docs/ImageReferencePayload.md)
383
393
  - [InvoiceInfo](docs/InvoiceInfo.md)
384
394
  - [InvoiceStatus](docs/InvoiceStatus.md)
395
+ - [InvoiceStatusSETUPPENDING](docs/InvoiceStatusSETUPPENDING.md)
396
+ - [InvoiceStatusSETUPSUCCESS](docs/InvoiceStatusSETUPSUCCESS.md)
385
397
  - [JoinEventRequest](docs/JoinEventRequest.md)
386
398
  - [JoinEventRequestPlayersPaymentMethodsInner](docs/JoinEventRequestPlayersPaymentMethodsInner.md)
387
399
  - [JoinEventResponse](docs/JoinEventResponse.md)
@@ -405,6 +417,7 @@ Class | Method | HTTP request | Description
405
417
  - [PartialPaymentRequirementsSettings](docs/PartialPaymentRequirementsSettings.md)
406
418
  - [PartialPublicAccessSettings](docs/PartialPublicAccessSettings.md)
407
419
  - [PartialSchoolAccessSettings](docs/PartialSchoolAccessSettings.md)
420
+ - [ParticipationType](docs/ParticipationType.md)
408
421
  - [PasswordResetRequestBody](docs/PasswordResetRequestBody.md)
409
422
  - [PaymentByPlayerInfo](docs/PaymentByPlayerInfo.md)
410
423
  - [PaymentMethod](docs/PaymentMethod.md)
@@ -433,6 +446,7 @@ Class | Method | HTTP request | Description
433
446
  - [QuickReservationClubSummaryLocation](docs/QuickReservationClubSummaryLocation.md)
434
447
  - [QuickReservationResponse](docs/QuickReservationResponse.md)
435
448
  - [QuickReservationSlotSummary](docs/QuickReservationSlotSummary.md)
449
+ - [RecurringDefinitionResponse](docs/RecurringDefinitionResponse.md)
436
450
  - [RefreshTokenRequestBody](docs/RefreshTokenRequestBody.md)
437
451
  - [RefreshTokenResponse](docs/RefreshTokenResponse.md)
438
452
  - [RegisterRequestBody](docs/RegisterRequestBody.md)
@@ -514,6 +528,8 @@ Class | Method | HTTP request | Description
514
528
  - [UpdateEventRequest](docs/UpdateEventRequest.md)
515
529
  - [UpdateLevelBySportsRequestBody](docs/UpdateLevelBySportsRequestBody.md)
516
530
  - [UpdatePlanRequest](docs/UpdatePlanRequest.md)
531
+ - [UpdateRecurringDefinition200Response](docs/UpdateRecurringDefinition200Response.md)
532
+ - [UpdateRecurringDefinitionRequest](docs/UpdateRecurringDefinitionRequest.md)
517
533
  - [UpdateSportRequest](docs/UpdateSportRequest.md)
518
534
  - [UpdateSubscriptionPlanForClub200Response](docs/UpdateSubscriptionPlanForClub200Response.md)
519
535
  - [UpdateUserCreditsRequest](docs/UpdateUserCreditsRequest.md)
@@ -523,12 +539,16 @@ Class | Method | HTTP request | Description
523
539
  - [UserClubMembership](docs/UserClubMembership.md)
524
540
  - [UserClubMembershipsResponse](docs/UserClubMembershipsResponse.md)
525
541
  - [UserClubSubscription](docs/UserClubSubscription.md)
542
+ - [UserEventParticipation](docs/UserEventParticipation.md)
543
+ - [UserEventSummary](docs/UserEventSummary.md)
544
+ - [UserEventsResponse](docs/UserEventsResponse.md)
526
545
  - [UserInfo](docs/UserInfo.md)
527
546
  - [UserLocationSummary](docs/UserLocationSummary.md)
528
547
  - [UserProfileResponse](docs/UserProfileResponse.md)
529
548
  - [UserRolesResponse](docs/UserRolesResponse.md)
530
549
  - [UserSubscriptionsResponse](docs/UserSubscriptionsResponse.md)
531
550
  - [VerifyEmailRequest](docs/VerifyEmailRequest.md)
551
+ - [VisibilityType](docs/VisibilityType.md)
532
552
  - [YearlyTurnoverResponse](docs/YearlyTurnoverResponse.md)
533
553
 
534
554