@jobsearch-works/firestore-models 2.0.3 → 2.0.5
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 +248 -241
- package/dist/index.d.ts +248 -241
- package/dist/index.js +532 -532
- package/dist/index.mjs +532 -532
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -29,541 +29,49 @@ __export(src_exports, {
|
|
29
29
|
});
|
30
30
|
module.exports = __toCommonJS(src_exports);
|
31
31
|
|
32
|
-
// src/
|
33
|
-
var
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
Suggested: "suggested",
|
42
|
-
Approved: "approved"
|
43
|
-
};
|
44
|
-
|
45
|
-
// src/types/ApplicationQuestion.ts
|
46
|
-
var ApplicationQuestionTypeOptions = ["text", "select"];
|
47
|
-
|
48
|
-
// src/types/Vacancy.ts
|
49
|
-
var VacancyCategory = {
|
50
|
-
Accounting: "Accounting",
|
51
|
-
AdministrationAndOfficeSupport: "Administration & Office Support",
|
52
|
-
AdvertisingArtsAndMedia: "Advertising, Arts & Media",
|
53
|
-
BankingAndFinancialServices: "Banking & Financial Services",
|
54
|
-
CallCentreAndCustomerService: "Call Centre & Customer Service",
|
55
|
-
CEOAndGeneralManagement: "CEO & General Management",
|
56
|
-
CommunityServicesAndDevelopment: "Community Services & Development",
|
57
|
-
Construction: "Construction",
|
58
|
-
ConsultingAndStrategy: "Consulting & Strategy",
|
59
|
-
DesignAndArchitecture: "Design & Architecture",
|
60
|
-
EducationAndTraining: "Education & Training",
|
61
|
-
Engineering: "Engineering",
|
62
|
-
FarmingAnimalsAndConservation: "Farming, Animals & Conservation",
|
63
|
-
GovernmentAndDefence: "Government & Defence",
|
64
|
-
HealthcareAndMedical: "Healthcare & Medical",
|
65
|
-
HospitalityAndTourism: "Hospitality & Tourism",
|
66
|
-
HumanResourcesAndRecruitment: "Human Resources & Recruitment",
|
67
|
-
InformationAndCommunicationTechnology: "Information & Communication Technology",
|
68
|
-
InsuranceAndSuperannuation: "Insurance & Superannuation",
|
69
|
-
Legal: "Legal",
|
70
|
-
ManufacturingTransportAndLogistics: "Manufacturing, Transport & Logistics",
|
71
|
-
MarketingAndCommunications: "Marketing & Communications",
|
72
|
-
MiningResourcesAndEnergy: "Mining, Resources & Energy",
|
73
|
-
RealEstateAndProperty: "Real Estate & Property",
|
74
|
-
RetailAndConsumerProducts: "Retail & Consumer Products",
|
75
|
-
Sales: "Sales",
|
76
|
-
ScienceAndTechnology: "Science & Technology",
|
77
|
-
SelfEmployment: "Self Employment",
|
78
|
-
SportAndRecreation: "Sport & Recreation",
|
79
|
-
TradesAndServices: "Trades & Services"
|
80
|
-
};
|
81
|
-
|
82
|
-
// src/paths/firestorePaths.ts
|
83
|
-
var firestorePaths = {
|
84
|
-
clients: {
|
85
|
-
collection: () => "clients",
|
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`,
|
91
|
-
emails: {
|
92
|
-
collection: (clientId) => `clients/${clientId}/emails`,
|
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}`
|
102
|
-
},
|
103
|
-
logins: {
|
104
|
-
collection: (clientId) => `clients/${clientId}/logins`,
|
105
|
-
doc: (clientId, loginId) => `clients/${clientId}/logins/${loginId}`
|
106
|
-
},
|
107
|
-
resumes: {
|
108
|
-
collection: (clientId) => `clients/${clientId}/resumes`,
|
109
|
-
doc: (clientId, resumeId) => `clients/${clientId}/resumes/${resumeId}`
|
110
|
-
},
|
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
|
-
}
|
118
|
-
},
|
119
|
-
interviews: {
|
120
|
-
collection: (clientId) => `clients/${clientId}/interviews`,
|
121
|
-
doc: (clientId, interviewId) => `clients/${clientId}/interviews/${interviewId}`
|
122
|
-
},
|
123
|
-
vacancySuggestions: {
|
124
|
-
collection: (clientId) => `clients/${clientId}/vacancySuggestions`,
|
125
|
-
doc: (clientId, suggestionId) => `clients/${clientId}/vacancySuggestions/${suggestionId}`
|
126
|
-
}
|
32
|
+
// src/static/locations.ts
|
33
|
+
var locations = [
|
34
|
+
// Global Remote Options
|
35
|
+
{
|
36
|
+
id: "remote-anywhere",
|
37
|
+
name: "Remote (Anywhere)",
|
38
|
+
country: "Remote",
|
39
|
+
region: "Global",
|
40
|
+
tags: ["remote", "work-from-home", "flexible"]
|
127
41
|
},
|
128
|
-
|
129
|
-
|
130
|
-
|
42
|
+
// Australia
|
43
|
+
{
|
44
|
+
id: "australia-anywhere",
|
45
|
+
name: "Anywhere in Australia",
|
46
|
+
country: "Australia",
|
47
|
+
region: "Australia",
|
48
|
+
tags: ["country-wide", "australia", "flexible"]
|
131
49
|
},
|
132
|
-
|
133
|
-
|
134
|
-
|
50
|
+
{
|
51
|
+
id: "sydney",
|
52
|
+
name: "Sydney",
|
53
|
+
country: "Australia",
|
54
|
+
region: "New South Wales",
|
55
|
+
tags: [
|
56
|
+
"major-city",
|
57
|
+
"coastal",
|
58
|
+
"business-hub",
|
59
|
+
"tech-hub",
|
60
|
+
"expat-friendly"
|
61
|
+
]
|
135
62
|
},
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
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
|
-
]
|
63
|
+
{
|
64
|
+
id: "melbourne",
|
65
|
+
name: "Melbourne",
|
66
|
+
country: "Australia",
|
67
|
+
region: "Victoria",
|
68
|
+
tags: [
|
69
|
+
"major-city",
|
70
|
+
"cultural",
|
71
|
+
"business-hub",
|
72
|
+
"tech-hub",
|
73
|
+
"expat-friendly"
|
74
|
+
]
|
567
75
|
},
|
568
76
|
{
|
569
77
|
id: "brisbane",
|
@@ -1123,6 +631,498 @@ var locations = [
|
|
1123
631
|
tags: ["major-city", "business-hub", "financial", "expat-friendly"]
|
1124
632
|
}
|
1125
633
|
];
|
634
|
+
|
635
|
+
// src/types/Application.ts
|
636
|
+
var ApplicationStatus = {
|
637
|
+
New: "new",
|
638
|
+
Submitted: "submitted",
|
639
|
+
Interviewing: "interviewing",
|
640
|
+
Accepted: "accepted",
|
641
|
+
Rejected: "rejected",
|
642
|
+
Withdrawn: "withdrawn",
|
643
|
+
Applying: "applying",
|
644
|
+
Suggested: "suggested",
|
645
|
+
Approved: "approved"
|
646
|
+
};
|
647
|
+
|
648
|
+
// src/types/ApplicationQuestion.ts
|
649
|
+
var ApplicationQuestionTypeOptions = ["text", "select"];
|
650
|
+
|
651
|
+
// src/types/Vacancy.ts
|
652
|
+
var VacancyCategory = {
|
653
|
+
Accounting: "Accounting",
|
654
|
+
AdministrationAndOfficeSupport: "Administration & Office Support",
|
655
|
+
AdvertisingArtsAndMedia: "Advertising, Arts & Media",
|
656
|
+
BankingAndFinancialServices: "Banking & Financial Services",
|
657
|
+
CallCentreAndCustomerService: "Call Centre & Customer Service",
|
658
|
+
CEOAndGeneralManagement: "CEO & General Management",
|
659
|
+
CommunityServicesAndDevelopment: "Community Services & Development",
|
660
|
+
Construction: "Construction",
|
661
|
+
ConsultingAndStrategy: "Consulting & Strategy",
|
662
|
+
DesignAndArchitecture: "Design & Architecture",
|
663
|
+
EducationAndTraining: "Education & Training",
|
664
|
+
Engineering: "Engineering",
|
665
|
+
FarmingAnimalsAndConservation: "Farming, Animals & Conservation",
|
666
|
+
GovernmentAndDefence: "Government & Defence",
|
667
|
+
HealthcareAndMedical: "Healthcare & Medical",
|
668
|
+
HospitalityAndTourism: "Hospitality & Tourism",
|
669
|
+
HumanResourcesAndRecruitment: "Human Resources & Recruitment",
|
670
|
+
InformationAndCommunicationTechnology: "Information & Communication Technology",
|
671
|
+
InsuranceAndSuperannuation: "Insurance & Superannuation",
|
672
|
+
Legal: "Legal",
|
673
|
+
ManufacturingTransportAndLogistics: "Manufacturing, Transport & Logistics",
|
674
|
+
MarketingAndCommunications: "Marketing & Communications",
|
675
|
+
MiningResourcesAndEnergy: "Mining, Resources & Energy",
|
676
|
+
RealEstateAndProperty: "Real Estate & Property",
|
677
|
+
RetailAndConsumerProducts: "Retail & Consumer Products",
|
678
|
+
Sales: "Sales",
|
679
|
+
ScienceAndTechnology: "Science & Technology",
|
680
|
+
SelfEmployment: "Self Employment",
|
681
|
+
SportAndRecreation: "Sport & Recreation",
|
682
|
+
TradesAndServices: "Trades & Services"
|
683
|
+
};
|
684
|
+
|
685
|
+
// src/paths/firestorePaths.ts
|
686
|
+
var firestorePaths = {
|
687
|
+
clients: {
|
688
|
+
collection: () => "clients",
|
689
|
+
doc: (id) => `clients/${id}`,
|
690
|
+
personalData: (id) => `clients/${id}/personalData`,
|
691
|
+
jobPreferences: (id) => `clients/${id}/jobPreferences`,
|
692
|
+
websitePreferences: (id) => `clients/${id}/websitePreferences`,
|
693
|
+
gmailTokens: (id) => `clients/${id}/gmailTokens`,
|
694
|
+
emails: {
|
695
|
+
collection: (clientId) => `clients/${clientId}/emails`,
|
696
|
+
doc: (clientId, emailId) => `clients/${clientId}/emails/${emailId}`
|
697
|
+
},
|
698
|
+
questions: {
|
699
|
+
collection: (clientId) => `clients/${clientId}/questions`,
|
700
|
+
doc: (clientId, questionId) => `clients/${clientId}/questions/${questionId}`
|
701
|
+
},
|
702
|
+
initialQuestions: {
|
703
|
+
collection: (clientId) => `clients/${clientId}/initialQuestions`,
|
704
|
+
doc: (clientId, questionId) => `clients/${clientId}/initialQuestions/${questionId}`
|
705
|
+
},
|
706
|
+
logins: {
|
707
|
+
collection: (clientId) => `clients/${clientId}/logins`,
|
708
|
+
doc: (clientId, loginId) => `clients/${clientId}/logins/${loginId}`
|
709
|
+
},
|
710
|
+
resumes: {
|
711
|
+
collection: (clientId) => `clients/${clientId}/resumes`,
|
712
|
+
doc: (clientId, resumeId) => `clients/${clientId}/resumes/${resumeId}`
|
713
|
+
},
|
714
|
+
applications: {
|
715
|
+
collection: (clientId) => `clients/${clientId}/applications`,
|
716
|
+
doc: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}`,
|
717
|
+
questions: {
|
718
|
+
collection: (clientId, applicationId) => `clients/${clientId}/applications/${applicationId}/questions`,
|
719
|
+
doc: (clientId, applicationId, questionId) => `clients/${clientId}/applications/${applicationId}/questions/${questionId}`
|
720
|
+
}
|
721
|
+
},
|
722
|
+
interviews: {
|
723
|
+
collection: (clientId) => `clients/${clientId}/interviews`,
|
724
|
+
doc: (clientId, interviewId) => `clients/${clientId}/interviews/${interviewId}`
|
725
|
+
},
|
726
|
+
vacancySuggestions: {
|
727
|
+
collection: (clientId) => `clients/${clientId}/vacancySuggestions`,
|
728
|
+
doc: (clientId, suggestionId) => `clients/${clientId}/vacancySuggestions/${suggestionId}`
|
729
|
+
}
|
730
|
+
},
|
731
|
+
users: {
|
732
|
+
collection: () => "users",
|
733
|
+
doc: (id) => `users/${id}`
|
734
|
+
},
|
735
|
+
usersPub: {
|
736
|
+
collection: () => "usersPub",
|
737
|
+
doc: (id) => `usersPub/${id}`
|
738
|
+
},
|
739
|
+
vacancies: {
|
740
|
+
collection: () => "vacancies",
|
741
|
+
doc: (id) => `vacancies/${id}`
|
742
|
+
},
|
743
|
+
agents: {
|
744
|
+
collection: () => "agents",
|
745
|
+
doc: (id) => `agents/${id}`
|
746
|
+
}
|
747
|
+
};
|
748
|
+
|
749
|
+
// src/static/jobClassification.ts
|
750
|
+
var jobClassifications = {
|
751
|
+
Accounting: [
|
752
|
+
"Accounts Officers/Clerks",
|
753
|
+
"Analysis & Reporting",
|
754
|
+
"Assistant Accountants",
|
755
|
+
"Audit - External",
|
756
|
+
"Audit - Internal",
|
757
|
+
"Bookkeeping & Small Practice Accounting",
|
758
|
+
"Business Services & Corporate Advisory",
|
759
|
+
"Company Secretaries",
|
760
|
+
"Cost Accounting",
|
761
|
+
"Financial Accounting & Reporting",
|
762
|
+
"Financial Managers & Controllers",
|
763
|
+
"Forensic Accounting & Investigation",
|
764
|
+
"Insolvency & Corporate Recovery",
|
765
|
+
"Management Accounting & Budgeting",
|
766
|
+
"Payroll",
|
767
|
+
"Strategy & Planning",
|
768
|
+
"Systems Accounting",
|
769
|
+
"Taxation",
|
770
|
+
"Other"
|
771
|
+
],
|
772
|
+
"Administration & Office Support": [
|
773
|
+
"Administrative Assistants",
|
774
|
+
"Client & Sales Administration",
|
775
|
+
"Contracts Administration",
|
776
|
+
"Data Entry & Word Processing",
|
777
|
+
"Office Management",
|
778
|
+
"PA, EA & Secretarial",
|
779
|
+
"Receptionists",
|
780
|
+
"Records Management & Document Control",
|
781
|
+
"Other"
|
782
|
+
],
|
783
|
+
"Advertising, Arts & Media": [
|
784
|
+
"Agency Account Management",
|
785
|
+
"Art Direction",
|
786
|
+
"Copywriting",
|
787
|
+
"Editing & Publishing",
|
788
|
+
"Event Management",
|
789
|
+
"Journalism & Writing",
|
790
|
+
"Media Buying, Planning & Strategy",
|
791
|
+
"Photography",
|
792
|
+
"Programming & Production",
|
793
|
+
"Promotions",
|
794
|
+
"Sales & Account Management",
|
795
|
+
"Other"
|
796
|
+
],
|
797
|
+
"Banking & Financial Services": [
|
798
|
+
"Analysis & Reporting",
|
799
|
+
"Banking - Business",
|
800
|
+
"Banking - Corporate & Institutional",
|
801
|
+
"Banking - Retail/Branch",
|
802
|
+
"Client Services",
|
803
|
+
"Compliance & Risk",
|
804
|
+
"Corporate Finance & Investment Banking",
|
805
|
+
"Financial Planning",
|
806
|
+
"Funds Management",
|
807
|
+
"Investments",
|
808
|
+
"Mortgages",
|
809
|
+
"Settlements",
|
810
|
+
"Stockbroking & Trading",
|
811
|
+
"Treasury",
|
812
|
+
"Other"
|
813
|
+
],
|
814
|
+
"Call Centre & Customer Service": [
|
815
|
+
"Customer Service - Call Centre",
|
816
|
+
"Customer Service - Customer Facing",
|
817
|
+
"Customer Service - Manager",
|
818
|
+
"Customer Service - Supervisor",
|
819
|
+
"Customer Service - Team Leader",
|
820
|
+
"Other"
|
821
|
+
],
|
822
|
+
"Community Services & Development": [
|
823
|
+
"Aged & Disability Support",
|
824
|
+
"Child Welfare, Youth & Family Services",
|
825
|
+
"Community Development",
|
826
|
+
"Employment Services",
|
827
|
+
"Housing & Homelessness Services",
|
828
|
+
"Indigenous & Multicultural Services",
|
829
|
+
"Management",
|
830
|
+
"Volunteer Coordination & Support",
|
831
|
+
"Other"
|
832
|
+
],
|
833
|
+
Construction: [
|
834
|
+
"Contracts Management",
|
835
|
+
"Estimating",
|
836
|
+
"Foreperson/Supervisors",
|
837
|
+
"Health & Safety",
|
838
|
+
"Project Management",
|
839
|
+
"Site Management",
|
840
|
+
"Surveying",
|
841
|
+
"Other"
|
842
|
+
],
|
843
|
+
"Consulting & Strategy": [
|
844
|
+
"Corporate Development",
|
845
|
+
"Management & Change Consulting",
|
846
|
+
"Policy & Planning",
|
847
|
+
"Strategy & Planning",
|
848
|
+
"Other"
|
849
|
+
],
|
850
|
+
"Design & Architecture": [
|
851
|
+
"Architecture",
|
852
|
+
"Fashion & Textile Design",
|
853
|
+
"Graphic Design",
|
854
|
+
"Illustration & Animation",
|
855
|
+
"Industrial Design",
|
856
|
+
"Interior Design",
|
857
|
+
"Landscape Architecture",
|
858
|
+
"Urban Design & Planning",
|
859
|
+
"Other"
|
860
|
+
],
|
861
|
+
"Education & Training": [
|
862
|
+
"Childcare & Outside School Hours Care",
|
863
|
+
"Library Services & Information Management",
|
864
|
+
"Management - Schools",
|
865
|
+
"Management - Universities",
|
866
|
+
"Management - Vocational",
|
867
|
+
"Research & Fellowships",
|
868
|
+
"Student Services",
|
869
|
+
"Teaching - Early Childhood",
|
870
|
+
"Teaching - Primary",
|
871
|
+
"Teaching - Secondary",
|
872
|
+
"Teaching - Tertiary",
|
873
|
+
"Teaching - Vocational",
|
874
|
+
"Teaching Aides & Special Needs",
|
875
|
+
"Tutoring",
|
876
|
+
"Workplace Training & Assessment",
|
877
|
+
"Other"
|
878
|
+
],
|
879
|
+
Engineering: [
|
880
|
+
"Aerospace Engineering",
|
881
|
+
"Automotive Engineering",
|
882
|
+
"Chemical Engineering",
|
883
|
+
"Civil/Structural Engineering",
|
884
|
+
"Electrical/Electronic Engineering",
|
885
|
+
"Engineering Drafting",
|
886
|
+
"Environmental Engineering",
|
887
|
+
"Field Engineering",
|
888
|
+
"Industrial Engineering",
|
889
|
+
"Maintenance",
|
890
|
+
"Mechanical Engineering",
|
891
|
+
"Mining - Engineering & Maintenance",
|
892
|
+
"Project Engineering",
|
893
|
+
"Systems Engineering",
|
894
|
+
"Other"
|
895
|
+
],
|
896
|
+
"Farming, Animals & Conservation": [
|
897
|
+
"Agronomy & Farm Services",
|
898
|
+
"Animal Welfare",
|
899
|
+
"Conservation, Parks & Wildlife",
|
900
|
+
"Farm Labour",
|
901
|
+
"Fishing & Aquaculture",
|
902
|
+
"Forestry & Logging",
|
903
|
+
"Horticulture",
|
904
|
+
"Veterinary Services & Animal Welfare",
|
905
|
+
"Other"
|
906
|
+
],
|
907
|
+
"Government & Defence": [
|
908
|
+
"Air Force",
|
909
|
+
"Army",
|
910
|
+
"Emergency Services",
|
911
|
+
"Federal Government",
|
912
|
+
"Government - Local",
|
913
|
+
"Government - State",
|
914
|
+
"Navy",
|
915
|
+
"Police & Corrections",
|
916
|
+
"Policy, Planning & Regulation",
|
917
|
+
"Security & Intelligence",
|
918
|
+
"Other"
|
919
|
+
],
|
920
|
+
"Healthcare & Medical": [
|
921
|
+
"Aged Care Nursing",
|
922
|
+
"Ambulance/Paramedics",
|
923
|
+
"Chiropractic & Osteopathic",
|
924
|
+
"Dental",
|
925
|
+
"General Practitioners",
|
926
|
+
"Medical Imaging",
|
927
|
+
"Nursing - Aged Care",
|
928
|
+
"Nursing - General Medical & Surgical",
|
929
|
+
"Nursing - High Acuity",
|
930
|
+
"Nursing - Management",
|
931
|
+
"Nursing - Midwifery, Neo-Natal, SCN & NICU",
|
932
|
+
"Nursing - Paediatric",
|
933
|
+
"Nursing - Psych, Forensic & Correctional Health",
|
934
|
+
"Nursing - Theatre & Recovery",
|
935
|
+
"Nursing - Other",
|
936
|
+
"Pharmacy",
|
937
|
+
"Physiotherapy, OT & Rehabilitation",
|
938
|
+
"Psychology, Counselling & Social Work",
|
939
|
+
"Speech Therapy",
|
940
|
+
"Other"
|
941
|
+
],
|
942
|
+
"Hospitality & Tourism": [
|
943
|
+
"Bar & Beverage Staff",
|
944
|
+
"Chefs/Cooks",
|
945
|
+
"Front Office & Guest Services",
|
946
|
+
"Gaming",
|
947
|
+
"Housekeeping",
|
948
|
+
"Kitchen & Sandwich Hands",
|
949
|
+
"Management",
|
950
|
+
"Reservations",
|
951
|
+
"Tour Guides",
|
952
|
+
"Travel Agents/Consultants",
|
953
|
+
"Waiting Staff",
|
954
|
+
"Other"
|
955
|
+
],
|
956
|
+
"Human Resources & Recruitment": [
|
957
|
+
"Consulting & Generalist HR",
|
958
|
+
"Industrial & Employee Relations",
|
959
|
+
"Management - Agency",
|
960
|
+
"Management - Internal",
|
961
|
+
"Occupational Health & Safety",
|
962
|
+
"Organisational Development",
|
963
|
+
"Recruitment - Agency",
|
964
|
+
"Recruitment - Internal",
|
965
|
+
"Remuneration & Benefits",
|
966
|
+
"Training & Development",
|
967
|
+
"Other"
|
968
|
+
],
|
969
|
+
"Information & Communication Technology": [
|
970
|
+
"Architects",
|
971
|
+
"Business/Systems Analysts",
|
972
|
+
"Consultants",
|
973
|
+
"Database Development & Administration",
|
974
|
+
"Developers/Programmers",
|
975
|
+
"Engineering - Hardware",
|
976
|
+
"Engineering - Network",
|
977
|
+
"Help Desk & IT Support",
|
978
|
+
"Management",
|
979
|
+
"Networks & Systems Administration",
|
980
|
+
"Product Management & Development",
|
981
|
+
"Project Management",
|
982
|
+
"Security",
|
983
|
+
"Software Engineering",
|
984
|
+
"Team Leaders",
|
985
|
+
"Technical Writers",
|
986
|
+
"Testing & Quality Assurance",
|
987
|
+
"Web Development & Production",
|
988
|
+
"Other"
|
989
|
+
],
|
990
|
+
"Insurance & Superannuation": [
|
991
|
+
"Actuarial",
|
992
|
+
"Brokerage",
|
993
|
+
"Claims",
|
994
|
+
"Fund Administration",
|
995
|
+
"Investments",
|
996
|
+
"Risk Consulting",
|
997
|
+
"Superannuation",
|
998
|
+
"Underwriting",
|
999
|
+
"Other"
|
1000
|
+
],
|
1001
|
+
Legal: [
|
1002
|
+
"Generalists - In-house",
|
1003
|
+
"Generalists - Private Practice",
|
1004
|
+
"Law Clerks & Paralegals",
|
1005
|
+
"Legal Secretaries",
|
1006
|
+
"Litigation & Dispute Resolution",
|
1007
|
+
"Other"
|
1008
|
+
],
|
1009
|
+
"Manufacturing, Transport & Logistics": [
|
1010
|
+
"Assembly & Process Work",
|
1011
|
+
"Couriers, Drivers & Postal Services",
|
1012
|
+
"Fleet Management",
|
1013
|
+
"Import/Export & Customs",
|
1014
|
+
"Machine Operators",
|
1015
|
+
"Maintenance",
|
1016
|
+
"Pickers & Packers",
|
1017
|
+
"Plant & Machinery Operators",
|
1018
|
+
"Production, Planning & Scheduling",
|
1019
|
+
"Purchasing, Procurement & Inventory",
|
1020
|
+
"Rail & Maritime Transport",
|
1021
|
+
"Road Transport",
|
1022
|
+
"Warehousing, Storage & Distribution",
|
1023
|
+
"Other"
|
1024
|
+
],
|
1025
|
+
"Marketing & Communications": [
|
1026
|
+
"Brand Management",
|
1027
|
+
"Digital & Search Marketing",
|
1028
|
+
"Event Management",
|
1029
|
+
"Internal Communications",
|
1030
|
+
"Market Research & Analysis",
|
1031
|
+
"Marketing Assistants/Coordinators",
|
1032
|
+
"Marketing Communications",
|
1033
|
+
"Marketing Management",
|
1034
|
+
"Product Management & Development",
|
1035
|
+
"Public Relations & Corporate Affairs",
|
1036
|
+
"Other"
|
1037
|
+
],
|
1038
|
+
"Mining, Resources & Energy": [
|
1039
|
+
"Analysis & Reporting",
|
1040
|
+
"Engineering",
|
1041
|
+
"Health, Safety & Environment",
|
1042
|
+
"Maintenance",
|
1043
|
+
"Management",
|
1044
|
+
"Mining - Operations",
|
1045
|
+
"Oil & Gas - Engineering & Maintenance",
|
1046
|
+
"Oil & Gas - Operations",
|
1047
|
+
"Power Generation & Distribution",
|
1048
|
+
"Surveying",
|
1049
|
+
"Other"
|
1050
|
+
],
|
1051
|
+
"Real Estate & Property": [
|
1052
|
+
"Analysts",
|
1053
|
+
"Body Corporate & Facilities Management",
|
1054
|
+
"Commercial Sales, Leasing & Property Mgmt",
|
1055
|
+
"Residential Leasing & Property Management",
|
1056
|
+
"Residential Sales",
|
1057
|
+
"Retail & Property Development",
|
1058
|
+
"Valuation",
|
1059
|
+
"Other"
|
1060
|
+
],
|
1061
|
+
"Retail & Consumer Products": [
|
1062
|
+
"Buying",
|
1063
|
+
"Management - Department/Assistant",
|
1064
|
+
"Management - Store",
|
1065
|
+
"Merchandisers",
|
1066
|
+
"Retail Assistants",
|
1067
|
+
"Sales Representatives/Consultants",
|
1068
|
+
"Supervisors/Team Leaders",
|
1069
|
+
"Other"
|
1070
|
+
],
|
1071
|
+
Sales: [
|
1072
|
+
"Account & Relationship Management",
|
1073
|
+
"Business Development",
|
1074
|
+
"Direct Sales",
|
1075
|
+
"Sales Coordinators",
|
1076
|
+
"Sales Management",
|
1077
|
+
"Sales Representatives/Consultants",
|
1078
|
+
"Telesales & Internal Sales",
|
1079
|
+
"Other"
|
1080
|
+
],
|
1081
|
+
"Science & Technology": [
|
1082
|
+
"Biological & Biomedical Sciences",
|
1083
|
+
"Chemistry & Physics",
|
1084
|
+
"Environmental, Earth & Geosciences",
|
1085
|
+
"Food Technology & Safety",
|
1086
|
+
"Laboratory & Technical Services",
|
1087
|
+
"Mathematics, Statistics & Information Sciences",
|
1088
|
+
"Quality Assurance & Control",
|
1089
|
+
"Other"
|
1090
|
+
],
|
1091
|
+
"Self Employment": ["Contract/Temp", "Franchise", "Home Business", "Other"],
|
1092
|
+
"Sport & Recreation": [
|
1093
|
+
"Coaching & Instruction",
|
1094
|
+
"Fitness & Personal Training",
|
1095
|
+
"Management",
|
1096
|
+
"Other"
|
1097
|
+
],
|
1098
|
+
"Trades & Services": [
|
1099
|
+
"Air Conditioning & Refrigeration",
|
1100
|
+
"Automotive Trades",
|
1101
|
+
"Bakers & Pastry Chefs",
|
1102
|
+
"Building Trades",
|
1103
|
+
"Butchers",
|
1104
|
+
"Carpentry & Cabinet Making",
|
1105
|
+
"Cleaning Services",
|
1106
|
+
"Electricians",
|
1107
|
+
"Fitters, Turners & Machinists",
|
1108
|
+
"Floristry",
|
1109
|
+
"Gardening & Landscaping",
|
1110
|
+
"Hair & Beauty Services",
|
1111
|
+
"Labourers",
|
1112
|
+
"Locksmiths",
|
1113
|
+
"Maintenance & Handyperson Services",
|
1114
|
+
"Nannies & Babysitters",
|
1115
|
+
"Painters & Sign Writers",
|
1116
|
+
"Plumbers",
|
1117
|
+
"Printing & Publishing Services",
|
1118
|
+
"Security Services",
|
1119
|
+
"Tailors & Dressmakers",
|
1120
|
+
"Technicians",
|
1121
|
+
"Welders & Boilermakers",
|
1122
|
+
"Other"
|
1123
|
+
]
|
1124
|
+
};
|
1125
|
+
var jobClassification_default = jobClassifications;
|
1126
1126
|
// Annotate the CommonJS export names for ESM import in node:
|
1127
1127
|
0 && (module.exports = {
|
1128
1128
|
ApplicationQuestionTypeOptions,
|