@jobsearch-works/firestore-models 1.1.15 → 2.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/README.md +162 -449
- package/dist/index.d.mts +695 -124
- package/dist/index.d.ts +695 -124
- package/dist/index.js +1023 -45
- package/dist/index.mjs +1020 -43
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -22,9 +22,10 @@ var src_exports = {};
|
|
22
22
|
__export(src_exports, {
|
23
23
|
ApplicationQuestionTypeOptions: () => ApplicationQuestionTypeOptions,
|
24
24
|
ApplicationStatus: () => ApplicationStatus,
|
25
|
-
ClientQuestionTypeOptions: () => ClientQuestionTypeOptions,
|
26
25
|
VacancyCategory: () => VacancyCategory,
|
27
|
-
firestorePaths: () => firestorePaths
|
26
|
+
firestorePaths: () => firestorePaths,
|
27
|
+
jobClassifications: () => jobClassification_default,
|
28
|
+
locations: () => locations
|
28
29
|
});
|
29
30
|
module.exports = __toCommonJS(src_exports);
|
30
31
|
|
@@ -41,6 +42,9 @@ var ApplicationStatus = {
|
|
41
42
|
Approved: "approved"
|
42
43
|
};
|
43
44
|
|
45
|
+
// src/types/ApplicationQuestion.ts
|
46
|
+
var ApplicationQuestionTypeOptions = ["text", "select"];
|
47
|
+
|
44
48
|
// src/types/Vacancy.ts
|
45
49
|
var VacancyCategory = {
|
46
50
|
Accounting: "Accounting",
|
@@ -75,46 +79,46 @@ var VacancyCategory = {
|
|
75
79
|
TradesAndServices: "Trades & Services"
|
76
80
|
};
|
77
81
|
|
78
|
-
// src/types/ClientQuestion.ts
|
79
|
-
var ClientQuestionTypeOptions = [
|
80
|
-
"text",
|
81
|
-
"select"
|
82
|
-
];
|
83
|
-
|
84
|
-
// src/types/ApplicationQuestion.ts
|
85
|
-
var ApplicationQuestionTypeOptions = ["text", "select"];
|
86
|
-
|
87
82
|
// src/paths/firestorePaths.ts
|
88
83
|
var firestorePaths = {
|
89
84
|
clients: {
|
90
85
|
collection: () => "clients",
|
91
|
-
doc: (
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
collection: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}/questions`,
|
97
|
-
doc: (clientId, applicationId, questionId) => `clients/${clientId}/applications/${applicationId}/questions/${questionId}`
|
98
|
-
}
|
99
|
-
},
|
86
|
+
doc: (id) => `clients/${id}`,
|
87
|
+
personalData: (id) => `clients/${id}/personalData`,
|
88
|
+
jobPreferences: (id) => `clients/${id}/jobPreferences`,
|
89
|
+
websitePreferences: (id) => `clients/${id}/websitePreferences`,
|
90
|
+
gmailTokens: (id) => `clients/${id}/gmailTokens`,
|
100
91
|
emails: {
|
101
92
|
collection: (clientId) => `clients/${clientId}/emails`,
|
102
|
-
doc: (clientId,
|
93
|
+
doc: (clientId, emailId) => `clients/${clientId}/emails/${emailId}`
|
94
|
+
},
|
95
|
+
questions: {
|
96
|
+
collection: (clientId) => `clients/${clientId}/questions`,
|
97
|
+
doc: (clientId, questionId) => `clients/${clientId}/questions/${questionId}`
|
98
|
+
},
|
99
|
+
initialQuestions: {
|
100
|
+
collection: (clientId) => `clients/${clientId}/initialQuestions`,
|
101
|
+
doc: (clientId, questionId) => `clients/${clientId}/initialQuestions/${questionId}`
|
103
102
|
},
|
104
103
|
logins: {
|
105
104
|
collection: (clientId) => `clients/${clientId}/logins`,
|
106
|
-
doc: (clientId,
|
105
|
+
doc: (clientId, loginId) => `clients/${clientId}/logins/${loginId}`
|
107
106
|
},
|
108
|
-
|
109
|
-
|
107
|
+
resumes: {
|
108
|
+
collection: (clientId) => `clients/${clientId}/resumes`,
|
109
|
+
doc: (clientId, resumeId) => `clients/${clientId}/resumes/${resumeId}`
|
110
110
|
},
|
111
|
-
|
112
|
-
collection: (clientId) => `clients/${clientId}/
|
113
|
-
doc: (clientId,
|
111
|
+
applications: {
|
112
|
+
collection: (clientId) => `clients/${clientId}/applications`,
|
113
|
+
doc: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}`,
|
114
|
+
questions: {
|
115
|
+
collection: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}/questions`,
|
116
|
+
doc: (clientId, applicationId, questionId) => `clients/${clientId}/applications/${applicationId}/questions/${questionId}`
|
117
|
+
}
|
114
118
|
},
|
115
|
-
|
116
|
-
collection: (clientId) => `clients/${clientId}/
|
117
|
-
doc: (clientId,
|
119
|
+
interviews: {
|
120
|
+
collection: (clientId) => `clients/${clientId}/interviews`,
|
121
|
+
doc: (clientId, interviewId) => `clients/${clientId}/interviews/${interviewId}`
|
118
122
|
},
|
119
123
|
vacancySuggestions: {
|
120
124
|
collection: (clientId) => `clients/${clientId}/vacancySuggestions`,
|
@@ -123,34 +127,1008 @@ var firestorePaths = {
|
|
123
127
|
},
|
124
128
|
users: {
|
125
129
|
collection: () => "users",
|
126
|
-
doc: (
|
130
|
+
doc: (id) => `users/${id}`
|
131
|
+
},
|
132
|
+
usersPub: {
|
133
|
+
collection: () => "usersPub",
|
134
|
+
doc: (id) => `usersPub/${id}`
|
127
135
|
},
|
128
136
|
vacancies: {
|
129
137
|
collection: () => "vacancies",
|
130
|
-
doc: (
|
138
|
+
doc: (id) => `vacancies/${id}`
|
131
139
|
},
|
132
140
|
agents: {
|
133
141
|
collection: () => "agents",
|
134
|
-
doc: (
|
142
|
+
doc: (id) => `agents/${id}`
|
143
|
+
}
|
144
|
+
};
|
145
|
+
|
146
|
+
// src/static/jobClassification.ts
|
147
|
+
var jobClassifications = {
|
148
|
+
Accounting: [
|
149
|
+
"Accounts Officers/Clerks",
|
150
|
+
"Analysis & Reporting",
|
151
|
+
"Assistant Accountants",
|
152
|
+
"Audit - External",
|
153
|
+
"Audit - Internal",
|
154
|
+
"Bookkeeping & Small Practice Accounting",
|
155
|
+
"Business Services & Corporate Advisory",
|
156
|
+
"Company Secretaries",
|
157
|
+
"Cost Accounting",
|
158
|
+
"Financial Accounting & Reporting",
|
159
|
+
"Financial Managers & Controllers",
|
160
|
+
"Forensic Accounting & Investigation",
|
161
|
+
"Insolvency & Corporate Recovery",
|
162
|
+
"Management Accounting & Budgeting",
|
163
|
+
"Payroll",
|
164
|
+
"Strategy & Planning",
|
165
|
+
"Systems Accounting",
|
166
|
+
"Taxation",
|
167
|
+
"Other"
|
168
|
+
],
|
169
|
+
"Administration & Office Support": [
|
170
|
+
"Administrative Assistants",
|
171
|
+
"Client & Sales Administration",
|
172
|
+
"Contracts Administration",
|
173
|
+
"Data Entry & Word Processing",
|
174
|
+
"Office Management",
|
175
|
+
"PA, EA & Secretarial",
|
176
|
+
"Receptionists",
|
177
|
+
"Records Management & Document Control",
|
178
|
+
"Other"
|
179
|
+
],
|
180
|
+
"Advertising, Arts & Media": [
|
181
|
+
"Agency Account Management",
|
182
|
+
"Art Direction",
|
183
|
+
"Copywriting",
|
184
|
+
"Editing & Publishing",
|
185
|
+
"Event Management",
|
186
|
+
"Journalism & Writing",
|
187
|
+
"Media Buying, Planning & Strategy",
|
188
|
+
"Photography",
|
189
|
+
"Programming & Production",
|
190
|
+
"Promotions",
|
191
|
+
"Sales & Account Management",
|
192
|
+
"Other"
|
193
|
+
],
|
194
|
+
"Banking & Financial Services": [
|
195
|
+
"Analysis & Reporting",
|
196
|
+
"Banking - Business",
|
197
|
+
"Banking - Corporate & Institutional",
|
198
|
+
"Banking - Retail/Branch",
|
199
|
+
"Client Services",
|
200
|
+
"Compliance & Risk",
|
201
|
+
"Corporate Finance & Investment Banking",
|
202
|
+
"Financial Planning",
|
203
|
+
"Funds Management",
|
204
|
+
"Investments",
|
205
|
+
"Mortgages",
|
206
|
+
"Settlements",
|
207
|
+
"Stockbroking & Trading",
|
208
|
+
"Treasury",
|
209
|
+
"Other"
|
210
|
+
],
|
211
|
+
"Call Centre & Customer Service": [
|
212
|
+
"Customer Service - Call Centre",
|
213
|
+
"Customer Service - Customer Facing",
|
214
|
+
"Customer Service - Manager",
|
215
|
+
"Customer Service - Supervisor",
|
216
|
+
"Customer Service - Team Leader",
|
217
|
+
"Other"
|
218
|
+
],
|
219
|
+
"Community Services & Development": [
|
220
|
+
"Aged & Disability Support",
|
221
|
+
"Child Welfare, Youth & Family Services",
|
222
|
+
"Community Development",
|
223
|
+
"Employment Services",
|
224
|
+
"Housing & Homelessness Services",
|
225
|
+
"Indigenous & Multicultural Services",
|
226
|
+
"Management",
|
227
|
+
"Volunteer Coordination & Support",
|
228
|
+
"Other"
|
229
|
+
],
|
230
|
+
Construction: [
|
231
|
+
"Contracts Management",
|
232
|
+
"Estimating",
|
233
|
+
"Foreperson/Supervisors",
|
234
|
+
"Health & Safety",
|
235
|
+
"Project Management",
|
236
|
+
"Site Management",
|
237
|
+
"Surveying",
|
238
|
+
"Other"
|
239
|
+
],
|
240
|
+
"Consulting & Strategy": [
|
241
|
+
"Corporate Development",
|
242
|
+
"Management & Change Consulting",
|
243
|
+
"Policy & Planning",
|
244
|
+
"Strategy & Planning",
|
245
|
+
"Other"
|
246
|
+
],
|
247
|
+
"Design & Architecture": [
|
248
|
+
"Architecture",
|
249
|
+
"Fashion & Textile Design",
|
250
|
+
"Graphic Design",
|
251
|
+
"Illustration & Animation",
|
252
|
+
"Industrial Design",
|
253
|
+
"Interior Design",
|
254
|
+
"Landscape Architecture",
|
255
|
+
"Urban Design & Planning",
|
256
|
+
"Other"
|
257
|
+
],
|
258
|
+
"Education & Training": [
|
259
|
+
"Childcare & Outside School Hours Care",
|
260
|
+
"Library Services & Information Management",
|
261
|
+
"Management - Schools",
|
262
|
+
"Management - Universities",
|
263
|
+
"Management - Vocational",
|
264
|
+
"Research & Fellowships",
|
265
|
+
"Student Services",
|
266
|
+
"Teaching - Early Childhood",
|
267
|
+
"Teaching - Primary",
|
268
|
+
"Teaching - Secondary",
|
269
|
+
"Teaching - Tertiary",
|
270
|
+
"Teaching - Vocational",
|
271
|
+
"Teaching Aides & Special Needs",
|
272
|
+
"Tutoring",
|
273
|
+
"Workplace Training & Assessment",
|
274
|
+
"Other"
|
275
|
+
],
|
276
|
+
Engineering: [
|
277
|
+
"Aerospace Engineering",
|
278
|
+
"Automotive Engineering",
|
279
|
+
"Chemical Engineering",
|
280
|
+
"Civil/Structural Engineering",
|
281
|
+
"Electrical/Electronic Engineering",
|
282
|
+
"Engineering Drafting",
|
283
|
+
"Environmental Engineering",
|
284
|
+
"Field Engineering",
|
285
|
+
"Industrial Engineering",
|
286
|
+
"Maintenance",
|
287
|
+
"Mechanical Engineering",
|
288
|
+
"Mining - Engineering & Maintenance",
|
289
|
+
"Project Engineering",
|
290
|
+
"Systems Engineering",
|
291
|
+
"Other"
|
292
|
+
],
|
293
|
+
"Farming, Animals & Conservation": [
|
294
|
+
"Agronomy & Farm Services",
|
295
|
+
"Animal Welfare",
|
296
|
+
"Conservation, Parks & Wildlife",
|
297
|
+
"Farm Labour",
|
298
|
+
"Fishing & Aquaculture",
|
299
|
+
"Forestry & Logging",
|
300
|
+
"Horticulture",
|
301
|
+
"Veterinary Services & Animal Welfare",
|
302
|
+
"Other"
|
303
|
+
],
|
304
|
+
"Government & Defence": [
|
305
|
+
"Air Force",
|
306
|
+
"Army",
|
307
|
+
"Emergency Services",
|
308
|
+
"Federal Government",
|
309
|
+
"Government - Local",
|
310
|
+
"Government - State",
|
311
|
+
"Navy",
|
312
|
+
"Police & Corrections",
|
313
|
+
"Policy, Planning & Regulation",
|
314
|
+
"Security & Intelligence",
|
315
|
+
"Other"
|
316
|
+
],
|
317
|
+
"Healthcare & Medical": [
|
318
|
+
"Aged Care Nursing",
|
319
|
+
"Ambulance/Paramedics",
|
320
|
+
"Chiropractic & Osteopathic",
|
321
|
+
"Dental",
|
322
|
+
"General Practitioners",
|
323
|
+
"Medical Imaging",
|
324
|
+
"Nursing - Aged Care",
|
325
|
+
"Nursing - General Medical & Surgical",
|
326
|
+
"Nursing - High Acuity",
|
327
|
+
"Nursing - Management",
|
328
|
+
"Nursing - Midwifery, Neo-Natal, SCN & NICU",
|
329
|
+
"Nursing - Paediatric",
|
330
|
+
"Nursing - Psych, Forensic & Correctional Health",
|
331
|
+
"Nursing - Theatre & Recovery",
|
332
|
+
"Nursing - Other",
|
333
|
+
"Pharmacy",
|
334
|
+
"Physiotherapy, OT & Rehabilitation",
|
335
|
+
"Psychology, Counselling & Social Work",
|
336
|
+
"Speech Therapy",
|
337
|
+
"Other"
|
338
|
+
],
|
339
|
+
"Hospitality & Tourism": [
|
340
|
+
"Bar & Beverage Staff",
|
341
|
+
"Chefs/Cooks",
|
342
|
+
"Front Office & Guest Services",
|
343
|
+
"Gaming",
|
344
|
+
"Housekeeping",
|
345
|
+
"Kitchen & Sandwich Hands",
|
346
|
+
"Management",
|
347
|
+
"Reservations",
|
348
|
+
"Tour Guides",
|
349
|
+
"Travel Agents/Consultants",
|
350
|
+
"Waiting Staff",
|
351
|
+
"Other"
|
352
|
+
],
|
353
|
+
"Human Resources & Recruitment": [
|
354
|
+
"Consulting & Generalist HR",
|
355
|
+
"Industrial & Employee Relations",
|
356
|
+
"Management - Agency",
|
357
|
+
"Management - Internal",
|
358
|
+
"Occupational Health & Safety",
|
359
|
+
"Organisational Development",
|
360
|
+
"Recruitment - Agency",
|
361
|
+
"Recruitment - Internal",
|
362
|
+
"Remuneration & Benefits",
|
363
|
+
"Training & Development",
|
364
|
+
"Other"
|
365
|
+
],
|
366
|
+
"Information & Communication Technology": [
|
367
|
+
"Architects",
|
368
|
+
"Business/Systems Analysts",
|
369
|
+
"Consultants",
|
370
|
+
"Database Development & Administration",
|
371
|
+
"Developers/Programmers",
|
372
|
+
"Engineering - Hardware",
|
373
|
+
"Engineering - Network",
|
374
|
+
"Help Desk & IT Support",
|
375
|
+
"Management",
|
376
|
+
"Networks & Systems Administration",
|
377
|
+
"Product Management & Development",
|
378
|
+
"Project Management",
|
379
|
+
"Security",
|
380
|
+
"Software Engineering",
|
381
|
+
"Team Leaders",
|
382
|
+
"Technical Writers",
|
383
|
+
"Testing & Quality Assurance",
|
384
|
+
"Web Development & Production",
|
385
|
+
"Other"
|
386
|
+
],
|
387
|
+
"Insurance & Superannuation": [
|
388
|
+
"Actuarial",
|
389
|
+
"Brokerage",
|
390
|
+
"Claims",
|
391
|
+
"Fund Administration",
|
392
|
+
"Investments",
|
393
|
+
"Risk Consulting",
|
394
|
+
"Superannuation",
|
395
|
+
"Underwriting",
|
396
|
+
"Other"
|
397
|
+
],
|
398
|
+
Legal: [
|
399
|
+
"Generalists - In-house",
|
400
|
+
"Generalists - Private Practice",
|
401
|
+
"Law Clerks & Paralegals",
|
402
|
+
"Legal Secretaries",
|
403
|
+
"Litigation & Dispute Resolution",
|
404
|
+
"Other"
|
405
|
+
],
|
406
|
+
"Manufacturing, Transport & Logistics": [
|
407
|
+
"Assembly & Process Work",
|
408
|
+
"Couriers, Drivers & Postal Services",
|
409
|
+
"Fleet Management",
|
410
|
+
"Import/Export & Customs",
|
411
|
+
"Machine Operators",
|
412
|
+
"Maintenance",
|
413
|
+
"Pickers & Packers",
|
414
|
+
"Plant & Machinery Operators",
|
415
|
+
"Production, Planning & Scheduling",
|
416
|
+
"Purchasing, Procurement & Inventory",
|
417
|
+
"Rail & Maritime Transport",
|
418
|
+
"Road Transport",
|
419
|
+
"Warehousing, Storage & Distribution",
|
420
|
+
"Other"
|
421
|
+
],
|
422
|
+
"Marketing & Communications": [
|
423
|
+
"Brand Management",
|
424
|
+
"Digital & Search Marketing",
|
425
|
+
"Event Management",
|
426
|
+
"Internal Communications",
|
427
|
+
"Market Research & Analysis",
|
428
|
+
"Marketing Assistants/Coordinators",
|
429
|
+
"Marketing Communications",
|
430
|
+
"Marketing Management",
|
431
|
+
"Product Management & Development",
|
432
|
+
"Public Relations & Corporate Affairs",
|
433
|
+
"Other"
|
434
|
+
],
|
435
|
+
"Mining, Resources & Energy": [
|
436
|
+
"Analysis & Reporting",
|
437
|
+
"Engineering",
|
438
|
+
"Health, Safety & Environment",
|
439
|
+
"Maintenance",
|
440
|
+
"Management",
|
441
|
+
"Mining - Operations",
|
442
|
+
"Oil & Gas - Engineering & Maintenance",
|
443
|
+
"Oil & Gas - Operations",
|
444
|
+
"Power Generation & Distribution",
|
445
|
+
"Surveying",
|
446
|
+
"Other"
|
447
|
+
],
|
448
|
+
"Real Estate & Property": [
|
449
|
+
"Analysts",
|
450
|
+
"Body Corporate & Facilities Management",
|
451
|
+
"Commercial Sales, Leasing & Property Mgmt",
|
452
|
+
"Residential Leasing & Property Management",
|
453
|
+
"Residential Sales",
|
454
|
+
"Retail & Property Development",
|
455
|
+
"Valuation",
|
456
|
+
"Other"
|
457
|
+
],
|
458
|
+
"Retail & Consumer Products": [
|
459
|
+
"Buying",
|
460
|
+
"Management - Department/Assistant",
|
461
|
+
"Management - Store",
|
462
|
+
"Merchandisers",
|
463
|
+
"Retail Assistants",
|
464
|
+
"Sales Representatives/Consultants",
|
465
|
+
"Supervisors/Team Leaders",
|
466
|
+
"Other"
|
467
|
+
],
|
468
|
+
Sales: [
|
469
|
+
"Account & Relationship Management",
|
470
|
+
"Business Development",
|
471
|
+
"Direct Sales",
|
472
|
+
"Sales Coordinators",
|
473
|
+
"Sales Management",
|
474
|
+
"Sales Representatives/Consultants",
|
475
|
+
"Telesales & Internal Sales",
|
476
|
+
"Other"
|
477
|
+
],
|
478
|
+
"Science & Technology": [
|
479
|
+
"Biological & Biomedical Sciences",
|
480
|
+
"Chemistry & Physics",
|
481
|
+
"Environmental, Earth & Geosciences",
|
482
|
+
"Food Technology & Safety",
|
483
|
+
"Laboratory & Technical Services",
|
484
|
+
"Mathematics, Statistics & Information Sciences",
|
485
|
+
"Quality Assurance & Control",
|
486
|
+
"Other"
|
487
|
+
],
|
488
|
+
"Self Employment": ["Contract/Temp", "Franchise", "Home Business", "Other"],
|
489
|
+
"Sport & Recreation": [
|
490
|
+
"Coaching & Instruction",
|
491
|
+
"Fitness & Personal Training",
|
492
|
+
"Management",
|
493
|
+
"Other"
|
494
|
+
],
|
495
|
+
"Trades & Services": [
|
496
|
+
"Air Conditioning & Refrigeration",
|
497
|
+
"Automotive Trades",
|
498
|
+
"Bakers & Pastry Chefs",
|
499
|
+
"Building Trades",
|
500
|
+
"Butchers",
|
501
|
+
"Carpentry & Cabinet Making",
|
502
|
+
"Cleaning Services",
|
503
|
+
"Electricians",
|
504
|
+
"Fitters, Turners & Machinists",
|
505
|
+
"Floristry",
|
506
|
+
"Gardening & Landscaping",
|
507
|
+
"Hair & Beauty Services",
|
508
|
+
"Labourers",
|
509
|
+
"Locksmiths",
|
510
|
+
"Maintenance & Handyperson Services",
|
511
|
+
"Nannies & Babysitters",
|
512
|
+
"Painters & Sign Writers",
|
513
|
+
"Plumbers",
|
514
|
+
"Printing & Publishing Services",
|
515
|
+
"Security Services",
|
516
|
+
"Tailors & Dressmakers",
|
517
|
+
"Technicians",
|
518
|
+
"Welders & Boilermakers",
|
519
|
+
"Other"
|
520
|
+
]
|
521
|
+
};
|
522
|
+
var jobClassification_default = jobClassifications;
|
523
|
+
|
524
|
+
// src/static/locations.ts
|
525
|
+
var locations = [
|
526
|
+
// Global Remote Options
|
527
|
+
{
|
528
|
+
id: "remote-anywhere",
|
529
|
+
name: "Remote (Anywhere)",
|
530
|
+
country: "Remote",
|
531
|
+
region: "Global",
|
532
|
+
tags: ["remote", "work-from-home", "flexible"]
|
533
|
+
},
|
534
|
+
// Australia
|
535
|
+
{
|
536
|
+
id: "australia-anywhere",
|
537
|
+
name: "Anywhere in Australia",
|
538
|
+
country: "Australia",
|
539
|
+
region: "Australia",
|
540
|
+
tags: ["country-wide", "australia", "flexible"]
|
541
|
+
},
|
542
|
+
{
|
543
|
+
id: "sydney",
|
544
|
+
name: "Sydney",
|
545
|
+
country: "Australia",
|
546
|
+
region: "New South Wales",
|
547
|
+
tags: [
|
548
|
+
"major-city",
|
549
|
+
"coastal",
|
550
|
+
"business-hub",
|
551
|
+
"tech-hub",
|
552
|
+
"expat-friendly"
|
553
|
+
]
|
554
|
+
},
|
555
|
+
{
|
556
|
+
id: "melbourne",
|
557
|
+
name: "Melbourne",
|
558
|
+
country: "Australia",
|
559
|
+
region: "Victoria",
|
560
|
+
tags: [
|
561
|
+
"major-city",
|
562
|
+
"cultural",
|
563
|
+
"business-hub",
|
564
|
+
"tech-hub",
|
565
|
+
"expat-friendly"
|
566
|
+
]
|
567
|
+
},
|
568
|
+
{
|
569
|
+
id: "brisbane",
|
570
|
+
name: "Brisbane",
|
571
|
+
country: "Australia",
|
572
|
+
region: "Queensland",
|
573
|
+
tags: ["major-city", "coastal", "business-hub", "expat-friendly"]
|
574
|
+
},
|
575
|
+
{
|
576
|
+
id: "perth",
|
577
|
+
name: "Perth",
|
578
|
+
country: "Australia",
|
579
|
+
region: "Western Australia",
|
580
|
+
tags: ["major-city", "coastal", "mining", "tech-hub", "expat-friendly"]
|
581
|
+
},
|
582
|
+
{
|
583
|
+
id: "adelaide",
|
584
|
+
name: "Adelaide",
|
585
|
+
country: "Australia",
|
586
|
+
region: "South Australia",
|
587
|
+
tags: ["major-city", "coastal", "wine-region"]
|
588
|
+
},
|
589
|
+
{
|
590
|
+
id: "canberra",
|
591
|
+
name: "Canberra",
|
592
|
+
country: "Australia",
|
593
|
+
region: "Australian Capital Territory",
|
594
|
+
tags: ["capital", "government", "education"]
|
595
|
+
},
|
596
|
+
{
|
597
|
+
id: "hobart",
|
598
|
+
name: "Hobart",
|
599
|
+
country: "Australia",
|
600
|
+
region: "Tasmania",
|
601
|
+
tags: ["capital", "coastal", "tourism"]
|
602
|
+
},
|
603
|
+
{
|
604
|
+
id: "darwin",
|
605
|
+
name: "Darwin",
|
606
|
+
country: "Australia",
|
607
|
+
region: "Northern Territory",
|
608
|
+
tags: ["capital", "coastal", "tropical"]
|
609
|
+
},
|
610
|
+
{
|
611
|
+
id: "gold-coast",
|
612
|
+
name: "Gold Coast",
|
613
|
+
country: "Australia",
|
614
|
+
region: "Queensland",
|
615
|
+
tags: ["coastal", "tourism", "lifestyle"]
|
616
|
+
},
|
617
|
+
{
|
618
|
+
id: "newcastle",
|
619
|
+
name: "Newcastle",
|
620
|
+
country: "Australia",
|
621
|
+
region: "New South Wales",
|
622
|
+
tags: ["coastal", "industrial", "port"]
|
623
|
+
},
|
624
|
+
{
|
625
|
+
id: "wollongong",
|
626
|
+
name: "Wollongong",
|
627
|
+
country: "Australia",
|
628
|
+
region: "New South Wales",
|
629
|
+
tags: ["coastal", "industrial", "university"]
|
630
|
+
},
|
631
|
+
{
|
632
|
+
id: "geelong",
|
633
|
+
name: "Geelong",
|
634
|
+
country: "Australia",
|
635
|
+
region: "Victoria",
|
636
|
+
tags: ["coastal", "industrial", "manufacturing"]
|
637
|
+
},
|
638
|
+
{
|
639
|
+
id: "sunshine-coast",
|
640
|
+
name: "Sunshine Coast",
|
641
|
+
country: "Australia",
|
642
|
+
region: "Queensland",
|
643
|
+
tags: ["coastal", "tourism", "lifestyle"]
|
644
|
+
},
|
645
|
+
{
|
646
|
+
id: "central-coast",
|
647
|
+
name: "Central Coast",
|
648
|
+
country: "Australia",
|
649
|
+
region: "New South Wales",
|
650
|
+
tags: ["coastal", "lifestyle", "commuter"]
|
651
|
+
},
|
652
|
+
{
|
653
|
+
id: "toowoomba",
|
654
|
+
name: "Toowoomba",
|
655
|
+
country: "Australia",
|
656
|
+
region: "Queensland",
|
657
|
+
tags: ["regional", "agricultural", "education"]
|
658
|
+
},
|
659
|
+
// New Zealand
|
660
|
+
{
|
661
|
+
id: "new-zealand-anywhere",
|
662
|
+
name: "Anywhere in New Zealand",
|
663
|
+
country: "New Zealand",
|
664
|
+
region: "New Zealand",
|
665
|
+
tags: ["country-wide", "new-zealand", "flexible"]
|
666
|
+
},
|
667
|
+
{
|
668
|
+
id: "auckland",
|
669
|
+
name: "Auckland",
|
670
|
+
country: "New Zealand",
|
671
|
+
region: "Auckland",
|
672
|
+
tags: ["major-city", "coastal", "business-hub", "tech-hub"]
|
673
|
+
},
|
674
|
+
{
|
675
|
+
id: "wellington",
|
676
|
+
name: "Wellington",
|
677
|
+
country: "New Zealand",
|
678
|
+
region: "Wellington",
|
679
|
+
tags: ["capital", "coastal", "government", "tech-hub"]
|
680
|
+
},
|
681
|
+
{
|
682
|
+
id: "christchurch",
|
683
|
+
name: "Christchurch",
|
684
|
+
country: "New Zealand",
|
685
|
+
region: "Canterbury",
|
686
|
+
tags: ["major-city", "coastal", "rebuilding"]
|
687
|
+
},
|
688
|
+
{
|
689
|
+
id: "hamilton",
|
690
|
+
name: "Hamilton",
|
691
|
+
country: "New Zealand",
|
692
|
+
region: "Waikato",
|
693
|
+
tags: ["regional", "agricultural", "education"]
|
135
694
|
},
|
136
|
-
|
137
|
-
|
138
|
-
|
695
|
+
{
|
696
|
+
id: "tauranga",
|
697
|
+
name: "Tauranga",
|
698
|
+
country: "New Zealand",
|
699
|
+
region: "Bay of Plenty",
|
700
|
+
tags: ["coastal", "port", "lifestyle"]
|
139
701
|
},
|
140
|
-
|
141
|
-
|
142
|
-
|
702
|
+
{
|
703
|
+
id: "dunedin",
|
704
|
+
name: "Dunedin",
|
705
|
+
country: "New Zealand",
|
706
|
+
region: "Otago",
|
707
|
+
tags: ["coastal", "education", "heritage"]
|
143
708
|
},
|
144
|
-
|
145
|
-
|
146
|
-
|
709
|
+
{
|
710
|
+
id: "palmerston-north",
|
711
|
+
name: "Palmerston North",
|
712
|
+
country: "New Zealand",
|
713
|
+
region: "Manawatu-Wanganui",
|
714
|
+
tags: ["regional", "education", "agricultural"]
|
715
|
+
},
|
716
|
+
{
|
717
|
+
id: "napier",
|
718
|
+
name: "Napier",
|
719
|
+
country: "New Zealand",
|
720
|
+
region: "Hawke's Bay",
|
721
|
+
tags: ["coastal", "wine-region", "art-deco"]
|
722
|
+
},
|
723
|
+
{
|
724
|
+
id: "hastings",
|
725
|
+
name: "Hastings",
|
726
|
+
country: "New Zealand",
|
727
|
+
region: "Hawke's Bay",
|
728
|
+
tags: ["regional", "agricultural", "wine-region"]
|
729
|
+
},
|
730
|
+
{
|
731
|
+
id: "nelson",
|
732
|
+
name: "Nelson",
|
733
|
+
country: "New Zealand",
|
734
|
+
region: "Nelson",
|
735
|
+
tags: ["coastal", "tourism", "lifestyle"]
|
736
|
+
},
|
737
|
+
// Asia Pacific
|
738
|
+
{
|
739
|
+
id: "singapore",
|
740
|
+
name: "Singapore",
|
741
|
+
country: "Singapore",
|
742
|
+
region: "Singapore",
|
743
|
+
tags: [
|
744
|
+
"major-city",
|
745
|
+
"business-hub",
|
746
|
+
"financial",
|
747
|
+
"tech-hub",
|
748
|
+
"expat-friendly"
|
749
|
+
]
|
750
|
+
},
|
751
|
+
{
|
752
|
+
id: "dubai",
|
753
|
+
name: "Dubai",
|
754
|
+
country: "UAE",
|
755
|
+
region: "Dubai",
|
756
|
+
tags: [
|
757
|
+
"major-city",
|
758
|
+
"business-hub",
|
759
|
+
"financial",
|
760
|
+
"tech-hub",
|
761
|
+
"expat-friendly"
|
762
|
+
]
|
763
|
+
},
|
764
|
+
{
|
765
|
+
id: "tokyo",
|
766
|
+
name: "Tokyo",
|
767
|
+
country: "Japan",
|
768
|
+
region: "Kanto",
|
769
|
+
tags: ["major-city", "business-hub", "tech-hub", "expat-friendly"]
|
770
|
+
},
|
771
|
+
{
|
772
|
+
id: "hong-kong",
|
773
|
+
name: "Hong Kong",
|
774
|
+
country: "China",
|
775
|
+
region: "Hong Kong",
|
776
|
+
tags: ["major-city", "business-hub", "financial", "expat-friendly"]
|
777
|
+
},
|
778
|
+
{
|
779
|
+
id: "seoul",
|
780
|
+
name: "Seoul",
|
781
|
+
country: "South Korea",
|
782
|
+
region: "Seoul",
|
783
|
+
tags: ["major-city", "business-hub", "tech-hub", "expat-friendly"]
|
784
|
+
},
|
785
|
+
{
|
786
|
+
id: "taipei",
|
787
|
+
name: "Taipei",
|
788
|
+
country: "Taiwan",
|
789
|
+
region: "Taipei",
|
790
|
+
tags: ["major-city", "business-hub", "tech-hub"]
|
791
|
+
},
|
792
|
+
{
|
793
|
+
id: "shanghai",
|
794
|
+
name: "Shanghai",
|
795
|
+
country: "China",
|
796
|
+
region: "Shanghai",
|
797
|
+
tags: ["major-city", "business-hub", "financial", "expat-friendly"]
|
798
|
+
},
|
799
|
+
{
|
800
|
+
id: "shenzhen",
|
801
|
+
name: "Shenzhen",
|
802
|
+
country: "China",
|
803
|
+
region: "Guangdong",
|
804
|
+
tags: ["major-city", "tech-hub", "manufacturing"]
|
805
|
+
},
|
806
|
+
// North America
|
807
|
+
{
|
808
|
+
id: "us-anywhere",
|
809
|
+
name: "Anywhere in United States",
|
810
|
+
country: "United States",
|
811
|
+
region: "United States",
|
812
|
+
tags: ["country-wide", "us", "flexible"]
|
813
|
+
},
|
814
|
+
{
|
815
|
+
id: "new-york",
|
816
|
+
name: "New York",
|
817
|
+
country: "United States",
|
818
|
+
region: "New York",
|
819
|
+
tags: ["major-city", "business-hub", "financial", "expat-friendly"]
|
820
|
+
},
|
821
|
+
{
|
822
|
+
id: "san-francisco",
|
823
|
+
name: "San Francisco",
|
824
|
+
country: "United States",
|
825
|
+
region: "California",
|
826
|
+
tags: ["major-city", "tech-hub", "coastal", "expat-friendly"]
|
827
|
+
},
|
828
|
+
{
|
829
|
+
id: "los-angeles",
|
830
|
+
name: "Los Angeles",
|
831
|
+
country: "United States",
|
832
|
+
region: "California",
|
833
|
+
tags: ["major-city", "entertainment", "coastal", "expat-friendly"]
|
834
|
+
},
|
835
|
+
{
|
836
|
+
id: "chicago",
|
837
|
+
name: "Chicago",
|
838
|
+
country: "United States",
|
839
|
+
region: "Illinois",
|
840
|
+
tags: ["major-city", "business-hub", "cultural"]
|
841
|
+
},
|
842
|
+
{
|
843
|
+
id: "seattle",
|
844
|
+
name: "Seattle",
|
845
|
+
country: "United States",
|
846
|
+
region: "Washington",
|
847
|
+
tags: ["major-city", "tech-hub", "coastal", "expat-friendly"]
|
848
|
+
},
|
849
|
+
{
|
850
|
+
id: "boston",
|
851
|
+
name: "Boston",
|
852
|
+
country: "United States",
|
853
|
+
region: "Massachusetts",
|
854
|
+
tags: ["major-city", "tech-hub", "education", "expat-friendly"]
|
855
|
+
},
|
856
|
+
{
|
857
|
+
id: "austin",
|
858
|
+
name: "Austin",
|
859
|
+
country: "United States",
|
860
|
+
region: "Texas",
|
861
|
+
tags: ["major-city", "tech-hub", "cultural"]
|
862
|
+
},
|
863
|
+
{
|
864
|
+
id: "denver",
|
865
|
+
name: "Denver",
|
866
|
+
country: "United States",
|
867
|
+
region: "Colorado",
|
868
|
+
tags: ["major-city", "outdoor", "lifestyle"]
|
869
|
+
},
|
870
|
+
{
|
871
|
+
id: "portland",
|
872
|
+
name: "Portland",
|
873
|
+
country: "United States",
|
874
|
+
region: "Oregon",
|
875
|
+
tags: ["major-city", "cultural", "lifestyle"]
|
876
|
+
},
|
877
|
+
{
|
878
|
+
id: "miami",
|
879
|
+
name: "Miami",
|
880
|
+
country: "United States",
|
881
|
+
region: "Florida",
|
882
|
+
tags: ["major-city", "coastal", "tourism"]
|
883
|
+
},
|
884
|
+
{
|
885
|
+
id: "canada-anywhere",
|
886
|
+
name: "Anywhere in Canada",
|
887
|
+
country: "Canada",
|
888
|
+
region: "Canada",
|
889
|
+
tags: ["country-wide", "canada", "flexible"]
|
890
|
+
},
|
891
|
+
{
|
892
|
+
id: "toronto",
|
893
|
+
name: "Toronto",
|
894
|
+
country: "Canada",
|
895
|
+
region: "Ontario",
|
896
|
+
tags: ["major-city", "business-hub", "tech-hub", "expat-friendly"]
|
897
|
+
},
|
898
|
+
{
|
899
|
+
id: "vancouver",
|
900
|
+
name: "Vancouver",
|
901
|
+
country: "Canada",
|
902
|
+
region: "British Columbia",
|
903
|
+
tags: ["major-city", "tech-hub", "coastal", "expat-friendly"]
|
904
|
+
},
|
905
|
+
{
|
906
|
+
id: "montreal",
|
907
|
+
name: "Montreal",
|
908
|
+
country: "Canada",
|
909
|
+
region: "Quebec",
|
910
|
+
tags: ["major-city", "cultural", "historical"]
|
911
|
+
},
|
912
|
+
{
|
913
|
+
id: "calgary",
|
914
|
+
name: "Calgary",
|
915
|
+
country: "Canada",
|
916
|
+
region: "Alberta",
|
917
|
+
tags: ["major-city", "business-hub", "energy"]
|
918
|
+
},
|
919
|
+
{
|
920
|
+
id: "edmonton",
|
921
|
+
name: "Edmonton",
|
922
|
+
country: "Canada",
|
923
|
+
region: "Alberta",
|
924
|
+
tags: ["major-city", "business-hub", "energy"]
|
925
|
+
},
|
926
|
+
{
|
927
|
+
id: "ottawa",
|
928
|
+
name: "Ottawa",
|
929
|
+
country: "Canada",
|
930
|
+
region: "Ontario",
|
931
|
+
tags: ["capital", "government", "education"]
|
932
|
+
},
|
933
|
+
{
|
934
|
+
id: "winnipeg",
|
935
|
+
name: "Winnipeg",
|
936
|
+
country: "Canada",
|
937
|
+
region: "Manitoba",
|
938
|
+
tags: ["major-city", "business-hub", "cultural"]
|
939
|
+
},
|
940
|
+
{
|
941
|
+
id: "halifax",
|
942
|
+
name: "Halifax",
|
943
|
+
country: "Canada",
|
944
|
+
region: "Nova Scotia",
|
945
|
+
tags: ["major-city", "coastal", "port"]
|
946
|
+
},
|
947
|
+
{
|
948
|
+
id: "victoria",
|
949
|
+
name: "Victoria",
|
950
|
+
country: "Canada",
|
951
|
+
region: "British Columbia",
|
952
|
+
tags: ["capital", "coastal", "lifestyle"]
|
953
|
+
},
|
954
|
+
{
|
955
|
+
id: "saskatoon",
|
956
|
+
name: "Saskatoon",
|
957
|
+
country: "Canada",
|
958
|
+
region: "Saskatchewan",
|
959
|
+
tags: ["major-city", "agricultural", "education"]
|
960
|
+
},
|
961
|
+
// Europe
|
962
|
+
{
|
963
|
+
id: "eu-anywhere",
|
964
|
+
name: "Anywhere in European Union",
|
965
|
+
country: "European Union",
|
966
|
+
region: "EU",
|
967
|
+
tags: ["region-wide", "eu", "flexible"]
|
968
|
+
},
|
969
|
+
{
|
970
|
+
id: "london",
|
971
|
+
name: "London",
|
972
|
+
country: "United Kingdom",
|
973
|
+
region: "England",
|
974
|
+
tags: ["major-city", "business-hub", "financial", "expat-friendly"]
|
975
|
+
},
|
976
|
+
{
|
977
|
+
id: "manchester",
|
978
|
+
name: "Manchester",
|
979
|
+
country: "United Kingdom",
|
980
|
+
region: "England",
|
981
|
+
tags: ["major-city", "business-hub", "cultural"]
|
982
|
+
},
|
983
|
+
{
|
984
|
+
id: "birmingham",
|
985
|
+
name: "Birmingham",
|
986
|
+
country: "United Kingdom",
|
987
|
+
region: "England",
|
988
|
+
tags: ["major-city", "business-hub", "industrial"]
|
989
|
+
},
|
990
|
+
{
|
991
|
+
id: "edinburgh",
|
992
|
+
name: "Edinburgh",
|
993
|
+
country: "United Kingdom",
|
994
|
+
region: "Scotland",
|
995
|
+
tags: ["major-city", "cultural", "historical"]
|
996
|
+
},
|
997
|
+
{
|
998
|
+
id: "glasgow",
|
999
|
+
name: "Glasgow",
|
1000
|
+
country: "United Kingdom",
|
1001
|
+
region: "Scotland",
|
1002
|
+
tags: ["major-city", "cultural", "industrial"]
|
1003
|
+
},
|
1004
|
+
{
|
1005
|
+
id: "cardiff",
|
1006
|
+
name: "Cardiff",
|
1007
|
+
country: "United Kingdom",
|
1008
|
+
region: "Wales",
|
1009
|
+
tags: ["major-city", "capital", "cultural"]
|
1010
|
+
},
|
1011
|
+
{
|
1012
|
+
id: "belfast",
|
1013
|
+
name: "Belfast",
|
1014
|
+
country: "United Kingdom",
|
1015
|
+
region: "Northern Ireland",
|
1016
|
+
tags: ["major-city", "capital", "cultural"]
|
1017
|
+
},
|
1018
|
+
{
|
1019
|
+
id: "leeds",
|
1020
|
+
name: "Leeds",
|
1021
|
+
country: "United Kingdom",
|
1022
|
+
region: "England",
|
1023
|
+
tags: ["major-city", "business-hub", "cultural"]
|
1024
|
+
},
|
1025
|
+
{
|
1026
|
+
id: "liverpool",
|
1027
|
+
name: "Liverpool",
|
1028
|
+
country: "United Kingdom",
|
1029
|
+
region: "England",
|
1030
|
+
tags: ["major-city", "coastal", "cultural"]
|
1031
|
+
},
|
1032
|
+
{
|
1033
|
+
id: "bristol",
|
1034
|
+
name: "Bristol",
|
1035
|
+
country: "United Kingdom",
|
1036
|
+
region: "England",
|
1037
|
+
tags: ["major-city", "coastal", "cultural"]
|
1038
|
+
},
|
1039
|
+
// Europe
|
1040
|
+
{
|
1041
|
+
id: "berlin",
|
1042
|
+
name: "Berlin",
|
1043
|
+
country: "Germany",
|
1044
|
+
region: "Berlin",
|
1045
|
+
tags: ["major-city", "tech-hub", "cultural", "expat-friendly"]
|
1046
|
+
},
|
1047
|
+
{
|
1048
|
+
id: "paris",
|
1049
|
+
name: "Paris",
|
1050
|
+
country: "France",
|
1051
|
+
region: "Ile-de-France",
|
1052
|
+
tags: ["major-city", "business-hub", "cultural", "expat-friendly"]
|
1053
|
+
},
|
1054
|
+
{
|
1055
|
+
id: "amsterdam",
|
1056
|
+
name: "Amsterdam",
|
1057
|
+
country: "Netherlands",
|
1058
|
+
region: "North Holland",
|
1059
|
+
tags: ["major-city", "tech-hub", "cultural", "expat-friendly"]
|
1060
|
+
},
|
1061
|
+
{
|
1062
|
+
id: "dublin",
|
1063
|
+
name: "Dublin",
|
1064
|
+
country: "Ireland",
|
1065
|
+
region: "Dublin",
|
1066
|
+
tags: ["major-city", "tech-hub", "business-hub", "expat-friendly"]
|
1067
|
+
},
|
1068
|
+
{
|
1069
|
+
id: "barcelona",
|
1070
|
+
name: "Barcelona",
|
1071
|
+
country: "Spain",
|
1072
|
+
region: "Catalonia",
|
1073
|
+
tags: ["major-city", "coastal", "cultural", "expat-friendly"]
|
1074
|
+
},
|
1075
|
+
{
|
1076
|
+
id: "madrid",
|
1077
|
+
name: "Madrid",
|
1078
|
+
country: "Spain",
|
1079
|
+
region: "Madrid",
|
1080
|
+
tags: ["major-city", "business-hub", "cultural"]
|
1081
|
+
},
|
1082
|
+
{
|
1083
|
+
id: "rome",
|
1084
|
+
name: "Rome",
|
1085
|
+
country: "Italy",
|
1086
|
+
region: "Lazio",
|
1087
|
+
tags: ["major-city", "capital", "historical"]
|
1088
|
+
},
|
1089
|
+
{
|
1090
|
+
id: "milan",
|
1091
|
+
name: "Milan",
|
1092
|
+
country: "Italy",
|
1093
|
+
region: "Lombardy",
|
1094
|
+
tags: ["major-city", "business-hub", "fashion"]
|
1095
|
+
},
|
1096
|
+
{
|
1097
|
+
id: "vienna",
|
1098
|
+
name: "Vienna",
|
1099
|
+
country: "Austria",
|
1100
|
+
region: "Vienna",
|
1101
|
+
tags: ["major-city", "capital", "cultural"]
|
1102
|
+
},
|
1103
|
+
{
|
1104
|
+
id: "zurich",
|
1105
|
+
name: "Zurich",
|
1106
|
+
country: "Switzerland",
|
1107
|
+
region: "Zurich",
|
1108
|
+
tags: ["major-city", "business-hub", "financial", "expat-friendly"]
|
1109
|
+
},
|
1110
|
+
{
|
1111
|
+
id: "stockholm",
|
1112
|
+
name: "Stockholm",
|
1113
|
+
country: "Sweden",
|
1114
|
+
region: "Stockholm",
|
1115
|
+
tags: ["major-city", "tech-hub", "business-hub", "expat-friendly"]
|
1116
|
+
},
|
1117
|
+
// Middle East
|
1118
|
+
{
|
1119
|
+
id: "abudhabi",
|
1120
|
+
name: "Abu Dhabi",
|
1121
|
+
country: "UAE",
|
1122
|
+
region: "Abu Dhabi",
|
1123
|
+
tags: ["major-city", "business-hub", "financial", "expat-friendly"]
|
147
1124
|
}
|
148
|
-
|
1125
|
+
];
|
149
1126
|
// Annotate the CommonJS export names for ESM import in node:
|
150
1127
|
0 && (module.exports = {
|
151
1128
|
ApplicationQuestionTypeOptions,
|
152
1129
|
ApplicationStatus,
|
153
|
-
ClientQuestionTypeOptions,
|
154
1130
|
VacancyCategory,
|
155
|
-
firestorePaths
|
1131
|
+
firestorePaths,
|
1132
|
+
jobClassifications,
|
1133
|
+
locations
|
156
1134
|
});
|