@tennac-booking/sdk 1.0.169 → 1.0.171
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 +394 -380
- package/README.md +21 -2
- package/api.ts +1082 -34
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +680 -1
- package/dist/api.js +637 -3
- 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 +680 -1
- package/dist/esm/api.js +623 -1
- 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/EmailExistsRequestBody.md +20 -0
- package/docs/EmailExistsResponse.md +20 -0
- package/docs/EventBookingDetailSummary.md +2 -0
- package/docs/EventsWaitListApi.md +175 -0
- package/docs/EventsWaitListStaffApi.md +115 -0
- package/docs/GetUserPosition200Response.md +22 -0
- package/docs/GetWaitListForEvent200Response.md +22 -0
- package/docs/JoinWaitList200Response.md +26 -0
- package/docs/JoinWaitListRequest.md +22 -0
- package/docs/PublicEmailApi.md +167 -0
- package/docs/RequestEmailCodeBody.md +20 -0
- package/docs/RequestEmailCodeResponse.md +22 -0
- package/docs/VerifyEmailCodeBody.md +22 -0
- package/docs/VerifyEmailCodeResponse.md +22 -0
- package/docs/WaitListResponse.md +38 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @tennac-booking/sdk@1.0.
|
|
1
|
+
## @tennac-booking/sdk@1.0.171
|
|
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.171 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -199,7 +199,15 @@ Class | Method | HTTP request | Description
|
|
|
199
199
|
*EventsStaffApi* | [**getEventsByClub**](docs/EventsStaffApi.md#geteventsbyclub) | **GET** /api/events/staff/getEvents |
|
|
200
200
|
*EventsStaffApi* | [**getMonthlyEvents**](docs/EventsStaffApi.md#getmonthlyevents) | **GET** /api/events/calendar/monthly |
|
|
201
201
|
*EventsStaffApi* | [**getWeeklyEvents**](docs/EventsStaffApi.md#getweeklyevents) | **GET** /api/events/calendar/weekly |
|
|
202
|
+
*EventsWaitListApi* | [**getUserPosition**](docs/EventsWaitListApi.md#getuserposition) | **GET** /api/events/waitlist/{eventId}/position |
|
|
203
|
+
*EventsWaitListApi* | [**joinWaitList**](docs/EventsWaitListApi.md#joinwaitlist) | **POST** /api/events/waitlist/{eventId}/join |
|
|
204
|
+
*EventsWaitListApi* | [**leaveWaitList**](docs/EventsWaitListApi.md#leavewaitlist) | **DELETE** /api/events/waitlist/{eventId}/leave |
|
|
205
|
+
*EventsWaitListStaffApi* | [**getWaitListForEvent**](docs/EventsWaitListStaffApi.md#getwaitlistforevent) | **GET** /api/events/waitlist/{eventId} |
|
|
206
|
+
*EventsWaitListStaffApi* | [**processWaitList**](docs/EventsWaitListStaffApi.md#processwaitlist) | **POST** /api/events/waitlist/{eventId}/process |
|
|
202
207
|
*ImagesApi* | [**cleanupImages**](docs/ImagesApi.md#cleanupimages) | **POST** /api/images/cleanup |
|
|
208
|
+
*PublicEmailApi* | [**authEmailExists**](docs/PublicEmailApi.md#authemailexists) | **POST** /api/public-email/auth-email-exists |
|
|
209
|
+
*PublicEmailApi* | [**requestVerificationCode**](docs/PublicEmailApi.md#requestverificationcode) | **POST** /api/public-email/request-verification-code |
|
|
210
|
+
*PublicEmailApi* | [**verifyCode**](docs/PublicEmailApi.md#verifycode) | **POST** /api/public-email/verify-code |
|
|
203
211
|
*SportsManagerApi* | [**createSport**](docs/SportsManagerApi.md#createsport) | **POST** /api/sports |
|
|
204
212
|
*SportsManagerApi* | [**deleteSport**](docs/SportsManagerApi.md#deletesport) | **DELETE** /api/sports/{id} |
|
|
205
213
|
*SportsManagerApi* | [**updateSport**](docs/SportsManagerApi.md#updatesport) | **PUT** /api/sports/{id} |
|
|
@@ -383,6 +391,8 @@ Class | Method | HTTP request | Description
|
|
|
383
391
|
- [DeleteSubscriptionPlanResponse](docs/DeleteSubscriptionPlanResponse.md)
|
|
384
392
|
- [DiscountType](docs/DiscountType.md)
|
|
385
393
|
- [DuplicateClubDayScheduleRequest](docs/DuplicateClubDayScheduleRequest.md)
|
|
394
|
+
- [EmailExistsRequestBody](docs/EmailExistsRequestBody.md)
|
|
395
|
+
- [EmailExistsResponse](docs/EmailExistsResponse.md)
|
|
386
396
|
- [EstimateEventPrice200Response](docs/EstimateEventPrice200Response.md)
|
|
387
397
|
- [EstimateEventPriceRequest](docs/EstimateEventPriceRequest.md)
|
|
388
398
|
- [EstimateEventPriceRequestSharesInner](docs/EstimateEventPriceRequestSharesInner.md)
|
|
@@ -427,6 +437,8 @@ Class | Method | HTTP request | Description
|
|
|
427
437
|
- [GetOpenEventBookings200Response](docs/GetOpenEventBookings200Response.md)
|
|
428
438
|
- [GetPublishedActualities200Response](docs/GetPublishedActualities200Response.md)
|
|
429
439
|
- [GetSlotsByClubById200Response](docs/GetSlotsByClubById200Response.md)
|
|
440
|
+
- [GetUserPosition200Response](docs/GetUserPosition200Response.md)
|
|
441
|
+
- [GetWaitListForEvent200Response](docs/GetWaitListForEvent200Response.md)
|
|
430
442
|
- [GoogleAuthRequestBody](docs/GoogleAuthRequestBody.md)
|
|
431
443
|
- [GoogleAuthResponse](docs/GoogleAuthResponse.md)
|
|
432
444
|
- [GoogleAuthResponseUser](docs/GoogleAuthResponseUser.md)
|
|
@@ -454,6 +466,8 @@ Class | Method | HTTP request | Description
|
|
|
454
466
|
- [JoinOpenBookingResponse](docs/JoinOpenBookingResponse.md)
|
|
455
467
|
- [JoinOpenEventBookingRequest](docs/JoinOpenEventBookingRequest.md)
|
|
456
468
|
- [JoinOpenEventResponse](docs/JoinOpenEventResponse.md)
|
|
469
|
+
- [JoinWaitList200Response](docs/JoinWaitList200Response.md)
|
|
470
|
+
- [JoinWaitListRequest](docs/JoinWaitListRequest.md)
|
|
457
471
|
- [LastSixMonthsTurnoverItem](docs/LastSixMonthsTurnoverItem.md)
|
|
458
472
|
- [LeastBookedTimeSlotItem](docs/LeastBookedTimeSlotItem.md)
|
|
459
473
|
- [LeastBookedTimeSlotsResponse](docs/LeastBookedTimeSlotsResponse.md)
|
|
@@ -513,6 +527,8 @@ Class | Method | HTTP request | Description
|
|
|
513
527
|
- [RefreshTokenResponse](docs/RefreshTokenResponse.md)
|
|
514
528
|
- [RegisterRequestBody](docs/RegisterRequestBody.md)
|
|
515
529
|
- [RegisterRequestBodyLocation](docs/RegisterRequestBodyLocation.md)
|
|
530
|
+
- [RequestEmailCodeBody](docs/RequestEmailCodeBody.md)
|
|
531
|
+
- [RequestEmailCodeResponse](docs/RequestEmailCodeResponse.md)
|
|
516
532
|
- [RequestPasswordReset200Response](docs/RequestPasswordReset200Response.md)
|
|
517
533
|
- [ResetPasswordRequest](docs/ResetPasswordRequest.md)
|
|
518
534
|
- [RetentionRateResponse](docs/RetentionRateResponse.md)
|
|
@@ -590,8 +606,11 @@ Class | Method | HTTP request | Description
|
|
|
590
606
|
- [UserProfileResponse](docs/UserProfileResponse.md)
|
|
591
607
|
- [UserRolesResponse](docs/UserRolesResponse.md)
|
|
592
608
|
- [UserSubscriptionsResponse](docs/UserSubscriptionsResponse.md)
|
|
609
|
+
- [VerifyEmailCodeBody](docs/VerifyEmailCodeBody.md)
|
|
610
|
+
- [VerifyEmailCodeResponse](docs/VerifyEmailCodeResponse.md)
|
|
593
611
|
- [VerifyEmailRequest](docs/VerifyEmailRequest.md)
|
|
594
612
|
- [VisibilityType](docs/VisibilityType.md)
|
|
613
|
+
- [WaitListResponse](docs/WaitListResponse.md)
|
|
595
614
|
- [WeekdayAverageItem](docs/WeekdayAverageItem.md)
|
|
596
615
|
- [WeekdayKey](docs/WeekdayKey.md)
|
|
597
616
|
- [YearlyTurnoverResponse](docs/YearlyTurnoverResponse.md)
|