@gooday_corp/gooday-api-client 4.4.31 → 4.4.36

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.
@@ -276,9 +276,11 @@ docs/PromoCodeResponseDTO.md
276
276
  docs/RSVPEvenPayloadDTO.md
277
277
  docs/RSVPEventApi.md
278
278
  docs/RSVPEventDTO.md
279
+ docs/RSVPEventDeleteDTO.md
279
280
  docs/RSVPEventEntity.md
280
281
  docs/RSVPEventLocationDTO.md
281
282
  docs/RSVPEventMetaDTO.md
283
+ docs/RSVPEventResponse.md
282
284
  docs/RSVPEventResponseDTO.md
283
285
  docs/RegularBookingAvailabilityPayloadDTO.md
284
286
  docs/RegularBookingAvailabilityResponseDTO.md
package/api.ts CHANGED
@@ -3776,7 +3776,7 @@ export interface RSVPEvenPayloadDTO {
3776
3776
  'hostImage': string;
3777
3777
  'photo'?: string;
3778
3778
  'timezone'?: string;
3779
- 'type': RSVPEvenPayloadDTOTypeEnum;
3779
+ 'type'?: RSVPEvenPayloadDTOTypeEnum;
3780
3780
  'externalTicketing'?: string;
3781
3781
  'otherLink'?: string;
3782
3782
  'location'?: RSVPEventLocationDTO;
@@ -3806,6 +3806,9 @@ export interface RSVPEventDTO {
3806
3806
  'statusCode': number;
3807
3807
  'data': RSVPEventEntity;
3808
3808
  }
3809
+ export interface RSVPEventDeleteDTO {
3810
+ 'id': string;
3811
+ }
3809
3812
  export interface RSVPEventEntity {
3810
3813
  /**
3811
3814
  * Is recurring event
@@ -3914,12 +3917,16 @@ export interface RSVPEventMetaDTO {
3914
3917
  'formattedAddress'?: string;
3915
3918
  'shortFormattedAddress': string;
3916
3919
  }
3920
+ export interface RSVPEventResponse {
3921
+ 'count': number;
3922
+ 'data': Array<RSVPEventEntity>;
3923
+ }
3917
3924
  export interface RSVPEventResponseDTO {
3918
3925
  /**
3919
3926
  * statusCode
3920
3927
  */
3921
3928
  'statusCode': number;
3922
- 'data': Array<RSVPEventEntity>;
3929
+ 'data': RSVPEventResponse;
3923
3930
  }
3924
3931
  export interface RegularBookingAvailabilityPayloadDTO {
3925
3932
  /**
@@ -18019,9 +18026,9 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18019
18026
  * @param {*} [options] Override http request option.
18020
18027
  * @throws {RequiredError}
18021
18028
  */
18022
- searchControllerAddRSVPEvent: async (rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18029
+ rSVPControllerAddRSVPEvent: async (rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18023
18030
  // verify required parameter 'rSVPEvenPayloadDTO' is not null or undefined
18024
- assertParamExists('searchControllerAddRSVPEvent', 'rSVPEvenPayloadDTO', rSVPEvenPayloadDTO)
18031
+ assertParamExists('rSVPControllerAddRSVPEvent', 'rSVPEvenPayloadDTO', rSVPEvenPayloadDTO)
18025
18032
  const localVarPath = `/v1/rsvp`;
18026
18033
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
18027
18034
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -18048,15 +18055,54 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18048
18055
  options: localVarRequestOptions,
18049
18056
  };
18050
18057
  },
18058
+ /**
18059
+ *
18060
+ * @param {RSVPEventDeleteDTO} rSVPEventDeleteDTO
18061
+ * @param {*} [options] Override http request option.
18062
+ * @throws {RequiredError}
18063
+ */
18064
+ rSVPControllerDeleteRSVPEvent: async (rSVPEventDeleteDTO: RSVPEventDeleteDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18065
+ // verify required parameter 'rSVPEventDeleteDTO' is not null or undefined
18066
+ assertParamExists('rSVPControllerDeleteRSVPEvent', 'rSVPEventDeleteDTO', rSVPEventDeleteDTO)
18067
+ const localVarPath = `/v1/rsvp`;
18068
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
18069
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18070
+ let baseOptions;
18071
+ if (configuration) {
18072
+ baseOptions = configuration.baseOptions;
18073
+ }
18074
+
18075
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
18076
+ const localVarHeaderParameter = {} as any;
18077
+ const localVarQueryParameter = {} as any;
18078
+
18079
+ // authentication bearer required
18080
+ // http bearer authentication required
18081
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
18082
+
18083
+
18084
+
18085
+ localVarHeaderParameter['Content-Type'] = 'application/json';
18086
+
18087
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
18088
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18089
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
18090
+ localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventDeleteDTO, localVarRequestOptions, configuration)
18091
+
18092
+ return {
18093
+ url: toPathString(localVarUrlObj),
18094
+ options: localVarRequestOptions,
18095
+ };
18096
+ },
18051
18097
  /**
18052
18098
  *
18053
18099
  * @param {string} id
18054
18100
  * @param {*} [options] Override http request option.
18055
18101
  * @throws {RequiredError}
18056
18102
  */
18057
- searchControllerRsvpEventById: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18103
+ rSVPControllerRsvpEventById: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18058
18104
  // verify required parameter 'id' is not null or undefined
18059
- assertParamExists('searchControllerRsvpEventById', 'id', id)
18105
+ assertParamExists('rSVPControllerRsvpEventById', 'id', id)
18060
18106
  const localVarPath = `/v1/rsvp/{id}`
18061
18107
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
18062
18108
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -18090,11 +18136,11 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18090
18136
  * @param {*} [options] Override http request option.
18091
18137
  * @throws {RequiredError}
18092
18138
  */
18093
- searchControllerRsvpEvents: async (page: number, pageSize: number, search?: string, venue?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18139
+ rSVPControllerRsvpEvents: async (page: number, pageSize: number, search?: string, venue?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18094
18140
  // verify required parameter 'page' is not null or undefined
18095
- assertParamExists('searchControllerRsvpEvents', 'page', page)
18141
+ assertParamExists('rSVPControllerRsvpEvents', 'page', page)
18096
18142
  // verify required parameter 'pageSize' is not null or undefined
18097
- assertParamExists('searchControllerRsvpEvents', 'pageSize', pageSize)
18143
+ assertParamExists('rSVPControllerRsvpEvents', 'pageSize', pageSize)
18098
18144
  const localVarPath = `/v1/rsvp`;
18099
18145
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
18100
18146
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -18107,6 +18153,10 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18107
18153
  const localVarHeaderParameter = {} as any;
18108
18154
  const localVarQueryParameter = {} as any;
18109
18155
 
18156
+ // authentication bearer required
18157
+ // http bearer authentication required
18158
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
18159
+
18110
18160
  if (page !== undefined) {
18111
18161
  localVarQueryParameter['page'] = page;
18112
18162
  }
@@ -18141,11 +18191,11 @@ export const RSVPEventApiAxiosParamCreator = function (configuration?: Configura
18141
18191
  * @param {*} [options] Override http request option.
18142
18192
  * @throws {RequiredError}
18143
18193
  */
18144
- searchControllerUpdateRSVPEvent: async (id: string, rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18194
+ rSVPControllerUpdateRSVPEvent: async (id: string, rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18145
18195
  // verify required parameter 'id' is not null or undefined
18146
- assertParamExists('searchControllerUpdateRSVPEvent', 'id', id)
18196
+ assertParamExists('rSVPControllerUpdateRSVPEvent', 'id', id)
18147
18197
  // verify required parameter 'rSVPEvenPayloadDTO' is not null or undefined
18148
- assertParamExists('searchControllerUpdateRSVPEvent', 'rSVPEvenPayloadDTO', rSVPEvenPayloadDTO)
18198
+ assertParamExists('rSVPControllerUpdateRSVPEvent', 'rSVPEvenPayloadDTO', rSVPEvenPayloadDTO)
18149
18199
  const localVarPath = `/v1/rsvp/{id}`
18150
18200
  .replace(`{${"id"}}`, encodeURIComponent(String(id)));
18151
18201
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -18188,10 +18238,22 @@ export const RSVPEventApiFp = function(configuration?: Configuration) {
18188
18238
  * @param {*} [options] Override http request option.
18189
18239
  * @throws {RequiredError}
18190
18240
  */
18191
- async searchControllerAddRSVPEvent(rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventDTO>> {
18192
- const localVarAxiosArgs = await localVarAxiosParamCreator.searchControllerAddRSVPEvent(rSVPEvenPayloadDTO, options);
18241
+ async rSVPControllerAddRSVPEvent(rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventDTO>> {
18242
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerAddRSVPEvent(rSVPEvenPayloadDTO, options);
18243
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18244
+ const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerAddRSVPEvent']?.[localVarOperationServerIndex]?.url;
18245
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18246
+ },
18247
+ /**
18248
+ *
18249
+ * @param {RSVPEventDeleteDTO} rSVPEventDeleteDTO
18250
+ * @param {*} [options] Override http request option.
18251
+ * @throws {RequiredError}
18252
+ */
18253
+ async rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO: RSVPEventDeleteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventResponseDTO>> {
18254
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO, options);
18193
18255
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18194
- const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.searchControllerAddRSVPEvent']?.[localVarOperationServerIndex]?.url;
18256
+ const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerDeleteRSVPEvent']?.[localVarOperationServerIndex]?.url;
18195
18257
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18196
18258
  },
18197
18259
  /**
@@ -18200,10 +18262,10 @@ export const RSVPEventApiFp = function(configuration?: Configuration) {
18200
18262
  * @param {*} [options] Override http request option.
18201
18263
  * @throws {RequiredError}
18202
18264
  */
18203
- async searchControllerRsvpEventById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventDTO>> {
18204
- const localVarAxiosArgs = await localVarAxiosParamCreator.searchControllerRsvpEventById(id, options);
18265
+ async rSVPControllerRsvpEventById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventDTO>> {
18266
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerRsvpEventById(id, options);
18205
18267
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18206
- const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.searchControllerRsvpEventById']?.[localVarOperationServerIndex]?.url;
18268
+ const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerRsvpEventById']?.[localVarOperationServerIndex]?.url;
18207
18269
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18208
18270
  },
18209
18271
  /**
@@ -18215,10 +18277,10 @@ export const RSVPEventApiFp = function(configuration?: Configuration) {
18215
18277
  * @param {*} [options] Override http request option.
18216
18278
  * @throws {RequiredError}
18217
18279
  */
18218
- async searchControllerRsvpEvents(page: number, pageSize: number, search?: string, venue?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventResponseDTO>> {
18219
- const localVarAxiosArgs = await localVarAxiosParamCreator.searchControllerRsvpEvents(page, pageSize, search, venue, options);
18280
+ async rSVPControllerRsvpEvents(page: number, pageSize: number, search?: string, venue?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventResponseDTO>> {
18281
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerRsvpEvents(page, pageSize, search, venue, options);
18220
18282
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18221
- const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.searchControllerRsvpEvents']?.[localVarOperationServerIndex]?.url;
18283
+ const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerRsvpEvents']?.[localVarOperationServerIndex]?.url;
18222
18284
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18223
18285
  },
18224
18286
  /**
@@ -18228,10 +18290,10 @@ export const RSVPEventApiFp = function(configuration?: Configuration) {
18228
18290
  * @param {*} [options] Override http request option.
18229
18291
  * @throws {RequiredError}
18230
18292
  */
18231
- async searchControllerUpdateRSVPEvent(id: string, rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventDTO>> {
18232
- const localVarAxiosArgs = await localVarAxiosParamCreator.searchControllerUpdateRSVPEvent(id, rSVPEvenPayloadDTO, options);
18293
+ async rSVPControllerUpdateRSVPEvent(id: string, rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventDTO>> {
18294
+ const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPControllerUpdateRSVPEvent(id, rSVPEvenPayloadDTO, options);
18233
18295
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18234
- const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.searchControllerUpdateRSVPEvent']?.[localVarOperationServerIndex]?.url;
18296
+ const localVarOperationServerBasePath = operationServerMap['RSVPEventApi.rSVPControllerUpdateRSVPEvent']?.[localVarOperationServerIndex]?.url;
18235
18297
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18236
18298
  },
18237
18299
  }
@@ -18249,8 +18311,17 @@ export const RSVPEventApiFactory = function (configuration?: Configuration, base
18249
18311
  * @param {*} [options] Override http request option.
18250
18312
  * @throws {RequiredError}
18251
18313
  */
18252
- searchControllerAddRSVPEvent(rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventDTO> {
18253
- return localVarFp.searchControllerAddRSVPEvent(rSVPEvenPayloadDTO, options).then((request) => request(axios, basePath));
18314
+ rSVPControllerAddRSVPEvent(rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventDTO> {
18315
+ return localVarFp.rSVPControllerAddRSVPEvent(rSVPEvenPayloadDTO, options).then((request) => request(axios, basePath));
18316
+ },
18317
+ /**
18318
+ *
18319
+ * @param {RSVPEventDeleteDTO} rSVPEventDeleteDTO
18320
+ * @param {*} [options] Override http request option.
18321
+ * @throws {RequiredError}
18322
+ */
18323
+ rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO: RSVPEventDeleteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventResponseDTO> {
18324
+ return localVarFp.rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO, options).then((request) => request(axios, basePath));
18254
18325
  },
18255
18326
  /**
18256
18327
  *
@@ -18258,8 +18329,8 @@ export const RSVPEventApiFactory = function (configuration?: Configuration, base
18258
18329
  * @param {*} [options] Override http request option.
18259
18330
  * @throws {RequiredError}
18260
18331
  */
18261
- searchControllerRsvpEventById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventDTO> {
18262
- return localVarFp.searchControllerRsvpEventById(id, options).then((request) => request(axios, basePath));
18332
+ rSVPControllerRsvpEventById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventDTO> {
18333
+ return localVarFp.rSVPControllerRsvpEventById(id, options).then((request) => request(axios, basePath));
18263
18334
  },
18264
18335
  /**
18265
18336
  *
@@ -18270,8 +18341,8 @@ export const RSVPEventApiFactory = function (configuration?: Configuration, base
18270
18341
  * @param {*} [options] Override http request option.
18271
18342
  * @throws {RequiredError}
18272
18343
  */
18273
- searchControllerRsvpEvents(page: number, pageSize: number, search?: string, venue?: string, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventResponseDTO> {
18274
- return localVarFp.searchControllerRsvpEvents(page, pageSize, search, venue, options).then((request) => request(axios, basePath));
18344
+ rSVPControllerRsvpEvents(page: number, pageSize: number, search?: string, venue?: string, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventResponseDTO> {
18345
+ return localVarFp.rSVPControllerRsvpEvents(page, pageSize, search, venue, options).then((request) => request(axios, basePath));
18275
18346
  },
18276
18347
  /**
18277
18348
  *
@@ -18280,8 +18351,8 @@ export const RSVPEventApiFactory = function (configuration?: Configuration, base
18280
18351
  * @param {*} [options] Override http request option.
18281
18352
  * @throws {RequiredError}
18282
18353
  */
18283
- searchControllerUpdateRSVPEvent(id: string, rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventDTO> {
18284
- return localVarFp.searchControllerUpdateRSVPEvent(id, rSVPEvenPayloadDTO, options).then((request) => request(axios, basePath));
18354
+ rSVPControllerUpdateRSVPEvent(id: string, rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventDTO> {
18355
+ return localVarFp.rSVPControllerUpdateRSVPEvent(id, rSVPEvenPayloadDTO, options).then((request) => request(axios, basePath));
18285
18356
  },
18286
18357
  };
18287
18358
  };
@@ -18296,8 +18367,18 @@ export class RSVPEventApi extends BaseAPI {
18296
18367
  * @param {*} [options] Override http request option.
18297
18368
  * @throws {RequiredError}
18298
18369
  */
18299
- public searchControllerAddRSVPEvent(rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig) {
18300
- return RSVPEventApiFp(this.configuration).searchControllerAddRSVPEvent(rSVPEvenPayloadDTO, options).then((request) => request(this.axios, this.basePath));
18370
+ public rSVPControllerAddRSVPEvent(rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig) {
18371
+ return RSVPEventApiFp(this.configuration).rSVPControllerAddRSVPEvent(rSVPEvenPayloadDTO, options).then((request) => request(this.axios, this.basePath));
18372
+ }
18373
+
18374
+ /**
18375
+ *
18376
+ * @param {RSVPEventDeleteDTO} rSVPEventDeleteDTO
18377
+ * @param {*} [options] Override http request option.
18378
+ * @throws {RequiredError}
18379
+ */
18380
+ public rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO: RSVPEventDeleteDTO, options?: RawAxiosRequestConfig) {
18381
+ return RSVPEventApiFp(this.configuration).rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO, options).then((request) => request(this.axios, this.basePath));
18301
18382
  }
18302
18383
 
18303
18384
  /**
@@ -18306,8 +18387,8 @@ export class RSVPEventApi extends BaseAPI {
18306
18387
  * @param {*} [options] Override http request option.
18307
18388
  * @throws {RequiredError}
18308
18389
  */
18309
- public searchControllerRsvpEventById(id: string, options?: RawAxiosRequestConfig) {
18310
- return RSVPEventApiFp(this.configuration).searchControllerRsvpEventById(id, options).then((request) => request(this.axios, this.basePath));
18390
+ public rSVPControllerRsvpEventById(id: string, options?: RawAxiosRequestConfig) {
18391
+ return RSVPEventApiFp(this.configuration).rSVPControllerRsvpEventById(id, options).then((request) => request(this.axios, this.basePath));
18311
18392
  }
18312
18393
 
18313
18394
  /**
@@ -18319,8 +18400,8 @@ export class RSVPEventApi extends BaseAPI {
18319
18400
  * @param {*} [options] Override http request option.
18320
18401
  * @throws {RequiredError}
18321
18402
  */
18322
- public searchControllerRsvpEvents(page: number, pageSize: number, search?: string, venue?: string, options?: RawAxiosRequestConfig) {
18323
- return RSVPEventApiFp(this.configuration).searchControllerRsvpEvents(page, pageSize, search, venue, options).then((request) => request(this.axios, this.basePath));
18403
+ public rSVPControllerRsvpEvents(page: number, pageSize: number, search?: string, venue?: string, options?: RawAxiosRequestConfig) {
18404
+ return RSVPEventApiFp(this.configuration).rSVPControllerRsvpEvents(page, pageSize, search, venue, options).then((request) => request(this.axios, this.basePath));
18324
18405
  }
18325
18406
 
18326
18407
  /**
@@ -18330,8 +18411,8 @@ export class RSVPEventApi extends BaseAPI {
18330
18411
  * @param {*} [options] Override http request option.
18331
18412
  * @throws {RequiredError}
18332
18413
  */
18333
- public searchControllerUpdateRSVPEvent(id: string, rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig) {
18334
- return RSVPEventApiFp(this.configuration).searchControllerUpdateRSVPEvent(id, rSVPEvenPayloadDTO, options).then((request) => request(this.axios, this.basePath));
18414
+ public rSVPControllerUpdateRSVPEvent(id: string, rSVPEvenPayloadDTO: RSVPEvenPayloadDTO, options?: RawAxiosRequestConfig) {
18415
+ return RSVPEventApiFp(this.configuration).rSVPControllerUpdateRSVPEvent(id, rSVPEvenPayloadDTO, options).then((request) => request(this.axios, this.basePath));
18335
18416
  }
18336
18417
  }
18337
18418
 
@@ -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 2025-12-03T17:42:13+05:30]
10
- **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-12-03T17:42:13+05:30]
9
+ **date** | **string** | The start date of the booking | [default to 2025-12-03T19:56:24+05:30]
10
+ **recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2025-12-03T19:56:24+05:30]
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 2025-12-03T17:42:13+05:30]
10
- **endDate** | **string** | The start date of the booking | [default to 2025-12-03T17:42:13+05:30]
9
+ **startDate** | **string** | The start date of the booking | [default to 2025-12-03T19:56:24+05:30]
10
+ **endDate** | **string** | The start date of the booking | [default to 2025-12-03T19:56:24+05:30]
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]
@@ -28,7 +28,7 @@ Name | Type | Description | Notes
28
28
  **hostImage** | **string** | | [default to undefined]
29
29
  **photo** | **string** | | [optional] [default to undefined]
30
30
  **timezone** | **string** | | [optional] [default to undefined]
31
- **type** | **string** | | [default to undefined]
31
+ **type** | **string** | | [optional] [default to undefined]
32
32
  **externalTicketing** | **string** | | [optional] [default to undefined]
33
33
  **otherLink** | **string** | | [optional] [default to undefined]
34
34
  **location** | [**RSVPEventLocationDTO**](RSVPEventLocationDTO.md) | | [optional] [default to undefined]
@@ -4,13 +4,14 @@ All URIs are relative to *http://localhost:8080*
4
4
 
5
5
  |Method | HTTP request | Description|
6
6
  |------------- | ------------- | -------------|
7
- |[**searchControllerAddRSVPEvent**](#searchcontrolleraddrsvpevent) | **POST** /v1/rsvp | |
8
- |[**searchControllerRsvpEventById**](#searchcontrollerrsvpeventbyid) | **GET** /v1/rsvp/{id} | |
9
- |[**searchControllerRsvpEvents**](#searchcontrollerrsvpevents) | **GET** /v1/rsvp | |
10
- |[**searchControllerUpdateRSVPEvent**](#searchcontrollerupdatersvpevent) | **PUT** /v1/rsvp/{id} | |
7
+ |[**rSVPControllerAddRSVPEvent**](#rsvpcontrolleraddrsvpevent) | **POST** /v1/rsvp | |
8
+ |[**rSVPControllerDeleteRSVPEvent**](#rsvpcontrollerdeletersvpevent) | **DELETE** /v1/rsvp | |
9
+ |[**rSVPControllerRsvpEventById**](#rsvpcontrollerrsvpeventbyid) | **GET** /v1/rsvp/{id} | |
10
+ |[**rSVPControllerRsvpEvents**](#rsvpcontrollerrsvpevents) | **GET** /v1/rsvp | |
11
+ |[**rSVPControllerUpdateRSVPEvent**](#rsvpcontrollerupdatersvpevent) | **PUT** /v1/rsvp/{id} | |
11
12
 
12
- # **searchControllerAddRSVPEvent**
13
- > RSVPEventDTO searchControllerAddRSVPEvent(rSVPEvenPayloadDTO)
13
+ # **rSVPControllerAddRSVPEvent**
14
+ > RSVPEventDTO rSVPControllerAddRSVPEvent(rSVPEvenPayloadDTO)
14
15
 
15
16
 
16
17
  ### Example
@@ -27,7 +28,7 @@ const apiInstance = new RSVPEventApi(configuration);
27
28
 
28
29
  let rSVPEvenPayloadDTO: RSVPEvenPayloadDTO; //
29
30
 
30
- const { status, data } = await apiInstance.searchControllerAddRSVPEvent(
31
+ const { status, data } = await apiInstance.rSVPControllerAddRSVPEvent(
31
32
  rSVPEvenPayloadDTO
32
33
  );
33
34
  ```
@@ -60,8 +61,59 @@ No authorization required
60
61
 
61
62
  [[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)
62
63
 
63
- # **searchControllerRsvpEventById**
64
- > RSVPEventDTO searchControllerRsvpEventById()
64
+ # **rSVPControllerDeleteRSVPEvent**
65
+ > RSVPEventResponseDTO rSVPControllerDeleteRSVPEvent(rSVPEventDeleteDTO)
66
+
67
+
68
+ ### Example
69
+
70
+ ```typescript
71
+ import {
72
+ RSVPEventApi,
73
+ Configuration,
74
+ RSVPEventDeleteDTO
75
+ } from './api';
76
+
77
+ const configuration = new Configuration();
78
+ const apiInstance = new RSVPEventApi(configuration);
79
+
80
+ let rSVPEventDeleteDTO: RSVPEventDeleteDTO; //
81
+
82
+ const { status, data } = await apiInstance.rSVPControllerDeleteRSVPEvent(
83
+ rSVPEventDeleteDTO
84
+ );
85
+ ```
86
+
87
+ ### Parameters
88
+
89
+ |Name | Type | Description | Notes|
90
+ |------------- | ------------- | ------------- | -------------|
91
+ | **rSVPEventDeleteDTO** | **RSVPEventDeleteDTO**| | |
92
+
93
+
94
+ ### Return type
95
+
96
+ **RSVPEventResponseDTO**
97
+
98
+ ### Authorization
99
+
100
+ [bearer](../README.md#bearer)
101
+
102
+ ### HTTP request headers
103
+
104
+ - **Content-Type**: application/json
105
+ - **Accept**: application/json
106
+
107
+
108
+ ### HTTP response details
109
+ | Status code | Description | Response headers |
110
+ |-------------|-------------|------------------|
111
+ |**200** | | - |
112
+
113
+ [[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)
114
+
115
+ # **rSVPControllerRsvpEventById**
116
+ > RSVPEventDTO rSVPControllerRsvpEventById()
65
117
 
66
118
 
67
119
  ### Example
@@ -77,7 +129,7 @@ const apiInstance = new RSVPEventApi(configuration);
77
129
 
78
130
  let id: string; // (default to undefined)
79
131
 
80
- const { status, data } = await apiInstance.searchControllerRsvpEventById(
132
+ const { status, data } = await apiInstance.rSVPControllerRsvpEventById(
81
133
  id
82
134
  );
83
135
  ```
@@ -110,8 +162,8 @@ No authorization required
110
162
 
111
163
  [[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)
112
164
 
113
- # **searchControllerRsvpEvents**
114
- > RSVPEventResponseDTO searchControllerRsvpEvents()
165
+ # **rSVPControllerRsvpEvents**
166
+ > RSVPEventResponseDTO rSVPControllerRsvpEvents()
115
167
 
116
168
 
117
169
  ### Example
@@ -130,7 +182,7 @@ let pageSize: number; // (default to undefined)
130
182
  let search: string; // (optional) (default to undefined)
131
183
  let venue: string; // (optional) (default to undefined)
132
184
 
133
- const { status, data } = await apiInstance.searchControllerRsvpEvents(
185
+ const { status, data } = await apiInstance.rSVPControllerRsvpEvents(
134
186
  page,
135
187
  pageSize,
136
188
  search,
@@ -154,7 +206,7 @@ const { status, data } = await apiInstance.searchControllerRsvpEvents(
154
206
 
155
207
  ### Authorization
156
208
 
157
- No authorization required
209
+ [bearer](../README.md#bearer)
158
210
 
159
211
  ### HTTP request headers
160
212
 
@@ -169,8 +221,8 @@ No authorization required
169
221
 
170
222
  [[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)
171
223
 
172
- # **searchControllerUpdateRSVPEvent**
173
- > RSVPEventDTO searchControllerUpdateRSVPEvent(rSVPEvenPayloadDTO)
224
+ # **rSVPControllerUpdateRSVPEvent**
225
+ > RSVPEventDTO rSVPControllerUpdateRSVPEvent(rSVPEvenPayloadDTO)
174
226
 
175
227
 
176
228
  ### Example
@@ -188,7 +240,7 @@ const apiInstance = new RSVPEventApi(configuration);
188
240
  let id: string; // (default to undefined)
189
241
  let rSVPEvenPayloadDTO: RSVPEvenPayloadDTO; //
190
242
 
191
- const { status, data } = await apiInstance.searchControllerUpdateRSVPEvent(
243
+ const { status, data } = await apiInstance.rSVPControllerUpdateRSVPEvent(
192
244
  id,
193
245
  rSVPEvenPayloadDTO
194
246
  );
@@ -0,0 +1,20 @@
1
+ # RSVPEventDeleteDTO
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **string** | | [default to undefined]
9
+
10
+ ## Example
11
+
12
+ ```typescript
13
+ import { RSVPEventDeleteDTO } from './api';
14
+
15
+ const instance: RSVPEventDeleteDTO = {
16
+ id,
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
+ # RSVPEventResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **count** | **number** | | [default to undefined]
9
+ **data** | [**Array&lt;RSVPEventEntity&gt;**](RSVPEventEntity.md) | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { RSVPEventResponse } from './api';
15
+
16
+ const instance: RSVPEventResponse = {
17
+ count,
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)
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **statusCode** | **number** | statusCode | [default to undefined]
9
- **data** | [**Array&lt;RSVPEventEntity&gt;**](RSVPEventEntity.md) | | [default to undefined]
9
+ **data** | [**RSVPEventResponse**](RSVPEventResponse.md) | | [default to undefined]
10
10
 
11
11
  ## Example
12
12
 
@@ -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 2025-12-03T17:42:13+05:30]
8
+ **date** | **string** | The start date of the booking | [default to 2025-12-03T19:56:24+05:30]
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 2025-12-03T17:42:13+05:30]
9
- **endDate** | **string** | The end date of the waitlist | [default to 2025-12-03T18:42:13+05:30]
8
+ **startDate** | **string** | The start date of the waitlist | [default to 2025-12-03T19:56:24+05:30]
9
+ **endDate** | **string** | The end date of the waitlist | [default to 2025-12-03T20:56:24+05:30]
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.4.31",
3
+ "version": "4.4.36",
4
4
  "description": "API client for Gooday",
5
5
  "main": "index.ts",
6
6
  "scripts": {},