@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.
package/dist/form/people.d.ts
CHANGED
|
@@ -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 {
|
package/dist/list/people.d.ts
CHANGED