@idsoftsource/initial-process 1.3.9 → 1.4.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
@@ -972,6 +972,101 @@ interface UserToolModel extends MasterModel {
972
972
  isOpen?: boolean;
973
973
  }
974
974
 
975
+ /**
976
+ * Represents the complete resume profile for a candidate.
977
+ */
978
+ interface ResumeProfile {
979
+ id: string;
980
+ basicDetails: BasicDetails;
981
+ workExperience: WorkExperience$1[];
982
+ education: Education$1[];
983
+ certifications: Certification$3[];
984
+ licenses: License$1[];
985
+ skills: string[];
986
+ tools: string[];
987
+ }
988
+ /**
989
+ * Personal and contact information including a professional summary.
990
+ */
991
+ interface BasicDetails {
992
+ firstName: string;
993
+ lastName: string;
994
+ email: string;
995
+ phone: string;
996
+ address: string;
997
+ city: string;
998
+ state: string;
999
+ zipCode: string;
1000
+ country: string;
1001
+ jobTitle: string;
1002
+ yearsOfExperience: number;
1003
+ summary: string;
1004
+ }
1005
+ /**
1006
+ * Details regarding professional work history.
1007
+ */
1008
+ interface WorkExperience$1 {
1009
+ company: string;
1010
+ jobTitle: string;
1011
+ country: string;
1012
+ state: string;
1013
+ city: string;
1014
+ startDate: string;
1015
+ endDate: string | null;
1016
+ isCurrent: boolean;
1017
+ responsibilities: string[];
1018
+ }
1019
+ /**
1020
+ * Educational background, including degrees, certificates, and specific courses.
1021
+ */
1022
+ interface Education$1 {
1023
+ degree: string;
1024
+ degreeType: 'Associate' | 'Certificate' | 'Course' | 'Bachelors' | 'Masters' | string;
1025
+ institution: string;
1026
+ country: string;
1027
+ state: string | null;
1028
+ city: string | null;
1029
+ startDate: string;
1030
+ endDate: string;
1031
+ achievements: string[];
1032
+ }
1033
+ /**
1034
+ * Professional certifications and credentials.
1035
+ */
1036
+ interface Certification$3 {
1037
+ name: string;
1038
+ issuingOrganization: string | null;
1039
+ state: string | null;
1040
+ issueDate: string | null;
1041
+ expiryDate: string | null;
1042
+ credentialId: string | null;
1043
+ }
1044
+ /**
1045
+ * Legal licenses, such as driver's or professional operating licenses.
1046
+ */
1047
+ interface License$1 {
1048
+ name: string;
1049
+ issuingAuthority: string | null;
1050
+ licenseNumber: string | null;
1051
+ state: string | null;
1052
+ issueDate: string | null;
1053
+ expiryDate: string | null;
1054
+ }
1055
+
1056
+ interface ResumeSkillMeta {
1057
+ providerName?: string;
1058
+ starRating?: number;
1059
+ year?: number | null;
1060
+ profileVisibility?: boolean;
1061
+ notes?: string;
1062
+ }
1063
+ interface ResumeToolMeta {
1064
+ providerName?: string;
1065
+ starRating?: number;
1066
+ year?: number | null;
1067
+ profileVisibility?: boolean;
1068
+ notes?: string;
1069
+ }
975
1070
  interface Certification$2 {
976
1071
  name: string;
977
1072
  type: string;
@@ -1004,7 +1099,7 @@ interface Tool {
1004
1099
  }
1005
1100
  declare class CredentialingStore {
1006
1101
  toolsList: i0.WritableSignal<Tool[]>;
1007
- uploadOption: i0.WritableSignal<"manual" | "upload" | null>;
1102
+ uploadOption: i0.WritableSignal<"upload" | "manual" | null>;
1008
1103
  certifications: i0.WritableSignal<Certification$2[]>;
1009
1104
  licenses: i0.WritableSignal<License[]>;
1010
1105
  stepView: i0.WritableSignal<"add" | "preview">;
@@ -1036,9 +1131,16 @@ declare class CredentialingStore {
1036
1131
  currentCoverage: i0.WritableSignal<boolean>;
1037
1132
  notApplicable: i0.WritableSignal<boolean>;
1038
1133
  selectedStates: i0.WritableSignal<string[]>;
1134
+ isUploadSuccess: i0.WritableSignal<string | null>;
1135
+ profileSignal: i0.WritableSignal<ResumeProfile | null>;
1136
+ resumeSkillMeta: i0.WritableSignal<Record<number, ResumeSkillMeta>>;
1137
+ resumeToolMeta: i0.WritableSignal<Record<number, ResumeToolMeta>>;
1138
+ profile: ResumeProfile | null;
1039
1139
  selectInitial(value: string): void;
1040
1140
  setUploadOption(option: 'upload' | 'manual'): void;
1041
1141
  addRole(role: string): void;
1142
+ setResumeSkillMeta(index: number, meta: ResumeSkillMeta): void;
1143
+ setResumeToolMeta(index: number, meta: ResumeToolMeta): void;
1042
1144
  removeRole(role: string): void;
1043
1145
  setRole(role: string): void;
1044
1146
  setEducation(data: any): void;
@@ -1058,6 +1160,8 @@ declare class CredentialingStore {
1058
1160
  nextStep(): void;
1059
1161
  previousStep(): void;
1060
1162
  updateToolDetails(toolName: string, data: Partial<Tool>): void;
1163
+ addSuccess(value: any): void;
1164
+ setProfile(data: ResumeProfile): void;
1061
1165
  static ɵfac: i0.ɵɵFactoryDeclaration<CredentialingStore, never>;
1062
1166
  static ɵprov: i0.ɵɵInjectableDeclaration<CredentialingStore>;
1063
1167
  }
@@ -2018,6 +2122,7 @@ declare class RoleSelectComponent implements OnInit {
2018
2122
  removeRole(role: string): void;
2019
2123
  phoneMask(event: Event): void;
2020
2124
  AddressChangeUser(address: any): void;
2125
+ back(): void;
2021
2126
  static ɵfac: i0.ɵɵFactoryDeclaration<RoleSelectComponent, never>;
2022
2127
  static ɵcmp: i0.ɵɵComponentDeclaration<RoleSelectComponent, "app-role-select", never, { "roleData": { "alias": "roleData"; "required": false; }; "cloudfrontUrl": { "alias": "cloudfrontUrl"; "required": false; }; "providerId": { "alias": "providerId"; "required": false; }; "providerName": { "alias": "providerName"; "required": false; }; }, { "backToParent": "backToParent"; }, never, never, false, never>;
2023
2128
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@idsoftsource/initial-process",
3
- "version": "1.3.9",
3
+ "version": "1.4.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",