@tennac-booking/sdk 1.0.180 → 1.0.181
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/api.ts +12 -0
- package/dist/api.d.ts +12 -0
- package/dist/esm/api.d.ts +12 -0
- package/docs/UserClubMembership.md +2 -0
- package/docs/UserProfileResponse.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -12882,6 +12882,12 @@ export interface UserClubMembership {
|
|
|
12882
12882
|
* @memberof UserClubMembership
|
|
12883
12883
|
*/
|
|
12884
12884
|
'clubPicture': string | null;
|
|
12885
|
+
/**
|
|
12886
|
+
*
|
|
12887
|
+
* @type {Array<string>}
|
|
12888
|
+
* @memberof UserClubMembership
|
|
12889
|
+
*/
|
|
12890
|
+
'bannerPictures'?: Array<string>;
|
|
12885
12891
|
/**
|
|
12886
12892
|
*
|
|
12887
12893
|
* @type {string}
|
|
@@ -13561,6 +13567,12 @@ export interface UserProfileResponse {
|
|
|
13561
13567
|
* @memberof UserProfileResponse
|
|
13562
13568
|
*/
|
|
13563
13569
|
'clubs'?: Array<UserClubMembership>;
|
|
13570
|
+
/**
|
|
13571
|
+
*
|
|
13572
|
+
* @type {Array<ClubSummary>}
|
|
13573
|
+
* @memberof UserProfileResponse
|
|
13574
|
+
*/
|
|
13575
|
+
'favoriteClubsDetails'?: Array<ClubSummary>;
|
|
13564
13576
|
/**
|
|
13565
13577
|
*
|
|
13566
13578
|
* @type {Array<ClubSummary>}
|
package/dist/api.d.ts
CHANGED
|
@@ -12656,6 +12656,12 @@ export interface UserClubMembership {
|
|
|
12656
12656
|
* @memberof UserClubMembership
|
|
12657
12657
|
*/
|
|
12658
12658
|
'clubPicture': string | null;
|
|
12659
|
+
/**
|
|
12660
|
+
*
|
|
12661
|
+
* @type {Array<string>}
|
|
12662
|
+
* @memberof UserClubMembership
|
|
12663
|
+
*/
|
|
12664
|
+
'bannerPictures'?: Array<string>;
|
|
12659
12665
|
/**
|
|
12660
12666
|
*
|
|
12661
12667
|
* @type {string}
|
|
@@ -13334,6 +13340,12 @@ export interface UserProfileResponse {
|
|
|
13334
13340
|
* @memberof UserProfileResponse
|
|
13335
13341
|
*/
|
|
13336
13342
|
'clubs'?: Array<UserClubMembership>;
|
|
13343
|
+
/**
|
|
13344
|
+
*
|
|
13345
|
+
* @type {Array<ClubSummary>}
|
|
13346
|
+
* @memberof UserProfileResponse
|
|
13347
|
+
*/
|
|
13348
|
+
'favoriteClubsDetails'?: Array<ClubSummary>;
|
|
13337
13349
|
/**
|
|
13338
13350
|
*
|
|
13339
13351
|
* @type {Array<ClubSummary>}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -12656,6 +12656,12 @@ export interface UserClubMembership {
|
|
|
12656
12656
|
* @memberof UserClubMembership
|
|
12657
12657
|
*/
|
|
12658
12658
|
'clubPicture': string | null;
|
|
12659
|
+
/**
|
|
12660
|
+
*
|
|
12661
|
+
* @type {Array<string>}
|
|
12662
|
+
* @memberof UserClubMembership
|
|
12663
|
+
*/
|
|
12664
|
+
'bannerPictures'?: Array<string>;
|
|
12659
12665
|
/**
|
|
12660
12666
|
*
|
|
12661
12667
|
* @type {string}
|
|
@@ -13334,6 +13340,12 @@ export interface UserProfileResponse {
|
|
|
13334
13340
|
* @memberof UserProfileResponse
|
|
13335
13341
|
*/
|
|
13336
13342
|
'clubs'?: Array<UserClubMembership>;
|
|
13343
|
+
/**
|
|
13344
|
+
*
|
|
13345
|
+
* @type {Array<ClubSummary>}
|
|
13346
|
+
* @memberof UserProfileResponse
|
|
13347
|
+
*/
|
|
13348
|
+
'favoriteClubsDetails'?: Array<ClubSummary>;
|
|
13337
13349
|
/**
|
|
13338
13350
|
*
|
|
13339
13351
|
* @type {Array<ClubSummary>}
|
|
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
|
|
|
8
8
|
**clubId** | **string** | | [default to undefined]
|
|
9
9
|
**clubName** | **string** | | [default to undefined]
|
|
10
10
|
**clubPicture** | **string** | | [default to undefined]
|
|
11
|
+
**bannerPictures** | **Array<string>** | | [optional] [default to undefined]
|
|
11
12
|
**address** | **string** | | [optional] [default to undefined]
|
|
12
13
|
**description** | **string** | | [optional] [default to undefined]
|
|
13
14
|
**tags** | **Array<string>** | | [optional] [default to undefined]
|
|
@@ -29,6 +30,7 @@ const instance: UserClubMembership = {
|
|
|
29
30
|
clubId,
|
|
30
31
|
clubName,
|
|
31
32
|
clubPicture,
|
|
33
|
+
bannerPictures,
|
|
32
34
|
address,
|
|
33
35
|
description,
|
|
34
36
|
tags,
|
|
@@ -42,6 +42,7 @@ Name | Type | Description | Notes
|
|
|
42
42
|
**subscriptionsCount** | **number** | | [optional] [default to undefined]
|
|
43
43
|
**subscriptions** | [**Array<ClubSubscriptions>**](ClubSubscriptions.md) | | [optional] [default to undefined]
|
|
44
44
|
**clubs** | [**Array<UserClubMembership>**](UserClubMembership.md) | | [optional] [default to undefined]
|
|
45
|
+
**favoriteClubsDetails** | [**Array<ClubSummary>**](ClubSummary.md) | | [optional] [default to undefined]
|
|
45
46
|
**frequentlyVisitedClubs** | [**Array<ClubSummary>**](ClubSummary.md) | | [optional] [default to undefined]
|
|
46
47
|
**frequentlyPlayedWith** | [**Array<PlayerSummary>**](PlayerSummary.md) | | [optional] [default to undefined]
|
|
47
48
|
**stripeLinks** | **{ [key: string]: any; }** | Construct a type with a set of properties K of type T | [optional] [default to undefined]
|
|
@@ -91,6 +92,7 @@ const instance: UserProfileResponse = {
|
|
|
91
92
|
subscriptionsCount,
|
|
92
93
|
subscriptions,
|
|
93
94
|
clubs,
|
|
95
|
+
favoriteClubsDetails,
|
|
94
96
|
frequentlyVisitedClubs,
|
|
95
97
|
frequentlyPlayedWith,
|
|
96
98
|
stripeLinks,
|