@dsivd/prestations-ng 17.8.0-beta.1 → 17.8.0-beta.2
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/UPGRADING_V17.md +7 -0
- package/dsivd-prestations-ng-17.8.0-beta.2.tgz +0 -0
- package/esm2022/gesdem/gesdem-error-handler.service.mjs +12 -9
- package/esm2022/gesdem/gesdem-handler.service.mjs +14 -12
- package/esm2022/gesdem/gesdem-loader.guard.mjs +2 -2
- package/esm2022/gesdem-action-recovery/gesdem-action-recovery-login/gesdem-action-recovery-login.component.mjs +8 -6
- package/esm2022/gesdem-action-recovery/gesdem-action-recovery-registration/gesdem-action-recovery-registration.component.mjs +2 -2
- package/fesm2022/dsivd-prestations-ng.mjs +33 -26
- package/fesm2022/dsivd-prestations-ng.mjs.map +1 -1
- package/gesdem/gesdem-error-handler.service.d.ts +1 -1
- package/gesdem/gesdem-handler.service.d.ts +3 -2
- package/gesdem-action-recovery/gesdem-action-recovery-login/gesdem-action-recovery-login.component.d.ts +3 -2
- package/package.json +1 -1
- package/dsivd-prestations-ng-17.8.0-beta.1.tgz +0 -0
|
@@ -13,7 +13,7 @@ export declare class GesdemErrorHandlerService {
|
|
|
13
13
|
private router;
|
|
14
14
|
private iamExpiredInterceptorService;
|
|
15
15
|
constructor(growlService: GrowlBrokerService, router: Router, iamExpiredInterceptorService: IamExpiredInterceptorService);
|
|
16
|
-
handleGesdemError(prefix: string, reference: string, response: HttpErrorResponse | any): Observable<never>;
|
|
16
|
+
handleGesdemError(prefix: string, reference: string, reCaptchaByPassUUID: string, response: HttpErrorResponse | any): Observable<never>;
|
|
17
17
|
navigateTo(url: string): void;
|
|
18
18
|
private onPdfGenerationError;
|
|
19
19
|
private onOtherError;
|
|
@@ -34,13 +34,14 @@ export declare class GesdemHandlerService {
|
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @param reference de la demande
|
|
37
|
+
* @param reCaptchaByPassUUID
|
|
37
38
|
* @param forceRefreshIfNew allows to force the cleaning if reference is null
|
|
38
39
|
* @param byPassEmitResponse boolean used to emit or not gesdem last response (default is false)
|
|
39
40
|
* @returns Observable
|
|
40
41
|
*/
|
|
41
|
-
require(reference?: string, forceRefreshIfNew?: boolean, byPassEmitResponse?: boolean): Observable<any>;
|
|
42
|
+
require(reference?: string, reCaptchaByPassUUID?: string, forceRefreshIfNew?: boolean, byPassEmitResponse?: boolean): Observable<any>;
|
|
42
43
|
transmit(): Observable<any>;
|
|
43
|
-
retrieve(reference: any, shouldDispatchErrors?: boolean): Observable<any>;
|
|
44
|
+
retrieve(reference: any, reCaptchaByPassUUID: string, shouldDispatchErrors?: boolean): Observable<any>;
|
|
44
45
|
retrieveActionStatut(reference: any): Observable<ActionStatut>;
|
|
45
46
|
validate(form: any): Observable<any>;
|
|
46
47
|
private postToUrl;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { Router } from '@angular/router';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { FoehnConfirmModalService } from '../../foehn-confirm-modal/foehn-confirm-modal.service';
|
|
4
4
|
import { FoehnFormComponent } from '../../foehn-form/foehn-form.component';
|
|
5
5
|
import { GrowlBrokerService } from '../../foehn-growl/growl-broker.service';
|
|
@@ -20,6 +20,7 @@ export declare class GesdemActionRecoveryLoginComponent implements OnInit {
|
|
|
20
20
|
private gesDemHandlerService;
|
|
21
21
|
private dictionaryService;
|
|
22
22
|
private router;
|
|
23
|
+
private route;
|
|
23
24
|
private eventsLoggerService;
|
|
24
25
|
reference: string;
|
|
25
26
|
redirectTarget: string;
|
|
@@ -29,7 +30,7 @@ export declare class GesdemActionRecoveryLoginComponent implements OnInit {
|
|
|
29
30
|
alreadyTransferred: boolean;
|
|
30
31
|
otpRecipient: string;
|
|
31
32
|
otp: string;
|
|
32
|
-
constructor(recoveryService: GesdemActionRecoveryService, growlService: GrowlBrokerService, confirmModalService: FoehnConfirmModalService, validationHandler: ValidationHandlerService, applicationInfoService: ApplicationInfoService, gesDemHandlerService: GesdemHandlerService, dictionaryService: SdkDictionaryService, router: Router, eventsLoggerService: SdkEventsLoggerService);
|
|
33
|
+
constructor(recoveryService: GesdemActionRecoveryService, growlService: GrowlBrokerService, confirmModalService: FoehnConfirmModalService, validationHandler: ValidationHandlerService, applicationInfoService: ApplicationInfoService, gesDemHandlerService: GesdemHandlerService, dictionaryService: SdkDictionaryService, router: Router, route: ActivatedRoute, eventsLoggerService: SdkEventsLoggerService);
|
|
33
34
|
ngOnInit(): void;
|
|
34
35
|
validateOtp(): void;
|
|
35
36
|
private startRecovery;
|
package/package.json
CHANGED
|
Binary file
|