angular-toolbox 0.12.3 → 1.1.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/README.md +1 -1
- package/esm2022/lib/model/service/mock/http/logging/http-mock-logging-service.mjs +6 -2
- package/esm2022/lib/model/service/ui/app-bridge.service.mjs +5 -5
- package/esm2022/lib/model/service/version/angular-toolbox-version.service.mjs +5 -6
- package/fesm2022/angular-toolbox.mjs +14 -11
- package/fesm2022/angular-toolbox.mjs.map +1 -1
- package/lib/model/service/mock/http/logging/http-mock-logging-service.d.ts +5 -1
- package/lib/model/service/ui/app-bridge.service.d.ts +3 -3
- package/package.json +1 -1
|
@@ -43,6 +43,7 @@ export declare class HttpMockLoggingService implements TransactionalLogger, OnDe
|
|
|
43
43
|
*/
|
|
44
44
|
error(metadata: HttpMockLoggingMetadata): Log;
|
|
45
45
|
/**
|
|
46
|
+
* @private
|
|
46
47
|
* Processes a special kind of logs that are used to indicate that a HTTP operation
|
|
47
48
|
* started and no response is available yet.
|
|
48
49
|
*
|
|
@@ -65,13 +66,16 @@ export declare class HttpMockLoggingService implements TransactionalLogger, OnDe
|
|
|
65
66
|
* @inheritdoc
|
|
66
67
|
*/
|
|
67
68
|
destroy(): void;
|
|
69
|
+
/**
|
|
70
|
+
* @inheritdoc
|
|
71
|
+
*/
|
|
68
72
|
getLogs(): Log[];
|
|
69
73
|
/**
|
|
70
74
|
* @inheritdoc
|
|
71
75
|
*/
|
|
72
76
|
ngOnDestroy(): void;
|
|
73
77
|
/**
|
|
74
|
-
* @
|
|
78
|
+
* @private
|
|
75
79
|
*/
|
|
76
80
|
private getLastLog;
|
|
77
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<HttpMockLoggingService, never>;
|
|
@@ -9,7 +9,7 @@ export declare const APP_PRIDGE_REF: string;
|
|
|
9
9
|
/**
|
|
10
10
|
* A utility service that allows dynamically injected HTML fragments, to interact with the Angular application.
|
|
11
11
|
*/
|
|
12
|
-
export declare class
|
|
12
|
+
export declare class AppBridgeService {
|
|
13
13
|
private _router;
|
|
14
14
|
private _zone;
|
|
15
15
|
private _document;
|
|
@@ -75,6 +75,6 @@ export declare class AppBrigeService {
|
|
|
75
75
|
* @private
|
|
76
76
|
*/
|
|
77
77
|
private checkCommandName;
|
|
78
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
79
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
|
78
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppBridgeService, never>;
|
|
79
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppBridgeService>;
|
|
80
80
|
}
|