New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@studyportals/student-interfaces

Package Overview
Dependencies
Maintainers
12
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@studyportals/student-interfaces - npm Package Compare versions

Comparing version 1.2.1-8 to 1.3.0

2

package.json
{
"name": "@studyportals/student-interfaces",
"version": "1.2.1-8",
"version": "1.3.0",
"description": "The interfaces exposed by StudentJS",

@@ -5,0 +5,0 @@ "main": "bin/index.js",

@@ -1,2 +0,2 @@

export declare enum EventaggregationEvents {
export declare enum SessionServiceEventType {
SESSION_SERVICE_READY = "SessionServiceReady",

@@ -3,0 +3,0 @@ SESSION_CREATED = "SessionCreated",

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventaggregationEvents = void 0;
var EventaggregationEvents;
(function (EventaggregationEvents) {
EventaggregationEvents["SESSION_SERVICE_READY"] = "SessionServiceReady";
EventaggregationEvents["SESSION_CREATED"] = "SessionCreated";
EventaggregationEvents["SESSION_DESTROYED"] = "SessionDestroyed";
})(EventaggregationEvents = exports.EventaggregationEvents || (exports.EventaggregationEvents = {}));
exports.SessionServiceEventType = void 0;
var SessionServiceEventType;
(function (SessionServiceEventType) {
SessionServiceEventType["SESSION_SERVICE_READY"] = "SessionServiceReady";
SessionServiceEventType["SESSION_CREATED"] = "SessionCreated";
SessionServiceEventType["SESSION_DESTROYED"] = "SessionDestroyed";
})(SessionServiceEventType = exports.SessionServiceEventType || (exports.SessionServiceEventType = {}));
import { ITokenBasedSession } from '..';
import { IEvent } from '../../event-aggregation-service';
import { EventaggregationEvents } from '../enums/event-types';
import { SessionServiceEventType } from '../enums/event-types';
export declare class SessionCreatedEvent implements IEvent {
readonly timestamp: Date;
readonly session: ITokenBasedSession;
static EventType: EventaggregationEvents;
static EventType: SessionServiceEventType;
constructor(session: ITokenBasedSession);
}

@@ -12,2 +12,2 @@ "use strict";

exports.SessionCreatedEvent = SessionCreatedEvent;
SessionCreatedEvent.EventType = event_types_1.EventaggregationEvents.SESSION_CREATED;
SessionCreatedEvent.EventType = event_types_1.SessionServiceEventType.SESSION_CREATED;
import { IEvent } from '../../event-aggregation-service';
import { EventaggregationEvents } from '../enums/event-types';
import { SessionServiceEventType } from '../enums/event-types';
export declare class SessionDestroyedEvent implements IEvent {
readonly timestamp: Date;
static EventType: EventaggregationEvents;
static EventType: SessionServiceEventType;
constructor();
}

@@ -11,2 +11,2 @@ "use strict";

exports.SessionDestroyedEvent = SessionDestroyedEvent;
SessionDestroyedEvent.EventType = event_types_1.EventaggregationEvents.SESSION_DESTROYED;
SessionDestroyedEvent.EventType = event_types_1.SessionServiceEventType.SESSION_DESTROYED;

@@ -12,2 +12,2 @@ "use strict";

exports.SessionServiceReadyEvent = SessionServiceReadyEvent;
SessionServiceReadyEvent.EventType = event_types_1.EventaggregationEvents.SESSION_SERVICE_READY;
SessionServiceReadyEvent.EventType = event_types_1.SessionServiceEventType.SESSION_SERVICE_READY;
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