diff --git a/.npmrc b/.npmrc index b5698c2..1b8554f 100644 --- a/.npmrc +++ b/.npmrc @@ -1,5 +1,4 @@ audit=false -enable-pre-post-scripts=true fund=false package-lock=false prefer-dedupe=true diff --git a/lightweight/index.d.ts b/lightweight/index.d.ts index 201f331..fd76e74 100644 --- a/lightweight/index.d.ts +++ b/lightweight/index.d.ts @@ -142,7 +142,7 @@ type MqlStatus = "success" | "fail" | "error"; export type MqlPayload = { status: MqlStatus; data: MqlResponseData; - statusCode: number; + statusCode?: number; headers: { [key: string]: string }; }