@paris-ias/trees 2.1.0 → 2.1.3

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.
Files changed (37) hide show
  1. package/dist/form/affiliations.cjs.js +134 -6
  2. package/dist/form/affiliations.js +134 -6
  3. package/dist/form/events.cjs.js +0 -1
  4. package/dist/form/events.d.ts +2 -2
  5. package/dist/form/events.js +0 -1
  6. package/dist/form/fellowships.cjs.js +2 -1
  7. package/dist/form/fellowships.d.ts +1 -0
  8. package/dist/form/fellowships.js +2 -1
  9. package/dist/form/news.d.ts +7 -7
  10. package/dist/form/people.cjs.js +65 -0
  11. package/dist/form/people.d.ts +2 -1
  12. package/dist/form/people.js +65 -0
  13. package/dist/form/projects.d.ts +6 -6
  14. package/dist/form/publications.cjs.js +45 -0
  15. package/dist/form/publications.d.ts +40 -12
  16. package/dist/form/publications.js +45 -0
  17. package/dist/graphql/client/publications/query.get.publications.gql +17 -0
  18. package/dist/graphql/client/publications/query.list.publications.gql +17 -1
  19. package/dist/graphql/schemas/schema.apex.graphql +20 -14
  20. package/dist/graphql/schemas/schema.website.graphql +20 -14
  21. package/dist/list/events.cjs.js +32 -1
  22. package/dist/list/events.d.ts +2 -2
  23. package/dist/list/events.js +32 -1
  24. package/dist/list/fellowships.cjs.js +2 -1
  25. package/dist/list/fellowships.d.ts +1 -0
  26. package/dist/list/fellowships.js +2 -1
  27. package/dist/list/news.d.ts +7 -7
  28. package/dist/list/people.cjs.js +62 -0
  29. package/dist/list/people.d.ts +2 -1
  30. package/dist/list/people.js +62 -0
  31. package/dist/list/projects.cjs.js +8 -0
  32. package/dist/list/projects.d.ts +6 -6
  33. package/dist/list/projects.js +8 -0
  34. package/dist/list/publications.cjs.js +1 -0
  35. package/dist/list/publications.d.ts +40 -12
  36. package/dist/list/publications.js +1 -0
  37. package/package.json +3 -3
@@ -69,9 +69,11 @@ const data = {
69
69
  "en": "",
70
70
  "fr": ""
71
71
  },
72
+ "authors": "",
72
73
  "url": "",
73
74
  "affiliations": "",
74
75
  "eventCategories": "",
76
+ "newsCategories": "",
75
77
  "type": "",
76
78
  "related": {
77
79
  "events": "",
@@ -154,6 +156,16 @@ const data = {
154
156
  },
155
157
  "meta": "summary"
156
158
  },
159
+ "authors": {
160
+ "label": "authors",
161
+ "component": "RelatedPeoplePicker",
162
+ "type": "DOCUMENT",
163
+ "rules": {
164
+ "required": true
165
+ },
166
+ "meta": "authors",
167
+ "default": ""
168
+ },
157
169
  "url": {
158
170
  "label": "url",
159
171
  "component": "TextField",
@@ -180,6 +192,39 @@ const data = {
180
192
  },
181
193
  "meta": "eventCategories"
182
194
  },
195
+ "newsCategories": {
196
+ "label": "newsCategories",
197
+ "component": "Select",
198
+ "type": "PRIMITIVE",
199
+ "rules": {
200
+ "required": true
201
+ },
202
+ "items": {
203
+ "Announcement": "ANNOUNCEMENT",
204
+ "Article": "ARTICLE",
205
+ "Audio": "AUDIO",
206
+ "Award": "AWARD",
207
+ "Blog": "BLOG",
208
+ "Data": "DATA",
209
+ "Event": "EVENT",
210
+ "Fellowship": "FELLOWSHIP",
211
+ "Grant": "GRANT",
212
+ "Interview": "INTERVIEW",
213
+ "Job": "JOB",
214
+ "LifeAtTheInstitute": "LIFE_AT_THE_INSTITUTE",
215
+ "Opinion": "OPINION",
216
+ "Other": "OTHER",
217
+ "Ppias": "PPIAS",
218
+ "PressRelease": "PRESS_RELEASE",
219
+ "Project": "PROJECT",
220
+ "Publication": "PUBLICATION",
221
+ "Report": "REPORT",
222
+ "Software": "SOFTWARE",
223
+ "Tool": "TOOL",
224
+ "Video": "VIDEO"
225
+ },
226
+ "meta": "newsCategories"
227
+ },
183
228
  "type": {
184
229
  "label": "type",
185
230
  "component": "ListSelect",
@@ -1,24 +1,51 @@
1
1
  import type { Form } from "../../index"
2
2
 
3
3
  // Inline type definitions
4
+ export enum newsCategories {
5
+ Announcement = "ANNOUNCEMENT",
6
+ Article = "ARTICLE",
7
+ Audio = "AUDIO",
8
+ Award = "AWARD",
9
+ Blog = "BLOG",
10
+ Data = "DATA",
11
+ Event = "EVENT",
12
+ Fellowship = "FELLOWSHIP",
13
+ Grant = "GRANT",
14
+ Interview = "INTERVIEW",
15
+ Job = "JOB",
16
+ LifeAtTheInstitute = "LIFE_AT_THE_INSTITUTE",
17
+ Opinion = "OPINION",
18
+ Other = "OTHER",
19
+ Ppias = "PPIAS",
20
+ PressRelease = "PRESS_RELEASE",
21
+ Project = "PROJECT",
22
+ Publication = "PUBLICATION",
23
+ Report = "REPORT",
24
+ Software = "SOFTWARE",
25
+ Tool = "TOOL",
26
+ Video = "VIDEO",
27
+ }
28
+
4
29
  export interface Publications {
5
- name: string
6
- subtitle?: string
30
+ authors: [RelatedPeople]
31
+ color?: string
32
+ date?: Date
7
33
  description?: string
8
- summary?: string
9
- url?: URL
10
- affiliations?: Affiliations[]
11
- related?: Related[]
34
+ disciplines?: Disciplines[]
35
+ eventCategories?: eventCategories
36
+ featured?: Date
37
+ files?: Files[]
12
38
  gallery?: Image[]
13
39
  image?: Image
14
- video?: Video
40
+ name: string
41
+ newsCategories?: newsCategories
42
+ related?: Related[]
43
+ subtitle?: string
44
+ summary?: string
15
45
  tags?: Tag[]
16
- disciplines?: Disciplines[]
17
- files?: Files[]
18
- color?: string
19
- date?: Date
20
46
  type: publicationType
21
- eventCategories: eventCategories
47
+ url?: URL
48
+ video?: Video
22
49
  }
23
50
 
24
51
  export enum publicationType {
@@ -29,6 +56,7 @@ export enum publicationType {
29
56
  Thesis = "THESIS",
30
57
  Report = "REPORT",
31
58
  Software = "SOFTWARE",
59
+ News = "NEWS",
32
60
  Data = "DATA",
33
61
  Video = "VIDEO",
34
62
  Audio = "AUDIO",
@@ -67,9 +67,11 @@ const data = {
67
67
  "en": "",
68
68
  "fr": ""
69
69
  },
70
+ "authors": "",
70
71
  "url": "",
71
72
  "affiliations": "",
72
73
  "eventCategories": "",
74
+ "newsCategories": "",
73
75
  "type": "",
74
76
  "related": {
75
77
  "events": "",
@@ -152,6 +154,16 @@ const data = {
152
154
  },
153
155
  "meta": "summary"
154
156
  },
157
+ "authors": {
158
+ "label": "authors",
159
+ "component": "RelatedPeoplePicker",
160
+ "type": "DOCUMENT",
161
+ "rules": {
162
+ "required": true
163
+ },
164
+ "meta": "authors",
165
+ "default": ""
166
+ },
155
167
  "url": {
156
168
  "label": "url",
157
169
  "component": "TextField",
@@ -178,6 +190,39 @@ const data = {
178
190
  },
179
191
  "meta": "eventCategories"
180
192
  },
193
+ "newsCategories": {
194
+ "label": "newsCategories",
195
+ "component": "Select",
196
+ "type": "PRIMITIVE",
197
+ "rules": {
198
+ "required": true
199
+ },
200
+ "items": {
201
+ "Announcement": "ANNOUNCEMENT",
202
+ "Article": "ARTICLE",
203
+ "Audio": "AUDIO",
204
+ "Award": "AWARD",
205
+ "Blog": "BLOG",
206
+ "Data": "DATA",
207
+ "Event": "EVENT",
208
+ "Fellowship": "FELLOWSHIP",
209
+ "Grant": "GRANT",
210
+ "Interview": "INTERVIEW",
211
+ "Job": "JOB",
212
+ "LifeAtTheInstitute": "LIFE_AT_THE_INSTITUTE",
213
+ "Opinion": "OPINION",
214
+ "Other": "OTHER",
215
+ "Ppias": "PPIAS",
216
+ "PressRelease": "PRESS_RELEASE",
217
+ "Project": "PROJECT",
218
+ "Publication": "PUBLICATION",
219
+ "Report": "REPORT",
220
+ "Software": "SOFTWARE",
221
+ "Tool": "TOOL",
222
+ "Video": "VIDEO"
223
+ },
224
+ "meta": "newsCategories"
225
+ },
181
226
  "type": {
182
227
  "label": "type",
183
228
  "component": "ListSelect",
@@ -31,9 +31,26 @@ query getPublication(
31
31
  ror
32
32
  url
33
33
  }
34
+ authors {
35
+ firstname
36
+ lastname
37
+ slug
38
+ image {
39
+ alt
40
+ backgroundColor
41
+ caption
42
+ copyright
43
+ license
44
+ licenseUrl
45
+ url
46
+ }
47
+ }
34
48
  color
35
49
  date
50
+ featured
36
51
  description
52
+ eventCategories
53
+ newsCategory
37
54
  files {
38
55
  createdAt
39
56
  file
@@ -6,8 +6,24 @@ query listPublications(
6
6
  listPublications(options: $options, appId: $appId, lang: $lang) {
7
7
  items {
8
8
  date
9
- eventCategory
9
+ featured
10
+ eventCategories
11
+ newsCategory
10
12
  type
13
+ authors {
14
+ firstname
15
+ lastname
16
+ slug
17
+ image {
18
+ alt
19
+ backgroundColor
20
+ caption
21
+ copyright
22
+ license
23
+ licenseUrl
24
+ url
25
+ }
26
+ }
11
27
  image {
12
28
  alt
13
29
  backgroundColor
@@ -489,6 +489,7 @@ enum publicationType {
489
489
  THESIS
490
490
  REPORT
491
491
  SOFTWARE
492
+ NEWS
492
493
  DATA
493
494
  VIDEO
494
495
  AUDIO
@@ -1026,6 +1027,7 @@ type Project {
1026
1027
  status: projectStatus
1027
1028
  slug: String
1028
1029
  score: Float
1030
+ type: projectTypes
1029
1031
  }
1030
1032
 
1031
1033
  type ProjectFilters {
@@ -1038,26 +1040,29 @@ type ProjectsList {
1038
1040
  }
1039
1041
 
1040
1042
  type Publication {
1043
+ affiliations: [Affiliation]
1041
1044
  appId: String
1045
+ authors: [RelatedPeople]
1046
+ color: String
1047
+ date: AWSDateTime
1048
+ description: String
1049
+ disciplines: [Disciplines]
1050
+ eventCategories: eventCategories
1051
+ featured: AWSDateTime
1052
+ files: [File]
1053
+ gallery: [Image]
1054
+ image: Image
1042
1055
  name: String!
1056
+ newsCategory: newsCategories
1057
+ related: Related
1058
+ score: Float
1059
+ slug: String
1043
1060
  subtitle: String
1044
- description: String
1045
1061
  summary: String
1062
+ tags: [Tag]
1046
1063
  type: publicationType
1047
1064
  url: AWSURL
1048
- affiliations: [Affiliation]
1049
- related: Related
1050
- gallery: [Image]
1051
- image: Image
1052
1065
  video: Video
1053
- tags: [Tag]
1054
- files: [File]
1055
- eventCategory: eventCategories
1056
- disciplines: [Disciplines]
1057
- color: String
1058
- date: AWSDateTime
1059
- slug: String
1060
- score: Float
1061
1066
  }
1062
1067
 
1063
1068
  type PublicationFilters {
@@ -1065,7 +1070,8 @@ type PublicationFilters {
1065
1070
  tags: [String!]
1066
1071
  disciplines: [String!]
1067
1072
  type: [publicationType!]
1068
- eventCategory: [eventCategories!]
1073
+ eventCategories: [eventCategories!]
1074
+ newsCategory: [newsCategories!]
1069
1075
  }
1070
1076
 
1071
1077
  type PublicationsList {
@@ -281,6 +281,7 @@ enum publicationType {
281
281
  THESIS
282
282
  REPORT
283
283
  SOFTWARE
284
+ NEWS
284
285
  DATA
285
286
  VIDEO
286
287
  AUDIO
@@ -845,6 +846,7 @@ type Project {
845
846
  status: projectStatus
846
847
  slug: String
847
848
  score: Float
849
+ type: projectTypes
848
850
  }
849
851
 
850
852
  type ProjectFilters {
@@ -857,26 +859,29 @@ type ProjectsList {
857
859
  }
858
860
 
859
861
  type Publication {
862
+ affiliations: [Affiliation]
860
863
  appId: String
864
+ authors: [RelatedPeople]
865
+ color: String
866
+ date: AWSDateTime
867
+ description: String
868
+ disciplines: [Disciplines]
869
+ eventCategories: eventCategories
870
+ featured: AWSDateTime
871
+ files: [File]
872
+ gallery: [Image]
873
+ image: Image
861
874
  name: String!
875
+ newsCategory: newsCategories
876
+ related: Related
877
+ score: Float
878
+ slug: String
862
879
  subtitle: String
863
- description: String
864
880
  summary: String
881
+ tags: [Tag]
865
882
  type: publicationType
866
883
  url: AWSURL
867
- affiliations: [Affiliation]
868
- related: Related
869
- gallery: [Image]
870
- image: Image
871
884
  video: Video
872
- tags: [Tag]
873
- files: [File]
874
- eventCategory: eventCategories
875
- disciplines: [Disciplines]
876
- color: String
877
- date: AWSDateTime
878
- slug: String
879
- score: Float
880
885
  }
881
886
 
882
887
  type PublicationFilters {
@@ -884,7 +889,8 @@ type PublicationFilters {
884
889
  tags: [String!]
885
890
  disciplines: [String!]
886
891
  type: [publicationType!]
887
- eventCategory: [eventCategories!]
892
+ eventCategories: [eventCategories!]
893
+ newsCategory: [newsCategories!]
888
894
  }
889
895
 
890
896
  type PublicationsList {
@@ -216,7 +216,38 @@ const data = {
216
216
  },
217
217
  "disciplines": {
218
218
  "type": "AutoComplete",
219
- "items": [],
219
+ "items": {
220
+ "AnthropologyAndEthnology": "ANTHROPOLOGY_AND_ETHNOLOGY",
221
+ "ArchitectureAndUrbanPlanning": "ARCHITECTURE_AND_URBAN_PLANNING",
222
+ "Archaeology": "ARCHAEOLOGY",
223
+ "ArtAndHistoryOfArt": "ART_AND_HISTORY_OF_ART",
224
+ "ClassicalStudies": "CLASSICAL_STUDIES",
225
+ "Demography": "DEMOGRAPHY",
226
+ "DigitalHumanities": "DIGITAL_HUMANITIES",
227
+ "Economics": "ECONOMICS",
228
+ "EducationSciences": "EDUCATION_SCIENCES",
229
+ "EnvironmentalSciences": "ENVIRONMENTAL_SCIENCES",
230
+ "Geography": "GEOGRAPHY",
231
+ "History": "HISTORY",
232
+ "InformationAndCommunicationSciences": "INFORMATION_AND_COMMUNICATION_SCIENCES",
233
+ "InternationalRelations": "INTERNATIONAL_RELATIONS",
234
+ "Law": "LAW",
235
+ "Linguistics": "LINGUISTICS",
236
+ "Literature": "LITERATURE",
237
+ "ManagementAndPublicAdministration": "MANAGEMENT_AND_PUBLIC_ADMINISTRATION",
238
+ "NeurosciencesAndCognitiveSciences": "NEUROSCIENCES_AND_COGNITIVE_SCIENCES",
239
+ "Philosophy": "PHILOSOPHY",
240
+ "PoliticalScience": "POLITICAL_SCIENCE",
241
+ "Psychology": "PSYCHOLOGY",
242
+ "Sociology": "SOCIOLOGY",
243
+ "StudiesInScienceAndTechnology": "STUDIES_IN_SCIENCE_AND_TECHNOLOGY",
244
+ "Theology": "THEOLOGY",
245
+ "Biology": "BIOLOGY",
246
+ "Chemistry": "CHEMISTRY",
247
+ "ComputerScience": "COMPUTER_SCIENCE",
248
+ "Medicine": "MEDICINE",
249
+ "PhysicsMathematicsAndEngineering": "PHYSICS_MATHEMATICS_AND_ENGINEERING"
250
+ },
220
251
  "multiple": true,
221
252
  "value": ""
222
253
  },
@@ -12,7 +12,7 @@ export interface Events {
12
12
  delay?: number // 0 - Server & Client -
13
13
  description: string // 0 - Server & Client -
14
14
  details: String // 0 - Server & Client -
15
- disciplines?: Disciplines[] // 3 - Server & Client //Inside=> Presentation
15
+ disciplines?: DisciplinesOptions[] // 3 - Server & Client //Inside=> Presentation
16
16
  discussants?: RelatedPeople[] // 0 - Server & Client -
17
17
  files?: Files[] // 3 - Server & Client -
18
18
  lang: string[]
@@ -36,6 +36,7 @@ export interface Events {
36
36
  subtitle?: string // 0 - Server &
37
37
  summary?: string // 0 - Server & Client -
38
38
  tags?: Tag[] // 3 - Server & Client - Inside=> Presentation
39
+ thematics: Thematics[] // 0 - Server & Client
39
40
  totalSlots: number // 0 - Server & Client
40
41
  eventType: eventType // 0 : online, 1: physical, 2: hybrid// 0 - Server & Client -
41
42
  updatedAt: Date // 0 - Server & Client -
@@ -43,7 +44,6 @@ export interface Events {
43
44
  }
44
45
 
45
46
  export enum eventState {
46
- Draft = "DRAFT",
47
47
  Published = "PUBLISHED",
48
48
  Removed = "REMOVED",
49
49
  Finished = "FINISHED",
@@ -214,7 +214,38 @@ const data = {
214
214
  },
215
215
  "disciplines": {
216
216
  "type": "AutoComplete",
217
- "items": [],
217
+ "items": {
218
+ "AnthropologyAndEthnology": "ANTHROPOLOGY_AND_ETHNOLOGY",
219
+ "ArchitectureAndUrbanPlanning": "ARCHITECTURE_AND_URBAN_PLANNING",
220
+ "Archaeology": "ARCHAEOLOGY",
221
+ "ArtAndHistoryOfArt": "ART_AND_HISTORY_OF_ART",
222
+ "ClassicalStudies": "CLASSICAL_STUDIES",
223
+ "Demography": "DEMOGRAPHY",
224
+ "DigitalHumanities": "DIGITAL_HUMANITIES",
225
+ "Economics": "ECONOMICS",
226
+ "EducationSciences": "EDUCATION_SCIENCES",
227
+ "EnvironmentalSciences": "ENVIRONMENTAL_SCIENCES",
228
+ "Geography": "GEOGRAPHY",
229
+ "History": "HISTORY",
230
+ "InformationAndCommunicationSciences": "INFORMATION_AND_COMMUNICATION_SCIENCES",
231
+ "InternationalRelations": "INTERNATIONAL_RELATIONS",
232
+ "Law": "LAW",
233
+ "Linguistics": "LINGUISTICS",
234
+ "Literature": "LITERATURE",
235
+ "ManagementAndPublicAdministration": "MANAGEMENT_AND_PUBLIC_ADMINISTRATION",
236
+ "NeurosciencesAndCognitiveSciences": "NEUROSCIENCES_AND_COGNITIVE_SCIENCES",
237
+ "Philosophy": "PHILOSOPHY",
238
+ "PoliticalScience": "POLITICAL_SCIENCE",
239
+ "Psychology": "PSYCHOLOGY",
240
+ "Sociology": "SOCIOLOGY",
241
+ "StudiesInScienceAndTechnology": "STUDIES_IN_SCIENCE_AND_TECHNOLOGY",
242
+ "Theology": "THEOLOGY",
243
+ "Biology": "BIOLOGY",
244
+ "Chemistry": "CHEMISTRY",
245
+ "ComputerScience": "COMPUTER_SCIENCE",
246
+ "Medicine": "MEDICINE",
247
+ "PhysicsMathematicsAndEngineering": "PHYSICS_MATHEMATICS_AND_ENGINEERING"
248
+ },
218
249
  "multiple": true,
219
250
  "value": ""
220
251
  },
@@ -182,7 +182,8 @@ const data = {
182
182
  "multiple": true,
183
183
  "items": {
184
184
  "ShortStay": "SHORT_STAY",
185
- "LongStay": "LONG_STAY"
185
+ "LongStay": "LONG_STAY",
186
+ "Group": "GROUP"
186
187
  },
187
188
  "value": ""
188
189
  }
@@ -29,6 +29,7 @@ export interface Fellowships {
29
29
  export enum FellowshipType {
30
30
  ShortStay = "SHORT_STAY",
31
31
  LongStay = "LONG_STAY",
32
+ Group = "GROUP",
32
33
  }
33
34
 
34
35
  export enum FellowshipStatus {
@@ -180,7 +180,8 @@ const data = {
180
180
  "multiple": true,
181
181
  "items": {
182
182
  "ShortStay": "SHORT_STAY",
183
- "LongStay": "LONG_STAY"
183
+ "LongStay": "LONG_STAY",
184
+ "Group": "GROUP"
184
185
  },
185
186
  "value": ""
186
187
  }
@@ -3,19 +3,19 @@ import type { Sort, Views } from "../../index"
3
3
  // Inline type definitions
4
4
  export interface News {
5
5
  name: string
6
- authors: [RelatedPeople]
7
- category?: newsCategories
6
+ subtitle?: string
8
7
  description?: string
9
8
  summary?: string
10
- subtitle?: string
11
- tags?: Tag[]
12
- image?: Image
9
+ url?: URL
10
+ related?: Related[]
13
11
  gallery?: Image[]
12
+ image?: Image
13
+ tags?: Tag[]
14
+ authors: [RelatedPeople]
15
+ category?: newsCategories
14
16
  color?: string
15
- url?: URL
16
17
  date?: Date
17
18
  featured?: Date
18
- related?: Related[]
19
19
  files?: Files
20
20
  }
21
21
 
@@ -186,6 +186,68 @@ const data = {
186
186
  "disciplines": {
187
187
  "type": "Select",
188
188
  "multiple": true,
189
+ "items": {
190
+ "AnthropologyAndEthnology": "ANTHROPOLOGY_AND_ETHNOLOGY",
191
+ "ArchitectureAndUrbanPlanning": "ARCHITECTURE_AND_URBAN_PLANNING",
192
+ "Archaeology": "ARCHAEOLOGY",
193
+ "ArtAndHistoryOfArt": "ART_AND_HISTORY_OF_ART",
194
+ "ClassicalStudies": "CLASSICAL_STUDIES",
195
+ "Demography": "DEMOGRAPHY",
196
+ "DigitalHumanities": "DIGITAL_HUMANITIES",
197
+ "Economics": "ECONOMICS",
198
+ "EducationSciences": "EDUCATION_SCIENCES",
199
+ "EnvironmentalSciences": "ENVIRONMENTAL_SCIENCES",
200
+ "Geography": "GEOGRAPHY",
201
+ "History": "HISTORY",
202
+ "InformationAndCommunicationSciences": "INFORMATION_AND_COMMUNICATION_SCIENCES",
203
+ "InternationalRelations": "INTERNATIONAL_RELATIONS",
204
+ "Law": "LAW",
205
+ "Linguistics": "LINGUISTICS",
206
+ "Literature": "LITERATURE",
207
+ "ManagementAndPublicAdministration": "MANAGEMENT_AND_PUBLIC_ADMINISTRATION",
208
+ "NeurosciencesAndCognitiveSciences": "NEUROSCIENCES_AND_COGNITIVE_SCIENCES",
209
+ "Philosophy": "PHILOSOPHY",
210
+ "PoliticalScience": "POLITICAL_SCIENCE",
211
+ "Psychology": "PSYCHOLOGY",
212
+ "Sociology": "SOCIOLOGY",
213
+ "StudiesInScienceAndTechnology": "STUDIES_IN_SCIENCE_AND_TECHNOLOGY",
214
+ "Theology": "THEOLOGY",
215
+ "Biology": "BIOLOGY",
216
+ "Chemistry": "CHEMISTRY",
217
+ "ComputerScience": "COMPUTER_SCIENCE",
218
+ "Medicine": "MEDICINE",
219
+ "PhysicsMathematicsAndEngineering": "PHYSICS_MATHEMATICS_AND_ENGINEERING"
220
+ },
221
+ "value": ""
222
+ },
223
+ "thematics": {
224
+ "type": "Select",
225
+ "multiple": true,
226
+ "items": {
227
+ "AgricultureAndFood": "AGRICULTURE_AND_FOOD",
228
+ "ArtificialIntelligence": "ARTIFICIAL_INTELLIGENCE",
229
+ "CommunicationAndDigitalEconomy": "COMMUNICATION_AND_DIGITAL_ECONOMY",
230
+ "BehaviourPerceptionEmotions": "BEHAVIOUR_PERCEPTION_EMOTIONS",
231
+ "CitiesAndRegions": "CITIES_AND_REGIONS",
232
+ "CulturalHeritage": "CULTURAL_HERITAGE",
233
+ "DemocracyCitizenshipAndGovernance": "DEMOCRACY_CITIZENSHIP_AND_GOVERNANCE",
234
+ "EducationAndResearch": "EDUCATION_AND_RESEARCH",
235
+ "EnergyNaturalResources": "ENERGY_NATURAL_RESOURCES",
236
+ "EnvironmentAndClimate": "ENVIRONMENT_AND_CLIMATE",
237
+ "IdentitiesGenderAndSexualities": "IDENTITIES_GENDER_AND_SEXUALITIES",
238
+ "InequalitiesInclusionSocialInnovation": "INEQUALITIES_INCLUSION_SOCIAL_INNOVATION",
239
+ "Migrations": "MIGRATIONS",
240
+ "Oceans": "OCEANS",
241
+ "PublicPolicies": "PUBLIC_POLICIES",
242
+ "RadicalisationViolenceExtremism": "RADICALISATION_VIOLENCE_EXTREMISM",
243
+ "RegulationAndGlobalisation": "REGULATION_AND_GLOBALISATION",
244
+ "ReligionSecularismSocieties": "RELIGION_SECULARISM_SOCIETIES",
245
+ "HealthAndAgeing": "HEALTH_AND_AGEING",
246
+ "SecurityWarAndPeace": "SECURITY_WAR_AND_PEACE",
247
+ "Space": "SPACE",
248
+ "TransportMobilityTourism": "TRANSPORT_MOBILITY_TOURISM",
249
+ "WorkInnovationTechnology": "WORK_INNOVATION_TECHNOLOGY"
250
+ },
189
251
  "value": ""
190
252
  },
191
253
  "status": {
@@ -12,7 +12,8 @@ export interface People {
12
12
  consent: Consent
13
13
  groups: Groups
14
14
  lang: string
15
- disciplines?: Disciplines[]
15
+ disciplines?: DisciplinesOptions[]
16
+ thematics?: Thematics[]
16
17
  related?: Related[]
17
18
  video?: Video[]
18
19
  }