ozone-typescript-client
Advanced tools
Comparing version 0.9.9 to 0.9.10
@@ -124,4 +124,4 @@ var __extends = (this && this.__extends) || (function () { | ||
/* | ||
Factory method | ||
*/ | ||
Factory method | ||
*/ | ||
function newOzoneClient(config) { | ||
@@ -413,4 +413,4 @@ return new OzoneClientImpl(config); | ||
/* | ||
Login if we have credentials | ||
*/ | ||
Login if we have credentials | ||
*/ | ||
OzoneClientImpl.prototype.loginIfPossible = function () { | ||
@@ -422,4 +422,4 @@ if (this._config.ozoneCredentials) { | ||
/* | ||
Connect if we have an URL, ignore errors | ||
*/ | ||
Connect if we have an URL, ignore errors | ||
*/ | ||
OzoneClientImpl.prototype.connectIfPossible = function () { | ||
@@ -523,6 +523,6 @@ if (this._config.webSocketsURL) { | ||
/* | ||
It has been a while since we last checked the session validity, | ||
so ask the WS server to check it. The server will close the connection | ||
if the session is expired | ||
*/ | ||
It has been a while since we last checked the session validity, | ||
so ask the WS server to check it. The server will close the connection | ||
if the session is expired | ||
*/ | ||
message += '!'; | ||
@@ -868,5 +868,5 @@ } | ||
/* | ||
Try to transparently re-authenticate and retry the call if we received a 403 or 401. | ||
Also, update the last session check | ||
*/ | ||
Try to transparently re-authenticate and retry the call if we received a 403 or 401. | ||
Also, update the last session check | ||
*/ | ||
var SessionRefreshFilter = /** @class */ (function () { | ||
@@ -938,4 +938,4 @@ function SessionRefreshFilter(client, sessionCheckCallBack) { | ||
/* | ||
Add "Ozone-Session-Id" Header | ||
*/ | ||
Add "Ozone-Session-Id" Header | ||
*/ | ||
var SessionFilter = /** @class */ (function () { | ||
@@ -961,4 +961,4 @@ function SessionFilter(authProvider) { | ||
/* | ||
Add sensible defaults to requests | ||
*/ | ||
Add sensible defaults to requests | ||
*/ | ||
var DefaultsOptions = /** @class */ (function () { | ||
@@ -965,0 +965,0 @@ function DefaultsOptions(defaultTimeout) { |
{ | ||
"name": "ozone-typescript-client", | ||
"version": "0.9.9", | ||
"description": "", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/taktik/ozone-typescript-client.git" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/taktik/ozone-typescript-client/issues" | ||
}, | ||
"scripts": { | ||
"prepublish": "npm run build", | ||
"build": "npm run tslint && tsc", | ||
"tslint": "tslint src/*" | ||
}, | ||
"homepage": "https://github.com/taktik/ozone-typescript-client#readme", | ||
"dependencies": { | ||
"log4javascript": "^1.4.15", | ||
"typescript-state-machine": "^0.9.1", | ||
"typescript-http-client": "^0.9.2", | ||
"ozone-type": "^4.0.1" | ||
}, | ||
"devDependencies": { | ||
"tslint": "^5.11.0", | ||
"tslint-config-standard": "^8.0.1", | ||
"typescript": "^3.1.6", | ||
"typescript-eslint-parser": "^20.1.1" | ||
} | ||
"name": "ozone-typescript-client", | ||
"version": "0.9.10", | ||
"description": "", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/taktik/ozone-typescript-client.git" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/taktik/ozone-typescript-client/issues" | ||
}, | ||
"scripts": { | ||
"prepublish": "npm run build", | ||
"build": "npm run tslint && tsc", | ||
"tslint": "tslint src/*" | ||
}, | ||
"homepage": "https://github.com/taktik/ozone-typescript-client#readme", | ||
"dependencies": { | ||
"log4javascript": "^1.4.15", | ||
"typescript-state-machine": "^0.9.2", | ||
"typescript-http-client": "^0.9.3", | ||
"ozone-type": "^4.0.1" | ||
}, | ||
"devDependencies": { | ||
"tslint": "^5.11.0", | ||
"tslint-config-standard": "^8.0.1", | ||
"typescript": "^3.1.6", | ||
"typescript-eslint-parser": "^20.1.1" | ||
} | ||
} |
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"module": "esnext", // Use esnext to enable lazy loading | ||
"moduleResolution": "node", | ||
"experimentalDecorators": true, | ||
// | ||
"emitDecoratorMetadata": true, | ||
/* Strict Type-Checking Options */ | ||
"strict": true, /* Enable all strict type-checking options. */ | ||
"strictNullChecks": true, | ||
"noImplicitThis": true, | ||
// "noImplicitAny": true, | ||
"allowSyntheticDefaultImports": true, | ||
"lib": ["es2017", "es6", "es5", "dom"], | ||
"sourceMap": true, | ||
"declaration": true, | ||
/* Generates corresponding '.d.ts' file. */ | ||
"outDir": "./dist", | ||
"baseUrl": "./" | ||
}, | ||
"files": [ | ||
"./src/index.ts" | ||
] | ||
} | ||
"compilerOptions": { | ||
"target": "es5", | ||
"module": "esnext", | ||
// Use esnext to enable lazy loading | ||
"moduleResolution": "node", | ||
"experimentalDecorators": true, | ||
// | ||
"emitDecoratorMetadata": true, | ||
/* Strict Type-Checking Options */ | ||
"strict": true, | ||
/* Enable all strict type-checking options. */ | ||
"strictNullChecks": true, | ||
"noImplicitThis": true, | ||
// "noImplicitAny": true, | ||
"allowSyntheticDefaultImports": true, | ||
"lib": [ | ||
"es2017", | ||
"es6", | ||
"es5", | ||
"dom" | ||
], | ||
"sourceMap": true, | ||
"declaration": true, | ||
/* Generates corresponding '.d.ts' file. */ | ||
"outDir": "./dist", | ||
"baseUrl": "./" | ||
}, | ||
"files": [ | ||
"./src/index.ts" | ||
] | ||
} |
{ | ||
"extends": "tslint-config-standard" | ||
} | ||
"extends": "tslint-config-standard", | ||
"rules": { | ||
"indent": [ | ||
true, | ||
"tabs", | ||
4 | ||
], | ||
"ter-indent": [ | ||
true, | ||
"tab" | ||
], | ||
"space-before-function-paren": [ | ||
true, | ||
"never" | ||
] | ||
} | ||
} |
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
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
110355
16
1192