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

@chisel/typescript

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chisel/typescript - npm Package Compare versions

Comparing version 0.0.38 to 0.0.39

3

package.json
{
"name": "@chisel/typescript",
"version": "0.0.38",
"version": "0.0.39",
"description": "Chisel Data Integration Platform TypeScript Essentials.",

@@ -28,4 +28,5 @@ "main": "index.js",

"dependencies": {
"@types/event-stream": "^3.3.34",
"@types/node": "^11.10.4"
}
}

@@ -23,2 +23,4 @@ export {

import { ReadStream } from 'fs';
export interface Main {

@@ -71,2 +73,3 @@

getFile: (name: string, text?: boolean) => Promise<string|Buffer>;
getFileStream: (name: string) => ReadStream;
deleteFile: (name: string) => Promise<void>;

@@ -73,0 +76,0 @@ listFiles: () => string[];

export { Logger, Colors, MicrosetRef, DoneFunction } from '../shared';
import { Logger, BaseAPI, DoneFunction } from '../shared';
import { ReadStream } from 'fs';

@@ -83,2 +84,3 @@ export interface Session {

getFile: (name: string, text?: boolean) => Promise<string|Buffer>;
getFileStream: (name: string) => ReadStream;

@@ -85,0 +87,0 @@ }

@@ -0,1 +1,4 @@

import { ZlibOptions, Gunzip } from 'zlib';
import { MapStream } from 'event-stream';
export interface Logger {

@@ -108,2 +111,5 @@

unzip: (data: string|Buffer) => Promise<Buffer>;
unzipPipe: (options?: ZlibOptions) => Gunzip;
jsonStream: (pattern: any) => NodeJS.ReadWriteStream;
mapPipe: (func: Function) => MapStream;

@@ -110,0 +116,0 @@ }

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