@tennac-booking/sdk 1.0.125 → 1.0.126

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 (60) hide show
  1. package/.openapi-generator/FILES +333 -343
  2. package/README.md +9 -19
  3. package/api.ts +354 -619
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +256 -490
  8. package/dist/api.js +99 -156
  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 +256 -490
  16. package/dist/esm/api.js +95 -152
  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/BookingsStaffApi.md +10 -10
  28. package/docs/{EventBookingResponseSetupStatus.md → CheckInPlayerRequest.md} +5 -3
  29. package/docs/{CheckInPlayersResponse.md → CheckInPlayerResponse.md} +5 -5
  30. package/docs/ClubPlayerSubscriptionSummary.md +3 -3
  31. package/docs/CreatePlan201Response.md +2 -0
  32. package/docs/CreateSubscriptionPlanRequest.md +2 -2
  33. package/docs/CreateSubscriptionPlanRequestDiscount.md +2 -0
  34. package/docs/DeleteSubscriptionPlanResponse.md +2 -0
  35. package/docs/EventsApi.md +1 -4
  36. package/docs/MonthlyTurnoverResponse.md +0 -1
  37. package/docs/OffPeakRule.md +2 -0
  38. package/docs/PlanPrice.md +26 -0
  39. package/docs/{CheckInPlayersRequest.md → PlanPriceInput.md} +7 -5
  40. package/docs/PublicSubscriptionPlanResponse.md +5 -1
  41. package/docs/PublishEventResponse.md +0 -2
  42. package/docs/SendSubscriptionInvitationRequest.md +2 -0
  43. package/docs/SubscriptionPlanDiscountResponse.md +34 -0
  44. package/docs/SubscriptionPlanResponse.md +7 -1
  45. package/docs/SubscriptionsManagerApi.md +55 -1
  46. package/docs/UsersApi.md +0 -54
  47. package/index.ts +1 -1
  48. package/package.json +1 -1
  49. package/docs/EventBookingDetailSummary.md +0 -40
  50. package/docs/EventBookingResponse.md +0 -36
  51. package/docs/EventBookingResponsePlayersInner.md +0 -28
  52. package/docs/EventBookingResponsePlayersInnerInvoiceStatus.md +0 -18
  53. package/docs/EventBookingStatus.md +0 -16
  54. package/docs/InvoiceStatusSETUPPENDING.md +0 -8
  55. package/docs/InvoiceStatusSETUPSUCCESS.md +0 -8
  56. package/docs/ParticipationType.md +0 -10
  57. package/docs/UserEventParticipation.md +0 -22
  58. package/docs/UserEventSummary.md +0 -44
  59. package/docs/UserEventsResponse.md +0 -28
  60. package/docs/VisibilityType.md +0 -12
@@ -1,44 +0,0 @@
1
- # UserEventSummary
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **id** | **string** | | [default to undefined]
9
- **clubId** | **string** | | [default to undefined]
10
- **title** | **string** | | [default to undefined]
11
- **description** | **string** | | [optional] [default to undefined]
12
- **photoUrl** | **string** | | [optional] [default to undefined]
13
- **startDate** | **string** | | [default to undefined]
14
- **endDate** | **string** | | [default to undefined]
15
- **participationType** | [**ParticipationType**](ParticipationType.md) | | [default to undefined]
16
- **visibilityType** | [**VisibilityType**](VisibilityType.md) | | [default to undefined]
17
- **isActive** | **boolean** | | [default to undefined]
18
- **price** | **number** | | [optional] [default to undefined]
19
- **sports** | **Array<string>** | | [optional] [default to undefined]
20
- **courts** | **Array<string>** | | [optional] [default to undefined]
21
-
22
- ## Example
23
-
24
- ```typescript
25
- import { UserEventSummary } from '@tennac-booking/sdk';
26
-
27
- const instance: UserEventSummary = {
28
- id,
29
- clubId,
30
- title,
31
- description,
32
- photoUrl,
33
- startDate,
34
- endDate,
35
- participationType,
36
- visibilityType,
37
- isActive,
38
- price,
39
- sports,
40
- courts,
41
- };
42
- ```
43
-
44
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,28 +0,0 @@
1
- # UserEventsResponse
2
-
3
-
4
- ## Properties
5
-
6
- Name | Type | Description | Notes
7
- ------------ | ------------- | ------------- | -------------
8
- **total** | **number** | | [default to undefined]
9
- **limit** | **number** | | [default to undefined]
10
- **skip** | **number** | | [default to undefined]
11
- **hasMore** | **boolean** | | [default to undefined]
12
- **participations** | [**Array<UserEventParticipation>**](UserEventParticipation.md) | | [default to undefined]
13
-
14
- ## Example
15
-
16
- ```typescript
17
- import { UserEventsResponse } from '@tennac-booking/sdk';
18
-
19
- const instance: UserEventsResponse = {
20
- total,
21
- limit,
22
- skip,
23
- hasMore,
24
- participations,
25
- };
26
- ```
27
-
28
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -1,12 +0,0 @@
1
- # VisibilityType
2
-
3
-
4
- ## Enum
5
-
6
- * `Public` (value: `'public'`)
7
-
8
- * `Private` (value: `'private'`)
9
-
10
- * `Invitation` (value: `'invitation'`)
11
-
12
- [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)