@idsoftsource/initial-process 2.8.7 → 2.9.0
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 {
|
|
@@ -3842,6 +3854,7 @@ declare class PreviewComponent {
|
|
|
3842
3854
|
signatureUrl: any;
|
|
3843
3855
|
headshotFileId: string | null;
|
|
3844
3856
|
headshotUrl: string | null;
|
|
3857
|
+
claimType: ClaimType;
|
|
3845
3858
|
};
|
|
3846
3859
|
};
|
|
3847
3860
|
mapBasicDetailsDashboard(data: any): {
|