@veloceapps/sdk 8.0.0-145 → 8.0.0-146
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/src/guards/context.guard.mjs +4 -3
- package/esm2020/src/guards/flow.guard.mjs +8 -2
- package/esm2020/src/pages/record-not-found/record-not-found.component.mjs +6 -3
- package/esm2020/src/resolvers/flow.resolver.mjs +4 -2
- package/esm2020/src/resolvers/quote.resolver.mjs +4 -3
- package/esm2020/src/services/flow-router.service.mjs +6 -3
- package/fesm2015/veloceapps-sdk.mjs +22 -9
- package/fesm2015/veloceapps-sdk.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk.mjs +22 -9
- package/fesm2020/veloceapps-sdk.mjs.map +1 -1
- package/package.json +1 -1
- package/src/pages/record-not-found/record-not-found.component.d.ts +2 -0
- package/src/services/flow-router.service.d.ts +1 -1
package/package.json
CHANGED
@@ -5,6 +5,8 @@ export declare class RecordNotFoundComponent {
|
|
5
5
|
private route;
|
6
6
|
message: string;
|
7
7
|
subMessage: string;
|
8
|
+
type: string;
|
9
|
+
details: string[];
|
8
10
|
constructor(router: Router, route: ActivatedRoute);
|
9
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecordNotFoundComponent, never>;
|
10
12
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecordNotFoundComponent, "vl-flow-record-not-found", never, {}, {}, never, never, false, never>;
|
@@ -37,7 +37,7 @@ export declare class FlowRouterService {
|
|
37
37
|
navigateToShoppingCart(): void;
|
38
38
|
navigateToCatalog(): void;
|
39
39
|
navigateToAssets(): void;
|
40
|
-
showErrorPage$(message: string): Observable<false>;
|
40
|
+
showErrorPage$(message: string, details?: string[]): Observable<false>;
|
41
41
|
switchObject(id: string): void;
|
42
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowRouterService, never>;
|
43
43
|
static ɵprov: i0.ɵɵInjectableDeclaration<FlowRouterService>;
|