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 2.0.0-beta.0 to 2.1.0-beta.2

4

package.json
{
"name": "@studyportals/student-interfaces",
"version": "2.0.0-beta.0",
"version": "2.1.0-beta.2",
"description": "The interfaces exposed by StudentJS",

@@ -23,4 +23,4 @@ "main": "bin/index.js",

"dependencies": {
"@studyportals/wishlist-service-core": "^4.5.0"
"@studyportals/wishlist-service-core": "^6.0.1"
}
}

@@ -6,2 +6,3 @@ import { ITokenBasedSession } from '..';

readonly timestamp: Date;
readonly eventType: SessionServiceEventType;
readonly session: ITokenBasedSession;

@@ -8,0 +9,0 @@ static EventType: SessionServiceEventType;

import { SessionServiceEventType } from '../enums/event-types';
export class SessionCreatedEvent {
constructor(session) {
this.eventType = SessionCreatedEvent.EventType;
this.timestamp = new Date();

@@ -5,0 +6,0 @@ this.session = session;

@@ -5,4 +5,5 @@ import { IEvent } from '../../event-aggregation-service';

readonly timestamp: Date;
readonly eventType: SessionServiceEventType;
static EventType: SessionServiceEventType;
constructor();
}
import { SessionServiceEventType } from '../enums/event-types';
export class SessionDestroyedEvent {
constructor() {
this.eventType = SessionDestroyedEvent.EventType;
this.timestamp = new Date();

@@ -5,0 +6,0 @@ }

@@ -5,2 +5,3 @@ import { IEvent } from "../../event-aggregation-service";

readonly timestamp: Date;
readonly eventType: string;
readonly sessionService: ITokenBasedSessionService;

@@ -7,0 +8,0 @@ static EventType: string;

import { SessionServiceEventType } from "../enums/event-types";
export class SessionServiceReadyEvent {
constructor(sessionService) {
this.eventType = SessionServiceReadyEvent.EventType;
this.timestamp = new Date();

@@ -5,0 +6,0 @@ this.sessionService = sessionService;

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