@tennac-booking/sdk 1.0.204 → 1.0.205
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 +10 -0
- package/dist/api.d.ts +6 -0
- package/dist/api.js +3 -0
- package/dist/esm/api.d.ts +6 -0
- package/dist/esm/api.js +3 -0
- package/docs/EventResponse.md +2 -0
- package/docs/EventsApi.md +2 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -6063,6 +6063,12 @@ export interface EventResponse {
|
|
|
6063
6063
|
* @memberof EventResponse
|
|
6064
6064
|
*/
|
|
6065
6065
|
'registrationOpenDaysBefore': number;
|
|
6066
|
+
/**
|
|
6067
|
+
*
|
|
6068
|
+
* @type {boolean}
|
|
6069
|
+
* @memberof EventResponse
|
|
6070
|
+
*/
|
|
6071
|
+
'isUserRegistered'?: boolean;
|
|
6066
6072
|
/**
|
|
6067
6073
|
*
|
|
6068
6074
|
* @type {string}
|
|
@@ -26229,6 +26235,10 @@ export const EventsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
26229
26235
|
const localVarHeaderParameter = {} as any;
|
|
26230
26236
|
const localVarQueryParameter = {} as any;
|
|
26231
26237
|
|
|
26238
|
+
// authentication bearerAuth required
|
|
26239
|
+
// http bearer authentication required
|
|
26240
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
26241
|
+
|
|
26232
26242
|
if (clubId !== undefined) {
|
|
26233
26243
|
localVarQueryParameter['clubId'] = clubId;
|
|
26234
26244
|
}
|
package/dist/api.d.ts
CHANGED
|
@@ -5964,6 +5964,12 @@ export interface EventResponse {
|
|
|
5964
5964
|
* @memberof EventResponse
|
|
5965
5965
|
*/
|
|
5966
5966
|
'registrationOpenDaysBefore': number;
|
|
5967
|
+
/**
|
|
5968
|
+
*
|
|
5969
|
+
* @type {boolean}
|
|
5970
|
+
* @memberof EventResponse
|
|
5971
|
+
*/
|
|
5972
|
+
'isUserRegistered'?: boolean;
|
|
5967
5973
|
/**
|
|
5968
5974
|
*
|
|
5969
5975
|
* @type {string}
|
package/dist/api.js
CHANGED
|
@@ -9672,6 +9672,9 @@ const EventsApiAxiosParamCreator = function (configuration) {
|
|
|
9672
9672
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
9673
9673
|
const localVarHeaderParameter = {};
|
|
9674
9674
|
const localVarQueryParameter = {};
|
|
9675
|
+
// authentication bearerAuth required
|
|
9676
|
+
// http bearer authentication required
|
|
9677
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
9675
9678
|
if (clubId !== undefined) {
|
|
9676
9679
|
localVarQueryParameter['clubId'] = clubId;
|
|
9677
9680
|
}
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -5964,6 +5964,12 @@ export interface EventResponse {
|
|
|
5964
5964
|
* @memberof EventResponse
|
|
5965
5965
|
*/
|
|
5966
5966
|
'registrationOpenDaysBefore': number;
|
|
5967
|
+
/**
|
|
5968
|
+
*
|
|
5969
|
+
* @type {boolean}
|
|
5970
|
+
* @memberof EventResponse
|
|
5971
|
+
*/
|
|
5972
|
+
'isUserRegistered'?: boolean;
|
|
5967
5973
|
/**
|
|
5968
5974
|
*
|
|
5969
5975
|
* @type {string}
|
package/dist/esm/api.js
CHANGED
|
@@ -9589,6 +9589,9 @@ export const EventsApiAxiosParamCreator = function (configuration) {
|
|
|
9589
9589
|
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
9590
9590
|
const localVarHeaderParameter = {};
|
|
9591
9591
|
const localVarQueryParameter = {};
|
|
9592
|
+
// authentication bearerAuth required
|
|
9593
|
+
// http bearer authentication required
|
|
9594
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
9592
9595
|
if (clubId !== undefined) {
|
|
9593
9596
|
localVarQueryParameter['clubId'] = clubId;
|
|
9594
9597
|
}
|
package/docs/EventResponse.md
CHANGED
|
@@ -31,6 +31,7 @@ Name | Type | Description | Notes
|
|
|
31
31
|
**levels** | **Array<string | null>** | | [optional] [default to undefined]
|
|
32
32
|
**sponsors** | [**Array<EventSponsor>**](EventSponsor.md) | | [optional] [default to undefined]
|
|
33
33
|
**registrationOpenDaysBefore** | **number** | | [default to undefined]
|
|
34
|
+
**isUserRegistered** | **boolean** | | [optional] [default to undefined]
|
|
34
35
|
**createdBy** | **string** | | [optional] [default to undefined]
|
|
35
36
|
**isActive** | **boolean** | | [default to undefined]
|
|
36
37
|
**createdAt** | **string** | | [default to undefined]
|
|
@@ -68,6 +69,7 @@ const instance: EventResponse = {
|
|
|
68
69
|
levels,
|
|
69
70
|
sponsors,
|
|
70
71
|
registrationOpenDaysBefore,
|
|
72
|
+
isUserRegistered,
|
|
71
73
|
createdBy,
|
|
72
74
|
isActive,
|
|
73
75
|
createdAt,
|
package/docs/EventsApi.md
CHANGED
|
@@ -225,7 +225,7 @@ const { status, data } = await apiInstance.getComingEvent(
|
|
|
225
225
|
|
|
226
226
|
### Authorization
|
|
227
227
|
|
|
228
|
-
|
|
228
|
+
[bearerAuth](../README.md#bearerAuth)
|
|
229
229
|
|
|
230
230
|
### HTTP request headers
|
|
231
231
|
|
|
@@ -238,6 +238,7 @@ No authorization required
|
|
|
238
238
|
|-------------|-------------|------------------|
|
|
239
239
|
|**200** | List of upcoming events | - |
|
|
240
240
|
|**400** | Bad Request | - |
|
|
241
|
+
|**401** | Unauthorized | - |
|
|
241
242
|
|**500** | Server Error | - |
|
|
242
243
|
|
|
243
244
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|