@@ -20,18 +20,18 @@ export const InternshipProgram = makeEnum({
20
20
` ,
21
21
} ) ;
22
22
23
+ const historic = { deprecationReason : 'Legacy. Only used in historic data.' } ;
24
+
23
25
export type InternshipPosition = EnumType < typeof InternshipPosition > ;
24
26
export const InternshipPosition = makeEnum ( {
25
27
name : 'InternshipPosition' ,
26
28
values : [
27
29
{
28
30
value : 'ConsultantInTraining' ,
29
- domain : null ,
30
31
program : InternshipProgram . QualityAssurance ,
31
32
} ,
32
33
{
33
34
value : 'MidLevelQualityAssurance' ,
34
- domain : null ,
35
35
program : InternshipProgram . QualityAssurance ,
36
36
} ,
37
37
@@ -92,46 +92,34 @@ export const InternshipPosition = makeEnum({
92
92
domain : InternshipDomain . FieldPrograms ,
93
93
program : InternshipProgram . CapacityBuilding ,
94
94
} ,
95
- // historic
96
95
{
96
+ ...historic ,
97
97
value : 'OtherAttached' ,
98
98
domain : InternshipDomain . FieldPrograms ,
99
99
program : InternshipProgram . QualityAssurance ,
100
- historic : true ,
101
100
} ,
102
101
{
102
+ ...historic ,
103
103
value : 'OtherTranslationCapacity' ,
104
104
domain : InternshipDomain . FieldPrograms ,
105
105
program : InternshipProgram . QualityAssurance ,
106
- historic : true ,
107
106
} ,
108
107
{
108
+ ...historic ,
109
109
value : 'OtherPartnershipCapacity' ,
110
110
domain : InternshipDomain . Leadership ,
111
111
program : InternshipProgram . CapacityBuilding ,
112
- historic : true ,
113
112
} ,
114
113
{
114
+ ...historic ,
115
115
value : 'ExegeticalFacilitator' ,
116
- domain : null ,
117
116
program : InternshipProgram . QualityAssurance ,
118
- historic : true ,
119
117
} ,
120
118
{
119
+ ...historic ,
121
120
value : 'TranslationFacilitator' ,
122
121
domain : InternshipDomain . FieldPrograms ,
123
122
program : InternshipProgram . CapacityBuilding ,
124
- historic : true ,
125
- } ,
126
- {
127
- value : 'ExegeticalFacilitator' ,
128
- deprecationReason : 'Legacy. Only used in historic data.' ,
129
- historic : true ,
130
- } ,
131
- {
132
- value : 'TranslationFacilitator' ,
133
- deprecationReason : 'Legacy. Only used in historic data.' ,
134
- historic : true ,
135
123
} ,
136
124
] ,
137
125
} ) ;
0 commit comments