@auroradao/datastream-connection
Advanced tools
Comparing version 1.3.1 to 1.3.2
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.3.2](https://github.com/AuroraDAO/datastream-client-js/compare/v1.3.1...v1.3.2) (2019-03-25) | ||
### Bug Fixes | ||
* fixes for buffer of undefined error ([b572560](https://github.com/AuroraDAO/datastream-client-js/commit/b572560)) | ||
## [1.3.1](https://github.com/AuroraDAO/datastream-client-js/compare/v1.3.0...v1.3.1) (2019-03-20) | ||
@@ -8,0 +19,0 @@ |
@@ -53,2 +53,3 @@ "use strict"; | ||
function createConnection(task, config, handleClientEvent) { | ||
console.log('Create Connection with Config: ', config); | ||
var redelay = redelay_1.createRedelay(constants_1.MAX_RECONNECT_SECONDS); | ||
@@ -55,0 +56,0 @@ var buffer = config.buffer ? buffer_1.createBuffer(config.buffer) : undefined; |
{ | ||
"name": "@auroradao/datastream-connection", | ||
"version": "1.3.1", | ||
"version": "1.3.2", | ||
"description": "Internal package called by @auroradao/datastream-client which maintains the provided connector.", | ||
@@ -8,2 +8,17 @@ "main": "lib/index.js", | ||
"license": "MIT", | ||
"reveal": true, | ||
"keywords": [ | ||
"idex", | ||
"cryptocurrency", | ||
"exchange", | ||
"bitcoin", | ||
"ethereum", | ||
"decentralized", | ||
"trading", | ||
"websocket", | ||
"realtime", | ||
"subscriptions", | ||
"datastream", | ||
"typescript" | ||
], | ||
"publishConfig": { | ||
@@ -13,6 +28,6 @@ "access": "public" | ||
"dependencies": { | ||
"@auroradao/datastream-types": "^1.3.1", | ||
"@auroradao/datastream-types": "^1.3.2", | ||
"task-handler": "^2.10.0" | ||
}, | ||
"gitHead": "9509791f6f5e78d26077edeeb20c39ce6be0853d" | ||
"gitHead": "d5f952c9d3c744485483437181e8f5d969127d40" | ||
} |
@@ -110,2 +110,3 @@ import * as $Datastream from '@auroradao/datastream-types'; | ||
): $Datastream.Connection$Controller { | ||
console.log('Create Connection with Config: ', config); | ||
const redelay = createRedelay(MAX_RECONNECT_SECONDS); | ||
@@ -112,0 +113,0 @@ const buffer = config.buffer ? createBuffer(config.buffer) : undefined; |
{ | ||
"extends": "../tsconfig.base.json", | ||
"include": ["src/**/*"], | ||
"compilerOptions": { | ||
@@ -4,0 +5,0 @@ "composite": true, |
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
71120
1436