@idsoftsource/initial-process 1.5.2 → 1.5.5
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/index.d.ts
CHANGED
|
@@ -675,6 +675,8 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
675
675
|
private roleContextService;
|
|
676
676
|
private authLogoutService;
|
|
677
677
|
private libConfig;
|
|
678
|
+
signatureFileId: any;
|
|
679
|
+
signatureUrl: any;
|
|
678
680
|
isAgreeEnabled: boolean;
|
|
679
681
|
isneeded: boolean;
|
|
680
682
|
isLogoRequired: boolean;
|
|
@@ -819,6 +821,8 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
819
821
|
AddressChangeUser(address: any): void;
|
|
820
822
|
previous(): void;
|
|
821
823
|
next(page?: number): void;
|
|
824
|
+
handleSignatureAndMoveToNext(): Promise<void>;
|
|
825
|
+
saveSignatureAndIncrement(): Promise<boolean>;
|
|
822
826
|
private dataURLtoFile;
|
|
823
827
|
uploadFileBrowseHandler(): void;
|
|
824
828
|
saveAWSLogo(): Promise<false | undefined>;
|
|
@@ -1212,6 +1216,8 @@ declare class CredentialingComponent implements OnInit {
|
|
|
1212
1216
|
private libConfig;
|
|
1213
1217
|
private viewport;
|
|
1214
1218
|
animation: string | undefined;
|
|
1219
|
+
signatureFileId: any;
|
|
1220
|
+
signatureUrl: any;
|
|
1215
1221
|
cloudfrontUrl: any;
|
|
1216
1222
|
providerId: any;
|
|
1217
1223
|
providerName: any;
|
|
@@ -1224,7 +1230,7 @@ declare class CredentialingComponent implements OnInit {
|
|
|
1224
1230
|
goBackToInitialProcess(): void;
|
|
1225
1231
|
getstates(countryCode: any): void;
|
|
1226
1232
|
static ɵfac: i0.ɵɵFactoryDeclaration<CredentialingComponent, never>;
|
|
1227
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CredentialingComponent, "app-credentialing", never, { "data": { "alias": "data"; "required": false; }; }, { "back": "back"; }, never, never, false, never>;
|
|
1233
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CredentialingComponent, "app-credentialing", never, { "signatureFileId": { "alias": "signatureFileId"; "required": false; }; "signatureUrl": { "alias": "signatureUrl"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, { "back": "back"; }, never, never, false, never>;
|
|
1228
1234
|
}
|
|
1229
1235
|
|
|
1230
1236
|
declare class StepperComponent {
|
|
@@ -1930,6 +1936,8 @@ declare class ToolsComponent {
|
|
|
1930
1936
|
userToolsPreview: any[];
|
|
1931
1937
|
userDetails: any;
|
|
1932
1938
|
userdata: any;
|
|
1939
|
+
signatureUrl: any;
|
|
1940
|
+
signatureFileId: any;
|
|
1933
1941
|
constructor(toolService: ToolService, userToolService: UserToolService, formBuilder: UntypedFormBuilder, userService: UserService, utils: UtilsService, store: CredentialingStore, tokenService: TokenService, userDetailService: UserDetailService, libConfig: LibraryConfig);
|
|
1934
1942
|
ngOnInit(): Promise<void>;
|
|
1935
1943
|
private ctxProviderName;
|
|
@@ -1977,7 +1985,7 @@ declare class ToolsComponent {
|
|
|
1977
1985
|
goBack(): void;
|
|
1978
1986
|
saveFinal(): void;
|
|
1979
1987
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolsComponent, never>;
|
|
1980
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ToolsComponent, "app-tools", never, { "roleData": { "alias": "roleData"; "required": false; }; "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; }, {}, never, never, false, never>;
|
|
1988
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ToolsComponent, "app-tools", never, { "roleData": { "alias": "roleData"; "required": false; }; "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; "signatureUrl": { "alias": "signatureUrl"; "required": false; }; "signatureFileId": { "alias": "signatureFileId"; "required": false; }; }, {}, never, never, false, never>;
|
|
1981
1989
|
}
|
|
1982
1990
|
|
|
1983
1991
|
declare enum EmployeeDesignation {
|
|
@@ -2101,6 +2109,7 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2101
2109
|
list: any;
|
|
2102
2110
|
loadFromApi(userId: string): void;
|
|
2103
2111
|
getUserDetail(): void;
|
|
2112
|
+
getDetailsSave(): void;
|
|
2104
2113
|
onYearChange(group: any): void;
|
|
2105
2114
|
hasChanges(): boolean;
|
|
2106
2115
|
selectRole(role: string): void;
|
|
@@ -2419,6 +2428,7 @@ declare class PreviewComponent {
|
|
|
2419
2428
|
private tokenService;
|
|
2420
2429
|
private libConfig;
|
|
2421
2430
|
providerId: string;
|
|
2431
|
+
useremail: any;
|
|
2422
2432
|
providerName: string;
|
|
2423
2433
|
roleData: any;
|
|
2424
2434
|
backToParent: EventEmitter<void>;
|