@chisel/typescript
Advanced tools
Comparing version 0.0.38 to 0.0.39
{ | ||
"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 @@ } |
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
21685
545
2
+ Added@types/event-stream@^3.3.34
+ Added@types/event-stream@3.3.34(transitive)