@gooday_corp/gooday-api-client 4.6.10 → 4.6.11
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 +211 -0
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/CreateRSVPEventBookingPayload.md +2 -2
- package/docs/CreateWalkInBookingPayload.md +2 -2
- package/docs/PaymentDetailsPayload.md +2 -2
- package/docs/RSVPV2Api.md +155 -0
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -28914,6 +28914,82 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
28914
28914
|
options: localVarRequestOptions,
|
|
28915
28915
|
};
|
|
28916
28916
|
},
|
|
28917
|
+
/**
|
|
28918
|
+
*
|
|
28919
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
28920
|
+
* @param {*} [options] Override http request option.
|
|
28921
|
+
* @throws {RequiredError}
|
|
28922
|
+
*/
|
|
28923
|
+
rSVPV2ControllerDeleteRSVPFavorites: async (rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
28924
|
+
// verify required parameter 'rSVPEventFavoriteDTO' is not null or undefined
|
|
28925
|
+
assertParamExists('rSVPV2ControllerDeleteRSVPFavorites', 'rSVPEventFavoriteDTO', rSVPEventFavoriteDTO)
|
|
28926
|
+
const localVarPath = `/v1/rsvp/v2/event/unfavorite`;
|
|
28927
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28928
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28929
|
+
let baseOptions;
|
|
28930
|
+
if (configuration) {
|
|
28931
|
+
baseOptions = configuration.baseOptions;
|
|
28932
|
+
}
|
|
28933
|
+
|
|
28934
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
28935
|
+
const localVarHeaderParameter = {} as any;
|
|
28936
|
+
const localVarQueryParameter = {} as any;
|
|
28937
|
+
|
|
28938
|
+
// authentication bearer required
|
|
28939
|
+
// http bearer authentication required
|
|
28940
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
28941
|
+
|
|
28942
|
+
|
|
28943
|
+
|
|
28944
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
28945
|
+
|
|
28946
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28947
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28948
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
28949
|
+
localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventFavoriteDTO, localVarRequestOptions, configuration)
|
|
28950
|
+
|
|
28951
|
+
return {
|
|
28952
|
+
url: toPathString(localVarUrlObj),
|
|
28953
|
+
options: localVarRequestOptions,
|
|
28954
|
+
};
|
|
28955
|
+
},
|
|
28956
|
+
/**
|
|
28957
|
+
*
|
|
28958
|
+
* @param {string} id
|
|
28959
|
+
* @param {*} [options] Override http request option.
|
|
28960
|
+
* @throws {RequiredError}
|
|
28961
|
+
*/
|
|
28962
|
+
rSVPV2ControllerFavoriteRSVPEventById: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
28963
|
+
// verify required parameter 'id' is not null or undefined
|
|
28964
|
+
assertParamExists('rSVPV2ControllerFavoriteRSVPEventById', 'id', id)
|
|
28965
|
+
const localVarPath = `/v1/rsvp/v2/favoriteId/{id}`
|
|
28966
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
28967
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28968
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28969
|
+
let baseOptions;
|
|
28970
|
+
if (configuration) {
|
|
28971
|
+
baseOptions = configuration.baseOptions;
|
|
28972
|
+
}
|
|
28973
|
+
|
|
28974
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
28975
|
+
const localVarHeaderParameter = {} as any;
|
|
28976
|
+
const localVarQueryParameter = {} as any;
|
|
28977
|
+
|
|
28978
|
+
// authentication bearer required
|
|
28979
|
+
// http bearer authentication required
|
|
28980
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
28981
|
+
|
|
28982
|
+
|
|
28983
|
+
|
|
28984
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28985
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28986
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
28987
|
+
|
|
28988
|
+
return {
|
|
28989
|
+
url: toPathString(localVarUrlObj),
|
|
28990
|
+
options: localVarRequestOptions,
|
|
28991
|
+
};
|
|
28992
|
+
},
|
|
28917
28993
|
/**
|
|
28918
28994
|
*
|
|
28919
28995
|
* @param {string} id
|
|
@@ -29505,6 +29581,45 @@ export const RSVPV2ApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
29505
29581
|
options: localVarRequestOptions,
|
|
29506
29582
|
};
|
|
29507
29583
|
},
|
|
29584
|
+
/**
|
|
29585
|
+
*
|
|
29586
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
29587
|
+
* @param {*} [options] Override http request option.
|
|
29588
|
+
* @throws {RequiredError}
|
|
29589
|
+
*/
|
|
29590
|
+
rSVPV2ControllerRsvpFavorites: async (rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
29591
|
+
// verify required parameter 'rSVPEventFavoriteDTO' is not null or undefined
|
|
29592
|
+
assertParamExists('rSVPV2ControllerRsvpFavorites', 'rSVPEventFavoriteDTO', rSVPEventFavoriteDTO)
|
|
29593
|
+
const localVarPath = `/v1/rsvp/v2/event/favorite`;
|
|
29594
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
29595
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
29596
|
+
let baseOptions;
|
|
29597
|
+
if (configuration) {
|
|
29598
|
+
baseOptions = configuration.baseOptions;
|
|
29599
|
+
}
|
|
29600
|
+
|
|
29601
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
29602
|
+
const localVarHeaderParameter = {} as any;
|
|
29603
|
+
const localVarQueryParameter = {} as any;
|
|
29604
|
+
|
|
29605
|
+
// authentication bearer required
|
|
29606
|
+
// http bearer authentication required
|
|
29607
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
29608
|
+
|
|
29609
|
+
|
|
29610
|
+
|
|
29611
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
29612
|
+
|
|
29613
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
29614
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
29615
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
29616
|
+
localVarRequestOptions.data = serializeDataIfNeeded(rSVPEventFavoriteDTO, localVarRequestOptions, configuration)
|
|
29617
|
+
|
|
29618
|
+
return {
|
|
29619
|
+
url: toPathString(localVarUrlObj),
|
|
29620
|
+
options: localVarRequestOptions,
|
|
29621
|
+
};
|
|
29622
|
+
},
|
|
29508
29623
|
/**
|
|
29509
29624
|
*
|
|
29510
29625
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -29709,6 +29824,30 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29709
29824
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerDeleteEventSuperAdmin']?.[localVarOperationServerIndex]?.url;
|
|
29710
29825
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29711
29826
|
},
|
|
29827
|
+
/**
|
|
29828
|
+
*
|
|
29829
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
29830
|
+
* @param {*} [options] Override http request option.
|
|
29831
|
+
* @throws {RequiredError}
|
|
29832
|
+
*/
|
|
29833
|
+
async rSVPV2ControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO>> {
|
|
29834
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options);
|
|
29835
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29836
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerDeleteRSVPFavorites']?.[localVarOperationServerIndex]?.url;
|
|
29837
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29838
|
+
},
|
|
29839
|
+
/**
|
|
29840
|
+
*
|
|
29841
|
+
* @param {string} id
|
|
29842
|
+
* @param {*} [options] Override http request option.
|
|
29843
|
+
* @throws {RequiredError}
|
|
29844
|
+
*/
|
|
29845
|
+
async rSVPV2ControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoriteResponsedDTO>> {
|
|
29846
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerFavoriteRSVPEventById(id, options);
|
|
29847
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
29848
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerFavoriteRSVPEventById']?.[localVarOperationServerIndex]?.url;
|
|
29849
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29850
|
+
},
|
|
29712
29851
|
/**
|
|
29713
29852
|
*
|
|
29714
29853
|
* @param {string} id
|
|
@@ -29878,6 +30017,18 @@ export const RSVPV2ApiFp = function(configuration?: Configuration) {
|
|
|
29878
30017
|
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerReminderEventCalendar']?.[localVarOperationServerIndex]?.url;
|
|
29879
30018
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
29880
30019
|
},
|
|
30020
|
+
/**
|
|
30021
|
+
*
|
|
30022
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
30023
|
+
* @param {*} [options] Override http request option.
|
|
30024
|
+
* @throws {RequiredError}
|
|
30025
|
+
*/
|
|
30026
|
+
async rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RSVPEventFavoritedDTO>> {
|
|
30027
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO, options);
|
|
30028
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
30029
|
+
const localVarOperationServerBasePath = operationServerMap['RSVPV2Api.rSVPV2ControllerRsvpFavorites']?.[localVarOperationServerIndex]?.url;
|
|
30030
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
30031
|
+
},
|
|
29881
30032
|
/**
|
|
29882
30033
|
*
|
|
29883
30034
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -29981,6 +30132,24 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
29981
30132
|
rSVPV2ControllerDeleteEventSuperAdmin(rSVPEventDeleteDTO: RSVPEventDeleteDTO, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
29982
30133
|
return localVarFp.rSVPV2ControllerDeleteEventSuperAdmin(rSVPEventDeleteDTO, options).then((request) => request(axios, basePath));
|
|
29983
30134
|
},
|
|
30135
|
+
/**
|
|
30136
|
+
*
|
|
30137
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
30138
|
+
* @param {*} [options] Override http request option.
|
|
30139
|
+
* @throws {RequiredError}
|
|
30140
|
+
*/
|
|
30141
|
+
rSVPV2ControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteAndUnfavoritedDTO> {
|
|
30142
|
+
return localVarFp.rSVPV2ControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options).then((request) => request(axios, basePath));
|
|
30143
|
+
},
|
|
30144
|
+
/**
|
|
30145
|
+
*
|
|
30146
|
+
* @param {string} id
|
|
30147
|
+
* @param {*} [options] Override http request option.
|
|
30148
|
+
* @throws {RequiredError}
|
|
30149
|
+
*/
|
|
30150
|
+
rSVPV2ControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoriteResponsedDTO> {
|
|
30151
|
+
return localVarFp.rSVPV2ControllerFavoriteRSVPEventById(id, options).then((request) => request(axios, basePath));
|
|
30152
|
+
},
|
|
29984
30153
|
/**
|
|
29985
30154
|
*
|
|
29986
30155
|
* @param {string} id
|
|
@@ -30117,6 +30286,15 @@ export const RSVPV2ApiFactory = function (configuration?: Configuration, basePat
|
|
|
30117
30286
|
rSVPV2ControllerReminderEventCalendar(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
30118
30287
|
return localVarFp.rSVPV2ControllerReminderEventCalendar(id, options).then((request) => request(axios, basePath));
|
|
30119
30288
|
},
|
|
30289
|
+
/**
|
|
30290
|
+
*
|
|
30291
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
30292
|
+
* @param {*} [options] Override http request option.
|
|
30293
|
+
* @throws {RequiredError}
|
|
30294
|
+
*/
|
|
30295
|
+
rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig): AxiosPromise<RSVPEventFavoritedDTO> {
|
|
30296
|
+
return localVarFp.rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(axios, basePath));
|
|
30297
|
+
},
|
|
30120
30298
|
/**
|
|
30121
30299
|
*
|
|
30122
30300
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -30223,6 +30401,28 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30223
30401
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerDeleteEventSuperAdmin(rSVPEventDeleteDTO, options).then((request) => request(this.axios, this.basePath));
|
|
30224
30402
|
}
|
|
30225
30403
|
|
|
30404
|
+
/**
|
|
30405
|
+
*
|
|
30406
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
30407
|
+
* @param {*} [options] Override http request option.
|
|
30408
|
+
* @throws {RequiredError}
|
|
30409
|
+
* @memberof RSVPV2Api
|
|
30410
|
+
*/
|
|
30411
|
+
public rSVPV2ControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig) {
|
|
30412
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO, options).then((request) => request(this.axios, this.basePath));
|
|
30413
|
+
}
|
|
30414
|
+
|
|
30415
|
+
/**
|
|
30416
|
+
*
|
|
30417
|
+
* @param {string} id
|
|
30418
|
+
* @param {*} [options] Override http request option.
|
|
30419
|
+
* @throws {RequiredError}
|
|
30420
|
+
* @memberof RSVPV2Api
|
|
30421
|
+
*/
|
|
30422
|
+
public rSVPV2ControllerFavoriteRSVPEventById(id: string, options?: RawAxiosRequestConfig) {
|
|
30423
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerFavoriteRSVPEventById(id, options).then((request) => request(this.axios, this.basePath));
|
|
30424
|
+
}
|
|
30425
|
+
|
|
30226
30426
|
/**
|
|
30227
30427
|
*
|
|
30228
30428
|
* @param {string} id
|
|
@@ -30381,6 +30581,17 @@ export class RSVPV2Api extends BaseAPI {
|
|
|
30381
30581
|
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerReminderEventCalendar(id, options).then((request) => request(this.axios, this.basePath));
|
|
30382
30582
|
}
|
|
30383
30583
|
|
|
30584
|
+
/**
|
|
30585
|
+
*
|
|
30586
|
+
* @param {RSVPEventFavoriteDTO} rSVPEventFavoriteDTO
|
|
30587
|
+
* @param {*} [options] Override http request option.
|
|
30588
|
+
* @throws {RequiredError}
|
|
30589
|
+
* @memberof RSVPV2Api
|
|
30590
|
+
*/
|
|
30591
|
+
public rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO: RSVPEventFavoriteDTO, options?: RawAxiosRequestConfig) {
|
|
30592
|
+
return RSVPV2ApiFp(this.configuration).rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO, options).then((request) => request(this.axios, this.basePath));
|
|
30593
|
+
}
|
|
30594
|
+
|
|
30384
30595
|
/**
|
|
30385
30596
|
*
|
|
30386
30597
|
* @param {SetupRSVPV2PaymentDTO} setupRSVPV2PaymentDTO
|
|
@@ -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-04-
|
|
10
|
-
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-04-
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2026-04-29T11:21:10Z]
|
|
10
|
+
**recurrenceEndDate** | **string** | The start date of the booking | [optional] [default to 2026-04-29T11:21:10Z]
|
|
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-04-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2026-04-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2026-04-29T11:21:10Z]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-04-29T11:21:10Z]
|
|
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<string>** | 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-04-
|
|
10
|
-
**endDate** | **string** | The start date of the booking | [default to 2026-04-
|
|
9
|
+
**startDate** | **string** | The start date of the booking | [default to 2026-04-29T11:21:10Z]
|
|
10
|
+
**endDate** | **string** | The start date of the booking | [default to 2026-04-29T11:21:10Z]
|
|
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<string>** | 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-04-
|
|
12
|
-
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-04-
|
|
11
|
+
**startDate** | **string** | The start date of the booking | [optional] [default to 2026-04-29T11:21:08Z]
|
|
12
|
+
**endDate** | **string** | The end date of the booking | [optional] [default to 2026-04-29T11:21:08Z]
|
|
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]
|
package/docs/RSVPV2Api.md
CHANGED
|
@@ -10,6 +10,8 @@ All URIs are relative to *http://localhost:8080*
|
|
|
10
10
|
|[**rSVPV2ControllerCreateEvent**](#rsvpv2controllercreateevent) | **POST** /v1/rsvp/v2/events | |
|
|
11
11
|
|[**rSVPV2ControllerDeleteEvent**](#rsvpv2controllerdeleteevent) | **DELETE** /v1/rsvp/v2/events/{id} | |
|
|
12
12
|
|[**rSVPV2ControllerDeleteEventSuperAdmin**](#rsvpv2controllerdeleteeventsuperadmin) | **DELETE** /v1/rsvp/v2/super-admin/rsvp | |
|
|
13
|
+
|[**rSVPV2ControllerDeleteRSVPFavorites**](#rsvpv2controllerdeletersvpfavorites) | **DELETE** /v1/rsvp/v2/event/unfavorite | |
|
|
14
|
+
|[**rSVPV2ControllerFavoriteRSVPEventById**](#rsvpv2controllerfavoritersvpeventbyid) | **GET** /v1/rsvp/v2/favoriteId/{id} | |
|
|
13
15
|
|[**rSVPV2ControllerGetAttendees**](#rsvpv2controllergetattendees) | **GET** /v1/rsvp/v2/events/{id}/attendees | |
|
|
14
16
|
|[**rSVPV2ControllerGetEventById**](#rsvpv2controllergeteventbyid) | **GET** /v1/rsvp/v2/events/{id} | |
|
|
15
17
|
|[**rSVPV2ControllerGetEventsByBusiness**](#rsvpv2controllergeteventsbybusiness) | **GET** /v1/rsvp/v2/events/business/{businessId} | |
|
|
@@ -21,6 +23,7 @@ All URIs are relative to *http://localhost:8080*
|
|
|
21
23
|
|[**rSVPV2ControllerInvite**](#rsvpv2controllerinvite) | **POST** /v1/rsvp/v2/events/{id}/invite | |
|
|
22
24
|
|[**rSVPV2ControllerJoinEvent**](#rsvpv2controllerjoinevent) | **POST** /v1/rsvp/v2/events/{id}/join | |
|
|
23
25
|
|[**rSVPV2ControllerReminderEventCalendar**](#rsvpv2controllerremindereventcalendar) | **PUT** /v1/rsvp/v2/remindar/{id} | |
|
|
26
|
+
|[**rSVPV2ControllerRsvpFavorites**](#rsvpv2controllerrsvpfavorites) | **POST** /v1/rsvp/v2/event/favorite | |
|
|
24
27
|
|[**rSVPV2ControllerSetupPayment**](#rsvpv2controllersetuppayment) | **POST** /v1/rsvp/v2/attendees/payment/setup | |
|
|
25
28
|
|[**rSVPV2ControllerUpdateEvent**](#rsvpv2controllerupdateevent) | **PUT** /v1/rsvp/v2/events/{id} | |
|
|
26
29
|
|[**rSVPV2ControllerUpdateStatus**](#rsvpv2controllerupdatestatus) | **PUT** /v1/rsvp/v2/attendees/{id}/status | |
|
|
@@ -331,6 +334,107 @@ void (empty response body)
|
|
|
331
334
|
|
|
332
335
|
[[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)
|
|
333
336
|
|
|
337
|
+
# **rSVPV2ControllerDeleteRSVPFavorites**
|
|
338
|
+
> RSVPEventFavoriteAndUnfavoritedDTO rSVPV2ControllerDeleteRSVPFavorites(rSVPEventFavoriteDTO)
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### Example
|
|
342
|
+
|
|
343
|
+
```typescript
|
|
344
|
+
import {
|
|
345
|
+
RSVPV2Api,
|
|
346
|
+
Configuration,
|
|
347
|
+
RSVPEventFavoriteDTO
|
|
348
|
+
} from './api';
|
|
349
|
+
|
|
350
|
+
const configuration = new Configuration();
|
|
351
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
352
|
+
|
|
353
|
+
let rSVPEventFavoriteDTO: RSVPEventFavoriteDTO; //
|
|
354
|
+
|
|
355
|
+
const { status, data } = await apiInstance.rSVPV2ControllerDeleteRSVPFavorites(
|
|
356
|
+
rSVPEventFavoriteDTO
|
|
357
|
+
);
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
### Parameters
|
|
361
|
+
|
|
362
|
+
|Name | Type | Description | Notes|
|
|
363
|
+
|------------- | ------------- | ------------- | -------------|
|
|
364
|
+
| **rSVPEventFavoriteDTO** | **RSVPEventFavoriteDTO**| | |
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
### Return type
|
|
368
|
+
|
|
369
|
+
**RSVPEventFavoriteAndUnfavoritedDTO**
|
|
370
|
+
|
|
371
|
+
### Authorization
|
|
372
|
+
|
|
373
|
+
[bearer](../README.md#bearer)
|
|
374
|
+
|
|
375
|
+
### HTTP request headers
|
|
376
|
+
|
|
377
|
+
- **Content-Type**: application/json
|
|
378
|
+
- **Accept**: application/json
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
### HTTP response details
|
|
382
|
+
| Status code | Description | Response headers |
|
|
383
|
+
|-------------|-------------|------------------|
|
|
384
|
+
|**200** | | - |
|
|
385
|
+
|
|
386
|
+
[[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)
|
|
387
|
+
|
|
388
|
+
# **rSVPV2ControllerFavoriteRSVPEventById**
|
|
389
|
+
> RSVPEventFavoriteResponsedDTO rSVPV2ControllerFavoriteRSVPEventById()
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
### Example
|
|
393
|
+
|
|
394
|
+
```typescript
|
|
395
|
+
import {
|
|
396
|
+
RSVPV2Api,
|
|
397
|
+
Configuration
|
|
398
|
+
} from './api';
|
|
399
|
+
|
|
400
|
+
const configuration = new Configuration();
|
|
401
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
402
|
+
|
|
403
|
+
let id: string; // (default to undefined)
|
|
404
|
+
|
|
405
|
+
const { status, data } = await apiInstance.rSVPV2ControllerFavoriteRSVPEventById(
|
|
406
|
+
id
|
|
407
|
+
);
|
|
408
|
+
```
|
|
409
|
+
|
|
410
|
+
### Parameters
|
|
411
|
+
|
|
412
|
+
|Name | Type | Description | Notes|
|
|
413
|
+
|------------- | ------------- | ------------- | -------------|
|
|
414
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
### Return type
|
|
418
|
+
|
|
419
|
+
**RSVPEventFavoriteResponsedDTO**
|
|
420
|
+
|
|
421
|
+
### Authorization
|
|
422
|
+
|
|
423
|
+
[bearer](../README.md#bearer)
|
|
424
|
+
|
|
425
|
+
### HTTP request headers
|
|
426
|
+
|
|
427
|
+
- **Content-Type**: Not defined
|
|
428
|
+
- **Accept**: application/json
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
### HTTP response details
|
|
432
|
+
| Status code | Description | Response headers |
|
|
433
|
+
|-------------|-------------|------------------|
|
|
434
|
+
|**200** | | - |
|
|
435
|
+
|
|
436
|
+
[[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)
|
|
437
|
+
|
|
334
438
|
# **rSVPV2ControllerGetAttendees**
|
|
335
439
|
> rSVPV2ControllerGetAttendees()
|
|
336
440
|
|
|
@@ -995,6 +1099,57 @@ No authorization required
|
|
|
995
1099
|
|
|
996
1100
|
[[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)
|
|
997
1101
|
|
|
1102
|
+
# **rSVPV2ControllerRsvpFavorites**
|
|
1103
|
+
> RSVPEventFavoritedDTO rSVPV2ControllerRsvpFavorites(rSVPEventFavoriteDTO)
|
|
1104
|
+
|
|
1105
|
+
|
|
1106
|
+
### Example
|
|
1107
|
+
|
|
1108
|
+
```typescript
|
|
1109
|
+
import {
|
|
1110
|
+
RSVPV2Api,
|
|
1111
|
+
Configuration,
|
|
1112
|
+
RSVPEventFavoriteDTO
|
|
1113
|
+
} from './api';
|
|
1114
|
+
|
|
1115
|
+
const configuration = new Configuration();
|
|
1116
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
1117
|
+
|
|
1118
|
+
let rSVPEventFavoriteDTO: RSVPEventFavoriteDTO; //
|
|
1119
|
+
|
|
1120
|
+
const { status, data } = await apiInstance.rSVPV2ControllerRsvpFavorites(
|
|
1121
|
+
rSVPEventFavoriteDTO
|
|
1122
|
+
);
|
|
1123
|
+
```
|
|
1124
|
+
|
|
1125
|
+
### Parameters
|
|
1126
|
+
|
|
1127
|
+
|Name | Type | Description | Notes|
|
|
1128
|
+
|------------- | ------------- | ------------- | -------------|
|
|
1129
|
+
| **rSVPEventFavoriteDTO** | **RSVPEventFavoriteDTO**| | |
|
|
1130
|
+
|
|
1131
|
+
|
|
1132
|
+
### Return type
|
|
1133
|
+
|
|
1134
|
+
**RSVPEventFavoritedDTO**
|
|
1135
|
+
|
|
1136
|
+
### Authorization
|
|
1137
|
+
|
|
1138
|
+
[bearer](../README.md#bearer)
|
|
1139
|
+
|
|
1140
|
+
### HTTP request headers
|
|
1141
|
+
|
|
1142
|
+
- **Content-Type**: application/json
|
|
1143
|
+
- **Accept**: application/json
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
### HTTP response details
|
|
1147
|
+
| Status code | Description | Response headers |
|
|
1148
|
+
|-------------|-------------|------------------|
|
|
1149
|
+
|**200** | | - |
|
|
1150
|
+
|
|
1151
|
+
[[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)
|
|
1152
|
+
|
|
998
1153
|
# **rSVPV2ControllerSetupPayment**
|
|
999
1154
|
> rSVPV2ControllerSetupPayment(setupRSVPV2PaymentDTO)
|
|
1000
1155
|
|
|
@@ -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-04-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2026-04-29T11:21:10Z]
|
|
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-04-
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2026-04-
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2026-04-29T11:21:10Z]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2026-04-29T12:21:10Z]
|
|
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<CreateWaitlistBookingCollaboratorPayload>**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
|