@paris-ias/trees 2.0.28 → 2.0.29

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.
@@ -133,6 +133,7 @@ const data = {
133
133
  "state": "",
134
134
  "tags": "",
135
135
  "totalSlots": "",
136
+ "place": "",
136
137
  "stream": "",
137
138
  "url": ""
138
139
  },
@@ -476,7 +477,7 @@ const data = {
476
477
  "meta": "outside"
477
478
  },
478
479
  "location": {
479
- "label": "place",
480
+ "label": "location",
480
481
  "component": "ObjectContainerPanel",
481
482
  "type": "OBJECT",
482
483
  "rules": {
@@ -690,6 +691,12 @@ const data = {
690
691
  },
691
692
  "meta": "totalSlots"
692
693
  },
694
+ "place": {
695
+ "label": "place",
696
+ "component": "TextField",
697
+ "type": "PRIMITIVE",
698
+ "meta": "place"
699
+ },
693
700
  "stream": {
694
701
  "label": "stream",
695
702
  "component": "TextField",
@@ -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
@@ -131,6 +131,7 @@ const data = {
131
131
  "state": "",
132
132
  "tags": "",
133
133
  "totalSlots": "",
134
+ "place": "",
134
135
  "stream": "",
135
136
  "url": ""
136
137
  },
@@ -474,7 +475,7 @@ const data = {
474
475
  "meta": "outside"
475
476
  },
476
477
  "location": {
477
- "label": "place",
478
+ "label": "location",
478
479
  "component": "ObjectContainerPanel",
479
480
  "type": "OBJECT",
480
481
  "rules": {
@@ -688,6 +689,12 @@ const data = {
688
689
  },
689
690
  "meta": "totalSlots"
690
691
  },
692
+ "place": {
693
+ "label": "place",
694
+ "component": "TextField",
695
+ "type": "PRIMITIVE",
696
+ "meta": "place"
697
+ },
691
698
  "stream": {
692
699
  "label": "stream",
693
700
  "component": "TextField",
@@ -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
@@ -29,6 +29,7 @@ query listEvents(
29
29
  name
30
30
  url
31
31
  }
32
+ place
32
33
  state
33
34
  start
34
35
  stop
@@ -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
@@ -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.29",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",