@tennac-booking/sdk 1.0.302 → 1.0.303
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 +6 -1
- package/README.md +7 -0
- package/api.ts +484 -12
- package/dist/api.d.ts +385 -12
- package/dist/api.js +170 -2
- package/dist/esm/api.d.ts +385 -12
- package/dist/esm/api.js +164 -0
- package/docs/BookingGuestCheckinResponse.md +26 -0
- package/docs/BookingPopulated.md +4 -0
- package/docs/BookingSummary.md +4 -0
- package/docs/BookingsStaffApi.md +52 -0
- package/docs/ErrorResponse.md +28 -0
- package/docs/EstimateEventPriceRequest.md +0 -2
- package/docs/EstimateEventPriceResponse.md +0 -2
- package/docs/EventBookingDetailResponseBooking.md +4 -0
- package/docs/EventBookingGuestCheckinResponse.md +26 -0
- package/docs/EventBookingsStaffApi.md +62 -0
- package/docs/JoinEventRequest.md +2 -0
- package/docs/PaymentCoverageResult.md +40 -0
- package/docs/PaymentDistributionResult.md +32 -0
- package/docs/StaffEventBookingResponse.md +4 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
.gitignore
|
|
2
2
|
.npmignore
|
|
3
|
-
.openapi-generator-ignore
|
|
4
3
|
README.md
|
|
5
4
|
api.ts
|
|
6
5
|
base.ts
|
|
@@ -24,6 +23,7 @@ docs/BookingAnalyticsResponse.md
|
|
|
24
23
|
docs/BookingClubInfo.md
|
|
25
24
|
docs/BookingClubInfoClubSettings.md
|
|
26
25
|
docs/BookingCourtInfo.md
|
|
26
|
+
docs/BookingGuestCheckinResponse.md
|
|
27
27
|
docs/BookingHistoryPopulated.md
|
|
28
28
|
docs/BookingInfo.md
|
|
29
29
|
docs/BookingInvoicePaymentStatus.md
|
|
@@ -190,6 +190,7 @@ docs/DiscountType.md
|
|
|
190
190
|
docs/DuplicateClubDayScheduleRequest.md
|
|
191
191
|
docs/EmailExistsRequestBody.md
|
|
192
192
|
docs/EmailExistsResponse.md
|
|
193
|
+
docs/ErrorResponse.md
|
|
193
194
|
docs/EstimateEventPlayerPrice.md
|
|
194
195
|
docs/EstimateEventPriceRequest.md
|
|
195
196
|
docs/EstimateEventPriceResponse.md
|
|
@@ -204,6 +205,7 @@ docs/EventBookingDetailResponseBooking.md
|
|
|
204
205
|
docs/EventBookingDetailSummary.md
|
|
205
206
|
docs/EventBookingDetailSummaryPartnersInner.md
|
|
206
207
|
docs/EventBookingDetailSummaryPaymentPerPlayersInner.md
|
|
208
|
+
docs/EventBookingGuestCheckinResponse.md
|
|
207
209
|
docs/EventBookingResponse.md
|
|
208
210
|
docs/EventBookingResponseInvoicesInner.md
|
|
209
211
|
docs/EventBookingResponseInvoicesInnerPaymentMethod.md
|
|
@@ -212,6 +214,7 @@ docs/EventBookingResponsePaymentPerPlayersInner.md
|
|
|
212
214
|
docs/EventBookingResponsePlayersInner.md
|
|
213
215
|
docs/EventBookingResponseSetupStatus.md
|
|
214
216
|
docs/EventBookingStatus.md
|
|
217
|
+
docs/EventBookingsStaffApi.md
|
|
215
218
|
docs/EventConflictCheckRequest.md
|
|
216
219
|
docs/EventConflictCheckResponse.md
|
|
217
220
|
docs/EventDetailClub.md
|
|
@@ -356,6 +359,8 @@ docs/PartnerSearchResponse.md
|
|
|
356
359
|
docs/PartnerSearchResponseMeta.md
|
|
357
360
|
docs/PasswordResetRequestBody.md
|
|
358
361
|
docs/PaymentByPlayerInfo.md
|
|
362
|
+
docs/PaymentCoverageResult.md
|
|
363
|
+
docs/PaymentDistributionResult.md
|
|
359
364
|
docs/PaymentIntentResult.md
|
|
360
365
|
docs/PaymentMethod.md
|
|
361
366
|
docs/PaymentProviderType.md
|
package/README.md
CHANGED
|
@@ -65,6 +65,7 @@ Class | Method | HTTP request | Description
|
|
|
65
65
|
*BookingsApi* | [**leaveOpenBooking**](docs/BookingsApi.md#leaveopenbooking) | **DELETE** /api/bookings/{bookingId}/open/leave |
|
|
66
66
|
*BookingsManagerApi* | [**applyNoShowFee**](docs/BookingsManagerApi.md#applynoshowfee) | **POST** /api/bookings/{bookingId}/no-show |
|
|
67
67
|
*BookingsManagerApi* | [**managerCancelBooking**](docs/BookingsManagerApi.md#managercancelbooking) | **POST** /api/bookings/{bookingId}/manager-cancel |
|
|
68
|
+
*BookingsStaffApi* | [**bookingGuestCheckin**](docs/BookingsStaffApi.md#bookingguestcheckin) | **POST** /api/bookings/{bookingId}/guest-checkin |
|
|
68
69
|
*BookingsStaffApi* | [**checkInPlayer**](docs/BookingsStaffApi.md#checkinplayer) | **POST** /api/bookings/{bookingId}/check-in |
|
|
69
70
|
*BookingsStaffApi* | [**checkInPlayerWithSumup**](docs/BookingsStaffApi.md#checkinplayerwithsumup) | **POST** /api/bookings/{bookingId}/check-in/sumup |
|
|
70
71
|
*BookingsStaffApi* | [**createStaffBooking**](docs/BookingsStaffApi.md#createstaffbooking) | **POST** /api/bookings/staff |
|
|
@@ -191,6 +192,7 @@ Class | Method | HTTP request | Description
|
|
|
191
192
|
*ClubsStaffApi* | [**updateUserCreditsStaff**](docs/ClubsStaffApi.md#updateusercreditsstaff) | **PUT** /api/clubs/staff/user-credits/{id} |
|
|
192
193
|
*ContactApi* | [**sendContact**](docs/ContactApi.md#sendcontact) | **POST** /api/contact |
|
|
193
194
|
*DefaultApi* | [**createClub**](docs/DefaultApi.md#createclub) | **POST** /api/clubs |
|
|
195
|
+
*EventBookingsStaffApi* | [**eventBookingGuestCheckin**](docs/EventBookingsStaffApi.md#eventbookingguestcheckin) | **POST** /api/event-bookings/{eventBookingId}/guest-checkin |
|
|
194
196
|
*EventsApi* | [**checkTeamNameAvailability**](docs/EventsApi.md#checkteamnameavailability) | **GET** /api/events/{eventId}/team-name-availability |
|
|
195
197
|
*EventsApi* | [**estimateEventPrice**](docs/EventsApi.md#estimateeventprice) | **POST** /api/events/{eventId}/estimate-price |
|
|
196
198
|
*EventsApi* | [**estimateOpenEventBookingJoinPrice**](docs/EventsApi.md#estimateopeneventbookingjoinprice) | **GET** /api/events/{eventBookingId}/open/estimate |
|
|
@@ -364,6 +366,7 @@ Class | Method | HTTP request | Description
|
|
|
364
366
|
- [BookingClubInfo](docs/BookingClubInfo.md)
|
|
365
367
|
- [BookingClubInfoClubSettings](docs/BookingClubInfoClubSettings.md)
|
|
366
368
|
- [BookingCourtInfo](docs/BookingCourtInfo.md)
|
|
369
|
+
- [BookingGuestCheckinResponse](docs/BookingGuestCheckinResponse.md)
|
|
367
370
|
- [BookingHistoryPopulated](docs/BookingHistoryPopulated.md)
|
|
368
371
|
- [BookingInfo](docs/BookingInfo.md)
|
|
369
372
|
- [BookingInvoicePaymentStatus](docs/BookingInvoicePaymentStatus.md)
|
|
@@ -512,6 +515,7 @@ Class | Method | HTTP request | Description
|
|
|
512
515
|
- [DuplicateClubDayScheduleRequest](docs/DuplicateClubDayScheduleRequest.md)
|
|
513
516
|
- [EmailExistsRequestBody](docs/EmailExistsRequestBody.md)
|
|
514
517
|
- [EmailExistsResponse](docs/EmailExistsResponse.md)
|
|
518
|
+
- [ErrorResponse](docs/ErrorResponse.md)
|
|
515
519
|
- [EstimateEventPlayerPrice](docs/EstimateEventPlayerPrice.md)
|
|
516
520
|
- [EstimateEventPriceRequest](docs/EstimateEventPriceRequest.md)
|
|
517
521
|
- [EstimateEventPriceResponse](docs/EstimateEventPriceResponse.md)
|
|
@@ -526,6 +530,7 @@ Class | Method | HTTP request | Description
|
|
|
526
530
|
- [EventBookingDetailSummary](docs/EventBookingDetailSummary.md)
|
|
527
531
|
- [EventBookingDetailSummaryPartnersInner](docs/EventBookingDetailSummaryPartnersInner.md)
|
|
528
532
|
- [EventBookingDetailSummaryPaymentPerPlayersInner](docs/EventBookingDetailSummaryPaymentPerPlayersInner.md)
|
|
533
|
+
- [EventBookingGuestCheckinResponse](docs/EventBookingGuestCheckinResponse.md)
|
|
529
534
|
- [EventBookingResponse](docs/EventBookingResponse.md)
|
|
530
535
|
- [EventBookingResponseInvoicesInner](docs/EventBookingResponseInvoicesInner.md)
|
|
531
536
|
- [EventBookingResponseInvoicesInnerPaymentMethod](docs/EventBookingResponseInvoicesInnerPaymentMethod.md)
|
|
@@ -673,6 +678,8 @@ Class | Method | HTTP request | Description
|
|
|
673
678
|
- [PartnerSearchResponseMeta](docs/PartnerSearchResponseMeta.md)
|
|
674
679
|
- [PasswordResetRequestBody](docs/PasswordResetRequestBody.md)
|
|
675
680
|
- [PaymentByPlayerInfo](docs/PaymentByPlayerInfo.md)
|
|
681
|
+
- [PaymentCoverageResult](docs/PaymentCoverageResult.md)
|
|
682
|
+
- [PaymentDistributionResult](docs/PaymentDistributionResult.md)
|
|
676
683
|
- [PaymentIntentResult](docs/PaymentIntentResult.md)
|
|
677
684
|
- [PaymentMethod](docs/PaymentMethod.md)
|
|
678
685
|
- [PaymentProviderType](docs/PaymentProviderType.md)
|