@paris-ias/trees 2.2.11 → 2.2.13

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.
@@ -5,7 +5,7 @@ export interface Fellowships {
5
5
  action?: string
6
6
  affiliations?: Affiliations[] // AKA members behind the fellowships
7
7
  applicationStart?: Date
8
- disciplines?: Disciplines[] // 3 - Server & Client //Inside=> Presentation
8
+ disciplines?: DisciplinesOptions[] // 3 - Server & Client //Inside=> Presentation
9
9
  fellowshipStart?: Date
10
10
  contact?: string
11
11
  description: string
@@ -8,6 +8,7 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
8
8
  dateText
9
9
  description
10
10
  details
11
+ disciplines
11
12
  image {
12
13
  alt
13
14
  caption
@@ -13,6 +13,7 @@ query listEvents(
13
13
  eventType
14
14
  summary
15
15
  subtitle
16
+ disciplines
16
17
  image {
17
18
  alt
18
19
  backgroundColor
@@ -92,13 +92,7 @@ query getFellowship(
92
92
  licenseUrl
93
93
  url
94
94
  }
95
- disciplines {
96
- description
97
- createdAt
98
- icon
99
- name
100
- updatedAt
101
- }
95
+ disciplines
102
96
  appId
103
97
  affiliations {
104
98
  image {
@@ -9,13 +9,7 @@ query listFellowships(
9
9
  applicationStart
10
10
  applicationStop
11
11
  fellowshipType
12
- disciplines {
13
- createdAt
14
- description
15
- icon
16
- name
17
- updatedAt
18
- }
12
+ disciplines
19
13
  image {
20
14
  alt
21
15
  backgroundColor
@@ -4,6 +4,7 @@ query getPublication(
4
4
  $lang: String = "en"
5
5
  ) {
6
6
  getPublication(appId: $appId, itemId: $itemId, lang: $lang) {
7
+ disciplines
7
8
  affiliations {
8
9
  image {
9
10
  alt
@@ -10,6 +10,7 @@ query listPublications(
10
10
  eventCategories
11
11
  newsCategory
12
12
  type
13
+ disciplines
13
14
  authors {
14
15
  firstname
15
16
  lastname
@@ -325,6 +325,7 @@ type Event {
325
325
  delay: AWSDateTime
326
326
  description: String
327
327
  details: String
328
+ disciplines: [String]
328
329
  eventType: eventType
329
330
  image: Image
330
331
  location: Location
@@ -375,7 +376,7 @@ type Fellowship {
375
376
  action: String
376
377
  affiliations: [Affiliation]
377
378
  applicationStart: String
378
- disciplines: [Disciplines]
379
+ disciplines: [String]
379
380
  fellowshipStart: String
380
381
  contact: String
381
382
  description: String
@@ -1071,7 +1072,7 @@ type Publication {
1071
1072
  color: String
1072
1073
  date: AWSDateTime
1073
1074
  description: String
1074
- disciplines: [Disciplines]
1075
+ disciplines: [String]
1075
1076
  eventCategories: eventCategories
1076
1077
  featured: AWSDateTime
1077
1078
  files: [File]
@@ -115,6 +115,7 @@ type Event {
115
115
  delay: AWSDateTime
116
116
  description: String
117
117
  details: String
118
+ disciplines: [String]
118
119
  eventType: eventType
119
120
  image: Image
120
121
  location: Location
@@ -165,7 +166,7 @@ type Fellowship {
165
166
  action: String
166
167
  affiliations: [Affiliation]
167
168
  applicationStart: String
168
- disciplines: [Disciplines]
169
+ disciplines: [String]
169
170
  fellowshipStart: String
170
171
  contact: String
171
172
  description: String
@@ -888,7 +889,7 @@ type Publication {
888
889
  color: String
889
890
  date: AWSDateTime
890
891
  description: String
891
- disciplines: [Disciplines]
892
+ disciplines: [String]
892
893
  eventCategories: eventCategories
893
894
  featured: AWSDateTime
894
895
  files: [File]
@@ -186,6 +186,43 @@ const data = {
186
186
  "Group": "GROUP"
187
187
  },
188
188
  "value": ""
189
+ },
190
+ "disciplines": {
191
+ "type": "AutoComplete",
192
+ "items": {
193
+ "AnthropologyAndEthnology": "ANTHROPOLOGY_AND_ETHNOLOGY",
194
+ "ArchitectureAndUrbanPlanning": "ARCHITECTURE_AND_URBAN_PLANNING",
195
+ "Archaeology": "ARCHAEOLOGY",
196
+ "ArtAndHistoryOfArt": "ART_AND_HISTORY_OF_ART",
197
+ "ClassicalStudies": "CLASSICAL_STUDIES",
198
+ "Demography": "DEMOGRAPHY",
199
+ "DigitalHumanities": "DIGITAL_HUMANITIES",
200
+ "Economics": "ECONOMICS",
201
+ "EducationSciences": "EDUCATION_SCIENCES",
202
+ "EnvironmentalSciences": "ENVIRONMENTAL_SCIENCES",
203
+ "Geography": "GEOGRAPHY",
204
+ "History": "HISTORY",
205
+ "InformationAndCommunicationSciences": "INFORMATION_AND_COMMUNICATION_SCIENCES",
206
+ "InternationalRelations": "INTERNATIONAL_RELATIONS",
207
+ "Law": "LAW",
208
+ "Linguistics": "LINGUISTICS",
209
+ "Literature": "LITERATURE",
210
+ "ManagementAndPublicAdministration": "MANAGEMENT_AND_PUBLIC_ADMINISTRATION",
211
+ "NeurosciencesAndCognitiveSciences": "NEUROSCIENCES_AND_COGNITIVE_SCIENCES",
212
+ "Philosophy": "PHILOSOPHY",
213
+ "PoliticalScience": "POLITICAL_SCIENCE",
214
+ "Psychology": "PSYCHOLOGY",
215
+ "Sociology": "SOCIOLOGY",
216
+ "StudiesInScienceAndTechnology": "STUDIES_IN_SCIENCE_AND_TECHNOLOGY",
217
+ "Theology": "THEOLOGY",
218
+ "Biology": "BIOLOGY",
219
+ "Chemistry": "CHEMISTRY",
220
+ "ComputerScience": "COMPUTER_SCIENCE",
221
+ "Medicine": "MEDICINE",
222
+ "PhysicsMathematicsAndEngineering": "PHYSICS_MATHEMATICS_AND_ENGINEERING"
223
+ },
224
+ "multiple": true,
225
+ "value": ""
189
226
  }
190
227
  },
191
228
  "limit": 20
@@ -5,7 +5,7 @@ export interface Fellowships {
5
5
  action?: string
6
6
  affiliations?: Affiliations[] // AKA members behind the fellowships
7
7
  applicationStart?: Date
8
- disciplines?: Disciplines[] // 3 - Server & Client //Inside=> Presentation
8
+ disciplines?: DisciplinesOptions[] // 3 - Server & Client //Inside=> Presentation
9
9
  fellowshipStart?: Date
10
10
  contact?: string
11
11
  description: string
@@ -184,6 +184,43 @@ const data = {
184
184
  "Group": "GROUP"
185
185
  },
186
186
  "value": ""
187
+ },
188
+ "disciplines": {
189
+ "type": "AutoComplete",
190
+ "items": {
191
+ "AnthropologyAndEthnology": "ANTHROPOLOGY_AND_ETHNOLOGY",
192
+ "ArchitectureAndUrbanPlanning": "ARCHITECTURE_AND_URBAN_PLANNING",
193
+ "Archaeology": "ARCHAEOLOGY",
194
+ "ArtAndHistoryOfArt": "ART_AND_HISTORY_OF_ART",
195
+ "ClassicalStudies": "CLASSICAL_STUDIES",
196
+ "Demography": "DEMOGRAPHY",
197
+ "DigitalHumanities": "DIGITAL_HUMANITIES",
198
+ "Economics": "ECONOMICS",
199
+ "EducationSciences": "EDUCATION_SCIENCES",
200
+ "EnvironmentalSciences": "ENVIRONMENTAL_SCIENCES",
201
+ "Geography": "GEOGRAPHY",
202
+ "History": "HISTORY",
203
+ "InformationAndCommunicationSciences": "INFORMATION_AND_COMMUNICATION_SCIENCES",
204
+ "InternationalRelations": "INTERNATIONAL_RELATIONS",
205
+ "Law": "LAW",
206
+ "Linguistics": "LINGUISTICS",
207
+ "Literature": "LITERATURE",
208
+ "ManagementAndPublicAdministration": "MANAGEMENT_AND_PUBLIC_ADMINISTRATION",
209
+ "NeurosciencesAndCognitiveSciences": "NEUROSCIENCES_AND_COGNITIVE_SCIENCES",
210
+ "Philosophy": "PHILOSOPHY",
211
+ "PoliticalScience": "POLITICAL_SCIENCE",
212
+ "Psychology": "PSYCHOLOGY",
213
+ "Sociology": "SOCIOLOGY",
214
+ "StudiesInScienceAndTechnology": "STUDIES_IN_SCIENCE_AND_TECHNOLOGY",
215
+ "Theology": "THEOLOGY",
216
+ "Biology": "BIOLOGY",
217
+ "Chemistry": "CHEMISTRY",
218
+ "ComputerScience": "COMPUTER_SCIENCE",
219
+ "Medicine": "MEDICINE",
220
+ "PhysicsMathematicsAndEngineering": "PHYSICS_MATHEMATICS_AND_ENGINEERING"
221
+ },
222
+ "multiple": true,
223
+ "value": ""
187
224
  }
188
225
  },
189
226
  "limit": 20
@@ -193,7 +193,45 @@ const data = {
193
193
  "Initiative": "INITIATIVE",
194
194
  "Tool": "TOOL",
195
195
  "Project": "PROJECT"
196
- }
196
+ },
197
+ "value": ""
198
+ },
199
+ "disciplines": {
200
+ "type": "AutoComplete",
201
+ "items": {
202
+ "AnthropologyAndEthnology": "ANTHROPOLOGY_AND_ETHNOLOGY",
203
+ "ArchitectureAndUrbanPlanning": "ARCHITECTURE_AND_URBAN_PLANNING",
204
+ "Archaeology": "ARCHAEOLOGY",
205
+ "ArtAndHistoryOfArt": "ART_AND_HISTORY_OF_ART",
206
+ "ClassicalStudies": "CLASSICAL_STUDIES",
207
+ "Demography": "DEMOGRAPHY",
208
+ "DigitalHumanities": "DIGITAL_HUMANITIES",
209
+ "Economics": "ECONOMICS",
210
+ "EducationSciences": "EDUCATION_SCIENCES",
211
+ "EnvironmentalSciences": "ENVIRONMENTAL_SCIENCES",
212
+ "Geography": "GEOGRAPHY",
213
+ "History": "HISTORY",
214
+ "InformationAndCommunicationSciences": "INFORMATION_AND_COMMUNICATION_SCIENCES",
215
+ "InternationalRelations": "INTERNATIONAL_RELATIONS",
216
+ "Law": "LAW",
217
+ "Linguistics": "LINGUISTICS",
218
+ "Literature": "LITERATURE",
219
+ "ManagementAndPublicAdministration": "MANAGEMENT_AND_PUBLIC_ADMINISTRATION",
220
+ "NeurosciencesAndCognitiveSciences": "NEUROSCIENCES_AND_COGNITIVE_SCIENCES",
221
+ "Philosophy": "PHILOSOPHY",
222
+ "PoliticalScience": "POLITICAL_SCIENCE",
223
+ "Psychology": "PSYCHOLOGY",
224
+ "Sociology": "SOCIOLOGY",
225
+ "StudiesInScienceAndTechnology": "STUDIES_IN_SCIENCE_AND_TECHNOLOGY",
226
+ "Theology": "THEOLOGY",
227
+ "Biology": "BIOLOGY",
228
+ "Chemistry": "CHEMISTRY",
229
+ "ComputerScience": "COMPUTER_SCIENCE",
230
+ "Medicine": "MEDICINE",
231
+ "PhysicsMathematicsAndEngineering": "PHYSICS_MATHEMATICS_AND_ENGINEERING"
232
+ },
233
+ "multiple": true,
234
+ "value": ""
197
235
  }
198
236
  },
199
237
  "limit": 20
@@ -191,7 +191,45 @@ const data = {
191
191
  "Initiative": "INITIATIVE",
192
192
  "Tool": "TOOL",
193
193
  "Project": "PROJECT"
194
- }
194
+ },
195
+ "value": ""
196
+ },
197
+ "disciplines": {
198
+ "type": "AutoComplete",
199
+ "items": {
200
+ "AnthropologyAndEthnology": "ANTHROPOLOGY_AND_ETHNOLOGY",
201
+ "ArchitectureAndUrbanPlanning": "ARCHITECTURE_AND_URBAN_PLANNING",
202
+ "Archaeology": "ARCHAEOLOGY",
203
+ "ArtAndHistoryOfArt": "ART_AND_HISTORY_OF_ART",
204
+ "ClassicalStudies": "CLASSICAL_STUDIES",
205
+ "Demography": "DEMOGRAPHY",
206
+ "DigitalHumanities": "DIGITAL_HUMANITIES",
207
+ "Economics": "ECONOMICS",
208
+ "EducationSciences": "EDUCATION_SCIENCES",
209
+ "EnvironmentalSciences": "ENVIRONMENTAL_SCIENCES",
210
+ "Geography": "GEOGRAPHY",
211
+ "History": "HISTORY",
212
+ "InformationAndCommunicationSciences": "INFORMATION_AND_COMMUNICATION_SCIENCES",
213
+ "InternationalRelations": "INTERNATIONAL_RELATIONS",
214
+ "Law": "LAW",
215
+ "Linguistics": "LINGUISTICS",
216
+ "Literature": "LITERATURE",
217
+ "ManagementAndPublicAdministration": "MANAGEMENT_AND_PUBLIC_ADMINISTRATION",
218
+ "NeurosciencesAndCognitiveSciences": "NEUROSCIENCES_AND_COGNITIVE_SCIENCES",
219
+ "Philosophy": "PHILOSOPHY",
220
+ "PoliticalScience": "POLITICAL_SCIENCE",
221
+ "Psychology": "PSYCHOLOGY",
222
+ "Sociology": "SOCIOLOGY",
223
+ "StudiesInScienceAndTechnology": "STUDIES_IN_SCIENCE_AND_TECHNOLOGY",
224
+ "Theology": "THEOLOGY",
225
+ "Biology": "BIOLOGY",
226
+ "Chemistry": "CHEMISTRY",
227
+ "ComputerScience": "COMPUTER_SCIENCE",
228
+ "Medicine": "MEDICINE",
229
+ "PhysicsMathematicsAndEngineering": "PHYSICS_MATHEMATICS_AND_ENGINEERING"
230
+ },
231
+ "multiple": true,
232
+ "value": ""
195
233
  }
196
234
  },
197
235
  "limit": 20
@@ -233,7 +233,7 @@ const data = {
233
233
  "type": "NEWS"
234
234
  },
235
235
  {
236
- "type": "VIDEOS"
236
+ "type": "VIDEO"
237
237
  },
238
238
  {
239
239
  "type": "AUDIO"
@@ -287,7 +287,7 @@ const data = {
287
287
  "type": "NEWS"
288
288
  },
289
289
  {
290
- "type": "VIDEOS"
290
+ "type": "VIDEO"
291
291
  },
292
292
  {
293
293
  "type": "AUDIO"
@@ -314,7 +314,7 @@ const data = {
314
314
  "default": false,
315
315
  "switchIf": [
316
316
  {
317
- "type": "VIDEOS"
317
+ "type": "VIDEO"
318
318
  },
319
319
  {
320
320
  "type": "AUDIO"
@@ -231,7 +231,7 @@ const data = {
231
231
  "type": "NEWS"
232
232
  },
233
233
  {
234
- "type": "VIDEOS"
234
+ "type": "VIDEO"
235
235
  },
236
236
  {
237
237
  "type": "AUDIO"
@@ -285,7 +285,7 @@ const data = {
285
285
  "type": "NEWS"
286
286
  },
287
287
  {
288
- "type": "VIDEOS"
288
+ "type": "VIDEO"
289
289
  },
290
290
  {
291
291
  "type": "AUDIO"
@@ -312,7 +312,7 @@ const data = {
312
312
  "default": false,
313
313
  "switchIf": [
314
314
  {
315
- "type": "VIDEOS"
315
+ "type": "VIDEO"
316
316
  },
317
317
  {
318
318
  "type": "AUDIO"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.2.11",
3
+ "version": "2.2.13",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",