@studyportals/student-interfaces
Advanced tools
Comparing version 5.0.0 to 5.1.0
export * from './session-management'; | ||
export * from './wishlist-service'; | ||
export * from './web-socket-service'; |
@@ -0,0 +0,0 @@ "use strict"; |
{ | ||
"name": "@studyportals/student-interfaces", | ||
"version": "5.0.0", | ||
"version": "5.1.0", | ||
"description": "The interfaces exposed by StudentJS", | ||
@@ -5,0 +5,0 @@ "main": "bin/index.js", |
@@ -0,0 +0,0 @@ export interface ICredentials { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ export declare enum SessionServiceEventType { |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IEvent } from '@studyportals/event-aggregation-service-interface'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IEvent } from '@studyportals/event-aggregation-service-interface'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { IEvent } from "@studyportals/event-aggregation-service-interface"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export * from './session-service.interface'; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { ISession } from './session.interface'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ import { IUser } from './user.interface'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ import { ISessionService } from './session-service.interface'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ import { ISession } from './session.interface'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ export interface IUser { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
export declare enum WebSocketEventType { | ||
WEBSOCKET_SERVICE_READY = "WebsocketServiceReady" | ||
} |
@@ -0,0 +0,0 @@ "use strict"; |
import { IEvent } from "@studyportals/event-aggregation-service-interface"; | ||
import { IWebSocketService } from "../web-socket-service.interface"; | ||
export declare class WebsocketServiceReadyEvent implements IEvent { | ||
webSocketService: IWebSocketService; | ||
readonly webSocketService: IWebSocketService; | ||
readonly timestamp: Date; | ||
readonly eventType: string; | ||
static EventType: string; | ||
/** | ||
* @deprecated Use webSocketService instead | ||
*/ | ||
readonly eventAggregationService: IWebSocketService; | ||
constructor(webSocketService: IWebSocketService); | ||
} |
@@ -9,2 +9,3 @@ "use strict"; | ||
this.eventType = WebsocketServiceReadyEvent.EventType; | ||
this.eventAggregationService = webSocketService; | ||
this.timestamp = new Date(); | ||
@@ -11,0 +12,0 @@ } |
import { WebSocketEventType } from "./enums/event-type"; | ||
import { WebsocketServiceReadyEvent } from "./events/websocket-service-ready-event"; | ||
import { IWebSocketService } from "./web-socket-service.interface"; | ||
export { IWebSocketService, WebsocketServiceReadyEvent, WebSocketEventType, }; | ||
export { IWebSocketService, WebsocketServiceReadyEvent, WebSocketEventType }; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { ISubscriber } from "@studyportals/event-aggregation-service-interface"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ import { Wishlist } from '@studyportals/wishlist-service-core'; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
export declare enum WishlistServiceEventType { | ||
WISHLIST_SERVICE_READY = "WishlistServiceReady" | ||
WISHLIST_SERVICE_READY = "WishlistServiceReady", | ||
WISHLIST_SYNCED = "WishlistSynced" | ||
} |
@@ -7,2 +7,3 @@ "use strict"; | ||
WishlistServiceEventType["WISHLIST_SERVICE_READY"] = "WishlistServiceReady"; | ||
WishlistServiceEventType["WISHLIST_SYNCED"] = "WishlistSynced"; | ||
})(WishlistServiceEventType = exports.WishlistServiceEventType || (exports.WishlistServiceEventType = {})); |
@@ -0,0 +0,0 @@ import { IEvent } from '@studyportals/event-aggregation-service-interface'; |
@@ -0,0 +0,0 @@ "use strict"; |
export * from './application/wishlist-service.interface'; | ||
export * from './events/wishlist-service-ready-event'; |
@@ -0,0 +0,0 @@ "use strict"; |
15284
43
308