Release v1.5.0 (#3373)

update assets with latest fix

Co-authored-by: cesnietor <cesar.nieto@min.io>
This commit is contained in:
Cesar N
2024-06-07 19:00:37 -07:00
committed by GitHub
parent 6765bd0624
commit e77d1be53e
78 changed files with 114 additions and 96 deletions

View File

@@ -1761,7 +1761,7 @@ export class HttpClient<SecurityDataType = unknown> {
: payloadFormatter(body),
},
).then(async (response) => {
const r = response.clone() as HttpResponse<T, E>;
const r = response as HttpResponse<T, E>;
r.data = null as unknown as T;
r.error = null as unknown as E;
@@ -4553,7 +4553,7 @@ export class Api<
*/
removeTier: (name: string, params: RequestParams = {}) =>
this.request<void, ApiError>({
path: `/admin/tiers/${name}/remove`,
path: `/admin/tiers/${encodeURIComponent(name)}/remove`,
method: "DELETE",
secure: true,
...params,