@paris-ias/trees 2.0.51 → 2.1.0
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/form/affiliations.d.ts +3 -1
- package/dist/form/fellowships.cjs.js +1 -2
- package/dist/form/fellowships.d.ts +0 -2
- package/dist/form/fellowships.js +1 -2
- package/dist/form/people.cjs.js +7 -0
- package/dist/form/people.d.ts +6 -0
- package/dist/form/people.js +7 -0
- package/dist/form/projects.cjs.js +15 -0
- package/dist/form/projects.d.ts +7 -0
- package/dist/form/projects.js +15 -0
- package/dist/form/users.cjs.js +7 -0
- package/dist/form/users.js +7 -0
- package/dist/graphql/client/people/query.get.people.gql +1 -0
- package/dist/graphql/client/people/query.list.people.gql +1 -0
- package/dist/graphql/client/projects/query.get.projects.gql +1 -0
- package/dist/graphql/client/projects/query.list.projects.gql +1 -0
- package/dist/graphql/schemas/schema.apex.graphql +11 -2
- package/dist/graphql/schemas/schema.website.graphql +10 -2
- package/dist/list/affiliations.cjs.js +4 -2
- package/dist/list/affiliations.d.ts +3 -1
- package/dist/list/affiliations.js +4 -2
- package/dist/list/fellowships.cjs.js +2 -15
- package/dist/list/fellowships.d.ts +0 -2
- package/dist/list/fellowships.js +2 -15
- package/dist/list/people.cjs.js +5 -40
- package/dist/list/people.d.ts +6 -0
- package/dist/list/people.js +5 -40
- package/dist/list/projects.d.ts +7 -0
- package/package.json +1 -1
|
@@ -3,8 +3,10 @@ import type { Form } from "../../index"
|
|
|
3
3
|
// Inline type definitions
|
|
4
4
|
export enum AffiliationCategories {
|
|
5
5
|
Member = "MEMBER",
|
|
6
|
-
|
|
6
|
+
Support = "SUPPORT",
|
|
7
7
|
Partner = "PARTNER",
|
|
8
|
+
Other = "OTHER",
|
|
9
|
+
Network = "NETWORK",
|
|
8
10
|
}
|
|
9
11
|
|
|
10
12
|
export interface Affiliations {
|
|
@@ -29,14 +29,12 @@ export interface Fellowships {
|
|
|
29
29
|
export enum FellowshipType {
|
|
30
30
|
ShortStay = "SHORT_STAY",
|
|
31
31
|
LongStay = "LONG_STAY",
|
|
32
|
-
InGroup = "IN_GROUP",
|
|
33
32
|
}
|
|
34
33
|
|
|
35
34
|
export enum FellowshipStatus {
|
|
36
35
|
Planned = "PLANNED",
|
|
37
36
|
Ongoing = "ONGOING",
|
|
38
37
|
Finished = "FINISHED",
|
|
39
|
-
Cancelled = "CANCELLED",
|
|
40
38
|
}
|
|
41
39
|
|
|
42
40
|
export interface FormModule {
|
package/dist/form/fellowships.js
CHANGED
package/dist/form/people.cjs.js
CHANGED
|
@@ -131,6 +131,7 @@ const data = {
|
|
|
131
131
|
"groups": {
|
|
132
132
|
"team": false,
|
|
133
133
|
"sab": false,
|
|
134
|
+
"ethics": false,
|
|
134
135
|
"board": false,
|
|
135
136
|
"fellows": false,
|
|
136
137
|
"sponsor": false,
|
|
@@ -629,6 +630,12 @@ const data = {
|
|
|
629
630
|
"type": "PRIMITIVE",
|
|
630
631
|
"meta": "sab"
|
|
631
632
|
},
|
|
633
|
+
"ethics": {
|
|
634
|
+
"label": "ethics",
|
|
635
|
+
"component": "Checkbox",
|
|
636
|
+
"type": "PRIMITIVE",
|
|
637
|
+
"meta": "ethics"
|
|
638
|
+
},
|
|
632
639
|
"board": {
|
|
633
640
|
"label": "board",
|
|
634
641
|
"component": "Checkbox",
|
package/dist/form/people.d.ts
CHANGED
|
@@ -17,6 +17,12 @@ export interface People {
|
|
|
17
17
|
video?: Video[]
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
+
export enum FellowStatus {
|
|
21
|
+
Past = "PAST",
|
|
22
|
+
InProgress = "IN_PROGRESS",
|
|
23
|
+
Upcoming = "UPCOMING",
|
|
24
|
+
}
|
|
25
|
+
|
|
20
26
|
export interface FormModule {
|
|
21
27
|
_defaults: Record<string, any>
|
|
22
28
|
schema: Record<string, Form>
|
package/dist/form/people.js
CHANGED
|
@@ -129,6 +129,7 @@ const data = {
|
|
|
129
129
|
"groups": {
|
|
130
130
|
"team": false,
|
|
131
131
|
"sab": false,
|
|
132
|
+
"ethics": false,
|
|
132
133
|
"board": false,
|
|
133
134
|
"fellows": false,
|
|
134
135
|
"sponsor": false,
|
|
@@ -627,6 +628,12 @@ const data = {
|
|
|
627
628
|
"type": "PRIMITIVE",
|
|
628
629
|
"meta": "sab"
|
|
629
630
|
},
|
|
631
|
+
"ethics": {
|
|
632
|
+
"label": "ethics",
|
|
633
|
+
"component": "Checkbox",
|
|
634
|
+
"type": "PRIMITIVE",
|
|
635
|
+
"meta": "ethics"
|
|
636
|
+
},
|
|
630
637
|
"board": {
|
|
631
638
|
"label": "board",
|
|
632
639
|
"component": "Checkbox",
|
|
@@ -69,6 +69,7 @@ const data = {
|
|
|
69
69
|
"en": "",
|
|
70
70
|
"fr": ""
|
|
71
71
|
},
|
|
72
|
+
"type": "",
|
|
72
73
|
"image": "",
|
|
73
74
|
"url": "",
|
|
74
75
|
"status": "",
|
|
@@ -152,6 +153,20 @@ const data = {
|
|
|
152
153
|
},
|
|
153
154
|
"meta": "summary"
|
|
154
155
|
},
|
|
156
|
+
"type": {
|
|
157
|
+
"label": "type",
|
|
158
|
+
"component": "Select",
|
|
159
|
+
"type": "PRIMITIVE",
|
|
160
|
+
"rules": {
|
|
161
|
+
"required": true
|
|
162
|
+
},
|
|
163
|
+
"items": {
|
|
164
|
+
"Initiative": "INITIATIVE",
|
|
165
|
+
"Platform": "PLATFORM",
|
|
166
|
+
"Research": "RESEARCH"
|
|
167
|
+
},
|
|
168
|
+
"meta": "type"
|
|
169
|
+
},
|
|
155
170
|
"image": {
|
|
156
171
|
"label": "image",
|
|
157
172
|
"component": "ImagePicker",
|
package/dist/form/projects.d.ts
CHANGED
|
@@ -18,6 +18,13 @@ export interface Projects {
|
|
|
18
18
|
date?: Date
|
|
19
19
|
featured?: Date
|
|
20
20
|
status: projectStatus
|
|
21
|
+
type: projectTypes
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export enum projectTypes {
|
|
25
|
+
Initiative = "INITIATIVE",
|
|
26
|
+
Platform = "PLATFORM",
|
|
27
|
+
Research = "RESEARCH",
|
|
21
28
|
}
|
|
22
29
|
|
|
23
30
|
export enum projectStatus {
|
package/dist/form/projects.js
CHANGED
|
@@ -67,6 +67,7 @@ const data = {
|
|
|
67
67
|
"en": "",
|
|
68
68
|
"fr": ""
|
|
69
69
|
},
|
|
70
|
+
"type": "",
|
|
70
71
|
"image": "",
|
|
71
72
|
"url": "",
|
|
72
73
|
"status": "",
|
|
@@ -150,6 +151,20 @@ const data = {
|
|
|
150
151
|
},
|
|
151
152
|
"meta": "summary"
|
|
152
153
|
},
|
|
154
|
+
"type": {
|
|
155
|
+
"label": "type",
|
|
156
|
+
"component": "Select",
|
|
157
|
+
"type": "PRIMITIVE",
|
|
158
|
+
"rules": {
|
|
159
|
+
"required": true
|
|
160
|
+
},
|
|
161
|
+
"items": {
|
|
162
|
+
"Initiative": "INITIATIVE",
|
|
163
|
+
"Platform": "PLATFORM",
|
|
164
|
+
"Research": "RESEARCH"
|
|
165
|
+
},
|
|
166
|
+
"meta": "type"
|
|
167
|
+
},
|
|
153
168
|
"image": {
|
|
154
169
|
"label": "image",
|
|
155
170
|
"component": "ImagePicker",
|
package/dist/form/users.cjs.js
CHANGED
|
@@ -115,6 +115,7 @@ const data = {
|
|
|
115
115
|
"groups": {
|
|
116
116
|
"team": false,
|
|
117
117
|
"sab": false,
|
|
118
|
+
"ethics": false,
|
|
118
119
|
"board": false,
|
|
119
120
|
"fellows": false,
|
|
120
121
|
"sponsor": false,
|
|
@@ -538,6 +539,12 @@ const data = {
|
|
|
538
539
|
"type": "PRIMITIVE",
|
|
539
540
|
"meta": "sab"
|
|
540
541
|
},
|
|
542
|
+
"ethics": {
|
|
543
|
+
"label": "ethics",
|
|
544
|
+
"component": "Checkbox",
|
|
545
|
+
"type": "PRIMITIVE",
|
|
546
|
+
"meta": "ethics"
|
|
547
|
+
},
|
|
541
548
|
"board": {
|
|
542
549
|
"label": "board",
|
|
543
550
|
"component": "Checkbox",
|
package/dist/form/users.js
CHANGED
|
@@ -113,6 +113,7 @@ const data = {
|
|
|
113
113
|
"groups": {
|
|
114
114
|
"team": false,
|
|
115
115
|
"sab": false,
|
|
116
|
+
"ethics": false,
|
|
116
117
|
"board": false,
|
|
117
118
|
"fellows": false,
|
|
118
119
|
"sponsor": false,
|
|
@@ -536,6 +537,12 @@ const data = {
|
|
|
536
537
|
"type": "PRIMITIVE",
|
|
537
538
|
"meta": "sab"
|
|
538
539
|
},
|
|
540
|
+
"ethics": {
|
|
541
|
+
"label": "ethics",
|
|
542
|
+
"component": "Checkbox",
|
|
543
|
+
"type": "PRIMITIVE",
|
|
544
|
+
"meta": "ethics"
|
|
545
|
+
},
|
|
539
546
|
"board": {
|
|
540
547
|
"label": "board",
|
|
541
548
|
"component": "Checkbox",
|
|
@@ -199,6 +199,7 @@ input GroupsInput {
|
|
|
199
199
|
board: Boolean
|
|
200
200
|
fellows: Boolean
|
|
201
201
|
sponsor: Boolean
|
|
202
|
+
ethics: Boolean
|
|
202
203
|
vintage: [VintageInput]
|
|
203
204
|
}
|
|
204
205
|
|
|
@@ -231,7 +232,8 @@ type ActionList {
|
|
|
231
232
|
enum affiliationCategory {
|
|
232
233
|
MEMBER
|
|
233
234
|
PARTNER
|
|
234
|
-
|
|
235
|
+
SUPPORT
|
|
236
|
+
NETWORK
|
|
235
237
|
OTHER
|
|
236
238
|
}
|
|
237
239
|
|
|
@@ -473,6 +475,12 @@ enum projectStatus {
|
|
|
473
475
|
CANCELED
|
|
474
476
|
}
|
|
475
477
|
|
|
478
|
+
enum projectTypes {
|
|
479
|
+
INITIATIVE
|
|
480
|
+
PLATFORM
|
|
481
|
+
RESEARCH
|
|
482
|
+
}
|
|
483
|
+
|
|
476
484
|
enum publicationType {
|
|
477
485
|
ARTICLE
|
|
478
486
|
CONFERENCE_PAPER
|
|
@@ -852,7 +860,7 @@ type RelatedProject {
|
|
|
852
860
|
|
|
853
861
|
type RelatedPublication {
|
|
854
862
|
name: String!
|
|
855
|
-
url: AWSURL
|
|
863
|
+
url: AWSURL
|
|
856
864
|
slug: String
|
|
857
865
|
}
|
|
858
866
|
|
|
@@ -931,6 +939,7 @@ type Groups {
|
|
|
931
939
|
team: Boolean
|
|
932
940
|
sab: Boolean
|
|
933
941
|
board: Boolean
|
|
942
|
+
ethics: Boolean
|
|
934
943
|
fellows: Boolean
|
|
935
944
|
sponsor: Boolean
|
|
936
945
|
vintage: [Vintage]
|
|
@@ -24,7 +24,8 @@ type ActionList {
|
|
|
24
24
|
enum affiliationCategory {
|
|
25
25
|
MEMBER
|
|
26
26
|
PARTNER
|
|
27
|
-
|
|
27
|
+
SUPPORT
|
|
28
|
+
NETWORK
|
|
28
29
|
OTHER
|
|
29
30
|
}
|
|
30
31
|
|
|
@@ -266,6 +267,12 @@ enum projectStatus {
|
|
|
266
267
|
CANCELED
|
|
267
268
|
}
|
|
268
269
|
|
|
270
|
+
enum projectTypes {
|
|
271
|
+
INITIATIVE
|
|
272
|
+
PLATFORM
|
|
273
|
+
RESEARCH
|
|
274
|
+
}
|
|
275
|
+
|
|
269
276
|
enum publicationType {
|
|
270
277
|
ARTICLE
|
|
271
278
|
CONFERENCE_PAPER
|
|
@@ -672,7 +679,7 @@ type RelatedProject {
|
|
|
672
679
|
|
|
673
680
|
type RelatedPublication {
|
|
674
681
|
name: String!
|
|
675
|
-
url: AWSURL
|
|
682
|
+
url: AWSURL
|
|
676
683
|
slug: String
|
|
677
684
|
}
|
|
678
685
|
|
|
@@ -751,6 +758,7 @@ type Groups {
|
|
|
751
758
|
team: Boolean
|
|
752
759
|
sab: Boolean
|
|
753
760
|
board: Boolean
|
|
761
|
+
ethics: Boolean
|
|
754
762
|
fellows: Boolean
|
|
755
763
|
sponsor: Boolean
|
|
756
764
|
vintage: [Vintage]
|
|
@@ -161,8 +161,10 @@ const data = {
|
|
|
161
161
|
"type": "Select",
|
|
162
162
|
"items": {
|
|
163
163
|
"Member": "MEMBER",
|
|
164
|
-
"
|
|
165
|
-
"Partner": "PARTNER"
|
|
164
|
+
"Support": "SUPPORT",
|
|
165
|
+
"Partner": "PARTNER",
|
|
166
|
+
"Other": "OTHER",
|
|
167
|
+
"Network": "NETWORK"
|
|
166
168
|
},
|
|
167
169
|
"value": "",
|
|
168
170
|
"multiple": true
|
|
@@ -3,8 +3,10 @@ import type { Sort, Views } from "../../index"
|
|
|
3
3
|
// Inline type definitions
|
|
4
4
|
export enum AffiliationCategories {
|
|
5
5
|
Member = "MEMBER",
|
|
6
|
-
|
|
6
|
+
Support = "SUPPORT",
|
|
7
7
|
Partner = "PARTNER",
|
|
8
|
+
Other = "OTHER",
|
|
9
|
+
Network = "NETWORK",
|
|
8
10
|
}
|
|
9
11
|
|
|
10
12
|
export interface Affiliations {
|
|
@@ -159,8 +159,10 @@ const data = {
|
|
|
159
159
|
"type": "Select",
|
|
160
160
|
"items": {
|
|
161
161
|
"Member": "MEMBER",
|
|
162
|
-
"
|
|
163
|
-
"Partner": "PARTNER"
|
|
162
|
+
"Support": "SUPPORT",
|
|
163
|
+
"Partner": "PARTNER",
|
|
164
|
+
"Other": "OTHER",
|
|
165
|
+
"Network": "NETWORK"
|
|
164
166
|
},
|
|
165
167
|
"value": "",
|
|
166
168
|
"multiple": true
|
|
@@ -173,8 +173,7 @@ const data = {
|
|
|
173
173
|
"items": {
|
|
174
174
|
"Planned": "PLANNED",
|
|
175
175
|
"Ongoing": "ONGOING",
|
|
176
|
-
"Finished": "FINISHED"
|
|
177
|
-
"Cancelled": "CANCELLED"
|
|
176
|
+
"Finished": "FINISHED"
|
|
178
177
|
},
|
|
179
178
|
"value": ""
|
|
180
179
|
},
|
|
@@ -183,21 +182,9 @@ const data = {
|
|
|
183
182
|
"multiple": true,
|
|
184
183
|
"items": {
|
|
185
184
|
"ShortStay": "SHORT_STAY",
|
|
186
|
-
"LongStay": "LONG_STAY"
|
|
187
|
-
"InGroup": "IN_GROUP"
|
|
185
|
+
"LongStay": "LONG_STAY"
|
|
188
186
|
},
|
|
189
187
|
"value": ""
|
|
190
|
-
},
|
|
191
|
-
"affiliation": {
|
|
192
|
-
"type": "Select",
|
|
193
|
-
"multiple": true,
|
|
194
|
-
"items": [],
|
|
195
|
-
"value": ""
|
|
196
|
-
},
|
|
197
|
-
"disciplines": {
|
|
198
|
-
"type": "Select",
|
|
199
|
-
"multiple": true,
|
|
200
|
-
"value": ""
|
|
201
188
|
}
|
|
202
189
|
},
|
|
203
190
|
"limit": 20
|
|
@@ -29,14 +29,12 @@ export interface Fellowships {
|
|
|
29
29
|
export enum FellowshipType {
|
|
30
30
|
ShortStay = "SHORT_STAY",
|
|
31
31
|
LongStay = "LONG_STAY",
|
|
32
|
-
InGroup = "IN_GROUP",
|
|
33
32
|
}
|
|
34
33
|
|
|
35
34
|
export enum FellowshipStatus {
|
|
36
35
|
Planned = "PLANNED",
|
|
37
36
|
Ongoing = "ONGOING",
|
|
38
37
|
Finished = "FINISHED",
|
|
39
|
-
Cancelled = "CANCELLED",
|
|
40
38
|
}
|
|
41
39
|
|
|
42
40
|
export interface ListModule {
|
package/dist/list/fellowships.js
CHANGED
|
@@ -171,8 +171,7 @@ const data = {
|
|
|
171
171
|
"items": {
|
|
172
172
|
"Planned": "PLANNED",
|
|
173
173
|
"Ongoing": "ONGOING",
|
|
174
|
-
"Finished": "FINISHED"
|
|
175
|
-
"Cancelled": "CANCELLED"
|
|
174
|
+
"Finished": "FINISHED"
|
|
176
175
|
},
|
|
177
176
|
"value": ""
|
|
178
177
|
},
|
|
@@ -181,21 +180,9 @@ const data = {
|
|
|
181
180
|
"multiple": true,
|
|
182
181
|
"items": {
|
|
183
182
|
"ShortStay": "SHORT_STAY",
|
|
184
|
-
"LongStay": "LONG_STAY"
|
|
185
|
-
"InGroup": "IN_GROUP"
|
|
183
|
+
"LongStay": "LONG_STAY"
|
|
186
184
|
},
|
|
187
185
|
"value": ""
|
|
188
|
-
},
|
|
189
|
-
"affiliation": {
|
|
190
|
-
"type": "Select",
|
|
191
|
-
"multiple": true,
|
|
192
|
-
"items": [],
|
|
193
|
-
"value": ""
|
|
194
|
-
},
|
|
195
|
-
"disciplines": {
|
|
196
|
-
"type": "Select",
|
|
197
|
-
"multiple": true,
|
|
198
|
-
"value": ""
|
|
199
186
|
}
|
|
200
187
|
},
|
|
201
188
|
"limit": 20
|
package/dist/list/people.cjs.js
CHANGED
|
@@ -173,62 +173,27 @@ const data = {
|
|
|
173
173
|
}
|
|
174
174
|
},
|
|
175
175
|
"filters": {
|
|
176
|
-
"groups": {
|
|
177
|
-
"type": "Select",
|
|
178
|
-
"value": ""
|
|
179
|
-
},
|
|
180
176
|
"vintage": {
|
|
181
177
|
"type": "Select",
|
|
182
|
-
"show": {
|
|
183
|
-
"default": false,
|
|
184
|
-
"switchIf": [
|
|
185
|
-
{
|
|
186
|
-
"groups": "fellows"
|
|
187
|
-
}
|
|
188
|
-
],
|
|
189
|
-
"disjonctive": false
|
|
190
|
-
},
|
|
191
178
|
"multiple": true,
|
|
192
179
|
"value": ""
|
|
193
180
|
},
|
|
194
181
|
"programs": {
|
|
195
182
|
"type": "Select",
|
|
196
|
-
"show": {
|
|
197
|
-
"default": false,
|
|
198
|
-
"switchIf": [
|
|
199
|
-
{
|
|
200
|
-
"groups": "fellows"
|
|
201
|
-
}
|
|
202
|
-
],
|
|
203
|
-
"disjonctive": false
|
|
204
|
-
},
|
|
205
183
|
"multiple": true,
|
|
206
184
|
"value": ""
|
|
207
185
|
},
|
|
208
186
|
"disciplines": {
|
|
209
187
|
"type": "Select",
|
|
210
|
-
"show": {
|
|
211
|
-
"default": false,
|
|
212
|
-
"switchIf": [
|
|
213
|
-
{
|
|
214
|
-
"groups": "fellows"
|
|
215
|
-
}
|
|
216
|
-
],
|
|
217
|
-
"disjonctive": false
|
|
218
|
-
},
|
|
219
188
|
"multiple": true,
|
|
220
189
|
"value": ""
|
|
221
190
|
},
|
|
222
|
-
"
|
|
191
|
+
"status": {
|
|
223
192
|
"type": "Select",
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
|
|
228
|
-
"groups": "fellows"
|
|
229
|
-
}
|
|
230
|
-
],
|
|
231
|
-
"disjonctive": false
|
|
193
|
+
"items": {
|
|
194
|
+
"Past": "PAST",
|
|
195
|
+
"InProgress": "IN_PROGRESS",
|
|
196
|
+
"Upcoming": "UPCOMING"
|
|
232
197
|
},
|
|
233
198
|
"multiple": true,
|
|
234
199
|
"value": ""
|
package/dist/list/people.d.ts
CHANGED
package/dist/list/people.js
CHANGED
|
@@ -171,62 +171,27 @@ const data = {
|
|
|
171
171
|
}
|
|
172
172
|
},
|
|
173
173
|
"filters": {
|
|
174
|
-
"groups": {
|
|
175
|
-
"type": "Select",
|
|
176
|
-
"value": ""
|
|
177
|
-
},
|
|
178
174
|
"vintage": {
|
|
179
175
|
"type": "Select",
|
|
180
|
-
"show": {
|
|
181
|
-
"default": false,
|
|
182
|
-
"switchIf": [
|
|
183
|
-
{
|
|
184
|
-
"groups": "fellows"
|
|
185
|
-
}
|
|
186
|
-
],
|
|
187
|
-
"disjonctive": false
|
|
188
|
-
},
|
|
189
176
|
"multiple": true,
|
|
190
177
|
"value": ""
|
|
191
178
|
},
|
|
192
179
|
"programs": {
|
|
193
180
|
"type": "Select",
|
|
194
|
-
"show": {
|
|
195
|
-
"default": false,
|
|
196
|
-
"switchIf": [
|
|
197
|
-
{
|
|
198
|
-
"groups": "fellows"
|
|
199
|
-
}
|
|
200
|
-
],
|
|
201
|
-
"disjonctive": false
|
|
202
|
-
},
|
|
203
181
|
"multiple": true,
|
|
204
182
|
"value": ""
|
|
205
183
|
},
|
|
206
184
|
"disciplines": {
|
|
207
185
|
"type": "Select",
|
|
208
|
-
"show": {
|
|
209
|
-
"default": false,
|
|
210
|
-
"switchIf": [
|
|
211
|
-
{
|
|
212
|
-
"groups": "fellows"
|
|
213
|
-
}
|
|
214
|
-
],
|
|
215
|
-
"disjonctive": false
|
|
216
|
-
},
|
|
217
186
|
"multiple": true,
|
|
218
187
|
"value": ""
|
|
219
188
|
},
|
|
220
|
-
"
|
|
189
|
+
"status": {
|
|
221
190
|
"type": "Select",
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
|
|
226
|
-
"groups": "fellows"
|
|
227
|
-
}
|
|
228
|
-
],
|
|
229
|
-
"disjonctive": false
|
|
191
|
+
"items": {
|
|
192
|
+
"Past": "PAST",
|
|
193
|
+
"InProgress": "IN_PROGRESS",
|
|
194
|
+
"Upcoming": "UPCOMING"
|
|
230
195
|
},
|
|
231
196
|
"multiple": true,
|
|
232
197
|
"value": ""
|
package/dist/list/projects.d.ts
CHANGED
|
@@ -18,6 +18,13 @@ export interface Projects {
|
|
|
18
18
|
date?: Date
|
|
19
19
|
featured?: Date
|
|
20
20
|
status: projectStatus
|
|
21
|
+
type: projectTypes
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export enum projectTypes {
|
|
25
|
+
Initiative = "INITIATIVE",
|
|
26
|
+
Platform = "PLATFORM",
|
|
27
|
+
Research = "RESEARCH",
|
|
21
28
|
}
|
|
22
29
|
|
|
23
30
|
export enum projectStatus {
|