From fdcf6d8469ec75bf11c9239afca16bf7bb1c9662 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Majchrzak?= Date: Thu, 19 Apr 2018 00:32:37 +0200 Subject: [PATCH] feature(zapier-core-platform): add missing methods to Z object (#25101) --- types/zapier-platform-core/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/zapier-platform-core/index.d.ts b/types/zapier-platform-core/index.d.ts index 474de4f0fd..2f0c11bd01 100644 --- a/types/zapier-platform-core/index.d.ts +++ b/types/zapier-platform-core/index.d.ts @@ -58,6 +58,8 @@ export interface Z { new (message?: string): RefreshAuthError; }; }; + stashFile: (promise: Promise, knownLength?: number | string, filename?: string, contentType?: string) => Promise; + dehydrate: (callback: (z: Z, bundle: Bundle) => any, inputData: T) => string; } export interface AuthData {