@gooday_corp/gooday-api-client 1.2.68 → 1.2.70
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 +197 -40
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4776,6 +4776,25 @@ export interface PlanUpsertPayloadDTO {
|
|
|
4776
4776
|
*/
|
|
4777
4777
|
'plan': string;
|
|
4778
4778
|
}
|
|
4779
|
+
/**
|
|
4780
|
+
*
|
|
4781
|
+
* @export
|
|
4782
|
+
* @interface PrepaidServiceCategoriesDTO
|
|
4783
|
+
*/
|
|
4784
|
+
export interface PrepaidServiceCategoriesDTO {
|
|
4785
|
+
/**
|
|
4786
|
+
*
|
|
4787
|
+
* @type {Array<string>}
|
|
4788
|
+
* @memberof PrepaidServiceCategoriesDTO
|
|
4789
|
+
*/
|
|
4790
|
+
'data': Array<string>;
|
|
4791
|
+
/**
|
|
4792
|
+
* statusCode
|
|
4793
|
+
* @type {number}
|
|
4794
|
+
* @memberof PrepaidServiceCategoriesDTO
|
|
4795
|
+
*/
|
|
4796
|
+
'statusCode': number;
|
|
4797
|
+
}
|
|
4779
4798
|
/**
|
|
4780
4799
|
*
|
|
4781
4800
|
* @export
|
|
@@ -4814,11 +4833,11 @@ export interface PrepaidServiceEntity {
|
|
|
4814
4833
|
*/
|
|
4815
4834
|
'name': string;
|
|
4816
4835
|
/**
|
|
4817
|
-
*
|
|
4836
|
+
*
|
|
4818
4837
|
* @type {string}
|
|
4819
4838
|
* @memberof PrepaidServiceEntity
|
|
4820
4839
|
*/
|
|
4821
|
-
'category':
|
|
4840
|
+
'category': string;
|
|
4822
4841
|
/**
|
|
4823
4842
|
*
|
|
4824
4843
|
* @type {string}
|
|
@@ -4916,15 +4935,6 @@ export interface PrepaidServiceEntity {
|
|
|
4916
4935
|
*/
|
|
4917
4936
|
'discount': Array<string>;
|
|
4918
4937
|
}
|
|
4919
|
-
|
|
4920
|
-
export const PrepaidServiceEntityCategoryEnum = {
|
|
4921
|
-
Beginner: 'BEGINNER',
|
|
4922
|
-
Intermediate: 'INTERMEDIATE',
|
|
4923
|
-
Advanced: 'ADVANCED'
|
|
4924
|
-
} as const;
|
|
4925
|
-
|
|
4926
|
-
export type PrepaidServiceEntityCategoryEnum = typeof PrepaidServiceEntityCategoryEnum[keyof typeof PrepaidServiceEntityCategoryEnum];
|
|
4927
|
-
|
|
4928
4938
|
/**
|
|
4929
4939
|
*
|
|
4930
4940
|
* @export
|
|
@@ -4973,7 +4983,7 @@ export interface PrepaidServicePayloadDTO {
|
|
|
4973
4983
|
* @type {string}
|
|
4974
4984
|
* @memberof PrepaidServicePayloadDTO
|
|
4975
4985
|
*/
|
|
4976
|
-
'category':
|
|
4986
|
+
'category': string;
|
|
4977
4987
|
/**
|
|
4978
4988
|
*
|
|
4979
4989
|
* @type {string}
|
|
@@ -5052,16 +5062,13 @@ export interface PrepaidServicePayloadDTO {
|
|
|
5052
5062
|
* @memberof PrepaidServicePayloadDTO
|
|
5053
5063
|
*/
|
|
5054
5064
|
'email': string;
|
|
5065
|
+
/**
|
|
5066
|
+
*
|
|
5067
|
+
* @type {ServiceEndRepeat}
|
|
5068
|
+
* @memberof PrepaidServicePayloadDTO
|
|
5069
|
+
*/
|
|
5070
|
+
'repeat': ServiceEndRepeat;
|
|
5055
5071
|
}
|
|
5056
|
-
|
|
5057
|
-
export const PrepaidServicePayloadDTOCategoryEnum = {
|
|
5058
|
-
Beginner: 'BEGINNER',
|
|
5059
|
-
Intermediate: 'INTERMEDIATE',
|
|
5060
|
-
Advanced: 'ADVANCED'
|
|
5061
|
-
} as const;
|
|
5062
|
-
|
|
5063
|
-
export type PrepaidServicePayloadDTOCategoryEnum = typeof PrepaidServicePayloadDTOCategoryEnum[keyof typeof PrepaidServicePayloadDTOCategoryEnum];
|
|
5064
|
-
|
|
5065
5072
|
/**
|
|
5066
5073
|
*
|
|
5067
5074
|
* @export
|
|
@@ -6925,6 +6932,19 @@ export interface Weather {
|
|
|
6925
6932
|
*/
|
|
6926
6933
|
'temperature': number;
|
|
6927
6934
|
}
|
|
6935
|
+
/**
|
|
6936
|
+
*
|
|
6937
|
+
* @export
|
|
6938
|
+
* @interface WhatsDiscountCodeResponseDTO
|
|
6939
|
+
*/
|
|
6940
|
+
export interface WhatsDiscountCodeResponseDTO {
|
|
6941
|
+
/**
|
|
6942
|
+
* statusCode
|
|
6943
|
+
* @type {number}
|
|
6944
|
+
* @memberof WhatsDiscountCodeResponseDTO
|
|
6945
|
+
*/
|
|
6946
|
+
'statusCode': number;
|
|
6947
|
+
}
|
|
6928
6948
|
/**
|
|
6929
6949
|
*
|
|
6930
6950
|
* @export
|
|
@@ -7065,6 +7085,12 @@ export interface WhatsOnEntity {
|
|
|
7065
7085
|
* @memberof WhatsOnEntity
|
|
7066
7086
|
*/
|
|
7067
7087
|
'discount': Array<string>;
|
|
7088
|
+
/**
|
|
7089
|
+
*
|
|
7090
|
+
* @type {number}
|
|
7091
|
+
* @memberof WhatsOnEntity
|
|
7092
|
+
*/
|
|
7093
|
+
'favorite'?: number;
|
|
7068
7094
|
}
|
|
7069
7095
|
/**
|
|
7070
7096
|
*
|
|
@@ -15564,6 +15590,39 @@ export class PlansApi extends BaseAPI {
|
|
|
15564
15590
|
*/
|
|
15565
15591
|
export const PrepaidServiceApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
15566
15592
|
return {
|
|
15593
|
+
/**
|
|
15594
|
+
*
|
|
15595
|
+
* @param {*} [options] Override http request option.
|
|
15596
|
+
* @throws {RequiredError}
|
|
15597
|
+
*/
|
|
15598
|
+
prepaidServiceControllerCategories: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15599
|
+
const localVarPath = `/v1/prepaid-service/categories`;
|
|
15600
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
15601
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
15602
|
+
let baseOptions;
|
|
15603
|
+
if (configuration) {
|
|
15604
|
+
baseOptions = configuration.baseOptions;
|
|
15605
|
+
}
|
|
15606
|
+
|
|
15607
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
15608
|
+
const localVarHeaderParameter = {} as any;
|
|
15609
|
+
const localVarQueryParameter = {} as any;
|
|
15610
|
+
|
|
15611
|
+
// authentication bearer required
|
|
15612
|
+
// http bearer authentication required
|
|
15613
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
15614
|
+
|
|
15615
|
+
|
|
15616
|
+
|
|
15617
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
15618
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
15619
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
15620
|
+
|
|
15621
|
+
return {
|
|
15622
|
+
url: toPathString(localVarUrlObj),
|
|
15623
|
+
options: localVarRequestOptions,
|
|
15624
|
+
};
|
|
15625
|
+
},
|
|
15567
15626
|
/**
|
|
15568
15627
|
*
|
|
15569
15628
|
* @param {PrepaidServicePayloadDTO} prepaidServicePayloadDTO
|
|
@@ -15732,6 +15791,17 @@ export const PrepaidServiceApiAxiosParamCreator = function (configuration?: Conf
|
|
|
15732
15791
|
export const PrepaidServiceApiFp = function(configuration?: Configuration) {
|
|
15733
15792
|
const localVarAxiosParamCreator = PrepaidServiceApiAxiosParamCreator(configuration)
|
|
15734
15793
|
return {
|
|
15794
|
+
/**
|
|
15795
|
+
*
|
|
15796
|
+
* @param {*} [options] Override http request option.
|
|
15797
|
+
* @throws {RequiredError}
|
|
15798
|
+
*/
|
|
15799
|
+
async prepaidServiceControllerCategories(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PrepaidServiceCategoriesDTO>> {
|
|
15800
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.prepaidServiceControllerCategories(options);
|
|
15801
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15802
|
+
const localVarOperationServerBasePath = operationServerMap['PrepaidServiceApi.prepaidServiceControllerCategories']?.[localVarOperationServerIndex]?.url;
|
|
15803
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15804
|
+
},
|
|
15735
15805
|
/**
|
|
15736
15806
|
*
|
|
15737
15807
|
* @param {PrepaidServicePayloadDTO} prepaidServicePayloadDTO
|
|
@@ -15791,6 +15861,14 @@ export const PrepaidServiceApiFp = function(configuration?: Configuration) {
|
|
|
15791
15861
|
export const PrepaidServiceApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
15792
15862
|
const localVarFp = PrepaidServiceApiFp(configuration)
|
|
15793
15863
|
return {
|
|
15864
|
+
/**
|
|
15865
|
+
*
|
|
15866
|
+
* @param {*} [options] Override http request option.
|
|
15867
|
+
* @throws {RequiredError}
|
|
15868
|
+
*/
|
|
15869
|
+
prepaidServiceControllerCategories(options?: RawAxiosRequestConfig): AxiosPromise<PrepaidServiceCategoriesDTO> {
|
|
15870
|
+
return localVarFp.prepaidServiceControllerCategories(options).then((request) => request(axios, basePath));
|
|
15871
|
+
},
|
|
15794
15872
|
/**
|
|
15795
15873
|
*
|
|
15796
15874
|
* @param {PrepaidServicePayloadDTO} prepaidServicePayloadDTO
|
|
@@ -15838,6 +15916,16 @@ export const PrepaidServiceApiFactory = function (configuration?: Configuration,
|
|
|
15838
15916
|
* @extends {BaseAPI}
|
|
15839
15917
|
*/
|
|
15840
15918
|
export class PrepaidServiceApi extends BaseAPI {
|
|
15919
|
+
/**
|
|
15920
|
+
*
|
|
15921
|
+
* @param {*} [options] Override http request option.
|
|
15922
|
+
* @throws {RequiredError}
|
|
15923
|
+
* @memberof PrepaidServiceApi
|
|
15924
|
+
*/
|
|
15925
|
+
public prepaidServiceControllerCategories(options?: RawAxiosRequestConfig) {
|
|
15926
|
+
return PrepaidServiceApiFp(this.configuration).prepaidServiceControllerCategories(options).then((request) => request(this.axios, this.basePath));
|
|
15927
|
+
}
|
|
15928
|
+
|
|
15841
15929
|
/**
|
|
15842
15930
|
*
|
|
15843
15931
|
* @param {PrepaidServicePayloadDTO} prepaidServicePayloadDTO
|
|
@@ -18768,10 +18856,10 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
18768
18856
|
* @param {*} [options] Override http request option.
|
|
18769
18857
|
* @throws {RequiredError}
|
|
18770
18858
|
*/
|
|
18771
|
-
|
|
18859
|
+
whatsOnControllerDiscountCodeApply: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
18772
18860
|
// verify required parameter 'id' is not null or undefined
|
|
18773
|
-
assertParamExists('
|
|
18774
|
-
const localVarPath = `/v1/whats-on/
|
|
18861
|
+
assertParamExists('whatsOnControllerDiscountCodeApply', 'id', id)
|
|
18862
|
+
const localVarPath = `/v1/whats-on/discount`
|
|
18775
18863
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
18776
18864
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18777
18865
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -18780,7 +18868,7 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
18780
18868
|
baseOptions = configuration.baseOptions;
|
|
18781
18869
|
}
|
|
18782
18870
|
|
|
18783
|
-
const localVarRequestOptions = { method: '
|
|
18871
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
18784
18872
|
const localVarHeaderParameter = {} as any;
|
|
18785
18873
|
const localVarQueryParameter = {} as any;
|
|
18786
18874
|
|
|
@@ -18843,7 +18931,7 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
18843
18931
|
* @param {*} [options] Override http request option.
|
|
18844
18932
|
* @throws {RequiredError}
|
|
18845
18933
|
*/
|
|
18846
|
-
|
|
18934
|
+
whatsOnControllerFindFavoriteWhatsOnList: async (page?: number, limit?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
18847
18935
|
const localVarPath = `/v1/whats-on/friends/favorite`;
|
|
18848
18936
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18849
18937
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -18918,6 +19006,43 @@ export const WhatsOnApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
18918
19006
|
options: localVarRequestOptions,
|
|
18919
19007
|
};
|
|
18920
19008
|
},
|
|
19009
|
+
/**
|
|
19010
|
+
*
|
|
19011
|
+
* @param {string} id
|
|
19012
|
+
* @param {*} [options] Override http request option.
|
|
19013
|
+
* @throws {RequiredError}
|
|
19014
|
+
*/
|
|
19015
|
+
whatsOnControllerFindWhatsOnById: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
19016
|
+
// verify required parameter 'id' is not null or undefined
|
|
19017
|
+
assertParamExists('whatsOnControllerFindWhatsOnById', 'id', id)
|
|
19018
|
+
const localVarPath = `/v1/whats-on/favorite/{id}`
|
|
19019
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
19020
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
19021
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
19022
|
+
let baseOptions;
|
|
19023
|
+
if (configuration) {
|
|
19024
|
+
baseOptions = configuration.baseOptions;
|
|
19025
|
+
}
|
|
19026
|
+
|
|
19027
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
19028
|
+
const localVarHeaderParameter = {} as any;
|
|
19029
|
+
const localVarQueryParameter = {} as any;
|
|
19030
|
+
|
|
19031
|
+
// authentication bearer required
|
|
19032
|
+
// http bearer authentication required
|
|
19033
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
19034
|
+
|
|
19035
|
+
|
|
19036
|
+
|
|
19037
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
19038
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
19039
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
19040
|
+
|
|
19041
|
+
return {
|
|
19042
|
+
url: toPathString(localVarUrlObj),
|
|
19043
|
+
options: localVarRequestOptions,
|
|
19044
|
+
};
|
|
19045
|
+
},
|
|
18921
19046
|
/**
|
|
18922
19047
|
*
|
|
18923
19048
|
* @param {WhatsOnFavoriteDTO} whatsOnFavoriteDTO
|
|
@@ -19116,10 +19241,10 @@ export const WhatsOnApiFp = function(configuration?: Configuration) {
|
|
|
19116
19241
|
* @param {*} [options] Override http request option.
|
|
19117
19242
|
* @throws {RequiredError}
|
|
19118
19243
|
*/
|
|
19119
|
-
async
|
|
19120
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
19244
|
+
async whatsOnControllerDiscountCodeApply(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WhatsDiscountCodeResponseDTO>> {
|
|
19245
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.whatsOnControllerDiscountCodeApply(id, options);
|
|
19121
19246
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19122
|
-
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.
|
|
19247
|
+
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.whatsOnControllerDiscountCodeApply']?.[localVarOperationServerIndex]?.url;
|
|
19123
19248
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
19124
19249
|
},
|
|
19125
19250
|
/**
|
|
@@ -19141,10 +19266,10 @@ export const WhatsOnApiFp = function(configuration?: Configuration) {
|
|
|
19141
19266
|
* @param {*} [options] Override http request option.
|
|
19142
19267
|
* @throws {RequiredError}
|
|
19143
19268
|
*/
|
|
19144
|
-
async
|
|
19145
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
19269
|
+
async whatsOnControllerFindFavoriteWhatsOnList(page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WhatsOnFavoriteListResponseDTO>> {
|
|
19270
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.whatsOnControllerFindFavoriteWhatsOnList(page, limit, options);
|
|
19146
19271
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19147
|
-
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.
|
|
19272
|
+
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.whatsOnControllerFindFavoriteWhatsOnList']?.[localVarOperationServerIndex]?.url;
|
|
19148
19273
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
19149
19274
|
},
|
|
19150
19275
|
/**
|
|
@@ -19159,6 +19284,18 @@ export const WhatsOnApiFp = function(configuration?: Configuration) {
|
|
|
19159
19284
|
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.whatsOnControllerFindWhatsOn']?.[localVarOperationServerIndex]?.url;
|
|
19160
19285
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
19161
19286
|
},
|
|
19287
|
+
/**
|
|
19288
|
+
*
|
|
19289
|
+
* @param {string} id
|
|
19290
|
+
* @param {*} [options] Override http request option.
|
|
19291
|
+
* @throws {RequiredError}
|
|
19292
|
+
*/
|
|
19293
|
+
async whatsOnControllerFindWhatsOnById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WhatsOnFavoriteResponseDTO>> {
|
|
19294
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.whatsOnControllerFindWhatsOnById(id, options);
|
|
19295
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19296
|
+
const localVarOperationServerBasePath = operationServerMap['WhatsOnApi.whatsOnControllerFindWhatsOnById']?.[localVarOperationServerIndex]?.url;
|
|
19297
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
19298
|
+
},
|
|
19162
19299
|
/**
|
|
19163
19300
|
*
|
|
19164
19301
|
* @param {WhatsOnFavoriteDTO} whatsOnFavoriteDTO
|
|
@@ -19242,8 +19379,8 @@ export const WhatsOnApiFactory = function (configuration?: Configuration, basePa
|
|
|
19242
19379
|
* @param {*} [options] Override http request option.
|
|
19243
19380
|
* @throws {RequiredError}
|
|
19244
19381
|
*/
|
|
19245
|
-
|
|
19246
|
-
return localVarFp.
|
|
19382
|
+
whatsOnControllerDiscountCodeApply(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WhatsDiscountCodeResponseDTO> {
|
|
19383
|
+
return localVarFp.whatsOnControllerDiscountCodeApply(id, options).then((request) => request(axios, basePath));
|
|
19247
19384
|
},
|
|
19248
19385
|
/**
|
|
19249
19386
|
*
|
|
@@ -19261,8 +19398,8 @@ export const WhatsOnApiFactory = function (configuration?: Configuration, basePa
|
|
|
19261
19398
|
* @param {*} [options] Override http request option.
|
|
19262
19399
|
* @throws {RequiredError}
|
|
19263
19400
|
*/
|
|
19264
|
-
|
|
19265
|
-
return localVarFp.
|
|
19401
|
+
whatsOnControllerFindFavoriteWhatsOnList(page?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<WhatsOnFavoriteListResponseDTO> {
|
|
19402
|
+
return localVarFp.whatsOnControllerFindFavoriteWhatsOnList(page, limit, options).then((request) => request(axios, basePath));
|
|
19266
19403
|
},
|
|
19267
19404
|
/**
|
|
19268
19405
|
*
|
|
@@ -19273,6 +19410,15 @@ export const WhatsOnApiFactory = function (configuration?: Configuration, basePa
|
|
|
19273
19410
|
whatsOnControllerFindWhatsOn(whatsOnFindDTO: WhatsOnFindDTO, options?: RawAxiosRequestConfig): AxiosPromise<WhatsOnResponseDTO> {
|
|
19274
19411
|
return localVarFp.whatsOnControllerFindWhatsOn(whatsOnFindDTO, options).then((request) => request(axios, basePath));
|
|
19275
19412
|
},
|
|
19413
|
+
/**
|
|
19414
|
+
*
|
|
19415
|
+
* @param {string} id
|
|
19416
|
+
* @param {*} [options] Override http request option.
|
|
19417
|
+
* @throws {RequiredError}
|
|
19418
|
+
*/
|
|
19419
|
+
whatsOnControllerFindWhatsOnById(id: string, options?: RawAxiosRequestConfig): AxiosPromise<WhatsOnFavoriteResponseDTO> {
|
|
19420
|
+
return localVarFp.whatsOnControllerFindWhatsOnById(id, options).then((request) => request(axios, basePath));
|
|
19421
|
+
},
|
|
19276
19422
|
/**
|
|
19277
19423
|
*
|
|
19278
19424
|
* @param {WhatsOnFavoriteDTO} whatsOnFavoriteDTO
|
|
@@ -19349,8 +19495,8 @@ export class WhatsOnApi extends BaseAPI {
|
|
|
19349
19495
|
* @throws {RequiredError}
|
|
19350
19496
|
* @memberof WhatsOnApi
|
|
19351
19497
|
*/
|
|
19352
|
-
public
|
|
19353
|
-
return WhatsOnApiFp(this.configuration).
|
|
19498
|
+
public whatsOnControllerDiscountCodeApply(id: string, options?: RawAxiosRequestConfig) {
|
|
19499
|
+
return WhatsOnApiFp(this.configuration).whatsOnControllerDiscountCodeApply(id, options).then((request) => request(this.axios, this.basePath));
|
|
19354
19500
|
}
|
|
19355
19501
|
|
|
19356
19502
|
/**
|
|
@@ -19372,8 +19518,8 @@ export class WhatsOnApi extends BaseAPI {
|
|
|
19372
19518
|
* @throws {RequiredError}
|
|
19373
19519
|
* @memberof WhatsOnApi
|
|
19374
19520
|
*/
|
|
19375
|
-
public
|
|
19376
|
-
return WhatsOnApiFp(this.configuration).
|
|
19521
|
+
public whatsOnControllerFindFavoriteWhatsOnList(page?: number, limit?: number, options?: RawAxiosRequestConfig) {
|
|
19522
|
+
return WhatsOnApiFp(this.configuration).whatsOnControllerFindFavoriteWhatsOnList(page, limit, options).then((request) => request(this.axios, this.basePath));
|
|
19377
19523
|
}
|
|
19378
19524
|
|
|
19379
19525
|
/**
|
|
@@ -19387,6 +19533,17 @@ export class WhatsOnApi extends BaseAPI {
|
|
|
19387
19533
|
return WhatsOnApiFp(this.configuration).whatsOnControllerFindWhatsOn(whatsOnFindDTO, options).then((request) => request(this.axios, this.basePath));
|
|
19388
19534
|
}
|
|
19389
19535
|
|
|
19536
|
+
/**
|
|
19537
|
+
*
|
|
19538
|
+
* @param {string} id
|
|
19539
|
+
* @param {*} [options] Override http request option.
|
|
19540
|
+
* @throws {RequiredError}
|
|
19541
|
+
* @memberof WhatsOnApi
|
|
19542
|
+
*/
|
|
19543
|
+
public whatsOnControllerFindWhatsOnById(id: string, options?: RawAxiosRequestConfig) {
|
|
19544
|
+
return WhatsOnApiFp(this.configuration).whatsOnControllerFindWhatsOnById(id, options).then((request) => request(this.axios, this.basePath));
|
|
19545
|
+
}
|
|
19546
|
+
|
|
19390
19547
|
/**
|
|
19391
19548
|
*
|
|
19392
19549
|
* @param {WhatsOnFavoriteDTO} whatsOnFavoriteDTO
|