@tennac-booking/sdk 1.0.101 → 1.0.102
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 +6 -0
- package/dist/api.d.ts +6 -0
- package/dist/esm/api.d.ts +6 -0
- package/docs/UserClubMembership.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -8292,6 +8292,12 @@ export interface UserClubMembership {
|
|
|
8292
8292
|
* @memberof UserClubMembership
|
|
8293
8293
|
*/
|
|
8294
8294
|
'isPrivateOrganization': boolean;
|
|
8295
|
+
/**
|
|
8296
|
+
*
|
|
8297
|
+
* @type {boolean}
|
|
8298
|
+
* @memberof UserClubMembership
|
|
8299
|
+
*/
|
|
8300
|
+
'hasAvailableSubscriptions': boolean;
|
|
8295
8301
|
}
|
|
8296
8302
|
/**
|
|
8297
8303
|
*
|
package/dist/api.d.ts
CHANGED
|
@@ -8132,6 +8132,12 @@ export interface UserClubMembership {
|
|
|
8132
8132
|
* @memberof UserClubMembership
|
|
8133
8133
|
*/
|
|
8134
8134
|
'isPrivateOrganization': boolean;
|
|
8135
|
+
/**
|
|
8136
|
+
*
|
|
8137
|
+
* @type {boolean}
|
|
8138
|
+
* @memberof UserClubMembership
|
|
8139
|
+
*/
|
|
8140
|
+
'hasAvailableSubscriptions': boolean;
|
|
8135
8141
|
}
|
|
8136
8142
|
/**
|
|
8137
8143
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -8132,6 +8132,12 @@ export interface UserClubMembership {
|
|
|
8132
8132
|
* @memberof UserClubMembership
|
|
8133
8133
|
*/
|
|
8134
8134
|
'isPrivateOrganization': boolean;
|
|
8135
|
+
/**
|
|
8136
|
+
*
|
|
8137
|
+
* @type {boolean}
|
|
8138
|
+
* @memberof UserClubMembership
|
|
8139
|
+
*/
|
|
8140
|
+
'hasAvailableSubscriptions': boolean;
|
|
8135
8141
|
}
|
|
8136
8142
|
/**
|
|
8137
8143
|
*
|
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**hasActiveSubscription** | **boolean** | | [default to undefined]
|
|
15
15
|
**subscriptions** | [**Array<UserClubSubscription>**](UserClubSubscription.md) | | [default to undefined]
|
|
16
16
|
**isPrivateOrganization** | **boolean** | | [default to undefined]
|
|
17
|
+
**hasAvailableSubscriptions** | **boolean** | | [default to undefined]
|
|
17
18
|
|
|
18
19
|
## Example
|
|
19
20
|
|
|
@@ -30,6 +31,7 @@ const instance: UserClubMembership = {
|
|
|
30
31
|
hasActiveSubscription,
|
|
31
32
|
subscriptions,
|
|
32
33
|
isPrivateOrganization,
|
|
34
|
+
hasAvailableSubscriptions,
|
|
33
35
|
};
|
|
34
36
|
```
|
|
35
37
|
|