@supabase/functions-js
Advanced tools
Comparing version 2.2.2 to 2.3.0
@@ -99,2 +99,5 @@ "use strict"; | ||
} | ||
else if (responseType === 'text/event-stream') { | ||
data = response; | ||
} | ||
else if (responseType === 'multipart/form-data') { | ||
@@ -101,0 +104,0 @@ data = yield response.formData(); |
@@ -1,2 +0,2 @@ | ||
export declare const version = "2.2.2"; | ||
export declare const version = "2.3.0"; | ||
//# sourceMappingURL=version.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.version = void 0; | ||
exports.version = '2.2.2'; | ||
exports.version = '2.3.0'; | ||
//# sourceMappingURL=version.js.map |
@@ -96,2 +96,5 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
} | ||
else if (responseType === 'text/event-stream') { | ||
data = response; | ||
} | ||
else if (responseType === 'multipart/form-data') { | ||
@@ -98,0 +101,0 @@ data = yield response.formData(); |
@@ -1,2 +0,2 @@ | ||
export declare const version = "2.2.2"; | ||
export declare const version = "2.3.0"; | ||
//# sourceMappingURL=version.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export const version = '2.2.2'; | ||
export const version = '2.3.0'; | ||
//# sourceMappingURL=version.js.map |
{ | ||
"name": "@supabase/functions-js", | ||
"version": "2.2.2", | ||
"version": "2.3.0", | ||
"description": "JS Client library to interact with Supabase Functions.", | ||
@@ -5,0 +5,0 @@ "main": "dist/main/index.js", |
@@ -118,2 +118,4 @@ import { resolveFetch } from './helper' | ||
data = await response.blob() | ||
} else if (responseType === 'text/event-stream') { | ||
data = response | ||
} else if (responseType === 'multipart/form-data') { | ||
@@ -120,0 +122,0 @@ data = await response.formData() |
@@ -1,1 +0,1 @@ | ||
export const version = '2.2.2' | ||
export const version = '2.3.0' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
51094
49
840