@tennac-booking/sdk 1.0.142 → 1.0.144
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 +4 -0
- package/README.md +4 -0
- package/api.ts +491 -7
- package/dist/api.d.ts +363 -4
- package/dist/api.js +207 -11
- package/dist/esm/api.d.ts +363 -4
- package/dist/esm/api.js +199 -7
- package/docs/BookingsPerDayItem.md +8 -0
- package/docs/ClubAnalyticsStaffApi.md +12 -2
- package/docs/ClubCustomerSettingsResponse.md +38 -0
- package/docs/ClubCustomerStaffApi.md +113 -0
- package/docs/ClubNewBookingsResponse.md +8 -0
- package/docs/ClubNewSubscribersResponse.md +8 -0
- package/docs/CreateEventRequest.md +2 -0
- package/docs/EventResponse.md +2 -0
- package/docs/MonthlyTurnoverResponse.md +8 -0
- package/docs/RetentionRateResponse.md +8 -0
- package/docs/TrendDirection.md +12 -0
- package/docs/UpdateEventRequest.md +2 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
.gitignore
|
|
2
2
|
.npmignore
|
|
3
|
+
.openapi-generator-ignore
|
|
3
4
|
README.md
|
|
4
5
|
api.ts
|
|
5
6
|
base.ts
|
|
@@ -63,6 +64,8 @@ docs/ClientSubscriptionsResponse.md
|
|
|
63
64
|
docs/ClubAccessSettingsResponse.md
|
|
64
65
|
docs/ClubAnalyticsApi.md
|
|
65
66
|
docs/ClubAnalyticsStaffApi.md
|
|
67
|
+
docs/ClubCustomerSettingsResponse.md
|
|
68
|
+
docs/ClubCustomerStaffApi.md
|
|
66
69
|
docs/ClubDayInterval.md
|
|
67
70
|
docs/ClubEvent.md
|
|
68
71
|
docs/ClubGeneralSettingsResponse.md
|
|
@@ -301,6 +304,7 @@ docs/SubscriptionsUserApi.md
|
|
|
301
304
|
docs/SurfaceType.md
|
|
302
305
|
docs/Team.md
|
|
303
306
|
docs/TimeBounds.md
|
|
307
|
+
docs/TrendDirection.md
|
|
304
308
|
docs/UpdateActuality200Response.md
|
|
305
309
|
docs/UpdateClubAccessSettingsRequest.md
|
|
306
310
|
docs/UpdateClubDayScheduleRequest.md
|
package/README.md
CHANGED
|
@@ -95,6 +95,8 @@ Class | Method | HTTP request | Description
|
|
|
95
95
|
*ClubAnalyticsStaffApi* | [**getTenNextBookings**](docs/ClubAnalyticsStaffApi.md#gettennextbookings) | **GET** /api/club-analytics/next-bookings |
|
|
96
96
|
*ClubAnalyticsStaffApi* | [**getTopCourtsByBookings**](docs/ClubAnalyticsStaffApi.md#gettopcourtsbybookings) | **GET** /api/club-analytics/top-courts |
|
|
97
97
|
*ClubAnalyticsStaffApi* | [**getYearlyTurnOver**](docs/ClubAnalyticsStaffApi.md#getyearlyturnover) | **GET** /api/club-analytics/yearly-turnover |
|
|
98
|
+
*ClubCustomerStaffApi* | [**getClubCustomerSettings**](docs/ClubCustomerStaffApi.md#getclubcustomersettings) | **GET** /api/clubCustomers/clubCustomer/{userId}/settings |
|
|
99
|
+
*ClubCustomerStaffApi* | [**updateClubCustomerSettings**](docs/ClubCustomerStaffApi.md#updateclubcustomersettings) | **PATCH** /api/clubCustomers/clubCustomer/{userId}/settings |
|
|
98
100
|
*ClubRolesManagerApi* | [**createClubRole**](docs/ClubRolesManagerApi.md#createclubrole) | **POST** /api/club-roles |
|
|
99
101
|
*ClubRolesManagerApi* | [**deleteClubRole**](docs/ClubRolesManagerApi.md#deleteclubrole) | **DELETE** /api/club-roles/{id} |
|
|
100
102
|
*ClubRolesManagerApi* | [**updateClubRole**](docs/ClubRolesManagerApi.md#updateclubrole) | **PUT** /api/club-roles/{id} |
|
|
@@ -289,6 +291,7 @@ Class | Method | HTTP request | Description
|
|
|
289
291
|
- [ClientSubscriptionItem](docs/ClientSubscriptionItem.md)
|
|
290
292
|
- [ClientSubscriptionsResponse](docs/ClientSubscriptionsResponse.md)
|
|
291
293
|
- [ClubAccessSettingsResponse](docs/ClubAccessSettingsResponse.md)
|
|
294
|
+
- [ClubCustomerSettingsResponse](docs/ClubCustomerSettingsResponse.md)
|
|
292
295
|
- [ClubDayInterval](docs/ClubDayInterval.md)
|
|
293
296
|
- [ClubEvent](docs/ClubEvent.md)
|
|
294
297
|
- [ClubGeneralSettingsResponse](docs/ClubGeneralSettingsResponse.md)
|
|
@@ -509,6 +512,7 @@ Class | Method | HTTP request | Description
|
|
|
509
512
|
- [SurfaceType](docs/SurfaceType.md)
|
|
510
513
|
- [Team](docs/Team.md)
|
|
511
514
|
- [TimeBounds](docs/TimeBounds.md)
|
|
515
|
+
- [TrendDirection](docs/TrendDirection.md)
|
|
512
516
|
- [UpdateActuality200Response](docs/UpdateActuality200Response.md)
|
|
513
517
|
- [UpdateClubAccessSettingsRequest](docs/UpdateClubAccessSettingsRequest.md)
|
|
514
518
|
- [UpdateClubDayScheduleRequest](docs/UpdateClubDayScheduleRequest.md)
|