@dsivd/prestations-ng 15.1.3 → 15.2.0-beta1
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/CHANGELOG.md +19 -0
- package/dsivd-prestations-ng-v15.2.0-beta1.tgz +0 -0
- package/esm2020/gesdem/gesdem-handler.service.mjs +9 -1
- package/esm2020/gesdem-error/gesdem-error.component.mjs +33 -12
- package/esm2020/gesdem-error/gesdem-error.module.mjs +8 -4
- package/esm2020/sdk-appinfo/application-info.service.mjs +5 -3
- package/esm2020/sdk-dictionary/default-dictionary.mjs +10 -2
- package/esm2020/sdk-epayment/sdk-epayment.service.mjs +2 -1
- package/fesm2015/dsivd-prestations-ng.mjs +50 -12
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +49 -12
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/gesdem/gesdem-handler.service.d.ts +2 -0
- package/gesdem-error/gesdem-error.component.d.ts +8 -1
- package/gesdem-error/gesdem-error.module.d.ts +2 -1
- package/package.json +1 -1
- package/sdk-appinfo/application-info.service.d.ts +1 -1
- package/dsivd-prestations-ng-v15.1.3.tgz +0 -0
|
@@ -6,6 +6,7 @@ import { ActivatedRoute, Router } from '@angular/router';
|
|
|
6
6
|
import { ValidationHandlerService } from '../validation/validation-handler.service';
|
|
7
7
|
import { GesdemErrorHandlerService } from './gesdem-error-handler.service';
|
|
8
8
|
import { SessionInfo } from '../sdk-session-info/session-info.service';
|
|
9
|
+
import { ActionStatut } from '../gesdem/gesdem-statut-utils';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class GesdemHandlerService {
|
|
11
12
|
private http;
|
|
@@ -36,6 +37,7 @@ export declare class GesdemHandlerService {
|
|
|
36
37
|
require(reference?: string, forceRefreshIfNew?: boolean): Observable<any>;
|
|
37
38
|
transmit(): Observable<any>;
|
|
38
39
|
retrieve(reference: any): Observable<any>;
|
|
40
|
+
retrieveActionStatut(reference: any): Observable<ActionStatut>;
|
|
39
41
|
private postToUrl;
|
|
40
42
|
private emitResponse;
|
|
41
43
|
private handleGesdemError;
|
|
@@ -4,18 +4,25 @@ import { FoehnNavigationService } from '../foehn-navigation/foehn-navigation.ser
|
|
|
4
4
|
import { GesdemHandlerService } from '../gesdem/gesdem-handler.service';
|
|
5
5
|
import { FoehnPageService } from '../foehn-page/foehn-page.service';
|
|
6
6
|
import { SupportAlertService } from '../sdk-support-alert/support-alert.service';
|
|
7
|
+
import { Observable } from 'rxjs';
|
|
8
|
+
import { GesdemEventService } from '../gesdem/gesdem-event.service';
|
|
9
|
+
import { ApplicationInfoService } from '../sdk-appinfo/application-info.service';
|
|
7
10
|
import * as i0 from "@angular/core";
|
|
8
11
|
export declare class GesdemErrorComponent implements OnInit {
|
|
9
12
|
private activatedRoute;
|
|
10
13
|
private navigation;
|
|
11
14
|
private gesdemService;
|
|
15
|
+
private gesdemEventService;
|
|
12
16
|
private foehnPageService;
|
|
13
17
|
private supportAlertService;
|
|
18
|
+
private applicationInfoService;
|
|
14
19
|
setPageTitle: boolean;
|
|
15
20
|
link: string;
|
|
16
21
|
reference: string;
|
|
22
|
+
supportLink: Observable<string>;
|
|
17
23
|
hasSessionExpired: boolean;
|
|
18
|
-
|
|
24
|
+
isPendingPayment: Observable<boolean>;
|
|
25
|
+
constructor(activatedRoute: ActivatedRoute, navigation: FoehnNavigationService, gesdemService: GesdemHandlerService, gesdemEventService: GesdemEventService, foehnPageService: FoehnPageService, supportAlertService: SupportAlertService, applicationInfoService: ApplicationInfoService);
|
|
19
26
|
ngOnInit(): void;
|
|
20
27
|
private getFirstPage;
|
|
21
28
|
private getBasePath;
|
|
@@ -4,8 +4,9 @@ import * as i2 from "@angular/common";
|
|
|
4
4
|
import * as i3 from "@angular/router";
|
|
5
5
|
import * as i4 from "../gesdem-action-recovery/gesdem-action-recovery.module";
|
|
6
6
|
import * as i5 from "../foehn-debug-summary/foehn-debug-summary.component.module";
|
|
7
|
+
import * as i6 from "../sdk-dictionary/sdk-dictionary.module";
|
|
7
8
|
export declare class GesdemErrorModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<GesdemErrorModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<GesdemErrorModule, [typeof i1.GesdemErrorComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.GesdemActionRecoveryModule, typeof i5.FoehnDebugSummaryComponentModule], [typeof i1.GesdemErrorComponent]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GesdemErrorModule, [typeof i1.GesdemErrorComponent], [typeof i2.CommonModule, typeof i3.RouterModule, typeof i4.GesdemActionRecoveryModule, typeof i5.FoehnDebugSummaryComponentModule, typeof i6.SdkDictionaryModule], [typeof i1.GesdemErrorComponent]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<GesdemErrorModule>;
|
|
11
12
|
}
|
package/package.json
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"ng-update": {
|
|
37
37
|
"migrations": "./schematics/migration-collection.json"
|
|
38
38
|
},
|
|
39
|
-
"version": "15.
|
|
39
|
+
"version": "15.2.0-beta1",
|
|
40
40
|
"module": "fesm2015/dsivd-prestations-ng.mjs",
|
|
41
41
|
"es2020": "fesm2020/dsivd-prestations-ng.mjs",
|
|
42
42
|
"esm2020": "esm2020/dsivd-prestations-ng.mjs",
|
|
@@ -18,7 +18,7 @@ export declare class ApplicationInfoService {
|
|
|
18
18
|
get firstEtapeInfo(): Observable<EtapeInfo>;
|
|
19
19
|
get currentEtapeInfo(): Observable<EtapeInfo>;
|
|
20
20
|
getSafeCyberLoginUrl(): Observable<string>;
|
|
21
|
-
getSafeSupportFormUrl(): Observable<string>;
|
|
21
|
+
getSafeSupportFormUrl(reference?: string): Observable<string>;
|
|
22
22
|
getSafeSupportFormTitle(): Observable<string>;
|
|
23
23
|
getSafeEspacesSecuriseUrl(): Observable<string>;
|
|
24
24
|
private setApplicationInfo;
|
|
Binary file
|