Skip to content

Commit

Permalink
[email protected]にアップデート
Browse files Browse the repository at this point in the history
  • Loading branch information
KentaHizume committed Nov 20, 2024
1 parent e001e14 commit 389549b
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion samples/web-csr/dressca-frontend/admin/openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "7.7.0"
"version": "7.9.0"
}
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.7.0
7.9.0
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export const ActuatorApiFactory = function (configuration?: Configuration, baseP
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
health(options?: any): AxiosPromise<object> {
health(options?: RawAxiosRequestConfig): AxiosPromise<object> {
return localVarFp.health(options).then((request) => request(axios, basePath));
},
/**
Expand All @@ -190,7 +190,7 @@ export const ActuatorApiFactory = function (configuration?: Configuration, baseP
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
healthPath(options?: any): AxiosPromise<object> {
healthPath(options?: RawAxiosRequestConfig): AxiosPromise<object> {
return localVarFp.healthPath(options).then((request) => request(axios, basePath));
},
/**
Expand All @@ -199,7 +199,7 @@ export const ActuatorApiFactory = function (configuration?: Configuration, baseP
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
links(options?: any): AxiosPromise<{ [key: string]: { [key: string]: Link; }; }> {
links(options?: RawAxiosRequestConfig): AxiosPromise<{ [key: string]: { [key: string]: Link; }; }> {
return localVarFp.links(options).then((request) => request(axios, basePath));
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const AssetsApiFactory = function (configuration?: Configuration, basePat
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
get(assetCode: string, options?: any): AxiosPromise<File> {
get(assetCode: string, options?: RawAxiosRequestConfig): AxiosPromise<File> {
return localVarFp.get(assetCode, options).then((request) => request(axios, basePath));
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const CatalogBrandsApiFactory = function (configuration?: Configuration,
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getCatalogBrands(options?: any): AxiosPromise<Array<CatalogBrandResponse>> {
getCatalogBrands(options?: RawAxiosRequestConfig): AxiosPromise<Array<CatalogBrandResponse>> {
return localVarFp.getCatalogBrands(options).then((request) => request(axios, basePath));
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const CatalogCategoriesApiFactory = function (configuration?: Configurati
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getCatalogCategories(options?: any): AxiosPromise<Array<CatalogCategoryResponse>> {
getCatalogCategories(options?: RawAxiosRequestConfig): AxiosPromise<Array<CatalogCategoryResponse>> {
return localVarFp.getCatalogCategories(options).then((request) => request(axios, basePath));
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export const CatalogItemsApiFactory = function (configuration?: Configuration, b
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
deleteCatalogItem(catalogItemId: number, options?: any): AxiosPromise<void> {
deleteCatalogItem(catalogItemId: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
return localVarFp.deleteCatalogItem(catalogItemId, options).then((request) => request(axios, basePath));
},
/**
Expand All @@ -333,7 +333,7 @@ export const CatalogItemsApiFactory = function (configuration?: Configuration, b
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getById(id: number, options?: any): AxiosPromise<PagedListOfCatalogItemResponse> {
getById(id: number, options?: RawAxiosRequestConfig): AxiosPromise<PagedListOfCatalogItemResponse> {
return localVarFp.getById(id, options).then((request) => request(axios, basePath));
},
/**
Expand All @@ -346,7 +346,7 @@ export const CatalogItemsApiFactory = function (configuration?: Configuration, b
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getByQuery(brandId?: number, categoryId?: number, page?: number, pageSize?: number, options?: any): AxiosPromise<PagedListOfCatalogItemResponse> {
getByQuery(brandId?: number, categoryId?: number, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): AxiosPromise<PagedListOfCatalogItemResponse> {
return localVarFp.getByQuery(brandId, categoryId, page, pageSize, options).then((request) => request(axios, basePath));
},
/**
Expand All @@ -356,7 +356,7 @@ export const CatalogItemsApiFactory = function (configuration?: Configuration, b
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
postCatalogItem(postCatalogItemRequest: PostCatalogItemRequest, options?: any): AxiosPromise<void> {
postCatalogItem(postCatalogItemRequest: PostCatalogItemRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
return localVarFp.postCatalogItem(postCatalogItemRequest, options).then((request) => request(axios, basePath));
},
/**
Expand All @@ -367,7 +367,7 @@ export const CatalogItemsApiFactory = function (configuration?: Configuration, b
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
putCatalogItem(catalogItemId: number, putCatalogItemRequest: PutCatalogItemRequest, options?: any): AxiosPromise<void> {
putCatalogItem(catalogItemId: number, putCatalogItemRequest: PutCatalogItemRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
return localVarFp.putCatalogItem(catalogItemId, putCatalogItemRequest, options).then((request) => request(axios, basePath));
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export const UsersApiFactory = function (configuration?: Configuration, basePath
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
getLoginUser(options?: any): AxiosPromise<UserResponse> {
getLoginUser(options?: RawAxiosRequestConfig): AxiosPromise<UserResponse> {
return localVarFp.getLoginUser(options).then((request) => request(axios, basePath));
},
};
Expand Down

0 comments on commit 389549b

Please sign in to comment.