@paris-ias/trees 2.2.0 → 2.2.1

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.
@@ -16,6 +16,7 @@ export interface People {
16
16
  thematics?: Thematics[]
17
17
  related?: Related[]
18
18
  video?: Video[]
19
+ latest: Vintage | Position
19
20
  }
20
21
 
21
22
  export enum FellowStatus {
@@ -50,6 +50,20 @@ query listPeople(
50
50
  website
51
51
  wikipedia
52
52
  }
53
+ latest {
54
+ ... on Vintage {
55
+ name
56
+ theme
57
+ url
58
+ year
59
+ }
60
+ ... on Position {
61
+ role
62
+ department
63
+ start
64
+ stop
65
+ }
66
+ }
53
67
  }
54
68
  total
55
69
  }
@@ -962,6 +962,8 @@ type Groups {
962
962
  vintage: [Vintage]
963
963
  }
964
964
 
965
+ union Latest = Vintage | Position
966
+
965
967
  type People {
966
968
  appId: String
967
969
  firstname: String!
@@ -979,6 +981,7 @@ type People {
979
981
  slug: String
980
982
  tags: [Tag]
981
983
  score: Float
984
+ latest: Latest
982
985
  }
983
986
 
984
987
  type PeopleFilters {
@@ -781,6 +781,8 @@ type Groups {
781
781
  vintage: [Vintage]
782
782
  }
783
783
 
784
+ union Latest = Vintage | Position
785
+
784
786
  type People {
785
787
  appId: String
786
788
  firstname: String!
@@ -798,6 +800,7 @@ type People {
798
800
  slug: String
799
801
  tags: [Tag]
800
802
  score: Float
803
+ latest: Latest
801
804
  }
802
805
 
803
806
  type PeopleFilters {
@@ -16,6 +16,7 @@ export interface People {
16
16
  thematics?: Thematics[]
17
17
  related?: Related[]
18
18
  video?: Video[]
19
+ latest: Vintage | Position
19
20
  }
20
21
 
21
22
  export enum FellowStatus {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",