@idsoftsource/initial-process 3.4.6 → 3.4.8
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
|
@@ -2164,6 +2164,7 @@ declare class UserSkillSetService {
|
|
|
2164
2164
|
createUserSkillSet(models: UserSkillSetModel[]): Observable<any>;
|
|
2165
2165
|
updateUserSkillSet(model: UserSkillSetModel): Observable<any>;
|
|
2166
2166
|
bulkDelete(ids: string[]): Observable<Result>;
|
|
2167
|
+
deleteUserSkillSet(id: string): Observable<Result>;
|
|
2167
2168
|
getUserSkillSet(query: GridifyQuery): Observable<any>;
|
|
2168
2169
|
private generateParams;
|
|
2169
2170
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserSkillSetService, never>;
|
|
@@ -3840,14 +3841,14 @@ declare class PreviewComponent implements OnDestroy {
|
|
|
3840
3841
|
professions: i0.Signal<string[]>;
|
|
3841
3842
|
private refreshUserProfessionOptions;
|
|
3842
3843
|
showCustomProfessionForm: boolean;
|
|
3843
|
-
customProfessionContext: 'skill' | 'tool' | 'certificate' | null;
|
|
3844
|
+
customProfessionContext: 'skill' | 'tool' | 'certificate' | 'bulk-skill' | 'bulk-tool' | null;
|
|
3844
3845
|
customProfessionName: string;
|
|
3845
3846
|
customProfessionGroup: string | null;
|
|
3846
3847
|
customProfessionType: string | null;
|
|
3847
3848
|
customProfessionStars: number;
|
|
3848
3849
|
customProfessionYear: number | null;
|
|
3849
3850
|
isSavingCustomProfession: boolean;
|
|
3850
|
-
openCustomProfessionForm(context: 'skill' | 'tool' | 'certificate'): void;
|
|
3851
|
+
openCustomProfessionForm(context: 'skill' | 'tool' | 'certificate' | 'bulk-skill' | 'bulk-tool'): void;
|
|
3851
3852
|
setTempCustomProfessionStars(stars: number): void;
|
|
3852
3853
|
cancelCustomProfessionForm(): void;
|
|
3853
3854
|
get canSaveCustomProfession(): boolean;
|