mp-front-cli 0.0.140 → 2.0.0-canary.0
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.
- package/dist/core/errors/enrollment/error-catalog-enrollment.d.ts +1 -1
- package/dist/core/errors/error-catalog.d.ts +9 -9
- package/dist/core/errors/helpdesk/cancelPr.d.ts +1 -1
- package/dist/core/errors/helpdesk/index.d.ts +1 -1
- package/dist/core/errors/helpdesk/skipFingerprint.d.ts +1 -1
- package/dist/core/errors/index.d.ts +1 -1
- package/dist/core/errors/message-error.d.ts +3 -3
- package/dist/core/index.d.ts +5 -5
- package/dist/core/interfaces/api-response.d.ts +0 -1
- package/dist/core/interfaces/api-response.d.ts.map +1 -1
- package/dist/core/interfaces/index.d.ts +3 -3
- package/dist/core/middleware/index.d.ts +5 -5
- package/dist/core/services/index.d.ts +1 -1
- package/dist/core/services/service-token.d.ts +2 -2
- package/dist/core/utils/Terminal/constants/index.d.ts +1 -1
- package/dist/core/utils/Terminal/index.d.ts +3 -3
- package/dist/core/utils/api-request/fetch-service-be.d.ts +4 -4
- package/dist/core/utils/api-request/fetch-service-fe.d.ts +3 -3
- package/dist/core/utils/api-request/index.d.ts +2 -2
- package/dist/core/utils/custom-adapter.d.ts +1 -1
- package/dist/core/utils/custom-adapter.d.ts.map +1 -1
- package/dist/core/utils/custom-cache.d.ts +3 -3
- package/dist/core/utils/custom-encoder.d.ts +1 -1
- package/dist/core/utils/custom-encrypter.d.ts +1 -1
- package/dist/core/utils/custom-header.d.ts +2 -2
- package/dist/core/utils/custom-redis.d.ts +1 -1
- package/dist/core/utils/func/index.d.ts +1 -1
- package/dist/core/utils/index.d.ts +2 -2
- package/dist/core/utils/rxjs/index.d.ts +3 -3
- package/dist/core/utils/rxjs/loading-handler.d.ts +1 -1
- package/dist/core/utils/rxjs/message-handler.d.ts +2 -2
- package/dist/core/utils/rxjs/rx-subject-manager.d.ts +1 -1
- package/dist/fetch-service-fe-Bn43l_lH.js +1574 -0
- package/dist/index.d.ts +1 -1
- package/dist/lang/common/errors/calculator/index.d.ts +2 -2
- package/dist/lang/common/errors/enrollment/index.d.ts +2 -2
- package/dist/lang/common/errors/helpdesk/index.d.ts +2 -2
- package/dist/lang/common/errors/index.d.ts +2 -2
- package/dist/lang/common/index.d.ts +1 -1
- package/dist/lang/i18n.d.ts +1 -1
- package/dist/lang/index.d.ts +4 -4
- package/dist/lang/validator/index.d.ts +2 -2
- package/dist/loading-handler-Br21zGTA.js +46 -0
- package/dist/mp-front-cli-adapter.es.js +73 -84
- package/dist/mp-front-cli-all.es.js +11 -22
- package/dist/mp-front-cli-cache.es.js +33 -38
- package/dist/mp-front-cli-core.es.js +11 -1582
- package/dist/mp-front-cli-encoder.es.js +3535 -3537
- package/dist/mp-front-cli-encrypter.es.js +11 -14
- package/dist/mp-front-cli-header.es.js +13 -17
- package/dist/mp-front-cli-locale.es.js +1 -1
- package/dist/mp-front-cli-logger.es.js +1 -1
- package/dist/mp-front-cli-services.es.js +2 -4
- package/dist/mp-front-cli-utils-rxjs.es.js +3 -43
- package/dist/service-token-D8bum6H0.js +811 -0
- package/package.json +11 -11
- package/dist/index-def0b487.js +0 -844
- /package/dist/{custom-redis-bee66564.js → custom-redis-BMPP_XZi.js} +0 -0
- /package/dist/{i18n-3dcfe704.js → i18n-CniHhItS.js} +0 -0
- /package/dist/{stringify-788d71a0.js → stringify-93tp0umt.js} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ApiError } from
|
|
2
|
-
import { CustomLogger } from
|
|
1
|
+
import { ApiError } from '../interfaces/api-response';
|
|
2
|
+
import { CustomLogger } from '../utils/custom-logger';
|
|
3
3
|
export declare class ErrorCatalog extends CustomLogger {
|
|
4
4
|
get(error?: string | Error | ApiError, uuid?: string): {
|
|
5
5
|
title: string;
|
|
@@ -7,10 +7,10 @@ export declare class ErrorCatalog extends CustomLogger {
|
|
|
7
7
|
uuid: string;
|
|
8
8
|
type: "modal" | "message";
|
|
9
9
|
level: "error" | "success" | "warning" | "info";
|
|
10
|
-
code?: number
|
|
11
|
-
payload?: {}
|
|
12
|
-
clearCookieSession?: boolean
|
|
13
|
-
onOk?: (
|
|
10
|
+
code?: number;
|
|
11
|
+
payload?: {};
|
|
12
|
+
clearCookieSession?: boolean;
|
|
13
|
+
onOk?: () => void;
|
|
14
14
|
} | {
|
|
15
15
|
title: string;
|
|
16
16
|
message: string;
|
|
@@ -22,9 +22,9 @@ export declare class ErrorCatalog extends CustomLogger {
|
|
|
22
22
|
uuid: string;
|
|
23
23
|
type: "modal" | "message";
|
|
24
24
|
level: "error" | "success" | "warning" | "info";
|
|
25
|
-
code?: number
|
|
26
|
-
clearCookieSession?: boolean
|
|
27
|
-
onOk?: (
|
|
25
|
+
code?: number;
|
|
26
|
+
clearCookieSession?: boolean;
|
|
27
|
+
onOk?: () => void;
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
30
|
//# sourceMappingURL=error-catalog.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { ErrorCatalog } from
|
|
1
|
+
export { ErrorCatalog } from './error-catalog';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ApiError } from
|
|
2
|
-
import { IMessage } from
|
|
3
|
-
import { CustomLogger } from
|
|
1
|
+
import { ApiError } from '../interfaces/api-response';
|
|
2
|
+
import { IMessage } from '../interfaces/message';
|
|
3
|
+
import { CustomLogger } from '../utils/custom-logger';
|
|
4
4
|
/**
|
|
5
5
|
* clase para manejar los errores de la aplicación
|
|
6
6
|
*
|
package/dist/core/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
1
|
+
export * from './errors';
|
|
2
|
+
export * from './interfaces';
|
|
3
|
+
export * from './middleware';
|
|
4
|
+
export * from './utils';
|
|
5
|
+
export * from './services';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api-response.d.ts","sourceRoot":"","sources":["../../../src/core/interfaces/api-response.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE;IACpC,IAAI,EAAE,MAAM,CAAA;IACZ,UAAU,EAAE,CAAC,CAAA;IACb,aAAa,CAAC,EAAE,CAAC,CAAA;IACjB,KAAK,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;CAC5B;AAED,MAAM,WAAW,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE;IAC7B,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE,CAAC,CAAA;IACb,aAAa,CAAC,EAAE,CAAC,CAAA;IACjB,KAAK,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;CAC5B;AAED,KAAK,OAAO,GAAG,UAAU,CAAA;AACzB,MAAM,MAAM,gBAAgB,GAAG,UAAU,GAAG,SAAS,CAAA;AACrD,MAAM,MAAM,SAAS,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,OAAO,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;AAEnE,KAAK,GAAG,GAAG,OAAO,CAAA;AAClB,MAAM,MAAM,iBAAiB,GAAG,QAAQ,GAAG,GAAG,CAAA;AAC9C,KAAK,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,GAAG,GAAG,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;AAEjE,MAAM,WAAW,UAAU,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE;IACnC,IAAI,EAAE,WAAW,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACvB,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAA;CACpB;AAED,MAAM,WAAW,WAAW,CAAC,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,GAAG,EAAE;IAClD,IAAI,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IACtB,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAA;CACpB;AACD,MAAM,WAAW,IAAI;IACnB,IAAI,EAAE,QAAQ,CAAA;CACf;AAED,MAAM,WAAW,QAAQ;IACvB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAA;CAChD;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,gBAAgB,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"api-response.d.ts","sourceRoot":"","sources":["../../../src/core/interfaces/api-response.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE;IACpC,IAAI,EAAE,MAAM,CAAA;IACZ,UAAU,EAAE,CAAC,CAAA;IACb,aAAa,CAAC,EAAE,CAAC,CAAA;IACjB,KAAK,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;CAC5B;AAED,MAAM,WAAW,IAAI,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE;IAC7B,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE,CAAC,CAAA;IACb,aAAa,CAAC,EAAE,CAAC,CAAA;IACjB,KAAK,CAAC,EAAE,IAAI,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;CAC5B;AAED,KAAK,OAAO,GAAG,UAAU,CAAA;AACzB,MAAM,MAAM,gBAAgB,GAAG,UAAU,GAAG,SAAS,CAAA;AACrD,MAAM,MAAM,SAAS,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,OAAO,GAAG,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAA;AAEnE,KAAK,GAAG,GAAG,OAAO,CAAA;AAClB,MAAM,MAAM,iBAAiB,GAAG,QAAQ,GAAG,GAAG,CAAA;AAC9C,KAAK,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,SAAS,GAAG,GAAG,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;AAEjE,MAAM,WAAW,UAAU,CAAC,CAAC,EAAE,CAAC,GAAG,EAAE;IACnC,IAAI,EAAE,WAAW,CAAC,CAAC,EAAE,CAAC,CAAC,CAAA;IACvB,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAA;CACpB;AAED,MAAM,WAAW,WAAW,CAAC,CAAC,EAAE,CAAC,GAAG,QAAQ,EAAE,CAAC,GAAG,EAAE;IAClD,IAAI,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAA;IACtB,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAA;CACpB;AACD,MAAM,WAAW,IAAI;IACnB,IAAI,EAAE,QAAQ,CAAA;CACf;AAED,MAAM,WAAW,QAAQ;IACvB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAA;CAChD;AAED,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,MAAM,CAAA;IACd,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;IACd,gBAAgB,EAAE,MAAM,CAAA;CACzB;AAED,MAAM,WAAW,MAAM;IACrB,OAAO,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,KAAK;IACpB,IAAI,EAAE,MAAM,CAAA;IACZ,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,EAAE,MAAM,CAAA;CACb"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type { ApiResponse } from
|
|
2
|
-
export type { IMessage } from
|
|
3
|
-
export type { RefreshState } from
|
|
1
|
+
export type { ApiResponse } from './api-response';
|
|
2
|
+
export type { IMessage } from './message';
|
|
3
|
+
export type { RefreshState } from '../../core/utils/custom-cache';
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Observable } from
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import { CustomEncrypter } from
|
|
5
|
-
import
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { NextApiRequest, NextApiResponse } from 'next';
|
|
3
|
+
import { IMessage } from '../interfaces/message';
|
|
4
|
+
import { CustomEncrypter } from '../utils/custom-encrypter';
|
|
5
|
+
import { Session } from 'next-auth';
|
|
6
6
|
export declare class ApiMiddleware<TRes, TData = {}> extends CustomEncrypter {
|
|
7
7
|
protected uuid: string;
|
|
8
8
|
private session;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from './service-token';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CustomLogger } from
|
|
1
|
+
import { CustomLogger } from '../utils/custom-logger';
|
|
2
2
|
export declare class ServiceToken extends CustomLogger {
|
|
3
3
|
private API_AUTH_BACK_URL;
|
|
4
4
|
private API_AUTH_BACK_USERNAME_AUTH;
|
|
@@ -6,6 +6,6 @@ export declare class ServiceToken extends CustomLogger {
|
|
|
6
6
|
private headers;
|
|
7
7
|
private ID;
|
|
8
8
|
constructor();
|
|
9
|
-
get(): import(
|
|
9
|
+
get(): import('rxjs').Observable<any>;
|
|
10
10
|
}
|
|
11
11
|
//# sourceMappingURL=service-token.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const TIMEOUT_SESSION_MINUTES:
|
|
1
|
+
export declare const TIMEOUT_SESSION_MINUTES: string;
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { ITerminal } from
|
|
2
|
-
import { CustomEncrypter } from
|
|
1
|
+
import { ITerminal } from './interfaces';
|
|
2
|
+
import { CustomEncrypter } from '../custom-encrypter';
|
|
3
3
|
declare class Terminal extends CustomEncrypter {
|
|
4
4
|
private readonly redisCacheHandler;
|
|
5
5
|
private getIdApi;
|
|
6
6
|
saveTerminalData(keySeller: string, terminal: ITerminal): Promise<string>;
|
|
7
|
-
getTerminalData(keySeller: string): Promise<
|
|
7
|
+
getTerminalData(keySeller: string): Promise<any>;
|
|
8
8
|
deleteTerminalData(keySeller: string): Promise<void>;
|
|
9
9
|
}
|
|
10
10
|
export default Terminal;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Observable } from
|
|
2
|
-
import
|
|
3
|
-
import { Method } from
|
|
4
|
-
import { CustomHeader } from
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { ApiResponse, TypesDataResponse } from '../../interfaces/api-response';
|
|
3
|
+
import { Method } from '../../interfaces/method';
|
|
4
|
+
import { CustomHeader } from '../custom-header';
|
|
5
5
|
export declare class FetchServiceBE<TRes, TData = {}, TypeDataResponse extends TypesDataResponse = "OBJECT", Relationships = {}> extends CustomHeader {
|
|
6
6
|
private apiUrl;
|
|
7
7
|
private method;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Observable } from
|
|
2
|
-
import { Method } from
|
|
3
|
-
import { CustomEncoder } from
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { Method } from '../../interfaces/method';
|
|
3
|
+
import { CustomEncoder } from '../custom-encoder';
|
|
4
4
|
export declare class FetchServiceFE<TRes, TData = {}> extends CustomEncoder {
|
|
5
5
|
private apiUrl;
|
|
6
6
|
private method;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { FetchServiceBE } from
|
|
2
|
-
export { FetchServiceFE } from
|
|
1
|
+
export { FetchServiceBE } from './fetch-service-be';
|
|
2
|
+
export { FetchServiceFE } from './fetch-service-fe';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"custom-adapter.d.ts","sourceRoot":"","sources":["../../../src/core/utils/custom-adapter.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,OAAO,EAIR,MAAM,oBAAoB,CAAA;
|
|
1
|
+
{"version":3,"file":"custom-adapter.d.ts","sourceRoot":"","sources":["../../../src/core/utils/custom-adapter.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,OAAO,EAIR,MAAM,oBAAoB,CAAA;AAS3B,MAAM,WAAW,qBAAqB;IACpC,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,oBAAoB,CAAC,EAAE,MAAM,CAAA;IAC7B,qBAAqB,CAAC,EAAE,MAAM,CAAA;IAC9B,MAAM,EAAE,MAAM,CAAA;CACf;AAED,eAAO,MAAM,cAAc,EAAE,qBAU5B,CAAA;AAgBD,wBAAgB,cAAc,CAC5B,OAAO,GAAE,qBAAgE,GACxE,OAAO,CAmPT"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CustomEncrypter } from
|
|
1
|
+
import { CustomEncrypter } from './custom-encrypter';
|
|
2
2
|
export declare enum RefreshState {
|
|
3
3
|
NOT_REFRESH = "NOT_REFRESH",
|
|
4
4
|
REFRESH = "REFRESH"
|
|
@@ -50,8 +50,8 @@ export declare class CustomCache<T> extends CustomEncrypter {
|
|
|
50
50
|
killRedis(): void;
|
|
51
51
|
deleteKey(key: string): void;
|
|
52
52
|
ttl(key: string, time: number): void;
|
|
53
|
-
simpleGet(key: string): Promise<string
|
|
54
|
-
simpleHGet(key: string, field: string): Promise<string
|
|
53
|
+
simpleGet(key: string): Promise<string>;
|
|
54
|
+
simpleHGet(key: string, field: string): Promise<string>;
|
|
55
55
|
simpleHSet(key: string, field: string, value: string): Promise<number>;
|
|
56
56
|
simpleHGetAll(key: string): Promise<Record<string, string>>;
|
|
57
57
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Observable } from
|
|
2
|
-
import { CustomEncrypter } from
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { CustomEncrypter } from './custom-encrypter';
|
|
3
3
|
export declare class CustomHeader extends CustomEncrypter {
|
|
4
4
|
private headers;
|
|
5
5
|
constructor(headers?: HeadersInit);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from './escape_unicode';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
1
|
+
export * from './api-request';
|
|
2
|
+
export * from './rxjs';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { MessageHandler } from
|
|
2
|
-
export { RxSubjectManager } from
|
|
3
|
-
export { LoadingHandler } from
|
|
1
|
+
export { MessageHandler } from './message-handler';
|
|
2
|
+
export { RxSubjectManager } from './rx-subject-manager';
|
|
3
|
+
export { LoadingHandler } from './loading-handler';
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { IMessage } from
|
|
2
|
-
import { RxSubjectManager } from
|
|
1
|
+
import { IMessage } from 'src/core/interfaces/message';
|
|
2
|
+
import { RxSubjectManager } from './rx-subject-manager';
|
|
3
3
|
export declare class MessageHandler extends RxSubjectManager<IMessage> {
|
|
4
4
|
private static instance;
|
|
5
5
|
private constructor();
|