@jobsearch-works/firestore-models 2.4.4 → 2.4.6
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/dist/index.d.mts +19 -2
- package/dist/index.d.ts +19 -2
- package/dist/index.js +212 -0
- package/dist/index.mjs +210 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
@@ -518,6 +518,15 @@ declare const locations: readonly [{
|
|
518
518
|
readonly tags: readonly ["major-city", "business-hub", "financial", "expat-friendly"];
|
519
519
|
}];
|
520
520
|
|
521
|
+
declare const countries: readonly ["Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Brazil", "Brunei", "Bulgaria", "Burkina Faso", "Burundi", "Cabo Verde", "Cambodia", "Cameroon", "Canada", "Central African Republic", "Chad", "Chile", "China", "Colombia", "Comoros", "Congo", "Costa Rica", "Croatia", "Cuba", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea", "Estonia", "Eswatini", "Ethiopia", "European Union", "Fiji", "Finland", "France", "Gabon", "Gambia", "Georgia", "Germany", "Ghana", "Greece", "Grenada", "Guatemala", "Guinea", "Guinea-Bissau", "Guyana", "Haiti", "Honduras", "Hungary", "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Kuwait", "Kyrgyzstan", "Laos", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Mauritania", "Mauritius", "Mexico", "Micronesia", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Mozambique", "Myanmar", "Namibia", "Nauru", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Niger", "Nigeria", "North Korea", "North Macedonia", "Norway", "Oman", "Pakistan", "Palau", "Palestine", "Panama", "Papua New Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Qatar", "Remote", "Romania", "Russia", "Rwanda", "Saint Kitts and Nevis", "Saint Lucia", "Saint Vincent and the Grenadines", "Samoa", "San Marino", "Sao Tome and Principe", "Saudi Arabia", "Senegal", "Serbia", "Seychelles", "Sierra Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "South Korea", "South Sudan", "Spain", "Sri Lanka", "Sudan", "Suriname", "Sweden", "Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Timor-Leste", "Togo", "Tonga", "Trinidad and Tobago", "Tunisia", "Turkey", "Turkmenistan", "Tuvalu", "UAE", "Uganda", "Ukraine", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Vanuatu", "Vatican City", "Venezuela", "Vietnam", "Yemen", "Zambia", "Zimbabwe"];
|
522
|
+
|
523
|
+
declare const ClientStatusEnum: {
|
524
|
+
readonly new: "new";
|
525
|
+
readonly onboarding: "onboarding";
|
526
|
+
readonly active: "active";
|
527
|
+
readonly inactive: "inactive";
|
528
|
+
};
|
529
|
+
|
521
530
|
type AgentStatus = "active" | "inactive";
|
522
531
|
interface Agent {
|
523
532
|
readonly id?: string;
|
@@ -684,6 +693,13 @@ interface ApplicationQuestion {
|
|
684
693
|
action?: string;
|
685
694
|
}
|
686
695
|
|
696
|
+
interface ClientCompanyPreferences {
|
697
|
+
companyId?: string;
|
698
|
+
name: string;
|
699
|
+
careersUrl: string;
|
700
|
+
location: string;
|
701
|
+
}
|
702
|
+
|
687
703
|
interface ClientLanguage {
|
688
704
|
readonly language: string;
|
689
705
|
readonly level: string;
|
@@ -776,7 +792,7 @@ interface ClientPersonalData {
|
|
776
792
|
updatedAt?: Date | string;
|
777
793
|
}
|
778
794
|
|
779
|
-
type ClientStatus =
|
795
|
+
type ClientStatus = typeof ClientStatusEnum[keyof typeof ClientStatusEnum];
|
780
796
|
/**
|
781
797
|
* Root Client document
|
782
798
|
* Path: clients/{clientId}
|
@@ -795,6 +811,7 @@ interface Client {
|
|
795
811
|
readonly skills?: ClientSkill[];
|
796
812
|
readonly certifications?: ClientCertifications;
|
797
813
|
readonly languages?: ClientLanguage[];
|
814
|
+
readonly clientCompanyPreferences?: ClientCompanyPreferences[];
|
798
815
|
readonly createdAt?: Date | string;
|
799
816
|
}
|
800
817
|
|
@@ -1039,4 +1056,4 @@ declare const firestorePaths: {
|
|
1039
1056
|
};
|
1040
1057
|
};
|
1041
1058
|
|
1042
|
-
export { Agent, AgentStatus, Application, ApplicationQuestion, ApplicationQuestionType, ApplicationQuestionTypeOptions, ApplicationStatus, AuthEmail, AuthUser, Client, ClientAccessToken, ClientCertifications, ClientEducation, ClientEmail, ClientGmailToken, ClientInitialQuestion, ClientJobPreferences, ClientLanguage, ClientLogin, ClientPersonalData, ClientQuestion, ClientResume, ClientSkill, ClientStatus, ClientVirtualInterview, ClientWebsitePreferences, ClientWorkExperience, Companies, EmailCategory, FirestoreTimestamp, JobCategory, JobTitle, LocationId, UserPublic, Vacancy, VacancyCategory, VacancySuggestion, firestorePaths, jobClassifications, locations };
|
1059
|
+
export { Agent, AgentStatus, Application, ApplicationQuestion, ApplicationQuestionType, ApplicationQuestionTypeOptions, ApplicationStatus, AuthEmail, AuthUser, Client, ClientAccessToken, ClientCertifications, ClientCompanyPreferences, ClientEducation, ClientEmail, ClientGmailToken, ClientInitialQuestion, ClientJobPreferences, ClientLanguage, ClientLogin, ClientPersonalData, ClientQuestion, ClientResume, ClientSkill, ClientStatus, ClientStatusEnum, ClientVirtualInterview, ClientWebsitePreferences, ClientWorkExperience, Companies, EmailCategory, FirestoreTimestamp, JobCategory, JobTitle, LocationId, UserPublic, Vacancy, VacancyCategory, VacancySuggestion, countries, firestorePaths, jobClassifications, locations };
|
package/dist/index.d.ts
CHANGED
@@ -518,6 +518,15 @@ declare const locations: readonly [{
|
|
518
518
|
readonly tags: readonly ["major-city", "business-hub", "financial", "expat-friendly"];
|
519
519
|
}];
|
520
520
|
|
521
|
+
declare const countries: readonly ["Afghanistan", "Albania", "Algeria", "Andorra", "Angola", "Antigua and Barbuda", "Argentina", "Armenia", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bhutan", "Bolivia", "Bosnia and Herzegovina", "Botswana", "Brazil", "Brunei", "Bulgaria", "Burkina Faso", "Burundi", "Cabo Verde", "Cambodia", "Cameroon", "Canada", "Central African Republic", "Chad", "Chile", "China", "Colombia", "Comoros", "Congo", "Costa Rica", "Croatia", "Cuba", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea", "Estonia", "Eswatini", "Ethiopia", "European Union", "Fiji", "Finland", "France", "Gabon", "Gambia", "Georgia", "Germany", "Ghana", "Greece", "Grenada", "Guatemala", "Guinea", "Guinea-Bissau", "Guyana", "Haiti", "Honduras", "Hungary", "Iceland", "India", "Indonesia", "Iran", "Iraq", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Kuwait", "Kyrgyzstan", "Laos", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libya", "Liechtenstein", "Lithuania", "Luxembourg", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Mauritania", "Mauritius", "Mexico", "Micronesia", "Moldova", "Monaco", "Mongolia", "Montenegro", "Morocco", "Mozambique", "Myanmar", "Namibia", "Nauru", "Nepal", "Netherlands", "New Zealand", "Nicaragua", "Niger", "Nigeria", "North Korea", "North Macedonia", "Norway", "Oman", "Pakistan", "Palau", "Palestine", "Panama", "Papua New Guinea", "Paraguay", "Peru", "Philippines", "Poland", "Portugal", "Qatar", "Remote", "Romania", "Russia", "Rwanda", "Saint Kitts and Nevis", "Saint Lucia", "Saint Vincent and the Grenadines", "Samoa", "San Marino", "Sao Tome and Principe", "Saudi Arabia", "Senegal", "Serbia", "Seychelles", "Sierra Leone", "Singapore", "Slovakia", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "South Korea", "South Sudan", "Spain", "Sri Lanka", "Sudan", "Suriname", "Sweden", "Switzerland", "Syria", "Taiwan", "Tajikistan", "Tanzania", "Thailand", "Timor-Leste", "Togo", "Tonga", "Trinidad and Tobago", "Tunisia", "Turkey", "Turkmenistan", "Tuvalu", "UAE", "Uganda", "Ukraine", "United Kingdom", "United States", "Uruguay", "Uzbekistan", "Vanuatu", "Vatican City", "Venezuela", "Vietnam", "Yemen", "Zambia", "Zimbabwe"];
|
522
|
+
|
523
|
+
declare const ClientStatusEnum: {
|
524
|
+
readonly new: "new";
|
525
|
+
readonly onboarding: "onboarding";
|
526
|
+
readonly active: "active";
|
527
|
+
readonly inactive: "inactive";
|
528
|
+
};
|
529
|
+
|
521
530
|
type AgentStatus = "active" | "inactive";
|
522
531
|
interface Agent {
|
523
532
|
readonly id?: string;
|
@@ -684,6 +693,13 @@ interface ApplicationQuestion {
|
|
684
693
|
action?: string;
|
685
694
|
}
|
686
695
|
|
696
|
+
interface ClientCompanyPreferences {
|
697
|
+
companyId?: string;
|
698
|
+
name: string;
|
699
|
+
careersUrl: string;
|
700
|
+
location: string;
|
701
|
+
}
|
702
|
+
|
687
703
|
interface ClientLanguage {
|
688
704
|
readonly language: string;
|
689
705
|
readonly level: string;
|
@@ -776,7 +792,7 @@ interface ClientPersonalData {
|
|
776
792
|
updatedAt?: Date | string;
|
777
793
|
}
|
778
794
|
|
779
|
-
type ClientStatus =
|
795
|
+
type ClientStatus = typeof ClientStatusEnum[keyof typeof ClientStatusEnum];
|
780
796
|
/**
|
781
797
|
* Root Client document
|
782
798
|
* Path: clients/{clientId}
|
@@ -795,6 +811,7 @@ interface Client {
|
|
795
811
|
readonly skills?: ClientSkill[];
|
796
812
|
readonly certifications?: ClientCertifications;
|
797
813
|
readonly languages?: ClientLanguage[];
|
814
|
+
readonly clientCompanyPreferences?: ClientCompanyPreferences[];
|
798
815
|
readonly createdAt?: Date | string;
|
799
816
|
}
|
800
817
|
|
@@ -1039,4 +1056,4 @@ declare const firestorePaths: {
|
|
1039
1056
|
};
|
1040
1057
|
};
|
1041
1058
|
|
1042
|
-
export { Agent, AgentStatus, Application, ApplicationQuestion, ApplicationQuestionType, ApplicationQuestionTypeOptions, ApplicationStatus, AuthEmail, AuthUser, Client, ClientAccessToken, ClientCertifications, ClientEducation, ClientEmail, ClientGmailToken, ClientInitialQuestion, ClientJobPreferences, ClientLanguage, ClientLogin, ClientPersonalData, ClientQuestion, ClientResume, ClientSkill, ClientStatus, ClientVirtualInterview, ClientWebsitePreferences, ClientWorkExperience, Companies, EmailCategory, FirestoreTimestamp, JobCategory, JobTitle, LocationId, UserPublic, Vacancy, VacancyCategory, VacancySuggestion, firestorePaths, jobClassifications, locations };
|
1059
|
+
export { Agent, AgentStatus, Application, ApplicationQuestion, ApplicationQuestionType, ApplicationQuestionTypeOptions, ApplicationStatus, AuthEmail, AuthUser, Client, ClientAccessToken, ClientCertifications, ClientCompanyPreferences, ClientEducation, ClientEmail, ClientGmailToken, ClientInitialQuestion, ClientJobPreferences, ClientLanguage, ClientLogin, ClientPersonalData, ClientQuestion, ClientResume, ClientSkill, ClientStatus, ClientStatusEnum, ClientVirtualInterview, ClientWebsitePreferences, ClientWorkExperience, Companies, EmailCategory, FirestoreTimestamp, JobCategory, JobTitle, LocationId, UserPublic, Vacancy, VacancyCategory, VacancySuggestion, countries, firestorePaths, jobClassifications, locations };
|
package/dist/index.js
CHANGED
@@ -22,7 +22,9 @@ var src_exports = {};
|
|
22
22
|
__export(src_exports, {
|
23
23
|
ApplicationQuestionTypeOptions: () => ApplicationQuestionTypeOptions,
|
24
24
|
ApplicationStatus: () => ApplicationStatus,
|
25
|
+
ClientStatusEnum: () => ClientStatusEnum,
|
25
26
|
VacancyCategory: () => VacancyCategory,
|
27
|
+
countries: () => countries,
|
26
28
|
firestorePaths: () => firestorePaths,
|
27
29
|
jobClassifications: () => jobClassification_default,
|
28
30
|
locations: () => locations
|
@@ -1010,6 +1012,214 @@ var locations = [
|
|
1010
1012
|
}
|
1011
1013
|
];
|
1012
1014
|
|
1015
|
+
// src/static/countries.ts
|
1016
|
+
var countries = [
|
1017
|
+
"Afghanistan",
|
1018
|
+
"Albania",
|
1019
|
+
"Algeria",
|
1020
|
+
"Andorra",
|
1021
|
+
"Angola",
|
1022
|
+
"Antigua and Barbuda",
|
1023
|
+
"Argentina",
|
1024
|
+
"Armenia",
|
1025
|
+
"Australia",
|
1026
|
+
"Austria",
|
1027
|
+
"Azerbaijan",
|
1028
|
+
"Bahamas",
|
1029
|
+
"Bahrain",
|
1030
|
+
"Bangladesh",
|
1031
|
+
"Barbados",
|
1032
|
+
"Belarus",
|
1033
|
+
"Belgium",
|
1034
|
+
"Belize",
|
1035
|
+
"Benin",
|
1036
|
+
"Bhutan",
|
1037
|
+
"Bolivia",
|
1038
|
+
"Bosnia and Herzegovina",
|
1039
|
+
"Botswana",
|
1040
|
+
"Brazil",
|
1041
|
+
"Brunei",
|
1042
|
+
"Bulgaria",
|
1043
|
+
"Burkina Faso",
|
1044
|
+
"Burundi",
|
1045
|
+
"Cabo Verde",
|
1046
|
+
"Cambodia",
|
1047
|
+
"Cameroon",
|
1048
|
+
"Canada",
|
1049
|
+
"Central African Republic",
|
1050
|
+
"Chad",
|
1051
|
+
"Chile",
|
1052
|
+
"China",
|
1053
|
+
"Colombia",
|
1054
|
+
"Comoros",
|
1055
|
+
"Congo",
|
1056
|
+
"Costa Rica",
|
1057
|
+
"Croatia",
|
1058
|
+
"Cuba",
|
1059
|
+
"Cyprus",
|
1060
|
+
"Czech Republic",
|
1061
|
+
"Denmark",
|
1062
|
+
"Djibouti",
|
1063
|
+
"Dominica",
|
1064
|
+
"Dominican Republic",
|
1065
|
+
"Ecuador",
|
1066
|
+
"Egypt",
|
1067
|
+
"El Salvador",
|
1068
|
+
"Equatorial Guinea",
|
1069
|
+
"Eritrea",
|
1070
|
+
"Estonia",
|
1071
|
+
"Eswatini",
|
1072
|
+
"Ethiopia",
|
1073
|
+
"European Union",
|
1074
|
+
"Fiji",
|
1075
|
+
"Finland",
|
1076
|
+
"France",
|
1077
|
+
"Gabon",
|
1078
|
+
"Gambia",
|
1079
|
+
"Georgia",
|
1080
|
+
"Germany",
|
1081
|
+
"Ghana",
|
1082
|
+
"Greece",
|
1083
|
+
"Grenada",
|
1084
|
+
"Guatemala",
|
1085
|
+
"Guinea",
|
1086
|
+
"Guinea-Bissau",
|
1087
|
+
"Guyana",
|
1088
|
+
"Haiti",
|
1089
|
+
"Honduras",
|
1090
|
+
"Hungary",
|
1091
|
+
"Iceland",
|
1092
|
+
"India",
|
1093
|
+
"Indonesia",
|
1094
|
+
"Iran",
|
1095
|
+
"Iraq",
|
1096
|
+
"Ireland",
|
1097
|
+
"Israel",
|
1098
|
+
"Italy",
|
1099
|
+
"Jamaica",
|
1100
|
+
"Japan",
|
1101
|
+
"Jordan",
|
1102
|
+
"Kazakhstan",
|
1103
|
+
"Kenya",
|
1104
|
+
"Kiribati",
|
1105
|
+
"Kuwait",
|
1106
|
+
"Kyrgyzstan",
|
1107
|
+
"Laos",
|
1108
|
+
"Latvia",
|
1109
|
+
"Lebanon",
|
1110
|
+
"Lesotho",
|
1111
|
+
"Liberia",
|
1112
|
+
"Libya",
|
1113
|
+
"Liechtenstein",
|
1114
|
+
"Lithuania",
|
1115
|
+
"Luxembourg",
|
1116
|
+
"Madagascar",
|
1117
|
+
"Malawi",
|
1118
|
+
"Malaysia",
|
1119
|
+
"Maldives",
|
1120
|
+
"Mali",
|
1121
|
+
"Malta",
|
1122
|
+
"Marshall Islands",
|
1123
|
+
"Mauritania",
|
1124
|
+
"Mauritius",
|
1125
|
+
"Mexico",
|
1126
|
+
"Micronesia",
|
1127
|
+
"Moldova",
|
1128
|
+
"Monaco",
|
1129
|
+
"Mongolia",
|
1130
|
+
"Montenegro",
|
1131
|
+
"Morocco",
|
1132
|
+
"Mozambique",
|
1133
|
+
"Myanmar",
|
1134
|
+
"Namibia",
|
1135
|
+
"Nauru",
|
1136
|
+
"Nepal",
|
1137
|
+
"Netherlands",
|
1138
|
+
"New Zealand",
|
1139
|
+
"Nicaragua",
|
1140
|
+
"Niger",
|
1141
|
+
"Nigeria",
|
1142
|
+
"North Korea",
|
1143
|
+
"North Macedonia",
|
1144
|
+
"Norway",
|
1145
|
+
"Oman",
|
1146
|
+
"Pakistan",
|
1147
|
+
"Palau",
|
1148
|
+
"Palestine",
|
1149
|
+
"Panama",
|
1150
|
+
"Papua New Guinea",
|
1151
|
+
"Paraguay",
|
1152
|
+
"Peru",
|
1153
|
+
"Philippines",
|
1154
|
+
"Poland",
|
1155
|
+
"Portugal",
|
1156
|
+
"Qatar",
|
1157
|
+
"Remote",
|
1158
|
+
"Romania",
|
1159
|
+
"Russia",
|
1160
|
+
"Rwanda",
|
1161
|
+
"Saint Kitts and Nevis",
|
1162
|
+
"Saint Lucia",
|
1163
|
+
"Saint Vincent and the Grenadines",
|
1164
|
+
"Samoa",
|
1165
|
+
"San Marino",
|
1166
|
+
"Sao Tome and Principe",
|
1167
|
+
"Saudi Arabia",
|
1168
|
+
"Senegal",
|
1169
|
+
"Serbia",
|
1170
|
+
"Seychelles",
|
1171
|
+
"Sierra Leone",
|
1172
|
+
"Singapore",
|
1173
|
+
"Slovakia",
|
1174
|
+
"Slovenia",
|
1175
|
+
"Solomon Islands",
|
1176
|
+
"Somalia",
|
1177
|
+
"South Africa",
|
1178
|
+
"South Korea",
|
1179
|
+
"South Sudan",
|
1180
|
+
"Spain",
|
1181
|
+
"Sri Lanka",
|
1182
|
+
"Sudan",
|
1183
|
+
"Suriname",
|
1184
|
+
"Sweden",
|
1185
|
+
"Switzerland",
|
1186
|
+
"Syria",
|
1187
|
+
"Taiwan",
|
1188
|
+
"Tajikistan",
|
1189
|
+
"Tanzania",
|
1190
|
+
"Thailand",
|
1191
|
+
"Timor-Leste",
|
1192
|
+
"Togo",
|
1193
|
+
"Tonga",
|
1194
|
+
"Trinidad and Tobago",
|
1195
|
+
"Tunisia",
|
1196
|
+
"Turkey",
|
1197
|
+
"Turkmenistan",
|
1198
|
+
"Tuvalu",
|
1199
|
+
"UAE",
|
1200
|
+
"Uganda",
|
1201
|
+
"Ukraine",
|
1202
|
+
"United Kingdom",
|
1203
|
+
"United States",
|
1204
|
+
"Uruguay",
|
1205
|
+
"Uzbekistan",
|
1206
|
+
"Vanuatu",
|
1207
|
+
"Vatican City",
|
1208
|
+
"Venezuela",
|
1209
|
+
"Vietnam",
|
1210
|
+
"Yemen",
|
1211
|
+
"Zambia",
|
1212
|
+
"Zimbabwe"
|
1213
|
+
];
|
1214
|
+
|
1215
|
+
// src/static/clientStatus.ts
|
1216
|
+
var ClientStatusEnum = {
|
1217
|
+
"new": "new",
|
1218
|
+
"onboarding": "onboarding",
|
1219
|
+
"active": "active",
|
1220
|
+
"inactive": "inactive"
|
1221
|
+
};
|
1222
|
+
|
1013
1223
|
// src/types/Vacancy.ts
|
1014
1224
|
var VacancyCategory = {
|
1015
1225
|
Accounting: "Accounting",
|
@@ -1143,7 +1353,9 @@ var firestorePaths = {
|
|
1143
1353
|
0 && (module.exports = {
|
1144
1354
|
ApplicationQuestionTypeOptions,
|
1145
1355
|
ApplicationStatus,
|
1356
|
+
ClientStatusEnum,
|
1146
1357
|
VacancyCategory,
|
1358
|
+
countries,
|
1147
1359
|
firestorePaths,
|
1148
1360
|
jobClassifications,
|
1149
1361
|
locations
|
package/dist/index.mjs
CHANGED
@@ -979,6 +979,214 @@ var locations = [
|
|
979
979
|
}
|
980
980
|
];
|
981
981
|
|
982
|
+
// src/static/countries.ts
|
983
|
+
var countries = [
|
984
|
+
"Afghanistan",
|
985
|
+
"Albania",
|
986
|
+
"Algeria",
|
987
|
+
"Andorra",
|
988
|
+
"Angola",
|
989
|
+
"Antigua and Barbuda",
|
990
|
+
"Argentina",
|
991
|
+
"Armenia",
|
992
|
+
"Australia",
|
993
|
+
"Austria",
|
994
|
+
"Azerbaijan",
|
995
|
+
"Bahamas",
|
996
|
+
"Bahrain",
|
997
|
+
"Bangladesh",
|
998
|
+
"Barbados",
|
999
|
+
"Belarus",
|
1000
|
+
"Belgium",
|
1001
|
+
"Belize",
|
1002
|
+
"Benin",
|
1003
|
+
"Bhutan",
|
1004
|
+
"Bolivia",
|
1005
|
+
"Bosnia and Herzegovina",
|
1006
|
+
"Botswana",
|
1007
|
+
"Brazil",
|
1008
|
+
"Brunei",
|
1009
|
+
"Bulgaria",
|
1010
|
+
"Burkina Faso",
|
1011
|
+
"Burundi",
|
1012
|
+
"Cabo Verde",
|
1013
|
+
"Cambodia",
|
1014
|
+
"Cameroon",
|
1015
|
+
"Canada",
|
1016
|
+
"Central African Republic",
|
1017
|
+
"Chad",
|
1018
|
+
"Chile",
|
1019
|
+
"China",
|
1020
|
+
"Colombia",
|
1021
|
+
"Comoros",
|
1022
|
+
"Congo",
|
1023
|
+
"Costa Rica",
|
1024
|
+
"Croatia",
|
1025
|
+
"Cuba",
|
1026
|
+
"Cyprus",
|
1027
|
+
"Czech Republic",
|
1028
|
+
"Denmark",
|
1029
|
+
"Djibouti",
|
1030
|
+
"Dominica",
|
1031
|
+
"Dominican Republic",
|
1032
|
+
"Ecuador",
|
1033
|
+
"Egypt",
|
1034
|
+
"El Salvador",
|
1035
|
+
"Equatorial Guinea",
|
1036
|
+
"Eritrea",
|
1037
|
+
"Estonia",
|
1038
|
+
"Eswatini",
|
1039
|
+
"Ethiopia",
|
1040
|
+
"European Union",
|
1041
|
+
"Fiji",
|
1042
|
+
"Finland",
|
1043
|
+
"France",
|
1044
|
+
"Gabon",
|
1045
|
+
"Gambia",
|
1046
|
+
"Georgia",
|
1047
|
+
"Germany",
|
1048
|
+
"Ghana",
|
1049
|
+
"Greece",
|
1050
|
+
"Grenada",
|
1051
|
+
"Guatemala",
|
1052
|
+
"Guinea",
|
1053
|
+
"Guinea-Bissau",
|
1054
|
+
"Guyana",
|
1055
|
+
"Haiti",
|
1056
|
+
"Honduras",
|
1057
|
+
"Hungary",
|
1058
|
+
"Iceland",
|
1059
|
+
"India",
|
1060
|
+
"Indonesia",
|
1061
|
+
"Iran",
|
1062
|
+
"Iraq",
|
1063
|
+
"Ireland",
|
1064
|
+
"Israel",
|
1065
|
+
"Italy",
|
1066
|
+
"Jamaica",
|
1067
|
+
"Japan",
|
1068
|
+
"Jordan",
|
1069
|
+
"Kazakhstan",
|
1070
|
+
"Kenya",
|
1071
|
+
"Kiribati",
|
1072
|
+
"Kuwait",
|
1073
|
+
"Kyrgyzstan",
|
1074
|
+
"Laos",
|
1075
|
+
"Latvia",
|
1076
|
+
"Lebanon",
|
1077
|
+
"Lesotho",
|
1078
|
+
"Liberia",
|
1079
|
+
"Libya",
|
1080
|
+
"Liechtenstein",
|
1081
|
+
"Lithuania",
|
1082
|
+
"Luxembourg",
|
1083
|
+
"Madagascar",
|
1084
|
+
"Malawi",
|
1085
|
+
"Malaysia",
|
1086
|
+
"Maldives",
|
1087
|
+
"Mali",
|
1088
|
+
"Malta",
|
1089
|
+
"Marshall Islands",
|
1090
|
+
"Mauritania",
|
1091
|
+
"Mauritius",
|
1092
|
+
"Mexico",
|
1093
|
+
"Micronesia",
|
1094
|
+
"Moldova",
|
1095
|
+
"Monaco",
|
1096
|
+
"Mongolia",
|
1097
|
+
"Montenegro",
|
1098
|
+
"Morocco",
|
1099
|
+
"Mozambique",
|
1100
|
+
"Myanmar",
|
1101
|
+
"Namibia",
|
1102
|
+
"Nauru",
|
1103
|
+
"Nepal",
|
1104
|
+
"Netherlands",
|
1105
|
+
"New Zealand",
|
1106
|
+
"Nicaragua",
|
1107
|
+
"Niger",
|
1108
|
+
"Nigeria",
|
1109
|
+
"North Korea",
|
1110
|
+
"North Macedonia",
|
1111
|
+
"Norway",
|
1112
|
+
"Oman",
|
1113
|
+
"Pakistan",
|
1114
|
+
"Palau",
|
1115
|
+
"Palestine",
|
1116
|
+
"Panama",
|
1117
|
+
"Papua New Guinea",
|
1118
|
+
"Paraguay",
|
1119
|
+
"Peru",
|
1120
|
+
"Philippines",
|
1121
|
+
"Poland",
|
1122
|
+
"Portugal",
|
1123
|
+
"Qatar",
|
1124
|
+
"Remote",
|
1125
|
+
"Romania",
|
1126
|
+
"Russia",
|
1127
|
+
"Rwanda",
|
1128
|
+
"Saint Kitts and Nevis",
|
1129
|
+
"Saint Lucia",
|
1130
|
+
"Saint Vincent and the Grenadines",
|
1131
|
+
"Samoa",
|
1132
|
+
"San Marino",
|
1133
|
+
"Sao Tome and Principe",
|
1134
|
+
"Saudi Arabia",
|
1135
|
+
"Senegal",
|
1136
|
+
"Serbia",
|
1137
|
+
"Seychelles",
|
1138
|
+
"Sierra Leone",
|
1139
|
+
"Singapore",
|
1140
|
+
"Slovakia",
|
1141
|
+
"Slovenia",
|
1142
|
+
"Solomon Islands",
|
1143
|
+
"Somalia",
|
1144
|
+
"South Africa",
|
1145
|
+
"South Korea",
|
1146
|
+
"South Sudan",
|
1147
|
+
"Spain",
|
1148
|
+
"Sri Lanka",
|
1149
|
+
"Sudan",
|
1150
|
+
"Suriname",
|
1151
|
+
"Sweden",
|
1152
|
+
"Switzerland",
|
1153
|
+
"Syria",
|
1154
|
+
"Taiwan",
|
1155
|
+
"Tajikistan",
|
1156
|
+
"Tanzania",
|
1157
|
+
"Thailand",
|
1158
|
+
"Timor-Leste",
|
1159
|
+
"Togo",
|
1160
|
+
"Tonga",
|
1161
|
+
"Trinidad and Tobago",
|
1162
|
+
"Tunisia",
|
1163
|
+
"Turkey",
|
1164
|
+
"Turkmenistan",
|
1165
|
+
"Tuvalu",
|
1166
|
+
"UAE",
|
1167
|
+
"Uganda",
|
1168
|
+
"Ukraine",
|
1169
|
+
"United Kingdom",
|
1170
|
+
"United States",
|
1171
|
+
"Uruguay",
|
1172
|
+
"Uzbekistan",
|
1173
|
+
"Vanuatu",
|
1174
|
+
"Vatican City",
|
1175
|
+
"Venezuela",
|
1176
|
+
"Vietnam",
|
1177
|
+
"Yemen",
|
1178
|
+
"Zambia",
|
1179
|
+
"Zimbabwe"
|
1180
|
+
];
|
1181
|
+
|
1182
|
+
// src/static/clientStatus.ts
|
1183
|
+
var ClientStatusEnum = {
|
1184
|
+
"new": "new",
|
1185
|
+
"onboarding": "onboarding",
|
1186
|
+
"active": "active",
|
1187
|
+
"inactive": "inactive"
|
1188
|
+
};
|
1189
|
+
|
982
1190
|
// src/types/Vacancy.ts
|
983
1191
|
var VacancyCategory = {
|
984
1192
|
Accounting: "Accounting",
|
@@ -1111,7 +1319,9 @@ var firestorePaths = {
|
|
1111
1319
|
export {
|
1112
1320
|
ApplicationQuestionTypeOptions,
|
1113
1321
|
ApplicationStatus,
|
1322
|
+
ClientStatusEnum,
|
1114
1323
|
VacancyCategory,
|
1324
|
+
countries,
|
1115
1325
|
firestorePaths,
|
1116
1326
|
jobClassification_default as jobClassifications,
|
1117
1327
|
locations
|
package/package.json
CHANGED