@gooday_corp/gooday-api-client 4.5.31 → 4.5.32

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.
@@ -282,7 +282,9 @@ docs/RSVPEventDTO.md
282
282
  docs/RSVPEventDeleteDTO.md
283
283
  docs/RSVPEventEntity.md
284
284
  docs/RSVPEventFavoriteAndUnfavoritedDTO.md
285
+ docs/RSVPEventFavoriteDTO.md
285
286
  docs/RSVPEventFavoriteResponsedDTO.md
287
+ docs/RSVPEventFavoritedDTO.md
286
288
  docs/RSVPEventFindDTO.md
287
289
  docs/RSVPEventLocationDTO.md
288
290
  docs/RSVPEventMetaDTO.md
package/api.ts CHANGED
@@ -4031,6 +4031,9 @@ export interface RSVPEventFavoriteAndUnfavoritedDTO {
4031
4031
  'statusCode': number;
4032
4032
  'data': boolean;
4033
4033
  }
4034
+ export interface RSVPEventFavoriteDTO {
4035
+ 'rsvpEvent': string;
4036
+ }
4034
4037
  export interface RSVPEventFavoriteResponsedDTO {
4035
4038
  /**
4036
4039
  * statusCode
@@ -4038,6 +4041,13 @@ export interface RSVPEventFavoriteResponsedDTO {
4038
4041
  'statusCode': number;
4039
4042
  'data': boolean;
4040
4043
  }
4044
+ export interface RSVPEventFavoritedDTO {
4045
+ /**
4046
+ * statusCode
4047
+ */
4048
+ 'statusCode': number;
4049
+ 'data': RSVPEventEntity;
4050
+ }
4041
4051
  export interface RSVPEventFindDTO {
4042
4052
  'page': number;
4043
4053
  'pageSize': number;
@@ -18605,13 +18615,13 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18605
18615
  },
18606
18616
  /**
18607
18617
  *
18608
- * @param {object} body
18618
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
18609
18619
  * @param {*} [options] Override http request option.
18610
18620
  * @throws {RequiredError}
18611
18621
  */
18612
- rSVPControllerDeleteRSVPFavorites: async (body: object, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18613
- // verify required parameter 'body' is not null or undefined
18614
- assertParamExists('rSVPControllerDeleteRSVPFavorites', 'body', body)
18622
+ rSVPControllerDeleteRSVPFavorites: async (rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18623
+ // verify required parameter 'rSVPEventFavoriteDTO' is not null or undefined
18624
+ assertParamExists('rSVPControllerDeleteRSVPFavorites', 'rSVPEventFavoriteDTO', rSVPEventFavoriteDTO)
18615
18625
  const localVarPath = `/v1/rsvp/event/unfavorite`;
18616
18626
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
18617
18627
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -18634,7 +18644,7 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18634
18644
  setSearchParams(localVarUrlObj, localVarQueryParameter);
18635
18645
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18636
18646
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
18637
- localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
18647
+ localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventFavoriteDTO, localVarRequestOptions, configuration)
18638
18648
 
18639
18649
  return {
18640
18650
  url: toPathString(localVarUrlObj),
@@ -18785,14 +18795,14 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18785
18795
  },
18786
18796
  /**
18787
18797
  *
18788
- * @param {object} body
18798
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
18789
18799
  * @param {*} [options] Override http request option.
18790
18800
  * @throws {RequiredError}
18791
18801
  */
18792
- rSVPControllerRsvpFavorites: async (body: object, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18793
- // verify required parameter 'body' is not null or undefined
18794
- assertParamExists('rSVPControllerRsvpFavorites', 'body', body)
18795
- const localVarPath = `/v1/rsvp/vent/favorite`;
18802
+ rSVPControllerRsvpFavorites: async (rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18803
+ // verify required parameter 'rSVPEventFavoriteDTO' is not null or undefined
18804
+ assertParamExists('rSVPControllerRsvpFavorites', 'rSVPEventFavoriteDTO', rSVPEventFavoriteDTO)
18805
+ const localVarPath = `/v1/rsvp/event/favorite`;
18796
18806
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
18797
18807
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18798
18808
  let baseOptions;
@@ -18814,7 +18824,7 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18814
18824
  setSearchParams(localVarUrlObj, localVarQueryParameter);
18815
18825
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18816
18826
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
18817
- localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
18827
+ localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventFavoriteDTO, localVarRequestOptions, configuration)
18818
18828
 
18819
18829
  return {
18820
18830
  url: toPathString(localVarUrlObj),
@@ -18894,12 +18904,12 @@ export const RSVPEventApiFp = function(configuration?: Configuration) {
18894
18904
  },
18895
18905
  /**
18896
18906
  *
18897
- * @param {object} body
18907
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
18898
18908
  * @param {*} [options] Override http request option.
18899
18909
  * @throws {RequiredError}
18900
18910
  */
18901
- async rSVPControllerDeleteRSVPFavorites(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO>> {
18902
- const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerDeleteRSVPFavorites(body, options);
18911
+ async rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO>> {
18912
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options);
18903
18913
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18904
18914
  const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerDeleteRSVPFavorites']?.[localVarOperationServerIndex]?.url;
18905
18915
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -18954,12 +18964,12 @@ export const RSVPEventApiFp = function(configuration?: Configuration) {
18954
18964
  },
18955
18965
  /**
18956
18966
  *
18957
- * @param {object} body
18967
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
18958
18968
  * @param {*} [options] Override http request option.
18959
18969
  * @throws {RequiredError}
18960
18970
  */
18961
- async rSVPControllerRsvpFavorites(body: object, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO>> {
18962
- const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerRsvpFavorites(body, options);
18971
+ async rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoritedDTO>> {
18972
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO, options);
18963
18973
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18964
18974
  const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerRsvpFavorites']?.[localVarOperationServerIndex]?.url;
18965
18975
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -19006,12 +19016,12 @@ export const RSVPEventApiFactory = function (configuration?: Configuration, base
19006
19016
  },
19007
19017
  /**
19008
19018
  *
19009
- * @param {object} body
19019
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
19010
19020
  * @param {*} [options] Override http request option.
19011
19021
  * @throws {RequiredError}
19012
19022
  */
19013
- rSVPControllerDeleteRSVPFavorites(body: object, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO> {
19014
- return localVarFp.rSVPControllerDeleteRSVPFavorites(body, options).then((request) => request(axios, basePath));
19023
+ rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO> {
19024
+ return localVarFp.rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options).then((request) => request(axios, basePath));
19015
19025
  },
19016
19026
  /**
19017
19027
  *
@@ -19051,12 +19061,12 @@ export const RSVPEventApiFactory = function (configuration?: Configuration, base
19051
19061
  },
19052
19062
  /**
19053
19063
  *
19054
- * @param {object} body
19064
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
19055
19065
  * @param {*} [options] Override http request option.
19056
19066
  * @throws {RequiredError}
19057
19067
  */
19058
- rSVPControllerRsvpFavorites(body: object, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO> {
19059
- return localVarFp.rSVPControllerRsvpFavorites(body, options).then((request) => request(axios, basePath));
19068
+ rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoritedDTO> {
19069
+ return localVarFp.rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(axios, basePath));
19060
19070
  },
19061
19071
  /**
19062
19072
  *
@@ -19097,12 +19107,12 @@ export class RSVPEventApi extends BaseAPI {
19097
19107
 
19098
19108
  /**
19099
19109
  *
19100
- * @param {object} body
19110
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
19101
19111
  * @param {*} [options] Override http request option.
19102
19112
  * @throws {RequiredError}
19103
19113
  */
19104
- public rSVPControllerDeleteRSVPFavorites(body: object, options?: RawAxiosRequestConfig) {
19105
- return RSVPEventApiFp(this.configuration).rSVPControllerDeleteRSVPFavorites(body, options).then((request) => request(this.axios, this.basePath));
19114
+ public rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig) {
19115
+ return RSVPEventApiFp(this.configuration).rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options).then((request) => request(this.axios, this.basePath));
19106
19116
  }
19107
19117
 
19108
19118
  /**
@@ -19147,12 +19157,12 @@ export class RSVPEventApi extends BaseAPI {
19147
19157
 
19148
19158
  /**
19149
19159
  *
19150
- * @param {object} body
19160
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
19151
19161
  * @param {*} [options] Override http request option.
19152
19162
  * @throws {RequiredError}
19153
19163
  */
19154
- public rSVPControllerRsvpFavorites(body: object, options?: RawAxiosRequestConfig) {
19155
- return RSVPEventApiFp(this.configuration).rSVPControllerRsvpFavorites(body, options).then((request) => request(this.axios, this.basePath));
19164
+ public rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig) {
19165
+ return RSVPEventApiFp(this.configuration).rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(this.axios, this.basePath));
19156
19166
  }
19157
19167
 
19158
19168
  /**
@@ -6,8 +6,8 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **title** | **string** | The title of the booking | [default to 'Default Booking Title']
9
- **date** | **string** | The start date of the booking | [default to 2026-01-07T11:34:48Z]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-01-07T11:34:48Z]
9
+ **date** | **string** | The start date of the booking | [default to 2026-01-07T12:15:36Z]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-01-07T12:15:36Z]
11
11
  **from** | **string** | | [optional] [default to undefined]
12
12
  **to** | **string** | | [optional] [default to undefined]
13
13
  **venue** | **string** | The venue of the booking | [default to undefined]
@@ -6,8 +6,8 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **title** | **string** | The title of the booking | [default to 'Default Booking Title']
9
- **startDate** | **string** | The start date of the booking | [default to 2026-01-07T11:34:48Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-01-07T11:34:48Z]
9
+ **startDate** | **string** | The start date of the booking | [default to 2026-01-07T12:15:36Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-01-07T12:15:36Z]
11
11
  **note** | **string** | Notes attached with booking | [optional] [default to undefined]
12
12
  **occasion** | **string** | Occasion id | [optional] [default to undefined]
13
13
  **calendar** | **Array&lt;string&gt;** | Calendar attached with booking | [optional] [default to undefined]
@@ -6,8 +6,8 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **title** | **string** | The title of the booking | [default to 'Default Booking Title']
9
- **startDate** | **string** | The start date of the booking | [default to 2026-01-07T11:34:48Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-01-07T11:34:48Z]
9
+ **startDate** | **string** | The start date of the booking | [default to 2026-01-07T12:15:36Z]
10
+ **endDate** | **string** | The start date of the booking | [default to 2026-01-07T12:15:36Z]
11
11
  **note** | **string** | Notes attached with booking | [optional] [default to undefined]
12
12
  **occasion** | **string** | Occasion id | [optional] [default to undefined]
13
13
  **calendar** | **Array&lt;string&gt;** | Calendar attached with booking | [optional] [default to undefined]
@@ -8,8 +8,8 @@ Name | Type | Description | Notes
8
8
  **whatsOnId** | **string** | Event ID | [optional] [default to undefined]
9
9
  **serviceId** | **string** | Service ID | [optional] [default to undefined]
10
10
  **rsvpId** | **string** | RSVP ID | [optional] [default to undefined]
11
- **startDate** | **string** | The start date of the booking | [optional] [default to 2026-01-07T11:34:46Z]
12
- **endDate** | **string** | The end date of the booking | [optional] [default to 2026-01-07T11:34:46Z]
11
+ **startDate** | **string** | The start date of the booking | [optional] [default to 2026-01-07T12:15:34Z]
12
+ **endDate** | **string** | The end date of the booking | [optional] [default to 2026-01-07T12:15:34Z]
13
13
  **discountId** | **string** | Discount ID | [optional] [default to undefined]
14
14
  **selectedStaff** | **string** | Staff ID | [optional] [default to undefined]
15
15
  **quantity** | **number** | | [optional] [default to 0]
@@ -11,7 +11,7 @@ All URIs are relative to *http://localhost:8080*
11
11
  |[**rSVPControllerRsvpEventById**](#rsvpcontrollerrsvpeventbyid) | **GET** /v1/rsvp/{id} | |
12
12
  |[**rSVPControllerRsvpEvents**](#rsvpcontrollerrsvpevents) | **POST** /v1/rsvp/rsvp/event | |
13
13
  |[**rSVPControllerRsvpEventsDashboard**](#rsvpcontrollerrsvpeventsdashboard) | **POST** /v1/rsvp/dashboard/events | |
14
- |[**rSVPControllerRsvpFavorites**](#rsvpcontrollerrsvpfavorites) | **POST** /v1/rsvp/vent/favorite | |
14
+ |[**rSVPControllerRsvpFavorites**](#rsvpcontrollerrsvpfavorites) | **POST** /v1/rsvp/event/favorite | |
15
15
  |[**rSVPControllerUpdateRSVPEvent**](#rsvpcontrollerupdatersvpevent) | **PUT** /v1/rsvp/{id} | |
16
16
 
17
17
  # **rSVPControllerAddRSVPEvent**
@@ -117,7 +117,7 @@ const { status, data } = await apiInstance.rSVPControllerDeleteRSVPEvent(
117
117
  [[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)
118
118
 
119
119
  # **rSVPControllerDeleteRSVPFavorites**
120
- > RSVPEventFavoriteAndUnfavoritedDTO rSVPControllerDeleteRSVPFavorites(body)
120
+ > RSVPEventFavoriteAndUnfavoritedDTO rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO)
121
121
 
122
122
 
123
123
  ### Example
@@ -125,16 +125,17 @@ const { status, data } = await apiInstance.rSVPControllerDeleteRSVPEvent(
125
125
  ```typescript
126
126
  import {
127
127
  RSVPEventApi,
128
- Configuration
128
+ Configuration,
129
+ RSVPEventFavoriteDTO
129
130
  } from './api';
130
131
 
131
132
  const configuration = new Configuration();
132
133
  const apiInstance = new RSVPEventApi(configuration);
133
134
 
134
- let body: object; //
135
+ let rSVPEventFavoriteDTO: RSVPEventFavoriteDTO; //
135
136
 
136
137
  const { status, data } = await apiInstance.rSVPControllerDeleteRSVPFavorites(
137
- body
138
+ rSVPEventFavoriteDTO
138
139
  );
139
140
  ```
140
141
 
@@ -142,7 +143,7 @@ const { status, data } = await apiInstance.rSVPControllerDeleteRSVPFavorites(
142
143
 
143
144
  |Name | Type | Description | Notes|
144
145
  |------------- | ------------- | ------------- | -------------|
145
- | **body** | **object**| | |
146
+ | **rSVPEventFavoriteDTO** | **RSVPEventFavoriteDTO**| | |
146
147
 
147
148
 
148
149
  ### Return type
@@ -369,7 +370,7 @@ No authorization required
369
370
  [[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)
370
371
 
371
372
  # **rSVPControllerRsvpFavorites**
372
- > RSVPEventFavoriteAndUnfavoritedDTO rSVPControllerRsvpFavorites(body)
373
+ > RSVPEventFavoritedDTO rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO)
373
374
 
374
375
 
375
376
  ### Example
@@ -377,16 +378,17 @@ No authorization required
377
378
  ```typescript
378
379
  import {
379
380
  RSVPEventApi,
380
- Configuration
381
+ Configuration,
382
+ RSVPEventFavoriteDTO
381
383
  } from './api';
382
384
 
383
385
  const configuration = new Configuration();
384
386
  const apiInstance = new RSVPEventApi(configuration);
385
387
 
386
- let body: object; //
388
+ let rSVPEventFavoriteDTO: RSVPEventFavoriteDTO; //
387
389
 
388
390
  const { status, data } = await apiInstance.rSVPControllerRsvpFavorites(
389
- body
391
+ rSVPEventFavoriteDTO
390
392
  );
391
393
  ```
392
394
 
@@ -394,12 +396,12 @@ const { status, data } = await apiInstance.rSVPControllerRsvpFavorites(
394
396
 
395
397
  |Name | Type | Description | Notes|
396
398
  |------------- | ------------- | ------------- | -------------|
397
- | **body** | **object**| | |
399
+ | **rSVPEventFavoriteDTO** | **RSVPEventFavoriteDTO**| | |
398
400
 
399
401
 
400
402
  ### Return type
401
403
 
402
- **RSVPEventFavoriteAndUnfavoritedDTO**
404
+ **RSVPEventFavoritedDTO**
403
405
 
404
406
  ### Authorization
405
407
 
@@ -0,0 +1,20 @@
1
+ # RSVPEventFavoriteDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **rsvpEvent** | **string** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { RSVPEventFavoriteDTO } from './api';
14
+
15
+ const instance: RSVPEventFavoriteDTO = {
16
+ rsvpEvent,
17
+ };
18
+ ```
19
+
20
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,22 @@
1
+ # RSVPEventFavoritedDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **statusCode** | **number** | statusCode | [default to undefined]
9
+ **data** | [**RSVPEventEntity**](RSVPEventEntity.md) | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { RSVPEventFavoritedDTO } from './api';
15
+
16
+ const instance: RSVPEventFavoritedDTO = {
17
+ statusCode,
18
+ data,
19
+ };
20
+ ```
21
+
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)
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **date** | **string** | The start date of the booking | [default to 2026-01-07T11:34:48Z]
8
+ **date** | **string** | The start date of the booking | [default to 2026-01-07T12:15:36Z]
9
9
  **from** | **string** | | [optional] [default to undefined]
10
10
  **to** | **string** | | [optional] [default to undefined]
11
11
  **notes** | **string** | | [optional] [default to undefined]
@@ -5,8 +5,8 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **startDate** | **string** | The start date of the waitlist | [default to 2026-01-07T11:34:48Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2026-01-07T12:34:48Z]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2026-01-07T12:15:36Z]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2026-01-07T13:15:36Z]
10
10
  **venue** | **string** | The venue of the waitlist | [default to undefined]
11
11
  **business** | **string** | The business associated with the waitlist | [default to undefined]
12
12
  **collaborators** | [**Array&lt;CreateWaitlistBookingCollaboratorPayload&gt;**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gooday_corp/gooday-api-client",
3
- "version": "4.5.31",
3
+ "version": "4.5.32",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},