@tennac-booking/sdk 1.0.119 → 1.0.121

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 (59) hide show
  1. package/.openapi-generator/FILES +329 -313
  2. package/README.md +22 -2
  3. package/api.ts +910 -27
  4. package/base.ts +1 -1
  5. package/common.ts +1 -1
  6. package/configuration.ts +1 -1
  7. package/dist/api.d.ts +721 -17
  8. package/dist/api.js +330 -15
  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 +721 -17
  16. package/dist/esm/api.js +322 -11
  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/CheckTeamNameAvailability200Response.md +20 -0
  28. package/docs/ClientApi.md +47 -0
  29. package/docs/ClientFullOnboardingResponseClub.md +2 -0
  30. package/docs/ClientOnboardingRequestBody.md +2 -0
  31. package/docs/ClientSubscription.md +31 -0
  32. package/docs/ClientSubscriptionItem.md +25 -0
  33. package/docs/ClientSubscriptionsResponse.md +21 -0
  34. package/docs/ClubSettingsManagerApi.md +5 -5
  35. package/docs/CreateCourtRequest.md +2 -0
  36. package/docs/EstimateEventPrice200Response.md +32 -0
  37. package/docs/EstimateEventPriceRequest.md +26 -0
  38. package/docs/EstimateEventPriceRequestSharesInner.md +22 -0
  39. package/docs/EventResponse.md +1 -1
  40. package/docs/EventUser.md +28 -0
  41. package/docs/EventsApi.md +115 -0
  42. package/docs/ImageCleanupItem.md +22 -0
  43. package/docs/ImageCleanupRequestBody.md +20 -0
  44. package/docs/ImageCleanupResponse.md +22 -0
  45. package/docs/ImageContext.md +30 -0
  46. package/docs/ImageContextType.md +20 -0
  47. package/docs/ImageReferencePayload.md +24 -0
  48. package/docs/ImagesApi.md +59 -0
  49. package/docs/JoinEventRequest.md +2 -0
  50. package/docs/JoinEventRequestPlayersPaymentMethodsInner.md +2 -0
  51. package/docs/JoinEventResponse.md +14 -0
  52. package/docs/JoinEventResponseOnsitePaymentsInner.md +24 -0
  53. package/docs/Team.md +1 -1
  54. package/docs/UpdateClubGeneralSettingsRequest.md +1 -1
  55. package/docs/UpdateClubGeneralSettingsRequestLogo.md +24 -0
  56. package/docs/UpdateClubPresentationSettingsRequest.md +2 -2
  57. package/docs/UserProfileResponse.md +2 -0
  58. package/index.ts +1 -1
  59. package/package.json +1 -1
@@ -0,0 +1,24 @@
1
+ # JoinEventResponseOnsitePaymentsInner
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **paymentMethod** | [**PaymentMethod**](PaymentMethod.md) | | [default to undefined]
9
+ **amount** | **number** | | [default to undefined]
10
+ **playerId** | **string** | | [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { JoinEventResponseOnsitePaymentsInner } from '@tennac-booking/sdk';
16
+
17
+ const instance: JoinEventResponseOnsitePaymentsInner = {
18
+ paymentMethod,
19
+ amount,
20
+ playerId,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/docs/Team.md CHANGED
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **name** | **string** | | [default to undefined]
9
- **players** | **Array<string>** | | [default to undefined]
9
+ **players** | [**Array<EventUser>**](EventUser.md) | | [default to undefined]
10
10
 
11
11
  ## Example
12
12
 
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
11
11
  **websiteUrl** | **string** | | [optional] [default to undefined]
12
12
  **description** | **string** | | [optional] [default to undefined]
13
13
  **rib** | **string** | | [optional] [default to undefined]
14
- **logo** | **string** | | [optional] [default to undefined]
14
+ **logo** | [**UpdateClubGeneralSettingsRequestLogo**](UpdateClubGeneralSettingsRequestLogo.md) | | [optional] [default to undefined]
15
15
  **location** | [**ClubLocationSettings**](ClubLocationSettings.md) | | [optional] [default to undefined]
16
16
 
17
17
  ## Example
@@ -0,0 +1,24 @@
1
+ # UpdateClubGeneralSettingsRequestLogo
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **type** | [**ImageContextType**](ImageContextType.md) | | [default to undefined]
9
+ **imageKey** | **string** | | [default to undefined]
10
+ **dbContext** | **{ [key: string]: any; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import { UpdateClubGeneralSettingsRequestLogo } from '@tennac-booking/sdk';
16
+
17
+ const instance: UpdateClubGeneralSettingsRequestLogo = {
18
+ type,
19
+ imageKey,
20
+ dbContext,
21
+ };
22
+ ```
23
+
24
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -7,8 +7,8 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **description** | **string** | | [optional] [default to undefined]
9
9
  **tags** | **Array<string>** | | [optional] [default to undefined]
10
- **bannerImages** | **Array<string | null>** | | [optional] [default to undefined]
11
- **galleryImages** | **Array<string | null>** | | [optional] [default to undefined]
10
+ **bannerImages** | [**Array<UpdateClubGeneralSettingsRequestLogo>**](UpdateClubGeneralSettingsRequestLogo.md) | | [optional] [default to undefined]
11
+ **galleryImages** | [**Array<UpdateClubGeneralSettingsRequestLogo>**](UpdateClubGeneralSettingsRequestLogo.md) | | [optional] [default to undefined]
12
12
 
13
13
  ## Example
14
14
 
@@ -40,6 +40,7 @@ Name | Type | Description | Notes
40
40
  **frequentlyPlayedWith** | [**Array<PlayerSummary>**](PlayerSummary.md) | | [optional] [default to undefined]
41
41
  **stripeLinks** | **{ [key: string]: any; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
42
42
  **verifiedSports** | [**Array<SportResponse>**](SportResponse.md) | | [optional] [default to undefined]
43
+ **clubId** | **string** | | [optional] [default to undefined]
43
44
 
44
45
  ## Example
45
46
 
@@ -82,6 +83,7 @@ const instance: UserProfileResponse = {
82
83
  frequentlyPlayedWith,
83
84
  stripeLinks,
84
85
  verifiedSports,
86
+ clubId,
85
87
  };
86
88
  ```
87
89
 
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * openapi.json
5
5
  * Pandook API Documentation
6
6
  *
7
- * The version of the OpenAPI document: 1.0.110
7
+ * The version of the OpenAPI document: 1.0.121
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tennac-booking/sdk",
3
- "version": "1.0.119",
3
+ "version": "1.0.121",
4
4
  "description": "OpenAPI client for @tennac-booking/sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {