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