@paris-ias/trees 2.0.30 → 2.0.32

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.
@@ -13,6 +13,7 @@ query getAffiliation(
13
13
  licenseUrl
14
14
  url
15
15
  }
16
+ category
16
17
  locations {
17
18
  alt
18
19
  city
@@ -33,6 +33,7 @@ query listAffiliations(
33
33
  street
34
34
  zip
35
35
  }
36
+ category
36
37
  name
37
38
  ror
38
39
  url
@@ -25,11 +25,16 @@ query listEvents(
25
25
  name
26
26
  outside
27
27
  location {
28
- name
29
- details
30
- street
28
+ alt
31
29
  city
32
30
  country
31
+ details
32
+ geocode {
33
+ lat
34
+ lng
35
+ }
36
+ name
37
+ street
33
38
  zip
34
39
  }
35
40
  state
@@ -14,6 +14,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
14
14
  }
15
15
  lastname
16
16
  slug
17
+ score
17
18
  }
18
19
  total
19
20
  }
@@ -36,6 +37,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
36
37
  name
37
38
  }
38
39
  slug
40
+ score
39
41
  }
40
42
  total
41
43
  }
@@ -54,6 +56,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
54
56
  }
55
57
  date
56
58
  slug
59
+ score
57
60
  }
58
61
  total
59
62
  }
@@ -77,6 +80,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
77
80
  license
78
81
  url
79
82
  }
83
+ score
80
84
  }
81
85
  total
82
86
  }
@@ -103,10 +107,10 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
103
107
  name
104
108
  summary
105
109
  slug
110
+ score
106
111
  }
107
112
  }
108
113
  news {
109
- total
110
114
  items {
111
115
  category
112
116
  date
@@ -122,7 +126,9 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
122
126
  }
123
127
  name
124
128
  slug
129
+ score
125
130
  }
131
+ total
126
132
  }
127
133
  }
128
134
  }
@@ -83,15 +83,6 @@ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
83
83
  }
84
84
  slug
85
85
  appId
86
- consent {
87
- data
88
- diffusion
89
- email
90
- fellowshipnewsletter
91
- newsletter
92
- publication
93
- record
94
- }
95
86
  disciplines {
96
87
  createdAt
97
88
  description
@@ -28,6 +28,15 @@ query GetUser($appId: ID = "iea", $itemId: ID = "", $lang: String = "") {
28
28
  twitter
29
29
  wikipedia
30
30
  }
31
+ consent {
32
+ data
33
+ diffusion
34
+ email
35
+ fellowshipnewsletter
36
+ newsletter
37
+ publication
38
+ record
39
+ }
31
40
  role
32
41
  settings {
33
42
  lang
@@ -20,6 +20,15 @@ query listUsers(
20
20
  twitter
21
21
  wikipedia
22
22
  }
23
+ consent {
24
+ data
25
+ diffusion
26
+ email
27
+ fellowshipnewsletter
28
+ newsletter
29
+ publication
30
+ record
31
+ }
23
32
  role
24
33
  settings {
25
34
  lang
@@ -1,4 +1,8 @@
1
- query getProject($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
1
+ query getProject(
2
+ $appId: ID = "iea"
3
+ $itemId: ID = "proceedings-of-institutes-for-advanced-study"
4
+ $lang: String = "en"
5
+ ) {
2
6
  getProject(appId: $appId, itemId: $itemId, lang: $lang) {
3
7
  color
4
8
  date
@@ -47,13 +51,13 @@ query getProject($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
47
51
  city
48
52
  country
49
53
  details
50
- name
51
- street
52
- zip
53
54
  geocode {
54
55
  lat
55
56
  lng
56
57
  }
58
+ name
59
+ street
60
+ zip
57
61
  }
58
62
  image {
59
63
  alt
@@ -227,6 +227,13 @@ type ActionList {
227
227
  items: [Actions]
228
228
  }
229
229
 
230
+ enum affiliationCategory {
231
+ MEMBER
232
+ PARTNER
233
+ SPONSOR
234
+ OTHER
235
+ }
236
+
230
237
  type AffiliationList {
231
238
  total: Int!
232
239
  items: [Affiliation]
@@ -241,6 +248,7 @@ type Affiliation {
241
248
  appId: String
242
249
  slug: AWSJSON
243
250
  score: Float
251
+ category: [affiliationCategory]
244
252
  }
245
253
 
246
254
  type AffiliationWithPositions {
@@ -21,6 +21,13 @@ type ActionList {
21
21
  items: [Actions]
22
22
  }
23
23
 
24
+ enum affiliationCategory {
25
+ MEMBER
26
+ PARTNER
27
+ SPONSOR
28
+ OTHER
29
+ }
30
+
24
31
  type AffiliationList {
25
32
  total: Int!
26
33
  items: [Affiliation]
@@ -35,6 +42,7 @@ type Affiliation {
35
42
  appId: String
36
43
  slug: AWSJSON
37
44
  score: Float
45
+ category: [affiliationCategory]
38
46
  }
39
47
 
40
48
  type AffiliationWithPositions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.0.30",
3
+ "version": "2.0.32",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",