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