Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@superfaceai/one-sdk-cloudflare

Package Overview
Dependencies
Maintainers
3
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@superfaceai/one-sdk-cloudflare - npm Package Compare versions

Comparing version 1.0.0-beta.1 to 1.0.0-beta.2

7

dist/common/app.js

@@ -7,6 +7,9 @@ import { Asyncify } from './asyncify.js';

constructor(stream) {
this.reader = stream.getReader();
this.reader = stream?.getReader();
this.chunks = [];
}
async read(out) {
if (this.reader === undefined) {
return 0;
}
if (this.chunks.length === 0) {

@@ -244,3 +247,3 @@ const readResult = await this.reader.read();

const response = await this.requests.remove(message.handle);
const bodyStream = new ReadableStreamAdapter(response.body); // TODO: handle when they are missing
const bodyStream = new ReadableStreamAdapter(response.body);
return { kind: 'ok', status: response.status, headers: headersToMultimap(response.headers), body_stream: this.streams.insert(bodyStream) };

@@ -247,0 +250,0 @@ }

{
"name": "@superfaceai/one-sdk-cloudflare",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"exports": {

@@ -5,0 +5,0 @@ ".": "./dist/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc