@paris-ias/trees 2.0.28 → 2.0.30
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/events.cjs.js +1 -1
- package/dist/form/events.d.ts +1 -0
- package/dist/form/events.js +1 -1
- package/dist/graphql/client/events/query.get.events.gql +11 -2
- package/dist/graphql/client/events/query.list.events.gql +5 -2
- package/dist/graphql/client/fellowships/query.get.fellowships.gql +1 -14
- package/dist/graphql/client/people/query.get.people.gql +1 -1
- package/dist/graphql/client/projects/query.get.projects.gql +1 -1
- package/dist/graphql/client/publications/query.get.publications.gql +1 -1
- package/dist/graphql/schemas/schema.apex.graphql +2 -0
- package/dist/graphql/schemas/schema.website.graphql +2 -0
- package/dist/list/events.d.ts +1 -0
- package/package.json +1 -1
package/dist/form/events.cjs.js
CHANGED
package/dist/form/events.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export interface Events {
|
|
|
23
23
|
organizers: RelatedPeople[] | Affiliations[] // 3 - Server & Client -
|
|
24
24
|
outside: boolean // 0 - Server & Client - // Near inscription
|
|
25
25
|
location: Location // 0 - Server & Client -
|
|
26
|
+
place: String
|
|
26
27
|
organiserType: organiserType // server & client - 0 = IAS, 1 = member, 2 = fellow, 3 = external
|
|
27
28
|
program: String // 0 - Server & Client -
|
|
28
29
|
related: Related
|
package/dist/form/events.js
CHANGED
|
@@ -19,9 +19,17 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
19
19
|
}
|
|
20
20
|
name
|
|
21
21
|
location {
|
|
22
|
-
|
|
22
|
+
alt
|
|
23
|
+
city
|
|
24
|
+
country
|
|
25
|
+
details
|
|
26
|
+
geocode {
|
|
27
|
+
lat
|
|
28
|
+
lng
|
|
29
|
+
}
|
|
23
30
|
name
|
|
24
|
-
|
|
31
|
+
street
|
|
32
|
+
zip
|
|
25
33
|
}
|
|
26
34
|
start
|
|
27
35
|
slug
|
|
@@ -36,6 +44,7 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
36
44
|
stop
|
|
37
45
|
subtitle
|
|
38
46
|
summary
|
|
47
|
+
place
|
|
39
48
|
program
|
|
40
49
|
totalSlots
|
|
41
50
|
eventType
|
|
@@ -81,19 +81,6 @@ query getFellowship(
|
|
|
81
81
|
licenseUrl
|
|
82
82
|
url
|
|
83
83
|
}
|
|
84
|
-
location {
|
|
85
|
-
alt
|
|
86
|
-
city
|
|
87
|
-
country
|
|
88
|
-
details
|
|
89
|
-
geocode {
|
|
90
|
-
lat
|
|
91
|
-
lng
|
|
92
|
-
}
|
|
93
|
-
name
|
|
94
|
-
street
|
|
95
|
-
zip
|
|
96
|
-
}
|
|
97
84
|
}
|
|
98
85
|
name
|
|
99
86
|
video {
|
|
@@ -123,7 +110,7 @@ query getFellowship(
|
|
|
123
110
|
licenseUrl
|
|
124
111
|
url
|
|
125
112
|
}
|
|
126
|
-
|
|
113
|
+
locations {
|
|
127
114
|
alt
|
|
128
115
|
city
|
|
129
116
|
country
|
|
@@ -288,6 +288,7 @@ input EventInput {
|
|
|
288
288
|
location: LocationInput
|
|
289
289
|
name: String!
|
|
290
290
|
outside: Boolean
|
|
291
|
+
place: String
|
|
291
292
|
program: String
|
|
292
293
|
slots: [SlotInput!]
|
|
293
294
|
start: AWSDateTime
|
|
@@ -314,6 +315,7 @@ type Event {
|
|
|
314
315
|
location: Location
|
|
315
316
|
name: String!
|
|
316
317
|
outside: Boolean
|
|
318
|
+
place: String
|
|
317
319
|
program: String
|
|
318
320
|
related: Related
|
|
319
321
|
score: Float
|
|
@@ -82,6 +82,7 @@ input EventInput {
|
|
|
82
82
|
location: LocationInput
|
|
83
83
|
name: String!
|
|
84
84
|
outside: Boolean
|
|
85
|
+
place: String
|
|
85
86
|
program: String
|
|
86
87
|
slots: [SlotInput!]
|
|
87
88
|
start: AWSDateTime
|
|
@@ -108,6 +109,7 @@ type Event {
|
|
|
108
109
|
location: Location
|
|
109
110
|
name: String!
|
|
110
111
|
outside: Boolean
|
|
112
|
+
place: String
|
|
111
113
|
program: String
|
|
112
114
|
related: Related
|
|
113
115
|
score: Float
|
package/dist/list/events.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export interface Events {
|
|
|
23
23
|
organizers: RelatedPeople[] | Affiliations[] // 3 - Server & Client -
|
|
24
24
|
outside: boolean // 0 - Server & Client - // Near inscription
|
|
25
25
|
location: Location // 0 - Server & Client -
|
|
26
|
+
place: String
|
|
26
27
|
organiserType: organiserType // server & client - 0 = IAS, 1 = member, 2 = fellow, 3 = external
|
|
27
28
|
program: String // 0 - Server & Client -
|
|
28
29
|
related: Related
|