@tennac-booking/sdk 1.0.124 → 1.0.125

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 (57) hide show
  1. package/.openapi-generator/FILES +343 -333
  2. package/README.md +16 -6
  3. package/api.ts +578 -313
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +458 -224
  8. package/dist/api.js +136 -79
  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 +458 -224
  16. package/dist/esm/api.js +132 -75
  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/ClubPlayerSubscriptionSummary.md +3 -3
  28. package/docs/CreatePlan201Response.md +0 -2
  29. package/docs/CreateSubscriptionPlanRequest.md +2 -2
  30. package/docs/CreateSubscriptionPlanRequestDiscount.md +0 -2
  31. package/docs/DeleteSubscriptionPlanResponse.md +0 -2
  32. package/docs/EventBookingDetailSummary.md +40 -0
  33. package/docs/EventBookingResponse.md +36 -0
  34. package/docs/EventBookingResponsePlayersInner.md +28 -0
  35. package/docs/{PlanPriceInput.md → EventBookingResponsePlayersInnerInvoiceStatus.md} +3 -7
  36. package/docs/EventBookingResponseSetupStatus.md +18 -0
  37. package/docs/EventBookingStatus.md +16 -0
  38. package/docs/EventsApi.md +4 -1
  39. package/docs/InvoiceStatusSETUPPENDING.md +8 -0
  40. package/docs/InvoiceStatusSETUPSUCCESS.md +8 -0
  41. package/docs/MonthlyTurnoverResponse.md +1 -0
  42. package/docs/OffPeakRule.md +0 -2
  43. package/docs/ParticipationType.md +10 -0
  44. package/docs/PublicSubscriptionPlanResponse.md +1 -5
  45. package/docs/PublishEventResponse.md +2 -0
  46. package/docs/SendSubscriptionInvitationRequest.md +0 -2
  47. package/docs/SubscriptionPlanResponse.md +1 -7
  48. package/docs/SubscriptionsManagerApi.md +1 -55
  49. package/docs/UserEventParticipation.md +22 -0
  50. package/docs/UserEventSummary.md +44 -0
  51. package/docs/UserEventsResponse.md +28 -0
  52. package/docs/UsersApi.md +54 -0
  53. package/docs/VisibilityType.md +12 -0
  54. package/index.ts +1 -1
  55. package/package.json +1 -1
  56. package/docs/PlanPrice.md +0 -26
  57. package/docs/SubscriptionPlanDiscountResponse.md +0 -34
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @tennac-booking/sdk@1.0.121
1
+ ## @tennac-booking/sdk@1.0.125
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.125 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -171,7 +171,6 @@ Class | Method | HTTP request | Description
171
171
  *SportsManagerApi* | [**deleteSport**](docs/SportsManagerApi.md#deletesport) | **DELETE** /api/sports/{id} |
172
172
  *SportsManagerApi* | [**updateSport**](docs/SportsManagerApi.md#updatesport) | **PUT** /api/sports/{id} |
173
173
  *SportsPublicApi* | [**getVerifiedSports**](docs/SportsPublicApi.md#getverifiedsports) | **GET** /api/sports/verified |
174
- *SubscriptionsManagerApi* | [**archivePlan**](docs/SubscriptionsManagerApi.md#archiveplan) | **POST** /api/subscriptions/plans/{productId}/archive |
175
174
  *SubscriptionsManagerApi* | [**createPlan**](docs/SubscriptionsManagerApi.md#createplan) | **POST** /api/subscriptions/plans |
176
175
  *SubscriptionsManagerApi* | [**deletePlan**](docs/SubscriptionsManagerApi.md#deleteplan) | **DELETE** /api/subscriptions/plans/{productId} |
177
176
  *SubscriptionsManagerApi* | [**updatePlan**](docs/SubscriptionsManagerApi.md#updateplan) | **PUT** /api/subscriptions/plans |
@@ -201,6 +200,7 @@ Class | Method | HTTP request | Description
201
200
  *UsersApi* | [**getNearestUsersFromCoordinates**](docs/UsersApi.md#getnearestusersfromcoordinates) | **GET** /api/users/nearest-players/coordinates |
202
201
  *UsersApi* | [**getPlayerCategories**](docs/UsersApi.md#getplayercategories) | **GET** /api/users/players/categories |
203
202
  *UsersApi* | [**getUserBookings**](docs/UsersApi.md#getuserbookings) | **GET** /api/users/me/bookings |
203
+ *UsersApi* | [**getUserEvents**](docs/UsersApi.md#getuserevents) | **GET** /api/users/me/events |
204
204
  *UsersApi* | [**getUserProfileById**](docs/UsersApi.md#getuserprofilebyid) | **GET** /api/users/profile/{id} |
205
205
  *UsersApi* | [**listPlayers**](docs/UsersApi.md#listplayers) | **GET** /api/users/players |
206
206
  *UsersApi* | [**login**](docs/UsersApi.md#login) | **POST** /api/users/login |
@@ -337,6 +337,12 @@ Class | Method | HTTP request | Description
337
337
  - [EstimateEventPrice200Response](docs/EstimateEventPrice200Response.md)
338
338
  - [EstimateEventPriceRequest](docs/EstimateEventPriceRequest.md)
339
339
  - [EstimateEventPriceRequestSharesInner](docs/EstimateEventPriceRequestSharesInner.md)
340
+ - [EventBookingDetailSummary](docs/EventBookingDetailSummary.md)
341
+ - [EventBookingResponse](docs/EventBookingResponse.md)
342
+ - [EventBookingResponsePlayersInner](docs/EventBookingResponsePlayersInner.md)
343
+ - [EventBookingResponsePlayersInnerInvoiceStatus](docs/EventBookingResponsePlayersInnerInvoiceStatus.md)
344
+ - [EventBookingResponseSetupStatus](docs/EventBookingResponseSetupStatus.md)
345
+ - [EventBookingStatus](docs/EventBookingStatus.md)
340
346
  - [EventConflictCheckRequest](docs/EventConflictCheckRequest.md)
341
347
  - [EventConflictCheckResponse](docs/EventConflictCheckResponse.md)
342
348
  - [EventResponse](docs/EventResponse.md)
@@ -376,6 +382,8 @@ Class | Method | HTTP request | Description
376
382
  - [ImageReferencePayload](docs/ImageReferencePayload.md)
377
383
  - [InvoiceInfo](docs/InvoiceInfo.md)
378
384
  - [InvoiceStatus](docs/InvoiceStatus.md)
385
+ - [InvoiceStatusSETUPPENDING](docs/InvoiceStatusSETUPPENDING.md)
386
+ - [InvoiceStatusSETUPSUCCESS](docs/InvoiceStatusSETUPSUCCESS.md)
379
387
  - [JoinEventRequest](docs/JoinEventRequest.md)
380
388
  - [JoinEventRequestPlayersPaymentMethodsInner](docs/JoinEventRequestPlayersPaymentMethodsInner.md)
381
389
  - [JoinEventResponse](docs/JoinEventResponse.md)
@@ -395,13 +403,12 @@ Class | Method | HTTP request | Description
395
403
  - [PartialClubActiveResponse](docs/PartialClubActiveResponse.md)
396
404
  - [PartialClubActiveResponseLocation](docs/PartialClubActiveResponseLocation.md)
397
405
  - [PartialClubWeeklySchedule](docs/PartialClubWeeklySchedule.md)
406
+ - [ParticipationType](docs/ParticipationType.md)
398
407
  - [PasswordResetRequestBody](docs/PasswordResetRequestBody.md)
399
408
  - [PaymentByPlayerInfo](docs/PaymentByPlayerInfo.md)
400
409
  - [PaymentMethod](docs/PaymentMethod.md)
401
410
  - [PickIUserLocationExcludeKeyofIUserLocationType](docs/PickIUserLocationExcludeKeyofIUserLocationType.md)
402
411
  - [PlanInterval](docs/PlanInterval.md)
403
- - [PlanPrice](docs/PlanPrice.md)
404
- - [PlanPriceInput](docs/PlanPriceInput.md)
405
412
  - [PlayerCategoriesResponse](docs/PlayerCategoriesResponse.md)
406
413
  - [PlayerCategory](docs/PlayerCategory.md)
407
414
  - [PlayerCategoryId](docs/PlayerCategoryId.md)
@@ -479,7 +486,6 @@ Class | Method | HTTP request | Description
479
486
  - [SubscriberPrice](docs/SubscriberPrice.md)
480
487
  - [SubscriptionInfo](docs/SubscriptionInfo.md)
481
488
  - [SubscriptionMutationResponse](docs/SubscriptionMutationResponse.md)
482
- - [SubscriptionPlanDiscountResponse](docs/SubscriptionPlanDiscountResponse.md)
483
489
  - [SubscriptionPlanResponse](docs/SubscriptionPlanResponse.md)
484
490
  - [SurfaceType](docs/SurfaceType.md)
485
491
  - [Team](docs/Team.md)
@@ -509,12 +515,16 @@ Class | Method | HTTP request | Description
509
515
  - [UserClubMembership](docs/UserClubMembership.md)
510
516
  - [UserClubMembershipsResponse](docs/UserClubMembershipsResponse.md)
511
517
  - [UserClubSubscription](docs/UserClubSubscription.md)
518
+ - [UserEventParticipation](docs/UserEventParticipation.md)
519
+ - [UserEventSummary](docs/UserEventSummary.md)
520
+ - [UserEventsResponse](docs/UserEventsResponse.md)
512
521
  - [UserInfo](docs/UserInfo.md)
513
522
  - [UserLocationSummary](docs/UserLocationSummary.md)
514
523
  - [UserProfileResponse](docs/UserProfileResponse.md)
515
524
  - [UserRolesResponse](docs/UserRolesResponse.md)
516
525
  - [UserSubscriptionsResponse](docs/UserSubscriptionsResponse.md)
517
526
  - [VerifyEmailRequest](docs/VerifyEmailRequest.md)
527
+ - [VisibilityType](docs/VisibilityType.md)
518
528
  - [YearlyTurnoverResponse](docs/YearlyTurnoverResponse.md)
519
529
 
520
530