@gooday_corp/gooday-api-client 1.3.73 → 1.3.76
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/.openapi-generator/FILES +2 -0
- package/api.ts +172 -57
- package/docs/CalendarApi.md +52 -0
- package/docs/CreateBookingPayload.md +1 -1
- package/docs/DeleteCalendarInvitation.md +22 -0
- package/docs/DeleteCalendarInvitationResponseDTO.md +22 -0
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/UserEntity.md +2 -0
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/docs/WhatsOnApi.md +32 -32
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -117,6 +117,8 @@ docs/CustomerEntity.md
|
|
|
117
117
|
docs/CustomerFilter.md
|
|
118
118
|
docs/CustomerResponseDTO.md
|
|
119
119
|
docs/DeclineFriendshipRequestPayload.md
|
|
120
|
+
docs/DeleteCalendarInvitation.md
|
|
121
|
+
docs/DeleteCalendarInvitationResponseDTO.md
|
|
120
122
|
docs/DeviceAddResponse.md
|
|
121
123
|
docs/DeviceApi.md
|
|
122
124
|
docs/DeviceEntity.md
|
package/api.ts
CHANGED
|
@@ -3737,6 +3737,44 @@ export interface DeclineFriendshipRequestPayload {
|
|
|
3737
3737
|
*/
|
|
3738
3738
|
'from': string;
|
|
3739
3739
|
}
|
|
3740
|
+
/**
|
|
3741
|
+
*
|
|
3742
|
+
* @export
|
|
3743
|
+
* @interface DeleteCalendarInvitation
|
|
3744
|
+
*/
|
|
3745
|
+
export interface DeleteCalendarInvitation {
|
|
3746
|
+
/**
|
|
3747
|
+
*
|
|
3748
|
+
* @type {string}
|
|
3749
|
+
* @memberof DeleteCalendarInvitation
|
|
3750
|
+
*/
|
|
3751
|
+
'calendar': string;
|
|
3752
|
+
/**
|
|
3753
|
+
*
|
|
3754
|
+
* @type {string}
|
|
3755
|
+
* @memberof DeleteCalendarInvitation
|
|
3756
|
+
*/
|
|
3757
|
+
'to': string;
|
|
3758
|
+
}
|
|
3759
|
+
/**
|
|
3760
|
+
*
|
|
3761
|
+
* @export
|
|
3762
|
+
* @interface DeleteCalendarInvitationResponseDTO
|
|
3763
|
+
*/
|
|
3764
|
+
export interface DeleteCalendarInvitationResponseDTO {
|
|
3765
|
+
/**
|
|
3766
|
+
* statusCode
|
|
3767
|
+
* @type {number}
|
|
3768
|
+
* @memberof DeleteCalendarInvitationResponseDTO
|
|
3769
|
+
*/
|
|
3770
|
+
'statusCode': number;
|
|
3771
|
+
/**
|
|
3772
|
+
*
|
|
3773
|
+
* @type {boolean}
|
|
3774
|
+
* @memberof DeleteCalendarInvitationResponseDTO
|
|
3775
|
+
*/
|
|
3776
|
+
'data': boolean;
|
|
3777
|
+
}
|
|
3740
3778
|
/**
|
|
3741
3779
|
*
|
|
3742
3780
|
* @export
|
|
@@ -8167,6 +8205,12 @@ export interface UserEntity {
|
|
|
8167
8205
|
* @memberof UserEntity
|
|
8168
8206
|
*/
|
|
8169
8207
|
'hangout': boolean;
|
|
8208
|
+
/**
|
|
8209
|
+
*
|
|
8210
|
+
* @type {Array<string>}
|
|
8211
|
+
* @memberof UserEntity
|
|
8212
|
+
*/
|
|
8213
|
+
'friends': Array<string>;
|
|
8170
8214
|
}
|
|
8171
8215
|
|
|
8172
8216
|
export const UserEntityRoleEnum = {
|
|
@@ -14618,6 +14662,45 @@ export const CalendarApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
14618
14662
|
options: localVarRequestOptions,
|
|
14619
14663
|
};
|
|
14620
14664
|
},
|
|
14665
|
+
/**
|
|
14666
|
+
*
|
|
14667
|
+
* @param {DeleteCalendarInvitation} deleteCalendarInvitation
|
|
14668
|
+
* @param {*} [options] Override http request option.
|
|
14669
|
+
* @throws {RequiredError}
|
|
14670
|
+
*/
|
|
14671
|
+
calendarControllerDeleteCalendarInvitation: async (deleteCalendarInvitation: DeleteCalendarInvitation, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14672
|
+
// verify required parameter 'deleteCalendarInvitation' is not null or undefined
|
|
14673
|
+
assertParamExists('calendarControllerDeleteCalendarInvitation', 'deleteCalendarInvitation', deleteCalendarInvitation)
|
|
14674
|
+
const localVarPath = `/v1/calendar/invitation`;
|
|
14675
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14676
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14677
|
+
let baseOptions;
|
|
14678
|
+
if (configuration) {
|
|
14679
|
+
baseOptions = configuration.baseOptions;
|
|
14680
|
+
}
|
|
14681
|
+
|
|
14682
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
14683
|
+
const localVarHeaderParameter = {} as any;
|
|
14684
|
+
const localVarQueryParameter = {} as any;
|
|
14685
|
+
|
|
14686
|
+
// authentication bearer required
|
|
14687
|
+
// http bearer authentication required
|
|
14688
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
14689
|
+
|
|
14690
|
+
|
|
14691
|
+
|
|
14692
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
14693
|
+
|
|
14694
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14695
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
14696
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
14697
|
+
localVarRequestOptions.data = serializeDataIfNeeded(deleteCalendarInvitation, localVarRequestOptions, configuration)
|
|
14698
|
+
|
|
14699
|
+
return {
|
|
14700
|
+
url: toPathString(localVarUrlObj),
|
|
14701
|
+
options: localVarRequestOptions,
|
|
14702
|
+
};
|
|
14703
|
+
},
|
|
14621
14704
|
/**
|
|
14622
14705
|
*
|
|
14623
14706
|
* @param {CalendarEventsListPayload} calendarEventsListPayload
|
|
@@ -15087,6 +15170,18 @@ export const CalendarApiFp = function(configuration?: Configuration) {
|
|
|
15087
15170
|
const localVarOperationServerBasePath = operationServerMap['CalendarApi.calendarControllerCreateSharedCalendar']?.[localVarOperationServerIndex]?.url;
|
|
15088
15171
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15089
15172
|
},
|
|
15173
|
+
/**
|
|
15174
|
+
*
|
|
15175
|
+
* @param {DeleteCalendarInvitation} deleteCalendarInvitation
|
|
15176
|
+
* @param {*} [options] Override http request option.
|
|
15177
|
+
* @throws {RequiredError}
|
|
15178
|
+
*/
|
|
15179
|
+
async calendarControllerDeleteCalendarInvitation(deleteCalendarInvitation: DeleteCalendarInvitation, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteCalendarInvitationResponseDTO>> {
|
|
15180
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.calendarControllerDeleteCalendarInvitation(deleteCalendarInvitation, options);
|
|
15181
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15182
|
+
const localVarOperationServerBasePath = operationServerMap['CalendarApi.calendarControllerDeleteCalendarInvitation']?.[localVarOperationServerIndex]?.url;
|
|
15183
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15184
|
+
},
|
|
15090
15185
|
/**
|
|
15091
15186
|
*
|
|
15092
15187
|
* @param {CalendarEventsListPayload} calendarEventsListPayload
|
|
@@ -15255,6 +15350,15 @@ export const CalendarApiFactory = function (configuration?: Configuration, baseP
|
|
|
15255
15350
|
calendarControllerCreateSharedCalendar(createCalendarPayload: CreateCalendarPayload, options?: RawAxiosRequestConfig): AxiosPromise<CalendarResponseDTO> {
|
|
15256
15351
|
return localVarFp.calendarControllerCreateSharedCalendar(createCalendarPayload, options).then((request) => request(axios, basePath));
|
|
15257
15352
|
},
|
|
15353
|
+
/**
|
|
15354
|
+
*
|
|
15355
|
+
* @param {DeleteCalendarInvitation} deleteCalendarInvitation
|
|
15356
|
+
* @param {*} [options] Override http request option.
|
|
15357
|
+
* @throws {RequiredError}
|
|
15358
|
+
*/
|
|
15359
|
+
calendarControllerDeleteCalendarInvitation(deleteCalendarInvitation: DeleteCalendarInvitation, options?: RawAxiosRequestConfig): AxiosPromise<DeleteCalendarInvitationResponseDTO> {
|
|
15360
|
+
return localVarFp.calendarControllerDeleteCalendarInvitation(deleteCalendarInvitation, options).then((request) => request(axios, basePath));
|
|
15361
|
+
},
|
|
15258
15362
|
/**
|
|
15259
15363
|
*
|
|
15260
15364
|
* @param {CalendarEventsListPayload} calendarEventsListPayload
|
|
@@ -15396,6 +15500,17 @@ export class CalendarApi extends BaseAPI {
|
|
|
15396
15500
|
return CalendarApiFp(this.configuration).calendarControllerCreateSharedCalendar(createCalendarPayload, options).then((request) => request(this.axios, this.basePath));
|
|
15397
15501
|
}
|
|
15398
15502
|
|
|
15503
|
+
/**
|
|
15504
|
+
*
|
|
15505
|
+
* @param {DeleteCalendarInvitation} deleteCalendarInvitation
|
|
15506
|
+
* @param {*} [options] Override http request option.
|
|
15507
|
+
* @throws {RequiredError}
|
|
15508
|
+
* @memberof CalendarApi
|
|
15509
|
+
*/
|
|
15510
|
+
public calendarControllerDeleteCalendarInvitation(deleteCalendarInvitation: DeleteCalendarInvitation, options?: RawAxiosRequestConfig) {
|
|
15511
|
+
return CalendarApiFp(this.configuration).calendarControllerDeleteCalendarInvitation(deleteCalendarInvitation, options).then((request) => request(this.axios, this.basePath));
|
|
15512
|
+
}
|
|
15513
|
+
|
|
15399
15514
|
/**
|
|
15400
15515
|
*
|
|
15401
15516
|
* @param {CalendarEventsListPayload} calendarEventsListPayload
|
|
@@ -23667,15 +23782,14 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
23667
23782
|
},
|
|
23668
23783
|
/**
|
|
23669
23784
|
*
|
|
23670
|
-
* @param {
|
|
23785
|
+
* @param {WhatsOnFilterDTO} whatsOnFilterDTO
|
|
23671
23786
|
* @param {*} [options] Override http request option.
|
|
23672
23787
|
* @throws {RequiredError}
|
|
23673
23788
|
*/
|
|
23674
|
-
|
|
23675
|
-
// verify required parameter '
|
|
23676
|
-
assertParamExists('
|
|
23677
|
-
const localVarPath = `/v1/whats-on/
|
|
23678
|
-
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
23789
|
+
whatsOnControllerFilterWhatsOn: async (whatsOnFilterDTO: WhatsOnFilterDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
23790
|
+
// verify required parameter 'whatsOnFilterDTO' is not null or undefined
|
|
23791
|
+
assertParamExists('whatsOnControllerFilterWhatsOn', 'whatsOnFilterDTO', whatsOnFilterDTO)
|
|
23792
|
+
const localVarPath = `/v1/whats-on/filter/list`;
|
|
23679
23793
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23680
23794
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23681
23795
|
let baseOptions;
|
|
@@ -23683,7 +23797,7 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
23683
23797
|
baseOptions = configuration.baseOptions;
|
|
23684
23798
|
}
|
|
23685
23799
|
|
|
23686
|
-
const localVarRequestOptions = { method: '
|
|
23800
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
23687
23801
|
const localVarHeaderParameter = {} as any;
|
|
23688
23802
|
const localVarQueryParameter = {} as any;
|
|
23689
23803
|
|
|
@@ -23693,9 +23807,12 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
23693
23807
|
|
|
23694
23808
|
|
|
23695
23809
|
|
|
23810
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
23811
|
+
|
|
23696
23812
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
23697
23813
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
23698
23814
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
23815
|
+
localVarRequestOptions.data = serializeDataIfNeeded(whatsOnFilterDTO, localVarRequestOptions, configuration)
|
|
23699
23816
|
|
|
23700
23817
|
return {
|
|
23701
23818
|
url: toPathString(localVarUrlObj),
|
|
@@ -23704,14 +23821,14 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
23704
23821
|
},
|
|
23705
23822
|
/**
|
|
23706
23823
|
*
|
|
23707
|
-
* @param {
|
|
23824
|
+
* @param {WhatsOnFindDTO} whatsOnFindDTO
|
|
23708
23825
|
* @param {*} [options] Override http request option.
|
|
23709
23826
|
* @throws {RequiredError}
|
|
23710
23827
|
*/
|
|
23711
|
-
|
|
23712
|
-
// verify required parameter '
|
|
23713
|
-
assertParamExists('
|
|
23714
|
-
const localVarPath = `/v1/whats-on/
|
|
23828
|
+
whatsOnControllerFindCategoryBaseWhatsOn: async (whatsOnFindDTO: WhatsOnFindDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
23829
|
+
// verify required parameter 'whatsOnFindDTO' is not null or undefined
|
|
23830
|
+
assertParamExists('whatsOnControllerFindCategoryBaseWhatsOn', 'whatsOnFindDTO', whatsOnFindDTO)
|
|
23831
|
+
const localVarPath = `/v1/whats-on/categories/list`;
|
|
23715
23832
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23716
23833
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23717
23834
|
let baseOptions;
|
|
@@ -23734,7 +23851,7 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
23734
23851
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
23735
23852
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
23736
23853
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
23737
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
23854
|
+
localVarRequestOptions.data = serializeDataIfNeeded(whatsOnFindDTO, localVarRequestOptions, configuration)
|
|
23738
23855
|
|
|
23739
23856
|
return {
|
|
23740
23857
|
url: toPathString(localVarUrlObj),
|
|
@@ -23743,14 +23860,15 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
23743
23860
|
},
|
|
23744
23861
|
/**
|
|
23745
23862
|
*
|
|
23746
|
-
* @param {
|
|
23863
|
+
* @param {string} id
|
|
23747
23864
|
* @param {*} [options] Override http request option.
|
|
23748
23865
|
* @throws {RequiredError}
|
|
23749
23866
|
*/
|
|
23750
|
-
|
|
23751
|
-
// verify required parameter '
|
|
23752
|
-
assertParamExists('
|
|
23753
|
-
const localVarPath = `/v1/whats-on/
|
|
23867
|
+
whatsOnControllerFindFavoriteWhatOnCount: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
23868
|
+
// verify required parameter 'id' is not null or undefined
|
|
23869
|
+
assertParamExists('whatsOnControllerFindFavoriteWhatOnCount', 'id', id)
|
|
23870
|
+
const localVarPath = `/v1/whats-on/favorite/count/{id}`
|
|
23871
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
23754
23872
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23755
23873
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
23756
23874
|
let baseOptions;
|
|
@@ -23758,7 +23876,7 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
23758
23876
|
baseOptions = configuration.baseOptions;
|
|
23759
23877
|
}
|
|
23760
23878
|
|
|
23761
|
-
const localVarRequestOptions = { method: '
|
|
23879
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
23762
23880
|
const localVarHeaderParameter = {} as any;
|
|
23763
23881
|
const localVarQueryParameter = {} as any;
|
|
23764
23882
|
|
|
@@ -23768,12 +23886,9 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
23768
23886
|
|
|
23769
23887
|
|
|
23770
23888
|
|
|
23771
|
-
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
23772
|
-
|
|
23773
23889
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
23774
23890
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
23775
23891
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
23776
|
-
localVarRequestOptions.data = serializeDataIfNeeded(whatsOnFindDTO, localVarRequestOptions, configuration)
|
|
23777
23892
|
|
|
23778
23893
|
return {
|
|
23779
23894
|
url: toPathString(localVarUrlObj),
|
|
@@ -23786,10 +23901,10 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
23786
23901
|
* @param {*} [options] Override http request option.
|
|
23787
23902
|
* @throws {RequiredError}
|
|
23788
23903
|
*/
|
|
23789
|
-
|
|
23904
|
+
whatsOnControllerFindFavoriteWhatOnCountAndList: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
23790
23905
|
// verify required parameter 'id' is not null or undefined
|
|
23791
|
-
assertParamExists('
|
|
23792
|
-
const localVarPath = `/v1/whats-on/favorite/count/{id}`
|
|
23906
|
+
assertParamExists('whatsOnControllerFindFavoriteWhatOnCountAndList', 'id', id)
|
|
23907
|
+
const localVarPath = `/v1/whats-on/favorite/count-and-list/{id}`
|
|
23793
23908
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
23794
23909
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
23795
23910
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -24346,18 +24461,6 @@ export const WhatsOnApiFp = function(configuration?: Configuration) {
|
|
|
24346
24461
|
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.whatsOnControllerDiscountCodeApply']?.[localVarOperationServerIndex]?.url;
|
|
24347
24462
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
24348
24463
|
},
|
|
24349
|
-
/**
|
|
24350
|
-
*
|
|
24351
|
-
* @param {string} id
|
|
24352
|
-
* @param {*} [options] Override http request option.
|
|
24353
|
-
* @throws {RequiredError}
|
|
24354
|
-
*/
|
|
24355
|
-
async whatsOnControllerFavoriteWhatOnCountAndList(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WhatsOnFavoriteCountsDTO>> {
|
|
24356
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.whatsOnControllerFavoriteWhatOnCountAndList(id, options);
|
|
24357
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
24358
|
-
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.whatsOnControllerFavoriteWhatOnCountAndList']?.[localVarOperationServerIndex]?.url;
|
|
24359
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
24360
|
-
},
|
|
24361
24464
|
/**
|
|
24362
24465
|
*
|
|
24363
24466
|
* @param {WhatsOnFilterDTO} whatsOnFilterDTO
|
|
@@ -24394,6 +24497,18 @@ export const WhatsOnApiFp = function(configuration?: Configuration) {
|
|
|
24394
24497
|
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.whatsOnControllerFindFavoriteWhatOnCount']?.[localVarOperationServerIndex]?.url;
|
|
24395
24498
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
24396
24499
|
},
|
|
24500
|
+
/**
|
|
24501
|
+
*
|
|
24502
|
+
* @param {string} id
|
|
24503
|
+
* @param {*} [options] Override http request option.
|
|
24504
|
+
* @throws {RequiredError}
|
|
24505
|
+
*/
|
|
24506
|
+
async whatsOnControllerFindFavoriteWhatOnCountAndList(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WhatsOnFavoriteCountsDTO>> {
|
|
24507
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.whatsOnControllerFindFavoriteWhatOnCountAndList(id, options);
|
|
24508
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
24509
|
+
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.whatsOnControllerFindFavoriteWhatOnCountAndList']?.[localVarOperationServerIndex]?.url;
|
|
24510
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
24511
|
+
},
|
|
24397
24512
|
/**
|
|
24398
24513
|
*
|
|
24399
24514
|
* @param {number} page
|
|
@@ -24579,15 +24694,6 @@ export const WhatsOnApiFactory = function (configuration?: Configuration, basePa
|
|
|
24579
24694
|
whatsOnControllerDiscountCodeApply(whatsDiscountCodePayloadDTO: WhatsDiscountCodePayloadDTO, options?: RawAxiosRequestConfig): AxiosPromise<WhatsDiscountCodeResponseDTO> {
|
|
24580
24695
|
return localVarFp.whatsOnControllerDiscountCodeApply(whatsDiscountCodePayloadDTO, options).then((request) => request(axios, basePath));
|
|
24581
24696
|
},
|
|
24582
|
-
/**
|
|
24583
|
-
*
|
|
24584
|
-
* @param {string} id
|
|
24585
|
-
* @param {*} [options] Override http request option.
|
|
24586
|
-
* @throws {RequiredError}
|
|
24587
|
-
*/
|
|
24588
|
-
whatsOnControllerFavoriteWhatOnCountAndList(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WhatsOnFavoriteCountsDTO> {
|
|
24589
|
-
return localVarFp.whatsOnControllerFavoriteWhatOnCountAndList(id, options).then((request) => request(axios, basePath));
|
|
24590
|
-
},
|
|
24591
24697
|
/**
|
|
24592
24698
|
*
|
|
24593
24699
|
* @param {WhatsOnFilterDTO} whatsOnFilterDTO
|
|
@@ -24615,6 +24721,15 @@ export const WhatsOnApiFactory = function (configuration?: Configuration, basePa
|
|
|
24615
24721
|
whatsOnControllerFindFavoriteWhatOnCount(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WhatsOnFavoriteCountResponseDTO> {
|
|
24616
24722
|
return localVarFp.whatsOnControllerFindFavoriteWhatOnCount(id, options).then((request) => request(axios, basePath));
|
|
24617
24723
|
},
|
|
24724
|
+
/**
|
|
24725
|
+
*
|
|
24726
|
+
* @param {string} id
|
|
24727
|
+
* @param {*} [options] Override http request option.
|
|
24728
|
+
* @throws {RequiredError}
|
|
24729
|
+
*/
|
|
24730
|
+
whatsOnControllerFindFavoriteWhatOnCountAndList(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WhatsOnFavoriteCountsDTO> {
|
|
24731
|
+
return localVarFp.whatsOnControllerFindFavoriteWhatOnCountAndList(id, options).then((request) => request(axios, basePath));
|
|
24732
|
+
},
|
|
24618
24733
|
/**
|
|
24619
24734
|
*
|
|
24620
24735
|
* @param {number} page
|
|
@@ -24770,17 +24885,6 @@ export class WhatsOnApi extends BaseAPI {
|
|
|
24770
24885
|
return WhatsOnApiFp(this.configuration).whatsOnControllerDiscountCodeApply(whatsDiscountCodePayloadDTO, options).then((request) => request(this.axios, this.basePath));
|
|
24771
24886
|
}
|
|
24772
24887
|
|
|
24773
|
-
/**
|
|
24774
|
-
*
|
|
24775
|
-
* @param {string} id
|
|
24776
|
-
* @param {*} [options] Override http request option.
|
|
24777
|
-
* @throws {RequiredError}
|
|
24778
|
-
* @memberof WhatsOnApi
|
|
24779
|
-
*/
|
|
24780
|
-
public whatsOnControllerFavoriteWhatOnCountAndList(id: string, options?: RawAxiosRequestConfig) {
|
|
24781
|
-
return WhatsOnApiFp(this.configuration).whatsOnControllerFavoriteWhatOnCountAndList(id, options).then((request) => request(this.axios, this.basePath));
|
|
24782
|
-
}
|
|
24783
|
-
|
|
24784
24888
|
/**
|
|
24785
24889
|
*
|
|
24786
24890
|
* @param {WhatsOnFilterDTO} whatsOnFilterDTO
|
|
@@ -24814,6 +24918,17 @@ export class WhatsOnApi extends BaseAPI {
|
|
|
24814
24918
|
return WhatsOnApiFp(this.configuration).whatsOnControllerFindFavoriteWhatOnCount(id, options).then((request) => request(this.axios, this.basePath));
|
|
24815
24919
|
}
|
|
24816
24920
|
|
|
24921
|
+
/**
|
|
24922
|
+
*
|
|
24923
|
+
* @param {string} id
|
|
24924
|
+
* @param {*} [options] Override http request option.
|
|
24925
|
+
* @throws {RequiredError}
|
|
24926
|
+
* @memberof WhatsOnApi
|
|
24927
|
+
*/
|
|
24928
|
+
public whatsOnControllerFindFavoriteWhatOnCountAndList(id: string, options?: RawAxiosRequestConfig) {
|
|
24929
|
+
return WhatsOnApiFp(this.configuration).whatsOnControllerFindFavoriteWhatOnCountAndList(id, options).then((request) => request(this.axios, this.basePath));
|
|
24930
|
+
}
|
|
24931
|
+
|
|
24817
24932
|
/**
|
|
24818
24933
|
*
|
|
24819
24934
|
* @param {number} page
|
package/docs/CalendarApi.md
CHANGED
|
@@ -7,6 +7,7 @@ All URIs are relative to *http://localhost:8080*
|
|
|
7
7
|
|[**calendarControllerAcceptCalendarInvite**](#calendarcontrolleracceptcalendarinvite) | **POST** /v1/calendar/invite/accept | |
|
|
8
8
|
|[**calendarControllerCollaboratorsByCalendar**](#calendarcontrollercollaboratorsbycalendar) | **GET** /v1/calendar/{id}/collaborators | |
|
|
9
9
|
|[**calendarControllerCreateSharedCalendar**](#calendarcontrollercreatesharedcalendar) | **POST** /v1/calendar | |
|
|
10
|
+
|[**calendarControllerDeleteCalendarInvitation**](#calendarcontrollerdeletecalendarinvitation) | **PUT** /v1/calendar/invitation | |
|
|
10
11
|
|[**calendarControllerListCalendarsEvents**](#calendarcontrollerlistcalendarsevents) | **POST** /v1/calendar/list-events | |
|
|
11
12
|
|[**calendarControllerListEvents**](#calendarcontrollerlistevents) | **POST** /v1/calendar/events | |
|
|
12
13
|
|[**calendarControllerListMyCalendar**](#calendarcontrollerlistmycalendar) | **GET** /v1/calendar | |
|
|
@@ -164,6 +165,57 @@ const { status, data } = await apiInstance.calendarControllerCreateSharedCalenda
|
|
|
164
165
|
- **Accept**: application/json
|
|
165
166
|
|
|
166
167
|
|
|
168
|
+
### HTTP response details
|
|
169
|
+
| Status code | Description | Response headers |
|
|
170
|
+
|-------------|-------------|------------------|
|
|
171
|
+
|**0** | | - |
|
|
172
|
+
|
|
173
|
+
[[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)
|
|
174
|
+
|
|
175
|
+
# **calendarControllerDeleteCalendarInvitation**
|
|
176
|
+
> DeleteCalendarInvitationResponseDTO calendarControllerDeleteCalendarInvitation(deleteCalendarInvitation)
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
### Example
|
|
180
|
+
|
|
181
|
+
```typescript
|
|
182
|
+
import {
|
|
183
|
+
CalendarApi,
|
|
184
|
+
Configuration,
|
|
185
|
+
DeleteCalendarInvitation
|
|
186
|
+
} from './api';
|
|
187
|
+
|
|
188
|
+
const configuration = new Configuration();
|
|
189
|
+
const apiInstance = new CalendarApi(configuration);
|
|
190
|
+
|
|
191
|
+
let deleteCalendarInvitation: DeleteCalendarInvitation; //
|
|
192
|
+
|
|
193
|
+
const { status, data } = await apiInstance.calendarControllerDeleteCalendarInvitation(
|
|
194
|
+
deleteCalendarInvitation
|
|
195
|
+
);
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
### Parameters
|
|
199
|
+
|
|
200
|
+
|Name | Type | Description | Notes|
|
|
201
|
+
|------------- | ------------- | ------------- | -------------|
|
|
202
|
+
| **deleteCalendarInvitation** | **DeleteCalendarInvitation**| | |
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
### Return type
|
|
206
|
+
|
|
207
|
+
**DeleteCalendarInvitationResponseDTO**
|
|
208
|
+
|
|
209
|
+
### Authorization
|
|
210
|
+
|
|
211
|
+
[bearer](../README.md#bearer)
|
|
212
|
+
|
|
213
|
+
### HTTP request headers
|
|
214
|
+
|
|
215
|
+
- **Content-Type**: application/json
|
|
216
|
+
- **Accept**: application/json
|
|
217
|
+
|
|
218
|
+
|
|
167
219
|
### HTTP response details
|
|
168
220
|
| Status code | Description | Response headers |
|
|
169
221
|
|-------------|-------------|------------------|
|
|
@@ -6,7 +6,7 @@
|
|
|
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-05-26T10:
|
|
9
|
+
**date** | **string** | The start date of the booking | [default to 2025-05-26T10:30:24+05:30]
|
|
10
10
|
**from** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**to** | **string** | | [optional] [default to undefined]
|
|
12
12
|
**venue** | **string** | The venue of the booking | [default to undefined]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# DeleteCalendarInvitation
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**calendar** | **string** | | [default to undefined]
|
|
9
|
+
**to** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { DeleteCalendarInvitation } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: DeleteCalendarInvitation = {
|
|
17
|
+
calendar,
|
|
18
|
+
to,
|
|
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
|
+
# DeleteCalendarInvitationResponseDTO
|
|
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 { DeleteCalendarInvitationResponseDTO } from './api';
|
|
15
|
+
|
|
16
|
+
const instance: DeleteCalendarInvitationResponseDTO = {
|
|
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 2025-05-26T10:
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2025-05-26T10:30:24+05:30]
|
|
9
9
|
**from** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**to** | **string** | | [optional] [default to undefined]
|
|
11
11
|
|
package/docs/UserEntity.md
CHANGED
|
@@ -31,6 +31,7 @@ Name | Type | Description | Notes
|
|
|
31
31
|
**streak** | **number** | User daily streak | [default to undefined]
|
|
32
32
|
**pendingAction** | **Array<string>** | Action user has to perform | [optional] [default to undefined]
|
|
33
33
|
**hangout** | **boolean** | | [default to false]
|
|
34
|
+
**friends** | **Array<string>** | | [default to undefined]
|
|
34
35
|
|
|
35
36
|
## Example
|
|
36
37
|
|
|
@@ -64,6 +65,7 @@ const instance: UserEntity = {
|
|
|
64
65
|
streak,
|
|
65
66
|
pendingAction,
|
|
66
67
|
hangout,
|
|
68
|
+
friends,
|
|
67
69
|
};
|
|
68
70
|
```
|
|
69
71
|
|
|
@@ -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-05-26T10:
|
|
9
|
-
**endDate** | **string** | The end date of the waitlist | [default to 2025-05-26T11:
|
|
8
|
+
**startDate** | **string** | The start date of the waitlist | [default to 2025-05-26T10:30:24+05:30]
|
|
9
|
+
**endDate** | **string** | The end date of the waitlist | [default to 2025-05-26T11:30: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<CreateWaitlistBookingCollaboratorPayload>**](CreateWaitlistBookingCollaboratorPayload.md) | The list of collaborators associated with the waitlist | [default to undefined]
|
package/docs/WhatsOnApi.md
CHANGED
|
@@ -7,10 +7,10 @@ All URIs are relative to *http://localhost:8080*
|
|
|
7
7
|
|[**whatsOnControllerCreateWhatsOn**](#whatsoncontrollercreatewhatson) | **POST** /v1/whats-on | |
|
|
8
8
|
|[**whatsOnControllerDeleteWhatsOn**](#whatsoncontrollerdeletewhatson) | **PUT** /v1/whats-on/delete/{id} | |
|
|
9
9
|
|[**whatsOnControllerDiscountCodeApply**](#whatsoncontrollerdiscountcodeapply) | **POST** /v1/whats-on/discount | |
|
|
10
|
-
|[**whatsOnControllerFavoriteWhatOnCountAndList**](#whatsoncontrollerfavoritewhatoncountandlist) | **GET** /v1/whats-on/favorite/counts/{id} | |
|
|
11
10
|
|[**whatsOnControllerFilterWhatsOn**](#whatsoncontrollerfilterwhatson) | **POST** /v1/whats-on/filter/list | |
|
|
12
11
|
|[**whatsOnControllerFindCategoryBaseWhatsOn**](#whatsoncontrollerfindcategorybasewhatson) | **POST** /v1/whats-on/categories/list | |
|
|
13
12
|
|[**whatsOnControllerFindFavoriteWhatOnCount**](#whatsoncontrollerfindfavoritewhatoncount) | **GET** /v1/whats-on/favorite/count/{id} | |
|
|
13
|
+
|[**whatsOnControllerFindFavoriteWhatOnCountAndList**](#whatsoncontrollerfindfavoritewhatoncountandlist) | **GET** /v1/whats-on/favorite/count-and-list/{id} | |
|
|
14
14
|
|[**whatsOnControllerFindFavoriteWhatsOnList**](#whatsoncontrollerfindfavoritewhatsonlist) | **GET** /v1/whats-on/friends/favorite | |
|
|
15
15
|
|[**whatsOnControllerFindMyFavoriteWhatsOnList**](#whatsoncontrollerfindmyfavoritewhatsonlist) | **GET** /v1/whats-on/myfavorite | |
|
|
16
16
|
|[**whatsOnControllerFindWhatsOn**](#whatsoncontrollerfindwhatson) | **POST** /v1/whats-on/list | |
|
|
@@ -176,8 +176,8 @@ const { status, data } = await apiInstance.whatsOnControllerDiscountCodeApply(
|
|
|
176
176
|
|
|
177
177
|
[[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)
|
|
178
178
|
|
|
179
|
-
# **
|
|
180
|
-
>
|
|
179
|
+
# **whatsOnControllerFilterWhatsOn**
|
|
180
|
+
> FilterEntityResponseDTO whatsOnControllerFilterWhatsOn(whatsOnFilterDTO)
|
|
181
181
|
|
|
182
182
|
|
|
183
183
|
### Example
|
|
@@ -185,16 +185,17 @@ const { status, data } = await apiInstance.whatsOnControllerDiscountCodeApply(
|
|
|
185
185
|
```typescript
|
|
186
186
|
import {
|
|
187
187
|
WhatsOnApi,
|
|
188
|
-
Configuration
|
|
188
|
+
Configuration,
|
|
189
|
+
WhatsOnFilterDTO
|
|
189
190
|
} from './api';
|
|
190
191
|
|
|
191
192
|
const configuration = new Configuration();
|
|
192
193
|
const apiInstance = new WhatsOnApi(configuration);
|
|
193
194
|
|
|
194
|
-
let
|
|
195
|
+
let whatsOnFilterDTO: WhatsOnFilterDTO; //
|
|
195
196
|
|
|
196
|
-
const { status, data } = await apiInstance.
|
|
197
|
-
|
|
197
|
+
const { status, data } = await apiInstance.whatsOnControllerFilterWhatsOn(
|
|
198
|
+
whatsOnFilterDTO
|
|
198
199
|
);
|
|
199
200
|
```
|
|
200
201
|
|
|
@@ -202,12 +203,12 @@ const { status, data } = await apiInstance.whatsOnControllerFavoriteWhatOnCountA
|
|
|
202
203
|
|
|
203
204
|
|Name | Type | Description | Notes|
|
|
204
205
|
|------------- | ------------- | ------------- | -------------|
|
|
205
|
-
| **
|
|
206
|
+
| **whatsOnFilterDTO** | **WhatsOnFilterDTO**| | |
|
|
206
207
|
|
|
207
208
|
|
|
208
209
|
### Return type
|
|
209
210
|
|
|
210
|
-
**
|
|
211
|
+
**FilterEntityResponseDTO**
|
|
211
212
|
|
|
212
213
|
### Authorization
|
|
213
214
|
|
|
@@ -215,7 +216,7 @@ const { status, data } = await apiInstance.whatsOnControllerFavoriteWhatOnCountA
|
|
|
215
216
|
|
|
216
217
|
### HTTP request headers
|
|
217
218
|
|
|
218
|
-
- **Content-Type**:
|
|
219
|
+
- **Content-Type**: application/json
|
|
219
220
|
- **Accept**: application/json
|
|
220
221
|
|
|
221
222
|
|
|
@@ -226,8 +227,8 @@ const { status, data } = await apiInstance.whatsOnControllerFavoriteWhatOnCountA
|
|
|
226
227
|
|
|
227
228
|
[[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)
|
|
228
229
|
|
|
229
|
-
# **
|
|
230
|
-
>
|
|
230
|
+
# **whatsOnControllerFindCategoryBaseWhatsOn**
|
|
231
|
+
> WhatsOnResponseDTO whatsOnControllerFindCategoryBaseWhatsOn(whatsOnFindDTO)
|
|
231
232
|
|
|
232
233
|
|
|
233
234
|
### Example
|
|
@@ -236,16 +237,16 @@ const { status, data } = await apiInstance.whatsOnControllerFavoriteWhatOnCountA
|
|
|
236
237
|
import {
|
|
237
238
|
WhatsOnApi,
|
|
238
239
|
Configuration,
|
|
239
|
-
|
|
240
|
+
WhatsOnFindDTO
|
|
240
241
|
} from './api';
|
|
241
242
|
|
|
242
243
|
const configuration = new Configuration();
|
|
243
244
|
const apiInstance = new WhatsOnApi(configuration);
|
|
244
245
|
|
|
245
|
-
let
|
|
246
|
+
let whatsOnFindDTO: WhatsOnFindDTO; //
|
|
246
247
|
|
|
247
|
-
const { status, data } = await apiInstance.
|
|
248
|
-
|
|
248
|
+
const { status, data } = await apiInstance.whatsOnControllerFindCategoryBaseWhatsOn(
|
|
249
|
+
whatsOnFindDTO
|
|
249
250
|
);
|
|
250
251
|
```
|
|
251
252
|
|
|
@@ -253,12 +254,12 @@ const { status, data } = await apiInstance.whatsOnControllerFilterWhatsOn(
|
|
|
253
254
|
|
|
254
255
|
|Name | Type | Description | Notes|
|
|
255
256
|
|------------- | ------------- | ------------- | -------------|
|
|
256
|
-
| **
|
|
257
|
+
| **whatsOnFindDTO** | **WhatsOnFindDTO**| | |
|
|
257
258
|
|
|
258
259
|
|
|
259
260
|
### Return type
|
|
260
261
|
|
|
261
|
-
**
|
|
262
|
+
**WhatsOnResponseDTO**
|
|
262
263
|
|
|
263
264
|
### Authorization
|
|
264
265
|
|
|
@@ -277,8 +278,8 @@ const { status, data } = await apiInstance.whatsOnControllerFilterWhatsOn(
|
|
|
277
278
|
|
|
278
279
|
[[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)
|
|
279
280
|
|
|
280
|
-
# **
|
|
281
|
-
>
|
|
281
|
+
# **whatsOnControllerFindFavoriteWhatOnCount**
|
|
282
|
+
> WhatsOnFavoriteCountResponseDTO whatsOnControllerFindFavoriteWhatOnCount()
|
|
282
283
|
|
|
283
284
|
|
|
284
285
|
### Example
|
|
@@ -286,17 +287,16 @@ const { status, data } = await apiInstance.whatsOnControllerFilterWhatsOn(
|
|
|
286
287
|
```typescript
|
|
287
288
|
import {
|
|
288
289
|
WhatsOnApi,
|
|
289
|
-
Configuration
|
|
290
|
-
WhatsOnFindDTO
|
|
290
|
+
Configuration
|
|
291
291
|
} from './api';
|
|
292
292
|
|
|
293
293
|
const configuration = new Configuration();
|
|
294
294
|
const apiInstance = new WhatsOnApi(configuration);
|
|
295
295
|
|
|
296
|
-
let
|
|
296
|
+
let id: string; // (default to undefined)
|
|
297
297
|
|
|
298
|
-
const { status, data } = await apiInstance.
|
|
299
|
-
|
|
298
|
+
const { status, data } = await apiInstance.whatsOnControllerFindFavoriteWhatOnCount(
|
|
299
|
+
id
|
|
300
300
|
);
|
|
301
301
|
```
|
|
302
302
|
|
|
@@ -304,12 +304,12 @@ const { status, data } = await apiInstance.whatsOnControllerFindCategoryBaseWhat
|
|
|
304
304
|
|
|
305
305
|
|Name | Type | Description | Notes|
|
|
306
306
|
|------------- | ------------- | ------------- | -------------|
|
|
307
|
-
| **
|
|
307
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
308
308
|
|
|
309
309
|
|
|
310
310
|
### Return type
|
|
311
311
|
|
|
312
|
-
**
|
|
312
|
+
**WhatsOnFavoriteCountResponseDTO**
|
|
313
313
|
|
|
314
314
|
### Authorization
|
|
315
315
|
|
|
@@ -317,7 +317,7 @@ const { status, data } = await apiInstance.whatsOnControllerFindCategoryBaseWhat
|
|
|
317
317
|
|
|
318
318
|
### HTTP request headers
|
|
319
319
|
|
|
320
|
-
- **Content-Type**:
|
|
320
|
+
- **Content-Type**: Not defined
|
|
321
321
|
- **Accept**: application/json
|
|
322
322
|
|
|
323
323
|
|
|
@@ -328,8 +328,8 @@ const { status, data } = await apiInstance.whatsOnControllerFindCategoryBaseWhat
|
|
|
328
328
|
|
|
329
329
|
[[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)
|
|
330
330
|
|
|
331
|
-
# **
|
|
332
|
-
>
|
|
331
|
+
# **whatsOnControllerFindFavoriteWhatOnCountAndList**
|
|
332
|
+
> WhatsOnFavoriteCountsDTO whatsOnControllerFindFavoriteWhatOnCountAndList()
|
|
333
333
|
|
|
334
334
|
|
|
335
335
|
### Example
|
|
@@ -345,7 +345,7 @@ const apiInstance = new WhatsOnApi(configuration);
|
|
|
345
345
|
|
|
346
346
|
let id: string; // (default to undefined)
|
|
347
347
|
|
|
348
|
-
const { status, data } = await apiInstance.
|
|
348
|
+
const { status, data } = await apiInstance.whatsOnControllerFindFavoriteWhatOnCountAndList(
|
|
349
349
|
id
|
|
350
350
|
);
|
|
351
351
|
```
|
|
@@ -359,7 +359,7 @@ const { status, data } = await apiInstance.whatsOnControllerFindFavoriteWhatOnCo
|
|
|
359
359
|
|
|
360
360
|
### Return type
|
|
361
361
|
|
|
362
|
-
**
|
|
362
|
+
**WhatsOnFavoriteCountsDTO**
|
|
363
363
|
|
|
364
364
|
### Authorization
|
|
365
365
|
|