fix(zapier-platform-core): add missing HTTP verb

This commit is contained in:
Rafal2228
2018-03-27 10:15:32 +02:00
parent 10148d8d11
commit 9f893b8e9e

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;