Compare commits
No commits in common. "7f305a33a1a2a103b63e317f56b9e9e4a7e578fd" and "e0834c3ca9a66e23c175d5b656a9e2454417362a" have entirely different histories.
7f305a33a1
...
e0834c3ca9
|
@ -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",
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue