From 814c7373450e35566a869537272b270d1b0944be Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 4 Nov 2018 18:15:46 +0100 Subject: [PATCH] fix(core): update --- ts/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ts/index.ts b/ts/index.ts index 482946d..bb7421a 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -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 {