monkey-front-core 0.0.562 → 0.0.565

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,5 +25,15 @@ export declare class MonkeyEcxUtils {
25
25
  static replaceVariables(data: string, obj: any): string;
26
26
  static trimValuesToSave(obj: any, fields: string[]): any;
27
27
  }
28
+ export declare type MonkeyEcxLogsErrorTypes = 'ok' | 'debug' | 'info' | 'notice' | 'warn' | 'error' | 'critical' | 'alert' | 'emerg';
29
+ export declare type MonkeyEcxLogParams = {
30
+ message: string;
31
+ context?: any;
32
+ error?: Error;
33
+ type?: MonkeyEcxLogsErrorTypes;
34
+ };
35
+ export declare class MonkeyEcxLogs {
36
+ static log(params: MonkeyEcxLogParams): void;
37
+ }
28
38
  export declare function bufferToBase64(buffer: ArrayBuffer): string;
29
39
  export declare function base64ToBuffer(base64: string): ArrayBuffer;
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-front-core",
3
- "version": "0.0.562",
3
+ "version": "0.0.565",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.1.1",
6
6
  "@angular/common": "^13.1.1",
Binary file