fix(core): update

This commit is contained in:
Philipp Kunz 2018-11-04 18:15:46 +01:00
parent d9b1894872
commit 814c737345

View File

@ -4,19 +4,21 @@ export type TEnvironment = 'local' | 'test' | 'staging' | 'production';
export type TRuntime = 'node' | 'browser';
export interface ILogContext {
zone?: string;
company?: string;
companyunit?: string;
containerName?: string;
environment: TEnvironment;
runtime: TRuntime;
zone: string;
}
export interface ILogPackage {
timestamp: number;
type: TLogType;
context: ILogContext;
level: TLogLevel;
message: string;
data?: any;
}
export interface ILogPackageAuthenticated {