@idsoftsource/initial-process 1.9.0 → 1.9.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/index.d.ts
CHANGED
|
@@ -565,6 +565,7 @@ declare class ProvidersService {
|
|
|
565
565
|
getContractors(query: any): Observable<GridResult<any>>;
|
|
566
566
|
getUserDetail(query: any): Observable<GridResult<UserDetailReadModel>>;
|
|
567
567
|
adminCreateProvider(model: any): Observable<Result>;
|
|
568
|
+
updateInitialSetUpProvider(model: any): Observable<Result>;
|
|
568
569
|
changeStatus(model: any): Observable<Result>;
|
|
569
570
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProvidersService, never>;
|
|
570
571
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProvidersService>;
|
|
@@ -2140,7 +2141,6 @@ declare class RoleSelectComponent implements OnInit {
|
|
|
2140
2141
|
private providerdetail;
|
|
2141
2142
|
private fb;
|
|
2142
2143
|
isLoaded: boolean;
|
|
2143
|
-
companyDetailsSaved: boolean;
|
|
2144
2144
|
previewUrl: string | null;
|
|
2145
2145
|
isImageLoading: boolean;
|
|
2146
2146
|
isresumeLoading: boolean;
|
|
@@ -3154,6 +3154,8 @@ declare class PreviewComponent {
|
|
|
3154
3154
|
resumeData: ResumeProfile | null;
|
|
3155
3155
|
statusList: any[];
|
|
3156
3156
|
isSavingCompany: boolean;
|
|
3157
|
+
isSavingProviderSetup: boolean;
|
|
3158
|
+
providerSetupError: string | null;
|
|
3157
3159
|
showPopup: boolean;
|
|
3158
3160
|
showBackConfirmPopup: boolean;
|
|
3159
3161
|
showDashboardConfirmPopup: boolean;
|
|
@@ -3235,6 +3237,8 @@ declare class PreviewComponent {
|
|
|
3235
3237
|
toolsSectionHasUnsavedItems(): boolean;
|
|
3236
3238
|
isAnyEditorOpen: i0.Signal<boolean>;
|
|
3237
3239
|
canConfirmAndContinue(): boolean;
|
|
3240
|
+
get isProviderSetupFormComplete(): boolean;
|
|
3241
|
+
saveProviderSetup(): Promise<void>;
|
|
3238
3242
|
expandedIndex: i0.WritableSignal<number>;
|
|
3239
3243
|
toggleJob(index: number): void;
|
|
3240
3244
|
private commitProfile;
|