@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.
@@ -476,7 +476,7 @@ const data = {
476
476
  "meta": "outside"
477
477
  },
478
478
  "location": {
479
- "label": "place",
479
+ "label": "location",
480
480
  "component": "ObjectContainerPanel",
481
481
  "type": "OBJECT",
482
482
  "rules": {
@@ -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
@@ -474,7 +474,7 @@ const data = {
474
474
  "meta": "outside"
475
475
  },
476
476
  "location": {
477
- "label": "place",
477
+ "label": "location",
478
478
  "component": "ObjectContainerPanel",
479
479
  "type": "OBJECT",
480
480
  "rules": {
@@ -19,9 +19,17 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
19
19
  }
20
20
  name
21
21
  location {
22
- address
22
+ alt
23
+ city
24
+ country
25
+ details
26
+ geocode {
27
+ lat
28
+ lng
29
+ }
23
30
  name
24
- url
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
@@ -25,9 +25,12 @@ query listEvents(
25
25
  name
26
26
  outside
27
27
  location {
28
- address
29
28
  name
30
- url
29
+ details
30
+ street
31
+ city
32
+ country
33
+ zip
31
34
  }
32
35
  state
33
36
  start
@@ -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
- location {
113
+ locations {
127
114
  alt
128
115
  city
129
116
  country
@@ -11,7 +11,7 @@ query getPeople($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
11
11
  licenseUrl
12
12
  url
13
13
  }
14
- location {
14
+ locations {
15
15
  alt
16
16
  city
17
17
  country
@@ -42,7 +42,7 @@ query getProject($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
42
42
  name
43
43
  ror
44
44
  url
45
- location {
45
+ locations {
46
46
  alt
47
47
  city
48
48
  country
@@ -14,7 +14,7 @@ query getPublication(
14
14
  licenseUrl
15
15
  url
16
16
  }
17
- location {
17
+ locations {
18
18
  alt
19
19
  city
20
20
  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
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.0.28",
3
+ "version": "2.0.30",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",