@idsoftsource/initial-process 0.2.3 → 1.0.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
@@ -288,7 +288,7 @@ declare class UserDetailService {
288
288
  getUserAccounts(query: any): Observable<GridResult<UserAccountReadModel>>;
289
289
  resetPassword(model: any): Observable<Result>;
290
290
  private buildParams;
291
- getByUserId(userId: string, query: any): Observable<UserAccountReadModel>;
291
+ getByUserId(userId: string, query?: any): Observable<UserAccountReadModel>;
292
292
  static ɵfac: i0.ɵɵFactoryDeclaration<UserDetailService, never>;
293
293
  static ɵprov: i0.ɵɵInjectableDeclaration<UserDetailService>;
294
294
  }
@@ -390,6 +390,7 @@ declare class FileService {
390
390
  private baseUrl;
391
391
  constructor(httpClient: HttpClient, apiUrl?: string | undefined);
392
392
  uploadFile(file: File, deleteAndInsert?: boolean, fileId?: string, encrypted?: string): Observable<FileModel>;
393
+ DeleteFiles(deletedFiles: string): Observable<Boolean>;
393
394
  uploadFileTemplate(sourceId: FileSource, deleteAndInsert: boolean, file: File, fileId?: string): Observable<Result1<FileUploadResultModel>>;
394
395
  deleteFiles(deletedFiles: string): Observable<boolean>;
395
396
  download(id: string): Observable<{
@@ -672,12 +673,14 @@ declare class InitialProcessComponent implements OnInit {
672
673
  private roleContextService;
673
674
  private libConfig;
674
675
  isAgreeEnabled: boolean;
676
+ logo: any;
675
677
  private readonly uploadToAws;
676
678
  selectedRoleValue: string | null;
677
679
  selectedRole: any;
678
680
  isUserSelected: boolean;
679
681
  title: string;
680
682
  state: any;
683
+ logoName: any;
681
684
  branding: {
682
685
  logo: string;
683
686
  displayName: string;
@@ -811,6 +814,7 @@ declare class InitialProcessComponent implements OnInit {
811
814
  next(page?: number): void;
812
815
  private dataURLtoFile;
813
816
  uploadFileBrowseHandler(): void;
817
+ saveAWSLogo(): Promise<false | undefined>;
814
818
  saveAWSHeadShot(): Promise<void>;
815
819
  saveAWSSignature(): Promise<void>;
816
820
  saveSignature(): void;
@@ -841,6 +845,9 @@ declare class InitialProcessComponent implements OnInit {
841
845
  headshotUrl: any;
842
846
  userMobile: any;
843
847
  userEmailId: any;
848
+ logoId: any;
849
+ logoFileName: any;
850
+ logoUrl: any;
844
851
  };
845
852
  isProviderCall: boolean;
846
853
  isResponse: boolean;
@@ -1292,6 +1299,7 @@ declare class EducationComponent implements OnInit {
1292
1299
  declare class UserDocumentService {
1293
1300
  private httpClient;
1294
1301
  private readonly baseUrl;
1302
+ private readonly baseUrlUpdated;
1295
1303
  constructor(httpClient: HttpClient);
1296
1304
  createUserDocument(model: any): Observable<Result>;
1297
1305
  updateUserDocument(model: any): Observable<Result>;
@@ -1834,8 +1842,8 @@ declare class ProvidersService {
1834
1842
  }
1835
1843
 
1836
1844
  interface UserFormControls {
1837
- firstName: FormControl<string | null>;
1838
- lastName: FormControl<string | null>;
1845
+ firstName: FormControl<any | null>;
1846
+ lastName: FormControl<any | null>;
1839
1847
  email: FormControl<string | null>;
1840
1848
  address1: FormControl<string | null>;
1841
1849
  address2: FormControl<string | null>;
@@ -1853,6 +1861,7 @@ interface UserFormControls {
1853
1861
  }
1854
1862
  declare class RoleSelectComponent implements OnInit {
1855
1863
  store: CredentialingStore;
1864
+ userDocumentService: UserDocumentService;
1856
1865
  router: Router;
1857
1866
  private industrydata;
1858
1867
  private userDetailService;
@@ -1861,11 +1870,17 @@ declare class RoleSelectComponent implements OnInit {
1861
1870
  private tokenService;
1862
1871
  private fb;
1863
1872
  previewUrl: string | null;
1873
+ isImageLoading: boolean;
1874
+ isresumeLoading: boolean;
1875
+ isResumeRequired: boolean;
1876
+ model: any;
1864
1877
  isMappingCreated: boolean;
1865
1878
  initialSelectedJobValue: any;
1866
1879
  previousEmployeeType: EmployeeDesignation;
1867
1880
  selectedTab: any;
1881
+ resumeName: any;
1868
1882
  industries: any[];
1883
+ list: any[];
1869
1884
  selectedIndustries: any[];
1870
1885
  isIndustriesLoading: boolean;
1871
1886
  expYears: LookupItem[];
@@ -1890,7 +1905,6 @@ declare class RoleSelectComponent implements OnInit {
1890
1905
  };
1891
1906
  };
1892
1907
  userDetails: any;
1893
- selectedJobValue: number | null;
1894
1908
  roleForm: FormGroup;
1895
1909
  userForm: FormGroup<UserFormControls>;
1896
1910
  fileName: any;
@@ -1898,37 +1912,36 @@ declare class RoleSelectComponent implements OnInit {
1898
1912
  signaturePadData: {
1899
1913
  publicUrl: null;
1900
1914
  };
1901
- private initialJobValue;
1915
+ previewresumeUrl: string | null;
1902
1916
  useremail: any;
1917
+ awsFileUpdate: UpdateAwsFileModelModel[];
1903
1918
  selectedJobs: i0.WritableSignal<string[]>;
1904
1919
  selectedJobValues: number[];
1905
1920
  provider: ProviderModel;
1906
- constructor(store: CredentialingStore, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, provideruser: ProvidersService, tokenService: TokenService, fb: FormBuilder);
1921
+ constructor(store: CredentialingStore, userDocumentService: UserDocumentService, router: Router, industrydata: IndustryService, userDetailService: UserDetailService, fileService: FileService, provideruser: ProvidersService, tokenService: TokenService, fb: FormBuilder);
1907
1922
  cloudfrontUrl: string;
1908
1923
  providerId: string;
1909
1924
  providerName: string;
1910
1925
  ngOnInit(): Promise<void>;
1911
1926
  private mappingKey;
1912
1927
  getYears(): void;
1913
- getusermapping(): void;
1914
- prefillJob(employeeType: number): void;
1915
1928
  getIndustries(): void;
1916
1929
  saveUserIndustries(): void;
1917
1930
  setSelectedIndustries(ids: string[]): void;
1918
1931
  onBackClick(): void;
1932
+ loadFromApi(userId: string): void;
1919
1933
  getUserDetail(): void;
1920
1934
  onYearChange(group: any): void;
1921
1935
  hasChanges(): boolean;
1922
- toggleJob(job: any): void;
1923
- isSelected(job: any): boolean;
1924
1936
  selectRole(role: string): void;
1925
1937
  get u(): UserFormControls;
1926
1938
  uploadUserImage(event: any): void;
1939
+ selectFile(event: any): void;
1940
+ private saveAWSFile;
1941
+ saveResume(): void;
1927
1942
  uploadFileBrowseHandler(): void;
1928
- go(): void;
1929
1943
  saveAWSHeadShot(): Promise<void>;
1930
1944
  saveFinal(): void;
1931
- saveProviderUserMapping(): void;
1932
1945
  bindUserDetails(): UserDetailModel;
1933
1946
  formatDateTime(date: Date): {
1934
1947
  mmddyyyy: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "0.2.3",
3
+ "version": "1.0.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",