From 31445d7182a910eab9d699760f2a86ca23d556a4 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 27 Jun 2022 22:53:40 +0200 Subject: [PATCH] fix: internal state for script triggers v3 --- deno-client/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno-client/index.ts b/deno-client/index.ts index 1f90255424..99d741e011 100644 --- a/deno-client/index.ts +++ b/deno-client/index.ts @@ -47,7 +47,7 @@ export async function getResource(path: string, initializeToTypeIfNotExist?: str } -function getInternalStatePath(suffix?: string): string { +export function getInternalStatePath(suffix?: string): string { const env_flow_path = Deno.env.get("WM_FLOW_PATH") const env_job_path = Deno.env.get("WM_JOB_PATH") const permissioned_as = Deno.env.get("WM_PERMISSIONED_AS")