File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export interface ExceptionEntity extends Entities.Entity {
3939 stackTrace : string ;
4040 stackTraceHash : number ;
4141 threadId : number ;
42- user : Entities . Lite < IUserEntity > ;
42+ user : Entities . Lite < IUserEntity > | null ;
4343 environment : string | null ;
4444 version : string | null ;
4545 userAgent : string | null ;
@@ -65,13 +65,13 @@ export interface IUserEntity extends Entities.Entity {
6565export const OperationLogEntity = new Type < OperationLogEntity > ( "OperationLog" ) ;
6666export interface OperationLogEntity extends Entities . Entity {
6767 Type : "OperationLog" ;
68- target : Entities . Lite < Entities . Entity > ;
69- origin : Entities . Lite < Entities . Entity > ;
68+ target : Entities . Lite < Entities . Entity > | null ;
69+ origin : Entities . Lite < Entities . Entity > | null ;
7070 operation : Entities . OperationSymbol ;
7171 user : Entities . Lite < IUserEntity > ;
7272 start : string ;
7373 end : string | null ;
74- exception : Entities . Lite < ExceptionEntity > ;
74+ exception : Entities . Lite < ExceptionEntity > | null ;
7575}
7676
7777export const PropertyRouteEntity = new Type < PropertyRouteEntity > ( "PropertyRoute" ) ;
You can’t perform that action at this time.
0 commit comments