Skip to content

Commit 1bb3614

Browse files
committed
commit dist changes for: migrate httpPut functionaity from old sdk to new
1 parent a62fa61 commit 1bb3614

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

dist/http/http-client.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export default interface IHttpClient {
4747
httpGet(url: string): Promise<HttpResponse>;
4848
httpPost(url: string, body?: any): Promise<HttpResponse>;
4949
httpPatch(url: string, body?: any, headers?: Headers): Promise<HttpResponse>;
50+
httpPut(url: string, body?: any, headers?: Headers): Promise<HttpResponse>;
5051
httpDelete(url: string): Promise<HttpResponse>;
5152
}
5253
export declare abstract class AbstractClient implements IHttpClient {
@@ -81,6 +82,7 @@ export declare abstract class AbstractClient implements IHttpClient {
8182
abstract httpGet(url: string): Promise<HttpResponse>;
8283
abstract httpPost(url: string, body?: any): Promise<HttpResponse>;
8384
abstract httpPatch(url: string, body?: any, headers?: Headers): Promise<HttpResponse>;
85+
abstract httpPut(url: string, body?: any, headers?: Headers): Promise<HttpResponse>;
8486
abstract httpDelete(url: string): Promise<HttpResponse>;
8587
private init;
8688
}

dist/http/http-client.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/http/request-client.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export default class RequestClient extends AbstractClient {
77
httpGet(url: string): Promise<HttpResponse>;
88
httpPost(url: string, body?: any): Promise<HttpResponse>;
99
httpPatch(url: string, body?: any, headers?: Headers): Promise<HttpResponse>;
10+
httpPut(url: string, body?: any, headers?: Headers): Promise<HttpResponse>;
1011
httpDelete(url: string): Promise<HttpResponse>;
1112
private request;
1213
}

dist/http/request-client.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/http/request-client.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)