Merge pull request #24548 from Rafal2228/zapier-missing-verb

fix(zapier-platform-core): add missing HTTP verb
This commit is contained in:
Nathan Shively-Sanders
2018-03-27 08:25:51 -07:00
committed by GitHub
+1 -1
View File
@@ -15,7 +15,7 @@ export const version: string;
export interface HttpRequestOptions {
url?: string;
method?: "POST" | "GET" | "OPTIONS" | "HEAD" | "DELETE" | "PATCH";
method?: "POST" | "GET" | "OPTIONS" | "HEAD" | "DELETE" | "PATCH" | "PUT";
body?: string | Buffer | NodeJS.ReadableStream | object | null;
headers?: { [name: string]: string };
json?: object | any[] | null;