Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@evergis/api

Package Overview
Dependencies
Maintainers
4
Versions
330
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evergis/api - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

3

es/Api.d.ts

@@ -26,2 +26,5 @@ import { HttpClient } from './__generated__/HttpClient';

init(params: AuthorizationData): Promise<void>;
protected connectSp(params: AuthorizationData): Promise<void>;
protected connectWs(): void;
protected initScheduler(): void;
}

15

es/Api.js

@@ -22,5 +22,5 @@ import { HttpClient } from './__generated__/HttpClient';

try {
await this.security.login(params);
await this.notification.connectWs(this.wsUrl, this.security.sessionId);
await this.scheduler.init(this.notification);
await this.connectSp(params);
await this.connectWs();
this.initScheduler();
}

@@ -31,3 +31,12 @@ catch (e) {

}
connectSp(params) {
return this.security.login(params);
}
connectWs() {
return this.notification.connectWs(this.wsUrl, this.security.sessionId);
}
initScheduler() {
this.scheduler.init(this.notification);
}
}
//# sourceMappingURL=Api.js.map
{
"name": "@evergis/api",
"version": "0.1.2",
"version": "0.1.3",
"license": "ISC",

@@ -5,0 +5,0 @@ "author": "everpoint",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc