@idsoftsource/initial-process 2.8.9 → 2.9.1
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
|
@@ -437,6 +437,17 @@ declare class FileService {
|
|
|
437
437
|
static ɵprov: i0.ɵɵInjectableDeclaration<FileService>;
|
|
438
438
|
}
|
|
439
439
|
|
|
440
|
+
declare enum ClaimType {
|
|
441
|
+
Unknown = 0,
|
|
442
|
+
EmailClaimLink = 1,
|
|
443
|
+
AdminCreated = 2,
|
|
444
|
+
SignUp = 3,
|
|
445
|
+
InvitationRegistration = 4,
|
|
446
|
+
ExistingAccount = 5,
|
|
447
|
+
DataMigration = 6,
|
|
448
|
+
Api = 7
|
|
449
|
+
}
|
|
450
|
+
|
|
440
451
|
interface UserDetailModel extends MasterModel {
|
|
441
452
|
userId?: string;
|
|
442
453
|
userBio?: string;
|
|
@@ -490,6 +501,7 @@ interface UserDetailModel extends MasterModel {
|
|
|
490
501
|
datePattern?: string;
|
|
491
502
|
dateTimePattern?: string;
|
|
492
503
|
timePattern?: string;
|
|
504
|
+
claimType?: ClaimType;
|
|
493
505
|
}
|
|
494
506
|
|
|
495
507
|
interface IBasicPoint {
|
|
@@ -2144,6 +2156,11 @@ declare class SkillsComponent {
|
|
|
2144
2156
|
form: UntypedFormGroup;
|
|
2145
2157
|
model: UserSkillSetModel | null;
|
|
2146
2158
|
userToolSubmitted: boolean;
|
|
2159
|
+
hoveredSkill: SkillSetModel | null;
|
|
2160
|
+
chipPopoverTop: number;
|
|
2161
|
+
chipPopoverLeft: number;
|
|
2162
|
+
onSkillChipEnter(event: MouseEvent, skill: SkillSetModel): void;
|
|
2163
|
+
onSkillChipLeave(): void;
|
|
2147
2164
|
errMsg: boolean;
|
|
2148
2165
|
userSkillsPreview: any[];
|
|
2149
2166
|
isEditMode: boolean;
|
|
@@ -3842,6 +3859,7 @@ declare class PreviewComponent {
|
|
|
3842
3859
|
signatureUrl: any;
|
|
3843
3860
|
headshotFileId: string | null;
|
|
3844
3861
|
headshotUrl: string | null;
|
|
3862
|
+
claimType: ClaimType;
|
|
3845
3863
|
};
|
|
3846
3864
|
};
|
|
3847
3865
|
mapBasicDetailsDashboard(data: any): {
|