hcode-core
Advanced tools
Comparing version 0.1.408 to 0.1.409
@@ -0,1 +1,2 @@ | ||
import { ServerEventAction } from './serverEventAction'; | ||
export interface ServerEvent { | ||
@@ -7,2 +8,3 @@ id: number; | ||
updatedAt: string; | ||
ServerEventAction?: ServerEventAction[]; | ||
} |
@@ -0,1 +1,3 @@ | ||
import { ServerEvent } from './serverEvent'; | ||
import { ServerEventType } from './serverEventType'; | ||
export interface ServerEventAction { | ||
@@ -8,2 +10,4 @@ serverEventId: number; | ||
updatedAt: string; | ||
serverEventType?: ServerEventType; | ||
serverEvent?: ServerEvent; | ||
} |
@@ -0,1 +1,2 @@ | ||
import { ServerEventAction } from './serverEventAction'; | ||
export interface ServerEventType { | ||
@@ -6,2 +7,3 @@ id: number; | ||
updatedAt: string; | ||
ServerEventAction?: ServerEventAction[]; | ||
} |
{ | ||
"name": "hcode-core", | ||
"version": "0.1.408", | ||
"version": "0.1.409", | ||
"description": "Hcode Core", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
@@ -0,1 +1,3 @@ | ||
import { ServerEventAction } from './serverEventAction'; | ||
export interface ServerEvent { | ||
@@ -8,2 +10,4 @@ id: number; | ||
updatedAt: string; | ||
ServerEventAction?: ServerEventAction[]; | ||
} |
@@ -0,1 +1,4 @@ | ||
import { ServerEvent } from './serverEvent'; | ||
import { ServerEventType } from './serverEventType'; | ||
export interface ServerEventAction { | ||
@@ -9,2 +12,5 @@ serverEventId: number; | ||
updatedAt: string; | ||
serverEventType?: ServerEventType; | ||
serverEvent?: ServerEvent; | ||
} |
@@ -0,1 +1,3 @@ | ||
import { ServerEventAction } from './serverEventAction'; | ||
export interface ServerEventType { | ||
@@ -7,2 +9,4 @@ id: number; | ||
updatedAt: string; | ||
ServerEventAction?: ServerEventAction[]; | ||
} |
2695668
31259