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

@evergis/api

Package Overview
Dependencies
Maintainers
6
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.62 to 0.1.63

es/__generated__/Workspace.d.ts

12

es/__generated__/DjangoSecurity.js

@@ -10,16 +10,20 @@ /*

findUserByName(startWith) {
return this.http.get(`${this.name}/users`, { startWith }).json();
return this.http
.get(`/services/security/users`, { startWith })
.json();
}
getSessionToken(authorizationData) {
return this.http
.post(`${this.name}/authorize`, authorizationData)
.post(`/services/security/authorize`, authorizationData)
.json();
}
getOpenSessions() {
return this.http.get(`${this.name}/sessions`).json();
return this.http.get(`/services/security/sessions`).json();
}
closeSession(id) {
return this.http.delete(`${this.name}/sessions`, { id }).json();
return this.http
.delete(`/services/security/sessions`, { id })
.json();
}
}
//# sourceMappingURL=DjangoSecurity.js.map

@@ -1,4 +0,4 @@

import { NotificationService } from '../__generated__/NotificationService';
import { IHttpClient } from '../__generated__/HttpClient';
import { ServiceInfoDc } from '../__generated__/data-contracts';
import { ServiceInfoDc } from "../__generated__/data-contracts";
import { IHttpClient } from "../__generated__/HttpClient";
import { NotificationService } from "../__generated__/NotificationService";
declare type NotificationHandler<Data, Result> = (event: NotificationEvent<Data>) => Result;

@@ -5,0 +5,0 @@ export declare enum ConnectionStatus {

@@ -1,3 +0,3 @@

import { NotificationService } from '../__generated__/NotificationService';
import { EventEmitter } from '@evergis/event-emitter';
import { EventEmitter } from "@evergis/event-emitter";
import { NotificationService } from "../__generated__/NotificationService";
export var ConnectionStatus;

@@ -58,6 +58,3 @@ (function (ConnectionStatus) {

async subscribe(tag) {
const subscriptions = await this.getSubscriptionList();
if (!subscriptions.includes(tag)) {
await this.subscribeOperation(tag);
}
return this.subscribeOperation(tag);
}

@@ -67,3 +64,3 @@ async unsubscribe(tag) {

if (subscriptions.includes(tag)) {
await this.unsubscribeOperation(tag);
return this.unsubscribeOperation(tag);
}

@@ -70,0 +67,0 @@ }

{
"name": "@evergis/api",
"version": "0.1.62",
"version": "0.1.63",
"license": "ISC",

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

@@ -10,1 +10,3 @@ # @evergis/api

```
Для обновления шаблонов печати необходимо склонировать и собрать пакет spadmin

Sorry, the diff of this file is not supported yet

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