@tennac-booking/sdk 1.0.157 → 1.0.158
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 +8 -1
- package/dist/api.d.ts +7 -0
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +7 -0
- package/dist/esm/api.js +2 -1
- package/docs/ClubLocationSettings.md +2 -0
- package/docs/ImageContextType.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2190,6 +2190,12 @@ export interface ClubLocationSettings {
|
|
|
2190
2190
|
* @memberof ClubLocationSettings
|
|
2191
2191
|
*/
|
|
2192
2192
|
'country'?: string;
|
|
2193
|
+
/**
|
|
2194
|
+
*
|
|
2195
|
+
* @type {Array<number>}
|
|
2196
|
+
* @memberof ClubLocationSettings
|
|
2197
|
+
*/
|
|
2198
|
+
'coordinates'?: Array<number>;
|
|
2193
2199
|
}
|
|
2194
2200
|
/**
|
|
2195
2201
|
*
|
|
@@ -6667,7 +6673,8 @@ export const ImageContextType = {
|
|
|
6667
6673
|
ClubPreview: 'club-preview',
|
|
6668
6674
|
ClubCarousel: 'club-carousel',
|
|
6669
6675
|
ClubSportImage: 'club-sport-image',
|
|
6670
|
-
ClubEventImage: 'club-event-image'
|
|
6676
|
+
ClubEventImage: 'club-event-image',
|
|
6677
|
+
ClubEventSponsorImage: 'club-event-sponsor-image'
|
|
6671
6678
|
} as const;
|
|
6672
6679
|
|
|
6673
6680
|
export type ImageContextType = typeof ImageContextType[keyof typeof ImageContextType];
|
package/dist/api.d.ts
CHANGED
|
@@ -2146,6 +2146,12 @@ export interface ClubLocationSettings {
|
|
|
2146
2146
|
* @memberof ClubLocationSettings
|
|
2147
2147
|
*/
|
|
2148
2148
|
'country'?: string;
|
|
2149
|
+
/**
|
|
2150
|
+
*
|
|
2151
|
+
* @type {Array<number>}
|
|
2152
|
+
* @memberof ClubLocationSettings
|
|
2153
|
+
*/
|
|
2154
|
+
'coordinates'?: Array<number>;
|
|
2149
2155
|
}
|
|
2150
2156
|
/**
|
|
2151
2157
|
*
|
|
@@ -6557,6 +6563,7 @@ export declare const ImageContextType: {
|
|
|
6557
6563
|
readonly ClubCarousel: "club-carousel";
|
|
6558
6564
|
readonly ClubSportImage: "club-sport-image";
|
|
6559
6565
|
readonly ClubEventImage: "club-event-image";
|
|
6566
|
+
readonly ClubEventSponsorImage: "club-event-sponsor-image";
|
|
6560
6567
|
};
|
|
6561
6568
|
export type ImageContextType = typeof ImageContextType[keyof typeof ImageContextType];
|
|
6562
6569
|
/**
|
package/dist/api.js
CHANGED
|
@@ -185,7 +185,8 @@ exports.ImageContextType = {
|
|
|
185
185
|
ClubPreview: 'club-preview',
|
|
186
186
|
ClubCarousel: 'club-carousel',
|
|
187
187
|
ClubSportImage: 'club-sport-image',
|
|
188
|
-
ClubEventImage: 'club-event-image'
|
|
188
|
+
ClubEventImage: 'club-event-image',
|
|
189
|
+
ClubEventSponsorImage: 'club-event-sponsor-image'
|
|
189
190
|
};
|
|
190
191
|
/**
|
|
191
192
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2146,6 +2146,12 @@ export interface ClubLocationSettings {
|
|
|
2146
2146
|
* @memberof ClubLocationSettings
|
|
2147
2147
|
*/
|
|
2148
2148
|
'country'?: string;
|
|
2149
|
+
/**
|
|
2150
|
+
*
|
|
2151
|
+
* @type {Array<number>}
|
|
2152
|
+
* @memberof ClubLocationSettings
|
|
2153
|
+
*/
|
|
2154
|
+
'coordinates'?: Array<number>;
|
|
2149
2155
|
}
|
|
2150
2156
|
/**
|
|
2151
2157
|
*
|
|
@@ -6557,6 +6563,7 @@ export declare const ImageContextType: {
|
|
|
6557
6563
|
readonly ClubCarousel: "club-carousel";
|
|
6558
6564
|
readonly ClubSportImage: "club-sport-image";
|
|
6559
6565
|
readonly ClubEventImage: "club-event-image";
|
|
6566
|
+
readonly ClubEventSponsorImage: "club-event-sponsor-image";
|
|
6560
6567
|
};
|
|
6561
6568
|
export type ImageContextType = typeof ImageContextType[keyof typeof ImageContextType];
|
|
6562
6569
|
/**
|
package/dist/esm/api.js
CHANGED
|
@@ -179,7 +179,8 @@ export const ImageContextType = {
|
|
|
179
179
|
ClubPreview: 'club-preview',
|
|
180
180
|
ClubCarousel: 'club-carousel',
|
|
181
181
|
ClubSportImage: 'club-sport-image',
|
|
182
|
-
ClubEventImage: 'club-event-image'
|
|
182
|
+
ClubEventImage: 'club-event-image',
|
|
183
|
+
ClubEventSponsorImage: 'club-event-sponsor-image'
|
|
183
184
|
};
|
|
184
185
|
/**
|
|
185
186
|
*
|
|
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**zipCode** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**city** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**country** | **string** | | [optional] [default to undefined]
|
|
12
|
+
**coordinates** | **Array<number>** | | [optional] [default to undefined]
|
|
12
13
|
|
|
13
14
|
## Example
|
|
14
15
|
|
|
@@ -20,6 +21,7 @@ const instance: ClubLocationSettings = {
|
|
|
20
21
|
zipCode,
|
|
21
22
|
city,
|
|
22
23
|
country,
|
|
24
|
+
coordinates,
|
|
23
25
|
};
|
|
24
26
|
```
|
|
25
27
|
|
package/docs/ImageContextType.md
CHANGED
|
@@ -17,4 +17,6 @@
|
|
|
17
17
|
|
|
18
18
|
* `ClubEventImage` (value: `'club-event-image'`)
|
|
19
19
|
|
|
20
|
+
* `ClubEventSponsorImage` (value: `'club-event-sponsor-image'`)
|
|
21
|
+
|
|
20
22
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|