@gooday_corp/gooday-api-client 1.2.31 → 1.2.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +23 -4
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -782,6 +782,25 @@ export interface BusinessFavoriteDTO {
|
|
|
782
782
|
*/
|
|
783
783
|
'venue': string;
|
|
784
784
|
}
|
|
785
|
+
/**
|
|
786
|
+
*
|
|
787
|
+
* @export
|
|
788
|
+
* @interface BusinessFavoriteListResponseDTO
|
|
789
|
+
*/
|
|
790
|
+
export interface BusinessFavoriteListResponseDTO {
|
|
791
|
+
/**
|
|
792
|
+
* statusCode
|
|
793
|
+
* @type {number}
|
|
794
|
+
* @memberof BusinessFavoriteListResponseDTO
|
|
795
|
+
*/
|
|
796
|
+
'statusCode': number;
|
|
797
|
+
/**
|
|
798
|
+
*
|
|
799
|
+
* @type {Array<BusinessVenueDetailsEntity>}
|
|
800
|
+
* @memberof BusinessFavoriteListResponseDTO
|
|
801
|
+
*/
|
|
802
|
+
'data': Array<BusinessVenueDetailsEntity>;
|
|
803
|
+
}
|
|
785
804
|
/**
|
|
786
805
|
*
|
|
787
806
|
* @export
|
|
@@ -7497,8 +7516,8 @@ export const BusinessApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
7497
7516
|
businessTypeControllerFindFavoriteBusinessVenueCount: async (id: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
7498
7517
|
// verify required parameter 'id' is not null or undefined
|
|
7499
7518
|
assertParamExists('businessTypeControllerFindFavoriteBusinessVenueCount', 'id', id)
|
|
7500
|
-
const localVarPath = `/v1/business/favorite/count`
|
|
7501
|
-
.replace(`{${"
|
|
7519
|
+
const localVarPath = `/v1/business/favorite/count/{id}`
|
|
7520
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
7502
7521
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7503
7522
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7504
7523
|
let baseOptions;
|
|
@@ -8005,7 +8024,7 @@ export const BusinessApiFp = function(configuration?: Configuration) {
|
|
|
8005
8024
|
* @param {*} [options] Override http request option.
|
|
8006
8025
|
* @throws {RequiredError}
|
|
8007
8026
|
*/
|
|
8008
|
-
async businessTypeControllerFindFriendsFavoriteBusinessVenueList(findFriendsFavoritesDTO: FindFriendsFavoritesDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8027
|
+
async businessTypeControllerFindFriendsFavoriteBusinessVenueList(findFriendsFavoritesDTO: FindFriendsFavoritesDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BusinessFavoriteListResponseDTO>> {
|
|
8009
8028
|
const localVarAxiosArgs = await localVarAxiosParamCreator.businessTypeControllerFindFriendsFavoriteBusinessVenueList(findFriendsFavoritesDTO, options);
|
|
8010
8029
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8011
8030
|
const localVarOperationServerBasePath = operationServerMap['BusinessApi.businessTypeControllerFindFriendsFavoriteBusinessVenueList']?.[localVarOperationServerIndex]?.url;
|
|
@@ -8220,7 +8239,7 @@ export const BusinessApiFactory = function (configuration?: Configuration, baseP
|
|
|
8220
8239
|
* @param {*} [options] Override http request option.
|
|
8221
8240
|
* @throws {RequiredError}
|
|
8222
8241
|
*/
|
|
8223
|
-
businessTypeControllerFindFriendsFavoriteBusinessVenueList(findFriendsFavoritesDTO: FindFriendsFavoritesDTO, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
8242
|
+
businessTypeControllerFindFriendsFavoriteBusinessVenueList(findFriendsFavoritesDTO: FindFriendsFavoritesDTO, options?: RawAxiosRequestConfig): AxiosPromise<BusinessFavoriteListResponseDTO> {
|
|
8224
8243
|
return localVarFp.businessTypeControllerFindFriendsFavoriteBusinessVenueList(findFriendsFavoritesDTO, options).then((request) => request(axios, basePath));
|
|
8225
8244
|
},
|
|
8226
8245
|
/**
|