@idsoftsource/initial-process 2.3.3 → 2.3.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
|
@@ -815,6 +815,7 @@ declare class InitialProcessComponent implements OnInit {
|
|
|
815
815
|
items: ContractorSubCategoryReadModel[];
|
|
816
816
|
}[];
|
|
817
817
|
contractorCategories: ContractorSubCategoryReadModel[];
|
|
818
|
+
isLoadingSubCategories: boolean;
|
|
818
819
|
appBrandingMap: Record<string, AppBranding>;
|
|
819
820
|
constructor(router: Router, userDetailService: UserDetailService, formBuilder: FormBuilder, fileService: FileService, providerService: ProvidersService, roleService: RolesService, modalService: BsModalService, contractorSubCategoryService: ProviderContractorSubCategoryService, providerContractorSubCategoryService: ProviderContractorSubCategoryService, authService: AuthService, tokenService: TokenService, roleContextService: RoleContextService, authLogoutService: AuthLogoutService, libConfig: LibraryConfig);
|
|
820
821
|
selectedContract: any;
|
|
@@ -1234,6 +1235,12 @@ declare class CredentialingStore {
|
|
|
1234
1235
|
notApplicable: i0.WritableSignal<boolean>;
|
|
1235
1236
|
selectedStates: i0.WritableSignal<string[]>;
|
|
1236
1237
|
isUploadSuccess: i0.WritableSignal<string | null>;
|
|
1238
|
+
uploadedResumeFile: i0.WritableSignal<{
|
|
1239
|
+
name: string;
|
|
1240
|
+
size: number;
|
|
1241
|
+
lastModified: number;
|
|
1242
|
+
} | null>;
|
|
1243
|
+
setUploadedResumeFile(file: File): void;
|
|
1237
1244
|
profileSignal: i0.WritableSignal<ResumeProfile | null>;
|
|
1238
1245
|
resumeSkillMeta: i0.WritableSignal<Record<number, ResumeSkillMeta>>;
|
|
1239
1246
|
resumeToolMeta: i0.WritableSignal<Record<number, ResumeToolMeta>>;
|