@gooday_corp/gooday-api-client 4.5.30 → 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.
@@ -281,6 +281,10 @@ docs/RSVPEventApi.md
281
281
  docs/RSVPEventDTO.md
282
282
  docs/RSVPEventDeleteDTO.md
283
283
  docs/RSVPEventEntity.md
284
+ docs/RSVPEventFavoriteAndUnfavoritedDTO.md
285
+ docs/RSVPEventFavoriteDTO.md
286
+ docs/RSVPEventFavoriteResponsedDTO.md
287
+ docs/RSVPEventFavoritedDTO.md
284
288
  docs/RSVPEventFindDTO.md
285
289
  docs/RSVPEventLocationDTO.md
286
290
  docs/RSVPEventMetaDTO.md
package/api.ts CHANGED
@@ -4024,6 +4024,30 @@ export const RSVPEventEntityTypeEnum = {
4024
4024
 
4025
4025
  export type RSVPEventEntityTypeEnum = typeof RSVPEventEntityTypeEnum[keyof typeof RSVPEventEntityTypeEnum];
4026
4026
 
4027
+ export interface RSVPEventFavoriteAndUnfavoritedDTO {
4028
+ /**
4029
+ * statusCode
4030
+ */
4031
+ 'statusCode': number;
4032
+ 'data': boolean;
4033
+ }
4034
+ export interface RSVPEventFavoriteDTO {
4035
+ 'rsvpEvent': string;
4036
+ }
4037
+ export interface RSVPEventFavoriteResponsedDTO {
4038
+ /**
4039
+ * statusCode
4040
+ */
4041
+ 'statusCode': number;
4042
+ 'data': boolean;
4043
+ }
4044
+ export interface RSVPEventFavoritedDTO {
4045
+ /**
4046
+ * statusCode
4047
+ */
4048
+ 'statusCode': number;
4049
+ 'data': RSVPEventEntity;
4050
+ }
4027
4051
  export interface RSVPEventFindDTO {
4028
4052
  'page': number;
4029
4053
  'pageSize': number;
@@ -18589,6 +18613,81 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18589
18613
  options: localVarRequestOptions,
18590
18614
  };
18591
18615
  },
18616
+ /**
18617
+ *
18618
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
18619
+ * @param {*} [options] Override http request option.
18620
+ * @throws {RequiredError}
18621
+ */
18622
+ rSVPControllerDeleteRSVPFavorites: async (rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18623
+ // verify required parameter 'rSVPEventFavoriteDTO' is not null or undefined
18624
+ assertParamExists('rSVPControllerDeleteRSVPFavorites', 'rSVPEventFavoriteDTO', rSVPEventFavoriteDTO)
18625
+ const localVarPath = `/v1/rsvp/event/unfavorite`;
18626
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
18627
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18628
+ let baseOptions;
18629
+ if (configuration) {
18630
+ baseOptions = configuration.baseOptions;
18631
+ }
18632
+
18633
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
18634
+ const localVarHeaderParameter = {} as any;
18635
+ const localVarQueryParameter = {} as any;
18636
+
18637
+ // authentication bearer required
18638
+ // http bearer authentication required
18639
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
18640
+
18641
+ localVarHeaderParameter['Content-Type'] = 'application/json';
18642
+ localVarHeaderParameter['Accept'] = 'application/json';
18643
+
18644
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
18645
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18646
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
18647
+ localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventFavoriteDTO, localVarRequestOptions, configuration)
18648
+
18649
+ return {
18650
+ url: toPathString(localVarUrlObj),
18651
+ options: localVarRequestOptions,
18652
+ };
18653
+ },
18654
+ /**
18655
+ *
18656
+ * @param {string} id
18657
+ * @param {*} [options] Override http request option.
18658
+ * @throws {RequiredError}
18659
+ */
18660
+ rSVPControllerFavoriteRSVPEventById: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18661
+ // verify required parameter 'id' is not null or undefined
18662
+ assertParamExists('rSVPControllerFavoriteRSVPEventById', 'id', id)
18663
+ const localVarPath = `/v1/rsvp/favoriteId/{id}`
18664
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
18665
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
18666
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18667
+ let baseOptions;
18668
+ if (configuration) {
18669
+ baseOptions = configuration.baseOptions;
18670
+ }
18671
+
18672
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
18673
+ const localVarHeaderParameter = {} as any;
18674
+ const localVarQueryParameter = {} as any;
18675
+
18676
+ // authentication bearer required
18677
+ // http bearer authentication required
18678
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
18679
+
18680
+ localVarHeaderParameter['Accept'] = 'application/json';
18681
+
18682
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
18683
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18684
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
18685
+
18686
+ return {
18687
+ url: toPathString(localVarUrlObj),
18688
+ options: localVarRequestOptions,
18689
+ };
18690
+ },
18592
18691
  /**
18593
18692
  *
18594
18693
  * @param {string} id
@@ -18694,6 +18793,44 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18694
18793
  options: localVarRequestOptions,
18695
18794
  };
18696
18795
  },
18796
+ /**
18797
+ *
18798
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
18799
+ * @param {*} [options] Override http request option.
18800
+ * @throws {RequiredError}
18801
+ */
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`;
18806
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
18807
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18808
+ let baseOptions;
18809
+ if (configuration) {
18810
+ baseOptions = configuration.baseOptions;
18811
+ }
18812
+
18813
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
18814
+ const localVarHeaderParameter = {} as any;
18815
+ const localVarQueryParameter = {} as any;
18816
+
18817
+ // authentication bearer required
18818
+ // http bearer authentication required
18819
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
18820
+
18821
+ localVarHeaderParameter['Content-Type'] = 'application/json';
18822
+ localVarHeaderParameter['Accept'] = 'application/json';
18823
+
18824
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
18825
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18826
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
18827
+ localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventFavoriteDTO, localVarRequestOptions, configuration)
18828
+
18829
+ return {
18830
+ url: toPathString(localVarUrlObj),
18831
+ options: localVarRequestOptions,
18832
+ };
18833
+ },
18697
18834
  /**
18698
18835
  *
18699
18836
  * @param {string} id
@@ -18765,6 +18902,30 @@ export const RSVPEventApiFp = function(configuration?: Configuration) {
18765
18902
  const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerDeleteRSVPEvent']?.[localVarOperationServerIndex]?.url;
18766
18903
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18767
18904
  },
18905
+ /**
18906
+ *
18907
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
18908
+ * @param {*} [options] Override http request option.
18909
+ * @throws {RequiredError}
18910
+ */
18911
+ async rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO>> {
18912
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options);
18913
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18914
+ const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerDeleteRSVPFavorites']?.[localVarOperationServerIndex]?.url;
18915
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18916
+ },
18917
+ /**
18918
+ *
18919
+ * @param {string} id
18920
+ * @param {*} [options] Override http request option.
18921
+ * @throws {RequiredError}
18922
+ */
18923
+ async rSVPControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoriteResponsedDTO>> {
18924
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerFavoriteRSVPEventById(id, options);
18925
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18926
+ const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerFavoriteRSVPEventById']?.[localVarOperationServerIndex]?.url;
18927
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18928
+ },
18768
18929
  /**
18769
18930
  *
18770
18931
  * @param {string} id
@@ -18801,6 +18962,18 @@ export const RSVPEventApiFp = function(configuration?: Configuration) {
18801
18962
  const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerRsvpEventsDashboard']?.[localVarOperationServerIndex]?.url;
18802
18963
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18803
18964
  },
18965
+ /**
18966
+ *
18967
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
18968
+ * @param {*} [options] Override http request option.
18969
+ * @throws {RequiredError}
18970
+ */
18971
+ async rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoritedDTO>> {
18972
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO, options);
18973
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18974
+ const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerRsvpFavorites']?.[localVarOperationServerIndex]?.url;
18975
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18976
+ },
18804
18977
  /**
18805
18978
  *
18806
18979
  * @param {string} id
@@ -18841,6 +19014,24 @@ export const RSVPEventApiFactory = function (configuration?: Configuration, base
18841
19014
  rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO: RSVPEventDeleteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventResponseDTO> {
18842
19015
  return localVarFp.rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO, options).then((request) => request(axios, basePath));
18843
19016
  },
19017
+ /**
19018
+ *
19019
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
19020
+ * @param {*} [options] Override http request option.
19021
+ * @throws {RequiredError}
19022
+ */
19023
+ rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO> {
19024
+ return localVarFp.rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options).then((request) => request(axios, basePath));
19025
+ },
19026
+ /**
19027
+ *
19028
+ * @param {string} id
19029
+ * @param {*} [options] Override http request option.
19030
+ * @throws {RequiredError}
19031
+ */
19032
+ rSVPControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteResponsedDTO> {
19033
+ return localVarFp.rSVPControllerFavoriteRSVPEventById(id, options).then((request) => request(axios, basePath));
19034
+ },
18844
19035
  /**
18845
19036
  *
18846
19037
  * @param {string} id
@@ -18868,6 +19059,15 @@ export const RSVPEventApiFactory = function (configuration?: Configuration, base
18868
19059
  rSVPControllerRsvpEventsDashboard(rSVPEventFindDTO: RSVPEventFindDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventResponseDTO> {
18869
19060
  return localVarFp.rSVPControllerRsvpEventsDashboard(rSVPEventFindDTO, options).then((request) => request(axios, basePath));
18870
19061
  },
19062
+ /**
19063
+ *
19064
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
19065
+ * @param {*} [options] Override http request option.
19066
+ * @throws {RequiredError}
19067
+ */
19068
+ rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoritedDTO> {
19069
+ return localVarFp.rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(axios, basePath));
19070
+ },
18871
19071
  /**
18872
19072
  *
18873
19073
  * @param {string} id
@@ -18905,6 +19105,26 @@ export class RSVPEventApi extends BaseAPI {
18905
19105
  return RSVPEventApiFp(this.configuration).rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO, options).then((request) => request(this.axios, this.basePath));
18906
19106
  }
18907
19107
 
19108
+ /**
19109
+ *
19110
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
19111
+ * @param {*} [options] Override http request option.
19112
+ * @throws {RequiredError}
19113
+ */
19114
+ public rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig) {
19115
+ return RSVPEventApiFp(this.configuration).rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options).then((request) => request(this.axios, this.basePath));
19116
+ }
19117
+
19118
+ /**
19119
+ *
19120
+ * @param {string} id
19121
+ * @param {*} [options] Override http request option.
19122
+ * @throws {RequiredError}
19123
+ */
19124
+ public rSVPControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig) {
19125
+ return RSVPEventApiFp(this.configuration).rSVPControllerFavoriteRSVPEventById(id, options).then((request) => request(this.axios, this.basePath));
19126
+ }
19127
+
18908
19128
  /**
18909
19129
  *
18910
19130
  * @param {string} id
@@ -18935,6 +19155,16 @@ export class RSVPEventApi extends BaseAPI {
18935
19155
  return RSVPEventApiFp(this.configuration).rSVPControllerRsvpEventsDashboard(rSVPEventFindDTO, options).then((request) => request(this.axios, this.basePath));
18936
19156
  }
18937
19157
 
19158
+ /**
19159
+ *
19160
+ * @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
19161
+ * @param {*} [options] Override http request option.
19162
+ * @throws {RequiredError}
19163
+ */
19164
+ public rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig) {
19165
+ return RSVPEventApiFp(this.configuration).rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(this.axios, this.basePath));
19166
+ }
19167
+
18938
19168
  /**
18939
19169
  *
18940
19170
  * @param {string} id
@@ -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-06T14:08:47Z]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-01-06T14:08:47Z]
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-06T14:08:47Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-01-06T14:08:47Z]
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-06T14:08:47Z]
10
- **endDate** | **string** | The start date of the booking | [default to 2026-01-06T14:08:47Z]
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-06T14:08:45Z]
12
- **endDate** | **string** | The end date of the booking | [optional] [default to 2026-01-06T14:08:45Z]
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]
@@ -6,9 +6,12 @@ All URIs are relative to *http://localhost:8080*
6
6
  |------------- | ------------- | -------------|
7
7
  |[**rSVPControllerAddRSVPEvent**](#rsvpcontrolleraddrsvpevent) | **POST** /v1/rsvp | |
8
8
  |[**rSVPControllerDeleteRSVPEvent**](#rsvpcontrollerdeletersvpevent) | **DELETE** /v1/rsvp | |
9
+ |[**rSVPControllerDeleteRSVPFavorites**](#rsvpcontrollerdeletersvpfavorites) | **DELETE** /v1/rsvp/event/unfavorite | |
10
+ |[**rSVPControllerFavoriteRSVPEventById**](#rsvpcontrollerfavoritersvpeventbyid) | **GET** /v1/rsvp/favoriteId/{id} | |
9
11
  |[**rSVPControllerRsvpEventById**](#rsvpcontrollerrsvpeventbyid) | **GET** /v1/rsvp/{id} | |
10
12
  |[**rSVPControllerRsvpEvents**](#rsvpcontrollerrsvpevents) | **POST** /v1/rsvp/rsvp/event | |
11
13
  |[**rSVPControllerRsvpEventsDashboard**](#rsvpcontrollerrsvpeventsdashboard) | **POST** /v1/rsvp/dashboard/events | |
14
+ |[**rSVPControllerRsvpFavorites**](#rsvpcontrollerrsvpfavorites) | **POST** /v1/rsvp/event/favorite | |
12
15
  |[**rSVPControllerUpdateRSVPEvent**](#rsvpcontrollerupdatersvpevent) | **PUT** /v1/rsvp/{id} | |
13
16
 
14
17
  # **rSVPControllerAddRSVPEvent**
@@ -106,6 +109,107 @@ const { status, data } = await apiInstance.rSVPControllerDeleteRSVPEvent(
106
109
  - **Accept**: application/json
107
110
 
108
111
 
112
+ ### HTTP response details
113
+ | Status code | Description | Response headers |
114
+ |-------------|-------------|------------------|
115
+ |**200** | | - |
116
+
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
+
119
+ # **rSVPControllerDeleteRSVPFavorites**
120
+ > RSVPEventFavoriteAndUnfavoritedDTO rSVPControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO)
121
+
122
+
123
+ ### Example
124
+
125
+ ```typescript
126
+ import {
127
+ RSVPEventApi,
128
+ Configuration,
129
+ RSVPEventFavoriteDTO
130
+ } from './api';
131
+
132
+ const configuration = new Configuration();
133
+ const apiInstance = new RSVPEventApi(configuration);
134
+
135
+ let rSVPEventFavoriteDTO: RSVPEventFavoriteDTO; //
136
+
137
+ const { status, data } = await apiInstance.rSVPControllerDeleteRSVPFavorites(
138
+ rSVPEventFavoriteDTO
139
+ );
140
+ ```
141
+
142
+ ### Parameters
143
+
144
+ |Name | Type | Description | Notes|
145
+ |------------- | ------------- | ------------- | -------------|
146
+ | **rSVPEventFavoriteDTO** | **RSVPEventFavoriteDTO**| | |
147
+
148
+
149
+ ### Return type
150
+
151
+ **RSVPEventFavoriteAndUnfavoritedDTO**
152
+
153
+ ### Authorization
154
+
155
+ [bearer](../README.md#bearer)
156
+
157
+ ### HTTP request headers
158
+
159
+ - **Content-Type**: application/json
160
+ - **Accept**: application/json
161
+
162
+
163
+ ### HTTP response details
164
+ | Status code | Description | Response headers |
165
+ |-------------|-------------|------------------|
166
+ |**200** | | - |
167
+
168
+ [[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)
169
+
170
+ # **rSVPControllerFavoriteRSVPEventById**
171
+ > RSVPEventFavoriteResponsedDTO rSVPControllerFavoriteRSVPEventById()
172
+
173
+
174
+ ### Example
175
+
176
+ ```typescript
177
+ import {
178
+ RSVPEventApi,
179
+ Configuration
180
+ } from './api';
181
+
182
+ const configuration = new Configuration();
183
+ const apiInstance = new RSVPEventApi(configuration);
184
+
185
+ let id: string; // (default to undefined)
186
+
187
+ const { status, data } = await apiInstance.rSVPControllerFavoriteRSVPEventById(
188
+ id
189
+ );
190
+ ```
191
+
192
+ ### Parameters
193
+
194
+ |Name | Type | Description | Notes|
195
+ |------------- | ------------- | ------------- | -------------|
196
+ | **id** | [**string**] | | defaults to undefined|
197
+
198
+
199
+ ### Return type
200
+
201
+ **RSVPEventFavoriteResponsedDTO**
202
+
203
+ ### Authorization
204
+
205
+ [bearer](../README.md#bearer)
206
+
207
+ ### HTTP request headers
208
+
209
+ - **Content-Type**: Not defined
210
+ - **Accept**: application/json
211
+
212
+
109
213
  ### HTTP response details
110
214
  | Status code | Description | Response headers |
111
215
  |-------------|-------------|------------------|
@@ -258,6 +362,57 @@ No authorization required
258
362
  - **Accept**: application/json
259
363
 
260
364
 
365
+ ### HTTP response details
366
+ | Status code | Description | Response headers |
367
+ |-------------|-------------|------------------|
368
+ |**200** | | - |
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)
371
+
372
+ # **rSVPControllerRsvpFavorites**
373
+ > RSVPEventFavoritedDTO rSVPControllerRsvpFavorites(rSVPEventFavoriteDTO)
374
+
375
+
376
+ ### Example
377
+
378
+ ```typescript
379
+ import {
380
+ RSVPEventApi,
381
+ Configuration,
382
+ RSVPEventFavoriteDTO
383
+ } from './api';
384
+
385
+ const configuration = new Configuration();
386
+ const apiInstance = new RSVPEventApi(configuration);
387
+
388
+ let rSVPEventFavoriteDTO: RSVPEventFavoriteDTO; //
389
+
390
+ const { status, data } = await apiInstance.rSVPControllerRsvpFavorites(
391
+ rSVPEventFavoriteDTO
392
+ );
393
+ ```
394
+
395
+ ### Parameters
396
+
397
+ |Name | Type | Description | Notes|
398
+ |------------- | ------------- | ------------- | -------------|
399
+ | **rSVPEventFavoriteDTO** | **RSVPEventFavoriteDTO**| | |
400
+
401
+
402
+ ### Return type
403
+
404
+ **RSVPEventFavoritedDTO**
405
+
406
+ ### Authorization
407
+
408
+ [bearer](../README.md#bearer)
409
+
410
+ ### HTTP request headers
411
+
412
+ - **Content-Type**: application/json
413
+ - **Accept**: application/json
414
+
415
+
261
416
  ### HTTP response details
262
417
  | Status code | Description | Response headers |
263
418
  |-------------|-------------|------------------|
@@ -0,0 +1,22 @@
1
+ # RSVPEventFavoriteAndUnfavoritedDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **statusCode** | **number** | statusCode | [default to undefined]
9
+ **data** | **boolean** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { RSVPEventFavoriteAndUnfavoritedDTO } from './api';
15
+
16
+ const instance: RSVPEventFavoriteAndUnfavoritedDTO = {
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)
@@ -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
+ # RSVPEventFavoriteResponsedDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **statusCode** | **number** | statusCode | [default to undefined]
9
+ **data** | **boolean** | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { RSVPEventFavoriteResponsedDTO } from './api';
15
+
16
+ const instance: RSVPEventFavoriteResponsedDTO = {
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)
@@ -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-06T14:08:47Z]
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-06T14:08:47Z]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2026-01-06T15:08:47Z]
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.30",
3
+ "version": "4.5.32",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},