@hackler/sdk-core
Advanced tools
Comparing version
@@ -13,3 +13,2 @@ export declare const WORKSPACE_FETCH_URL = "https://sdk.hackle.io/api/v1/workspaces"; | ||
export declare const ERROR_RETRY_BASE_WAIT_SECONDS_BY_ERROR_COUNT: number[]; | ||
export declare const COOKIE_HID_KEY = "_hackle_hid"; | ||
//# sourceMappingURL=config.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.COOKIE_HID_KEY = exports.ERROR_RETRY_BASE_WAIT_SECONDS_BY_ERROR_COUNT = exports.DEFAULT_ON_READY_TIMEOUT = exports.DEFAULT_FLUSH_INTERVAL = exports.BATCH_SIZE = exports.DEFAULT_MAX_QUEUE_SIZE = exports.REQUEST_TIME_OUT = exports.DEFAULT_POOL_INTERVAL = exports.SDK_VERSION_HEADER = exports.SDK_NAME_HEADER = exports.SDK_KEY_HEADER = exports.EVENT_DISPATCH_URL = exports.WORKSPACE_FETCH_URL = void 0; | ||
exports.ERROR_RETRY_BASE_WAIT_SECONDS_BY_ERROR_COUNT = exports.DEFAULT_ON_READY_TIMEOUT = exports.DEFAULT_FLUSH_INTERVAL = exports.BATCH_SIZE = exports.DEFAULT_MAX_QUEUE_SIZE = exports.REQUEST_TIME_OUT = exports.DEFAULT_POOL_INTERVAL = exports.SDK_VERSION_HEADER = exports.SDK_NAME_HEADER = exports.SDK_KEY_HEADER = exports.EVENT_DISPATCH_URL = exports.WORKSPACE_FETCH_URL = void 0; | ||
exports.WORKSPACE_FETCH_URL = "https://sdk.hackle.io/api/v1/workspaces"; | ||
@@ -16,3 +16,2 @@ exports.EVENT_DISPATCH_URL = "https://event.hackle.io/api/v1/events"; | ||
exports.ERROR_RETRY_BASE_WAIT_SECONDS_BY_ERROR_COUNT = [0, 8, 16, 32, 64, 128, 256, 512]; | ||
exports.COOKIE_HID_KEY = "_hackle_hid"; | ||
//# sourceMappingURL=config.js.map |
/// <reference types="node" /> | ||
import http from 'http'; | ||
import http from "http"; | ||
export interface Response { | ||
@@ -4,0 +4,0 @@ statusCode?: number; |
@@ -12,6 +12,6 @@ "use strict"; | ||
var requester; | ||
if (parsedUrl.protocol === 'http:') { | ||
if (parsedUrl.protocol === "http:") { | ||
requester = http_1.default.request; | ||
} | ||
else if (parsedUrl.protocol === 'https:') { | ||
else if (parsedUrl.protocol === "https:") { | ||
requester = https_1.default.request; | ||
@@ -21,4 +21,5 @@ } | ||
return { | ||
responsePromise: Promise.reject(new Error('Unknown Error')), | ||
abort: function () { } | ||
responsePromise: Promise.reject(new Error("Unknown Error")), | ||
abort: function () { | ||
} | ||
}; | ||
@@ -31,4 +32,4 @@ } | ||
protocol: parsedUrl.protocol, | ||
method: 'GET', | ||
headers: tslib_1.__assign(tslib_1.__assign({}, headers), { 'Content-Type': 'application/json' }), | ||
method: "GET", | ||
headers: tslib_1.__assign(tslib_1.__assign({}, headers), { "Content-Type": "application/json" }) | ||
}; | ||
@@ -39,5 +40,5 @@ var request = requester(requestOptions); | ||
request.abort(); | ||
reject(new Error('Request time out')); | ||
reject(new Error("Request time out")); | ||
}, config_1.REQUEST_TIME_OUT); | ||
request.once('response', function (incomingMessage) { | ||
request.once("response", function (incomingMessage) { | ||
if (request.aborted) { | ||
@@ -47,5 +48,5 @@ return; | ||
var response = incomingMessage; | ||
response.setEncoding('utf8'); | ||
var responseData = ''; | ||
response.on('data', function (chunk) { | ||
response.setEncoding("utf8"); | ||
var responseData = ""; | ||
response.on("data", function (chunk) { | ||
if (!request.aborted) { | ||
@@ -55,3 +56,3 @@ responseData += chunk; | ||
}); | ||
response.on('end', function () { | ||
response.on("end", function () { | ||
clearTimeout(timeout); | ||
@@ -64,3 +65,3 @@ resolve({ | ||
}); | ||
request.on('error', function (err) { | ||
request.on("error", function (err) { | ||
clearTimeout(timeout); | ||
@@ -70,7 +71,7 @@ if (err instanceof Error) { | ||
} | ||
else if (typeof err === 'string') { | ||
else if (typeof err === "string") { | ||
reject(new Error(err)); | ||
} | ||
else { | ||
reject(new Error('Request error')); | ||
reject(new Error("Request error")); | ||
} | ||
@@ -102,4 +103,4 @@ }); | ||
}; | ||
var request = (parsedUrl.protocol === 'http:' ? http_1.default : https_1.default).request(requestOptions, requestCallback); | ||
request.on('error', function (err) { | ||
var request = (parsedUrl.protocol === "http:" ? http_1.default : https_1.default).request(requestOptions, requestCallback); | ||
request.on("error", function (err) { | ||
}); | ||
@@ -106,0 +107,0 @@ request.write(dataString); |
{ | ||
"name": "@hackler/sdk-core", | ||
"version": "1.2.0-rc.0", | ||
"version": "1.2.0-rc.1", | ||
"description": "JavaScript SDK-core", | ||
@@ -31,3 +31,3 @@ "author": { | ||
"watch": "tsc --watch", | ||
"publish:rc": "npm publish --tag rc" | ||
"publish:rc": "npm run build && npm publish --tag rc" | ||
}, | ||
@@ -34,0 +34,0 @@ "bugs": { |
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
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
126136
-36.07%78
-17.02%1905
-30.35%