Compare commits

..

No commits in common. "7f305a33a1a2a103b63e317f56b9e9e4a7e578fd" and "e0834c3ca9a66e23c175d5b656a9e2454417362a" have entirely different histories.

2 changed files with 2 additions and 7 deletions

View File

@ -8,7 +8,6 @@
"changelogFile": "docs/CHANGELOG.md"
}
],
"@semantic-release/npm",
"@semantic-release/git",
{
"assets": [
@ -16,7 +15,8 @@
"docs/CHANGELOG.md",
"npm-shrinkwrap.json"
]
}
},
"@semantic-release/npm"
],
"branches": [
"master",

View File

@ -39,7 +39,6 @@ export interface ClientOptions {
email?: string;
password?: string;
privateKey?: Uint8Array;
jwt?: string;
}
interface FetchOptions {
@ -63,10 +62,6 @@ export class Client {
throw new Error("Portal url is required");
}
if (options.jwt) {
this.jwtSessionKey = options.jwt;
}
this._options = options;
}