monkey-front-core 0.0.538 → 0.0.539

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.
@@ -3,3 +3,5 @@ export declare const MECX_TIMEZONEOFFSET: InjectionToken<string>;
3
3
  export declare const MECX_DATE_FORMAT: InjectionToken<string>;
4
4
  export declare const MECX_LANG: InjectionToken<string>;
5
5
  export declare const MECX_ENV: InjectionToken<string>;
6
+ export declare const MECX_ALPHA: InjectionToken<string>;
7
+ export declare const MECX_BETA: InjectionToken<string>;
@@ -23,3 +23,4 @@ export * from './routes';
23
23
  export * from './schedules';
24
24
  export * from './storage';
25
25
  export * from './store';
26
+ export * from './locker';
@@ -0,0 +1 @@
1
+ export * from './locker.service';
@@ -0,0 +1,11 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class MonkeyLockerService {
4
+ private alpha;
5
+ private beta;
6
+ constructor(alpha: InjectionToken<string>, beta: InjectionToken<string>);
7
+ openMonkey(data: string): Promise<string>;
8
+ private importMonkey;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyLockerService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyLockerService>;
11
+ }
@@ -25,3 +25,5 @@ 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 function bufferToBase64(buffer: ArrayBuffer): string;
29
+ 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.538",
3
+ "version": "0.0.539",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.1.1",
6
6
  "@angular/common": "^13.1.1",
Binary file