@tennac-booking/sdk 1.0.123 → 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.
- package/.openapi-generator/FILES +343 -331
- package/README.md +16 -4
- package/api.ts +569 -226
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +449 -141
- package/dist/api.js +136 -79
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +449 -141
- package/dist/esm/api.js +132 -75
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/CreateSubscriptionPlanRequestDiscount.md +0 -2
- package/docs/DeleteSubscriptionPlanResponse.md +0 -2
- package/docs/EventBookingDetailSummary.md +40 -0
- package/docs/EventBookingResponse.md +36 -0
- package/docs/EventBookingResponsePlayersInner.md +28 -0
- package/docs/EventBookingResponsePlayersInnerInvoiceStatus.md +18 -0
- package/docs/EventBookingResponseSetupStatus.md +18 -0
- package/docs/EventBookingStatus.md +16 -0
- package/docs/EventsApi.md +4 -1
- package/docs/InvoiceStatusSETUPPENDING.md +8 -0
- package/docs/InvoiceStatusSETUPSUCCESS.md +8 -0
- package/docs/OffPeakRule.md +0 -2
- package/docs/ParticipationType.md +10 -0
- package/docs/PublicSubscriptionPlanResponse.md +0 -2
- package/docs/PublishEventResponse.md +2 -0
- package/docs/SubscriptionPlanResponse.md +0 -4
- package/docs/SubscriptionsManagerApi.md +1 -55
- package/docs/UserEventParticipation.md +22 -0
- package/docs/UserEventSummary.md +44 -0
- package/docs/UserEventsResponse.md +28 -0
- package/docs/UsersApi.md +54 -0
- package/docs/VisibilityType.md +12 -0
- package/index.ts +1 -1
- package/package.json +1 -1
- package/docs/SubscriptionPlanDiscountResponse.md +0 -34
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @tennac-booking/sdk@1.0.
|
|
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.
|
|
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,6 +403,7 @@ 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)
|
|
@@ -477,7 +486,6 @@ Class | Method | HTTP request | Description
|
|
|
477
486
|
- [SubscriberPrice](docs/SubscriberPrice.md)
|
|
478
487
|
- [SubscriptionInfo](docs/SubscriptionInfo.md)
|
|
479
488
|
- [SubscriptionMutationResponse](docs/SubscriptionMutationResponse.md)
|
|
480
|
-
- [SubscriptionPlanDiscountResponse](docs/SubscriptionPlanDiscountResponse.md)
|
|
481
489
|
- [SubscriptionPlanResponse](docs/SubscriptionPlanResponse.md)
|
|
482
490
|
- [SurfaceType](docs/SurfaceType.md)
|
|
483
491
|
- [Team](docs/Team.md)
|
|
@@ -507,12 +515,16 @@ Class | Method | HTTP request | Description
|
|
|
507
515
|
- [UserClubMembership](docs/UserClubMembership.md)
|
|
508
516
|
- [UserClubMembershipsResponse](docs/UserClubMembershipsResponse.md)
|
|
509
517
|
- [UserClubSubscription](docs/UserClubSubscription.md)
|
|
518
|
+
- [UserEventParticipation](docs/UserEventParticipation.md)
|
|
519
|
+
- [UserEventSummary](docs/UserEventSummary.md)
|
|
520
|
+
- [UserEventsResponse](docs/UserEventsResponse.md)
|
|
510
521
|
- [UserInfo](docs/UserInfo.md)
|
|
511
522
|
- [UserLocationSummary](docs/UserLocationSummary.md)
|
|
512
523
|
- [UserProfileResponse](docs/UserProfileResponse.md)
|
|
513
524
|
- [UserRolesResponse](docs/UserRolesResponse.md)
|
|
514
525
|
- [UserSubscriptionsResponse](docs/UserSubscriptionsResponse.md)
|
|
515
526
|
- [VerifyEmailRequest](docs/VerifyEmailRequest.md)
|
|
527
|
+
- [VisibilityType](docs/VisibilityType.md)
|
|
516
528
|
- [YearlyTurnoverResponse](docs/YearlyTurnoverResponse.md)
|
|
517
529
|
|
|
518
530
|
|