@paris-ias/trees 2.0.47 → 2.0.49
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/files.d.ts +1 -1
- package/dist/form/mailing.d.ts +1 -1
- package/dist/graphql/client/misc/apex.queries.checkAltcha.gql +6 -0
- package/dist/graphql/client/misc/query.search.all.gql +4 -0
- package/dist/graphql/schemas/schema.apex.graphql +20 -20
- package/dist/graphql/schemas/schema.website.graphql +19 -19
- package/dist/list/files.d.ts +1 -1
- package/dist/list/mailing.d.ts +1 -1
- package/package.json +1 -1
package/dist/form/files.d.ts
CHANGED
package/dist/form/mailing.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
|
|
|
13
13
|
url
|
|
14
14
|
}
|
|
15
15
|
lastname
|
|
16
|
+
summary
|
|
16
17
|
slug
|
|
17
18
|
score
|
|
18
19
|
}
|
|
@@ -23,6 +24,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
|
|
|
23
24
|
date
|
|
24
25
|
featured
|
|
25
26
|
name
|
|
27
|
+
summary
|
|
26
28
|
image {
|
|
27
29
|
alt
|
|
28
30
|
backgroundColor
|
|
@@ -45,6 +47,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
|
|
|
45
47
|
items {
|
|
46
48
|
subtitle
|
|
47
49
|
name
|
|
50
|
+
summary
|
|
48
51
|
image {
|
|
49
52
|
alt
|
|
50
53
|
backgroundColor
|
|
@@ -115,6 +118,7 @@ query search($appId: ID = "", $search: String = "", $lang: String = "en") {
|
|
|
115
118
|
category
|
|
116
119
|
date
|
|
117
120
|
featured
|
|
121
|
+
summary
|
|
118
122
|
image {
|
|
119
123
|
alt
|
|
120
124
|
backgroundColor
|
|
@@ -147,6 +147,7 @@ type Query {
|
|
|
147
147
|
login(email: AWSEmail!, password: String!): Token
|
|
148
148
|
listUsers(appId: ID, options: ListInput!, lang: String): UserList
|
|
149
149
|
getUser(appId: ID, itemId: ID, lang: String): User
|
|
150
|
+
checkAltcha(payload: String!, hmacKey: String!): AltchaVerification
|
|
150
151
|
search(appId: ID, search: String, lang: String): SearchList
|
|
151
152
|
getFellowship(appId: ID, itemId: ID, lang: String): Fellowship
|
|
152
153
|
getAction(appId: ID, itemId: ID, lang: String): Actions
|
|
@@ -165,7 +166,6 @@ type Query {
|
|
|
165
166
|
listFellowships(appId: ID, options: ListInput!, lang: String): FellowshipList
|
|
166
167
|
getPresignedUploadUrl(appId: ID, typeFile: String!): String
|
|
167
168
|
buildFiltersValues: Filters
|
|
168
|
-
checkAltcha(payload: String!, hmacKey: String!): AltchaVerification
|
|
169
169
|
}
|
|
170
170
|
|
|
171
171
|
schema {
|
|
@@ -217,7 +217,7 @@ type Actions {
|
|
|
217
217
|
name: String
|
|
218
218
|
video: AWSURL
|
|
219
219
|
slots: [String]
|
|
220
|
-
slug:
|
|
220
|
+
slug: String
|
|
221
221
|
score: Float
|
|
222
222
|
start: AWSDateTime
|
|
223
223
|
stop: AWSDateTime
|
|
@@ -247,7 +247,7 @@ type Affiliation {
|
|
|
247
247
|
ror: String
|
|
248
248
|
url: AWSURL
|
|
249
249
|
appId: String
|
|
250
|
-
slug:
|
|
250
|
+
slug: String
|
|
251
251
|
score: Float
|
|
252
252
|
category: [affiliationCategory]
|
|
253
253
|
description: String
|
|
@@ -329,7 +329,7 @@ type Event {
|
|
|
329
329
|
related: Related
|
|
330
330
|
score: Float
|
|
331
331
|
slots: [Slot]
|
|
332
|
-
slug:
|
|
332
|
+
slug: String
|
|
333
333
|
start: AWSDateTime
|
|
334
334
|
state: eventState
|
|
335
335
|
stop: AWSDateTime
|
|
@@ -390,7 +390,7 @@ type Fellowship {
|
|
|
390
390
|
gallery: [Image]
|
|
391
391
|
name: String!
|
|
392
392
|
video: [Video]
|
|
393
|
-
slug:
|
|
393
|
+
slug: String
|
|
394
394
|
score: Float
|
|
395
395
|
}
|
|
396
396
|
|
|
@@ -698,7 +698,7 @@ type Disciplines {
|
|
|
698
698
|
name: String
|
|
699
699
|
updatedAt: AWSDateTime
|
|
700
700
|
score: Float
|
|
701
|
-
slug:
|
|
701
|
+
slug: String
|
|
702
702
|
}
|
|
703
703
|
|
|
704
704
|
type Location {
|
|
@@ -710,7 +710,7 @@ type Location {
|
|
|
710
710
|
country: String
|
|
711
711
|
zip: Int
|
|
712
712
|
geocode: Geocode
|
|
713
|
-
slug:
|
|
713
|
+
slug: String
|
|
714
714
|
}
|
|
715
715
|
|
|
716
716
|
type Geocode {
|
|
@@ -808,7 +808,7 @@ type RelatedAffiliation {
|
|
|
808
808
|
url: AWSURL
|
|
809
809
|
image: Image
|
|
810
810
|
description: String
|
|
811
|
-
slug:
|
|
811
|
+
slug: String
|
|
812
812
|
}
|
|
813
813
|
|
|
814
814
|
type RelatedEvent {
|
|
@@ -816,7 +816,7 @@ type RelatedEvent {
|
|
|
816
816
|
url: AWSURL
|
|
817
817
|
image: Image
|
|
818
818
|
description: String
|
|
819
|
-
slug:
|
|
819
|
+
slug: String
|
|
820
820
|
}
|
|
821
821
|
|
|
822
822
|
type RelatedFellowship {
|
|
@@ -824,7 +824,7 @@ type RelatedFellowship {
|
|
|
824
824
|
url: AWSURL
|
|
825
825
|
image: Image
|
|
826
826
|
description: String
|
|
827
|
-
slug:
|
|
827
|
+
slug: String
|
|
828
828
|
}
|
|
829
829
|
|
|
830
830
|
type RelatedNews {
|
|
@@ -832,14 +832,14 @@ type RelatedNews {
|
|
|
832
832
|
url: AWSURL
|
|
833
833
|
image: Image
|
|
834
834
|
description: String
|
|
835
|
-
slug:
|
|
835
|
+
slug: String
|
|
836
836
|
}
|
|
837
837
|
|
|
838
838
|
type RelatedPeople {
|
|
839
839
|
firstname: String
|
|
840
840
|
lastname: String
|
|
841
841
|
image: Image
|
|
842
|
-
slug:
|
|
842
|
+
slug: String
|
|
843
843
|
}
|
|
844
844
|
|
|
845
845
|
type RelatedProject {
|
|
@@ -847,13 +847,13 @@ type RelatedProject {
|
|
|
847
847
|
url: AWSURL
|
|
848
848
|
image: Image
|
|
849
849
|
description: String
|
|
850
|
-
slug:
|
|
850
|
+
slug: String
|
|
851
851
|
}
|
|
852
852
|
|
|
853
853
|
type RelatedPublication {
|
|
854
854
|
name: String!
|
|
855
855
|
url: AWSURL!
|
|
856
|
-
slug:
|
|
856
|
+
slug: String
|
|
857
857
|
}
|
|
858
858
|
|
|
859
859
|
type Socials {
|
|
@@ -884,7 +884,7 @@ type Tag {
|
|
|
884
884
|
createdAt: AWSDateTime
|
|
885
885
|
updatedAt: AWSDateTime
|
|
886
886
|
appId: String
|
|
887
|
-
slug:
|
|
887
|
+
slug: String
|
|
888
888
|
score: Float
|
|
889
889
|
}
|
|
890
890
|
|
|
@@ -903,7 +903,7 @@ type News {
|
|
|
903
903
|
featured: AWSDateTime
|
|
904
904
|
related: Related
|
|
905
905
|
files: [File]
|
|
906
|
-
slug:
|
|
906
|
+
slug: String
|
|
907
907
|
score: Float
|
|
908
908
|
}
|
|
909
909
|
|
|
@@ -950,7 +950,7 @@ type People {
|
|
|
950
950
|
disciplines: [Disciplines]
|
|
951
951
|
related: Related
|
|
952
952
|
video: [Video]
|
|
953
|
-
slug:
|
|
953
|
+
slug: String
|
|
954
954
|
tags: [Tag]
|
|
955
955
|
score: Float
|
|
956
956
|
}
|
|
@@ -982,7 +982,7 @@ type User {
|
|
|
982
982
|
settings: Settings
|
|
983
983
|
status: Int
|
|
984
984
|
role: Int
|
|
985
|
-
slug:
|
|
985
|
+
slug: String
|
|
986
986
|
}
|
|
987
987
|
|
|
988
988
|
type UserList {
|
|
@@ -1015,7 +1015,7 @@ type Project {
|
|
|
1015
1015
|
date: AWSDateTime
|
|
1016
1016
|
featured: AWSDateTime
|
|
1017
1017
|
status: projectStatus
|
|
1018
|
-
slug:
|
|
1018
|
+
slug: String
|
|
1019
1019
|
score: Float
|
|
1020
1020
|
}
|
|
1021
1021
|
|
|
@@ -1047,7 +1047,7 @@ type Publication {
|
|
|
1047
1047
|
disciplines: [Disciplines]
|
|
1048
1048
|
color: String
|
|
1049
1049
|
date: AWSDateTime
|
|
1050
|
-
slug:
|
|
1050
|
+
slug: String
|
|
1051
1051
|
score: Float
|
|
1052
1052
|
}
|
|
1053
1053
|
|
|
@@ -10,7 +10,7 @@ type Actions {
|
|
|
10
10
|
name: String
|
|
11
11
|
video: AWSURL
|
|
12
12
|
slots: [String]
|
|
13
|
-
slug:
|
|
13
|
+
slug: String
|
|
14
14
|
score: Float
|
|
15
15
|
start: AWSDateTime
|
|
16
16
|
stop: AWSDateTime
|
|
@@ -40,7 +40,7 @@ type Affiliation {
|
|
|
40
40
|
ror: String
|
|
41
41
|
url: AWSURL
|
|
42
42
|
appId: String
|
|
43
|
-
slug:
|
|
43
|
+
slug: String
|
|
44
44
|
score: Float
|
|
45
45
|
category: [affiliationCategory]
|
|
46
46
|
description: String
|
|
@@ -122,7 +122,7 @@ type Event {
|
|
|
122
122
|
related: Related
|
|
123
123
|
score: Float
|
|
124
124
|
slots: [Slot]
|
|
125
|
-
slug:
|
|
125
|
+
slug: String
|
|
126
126
|
start: AWSDateTime
|
|
127
127
|
state: eventState
|
|
128
128
|
stop: AWSDateTime
|
|
@@ -183,7 +183,7 @@ type Fellowship {
|
|
|
183
183
|
gallery: [Image]
|
|
184
184
|
name: String!
|
|
185
185
|
video: [Video]
|
|
186
|
-
slug:
|
|
186
|
+
slug: String
|
|
187
187
|
score: Float
|
|
188
188
|
}
|
|
189
189
|
|
|
@@ -518,7 +518,7 @@ type Disciplines {
|
|
|
518
518
|
name: String
|
|
519
519
|
updatedAt: AWSDateTime
|
|
520
520
|
score: Float
|
|
521
|
-
slug:
|
|
521
|
+
slug: String
|
|
522
522
|
}
|
|
523
523
|
|
|
524
524
|
type Location {
|
|
@@ -530,7 +530,7 @@ type Location {
|
|
|
530
530
|
country: String
|
|
531
531
|
zip: Int
|
|
532
532
|
geocode: Geocode
|
|
533
|
-
slug:
|
|
533
|
+
slug: String
|
|
534
534
|
}
|
|
535
535
|
|
|
536
536
|
type Geocode {
|
|
@@ -628,7 +628,7 @@ type RelatedAffiliation {
|
|
|
628
628
|
url: AWSURL
|
|
629
629
|
image: Image
|
|
630
630
|
description: String
|
|
631
|
-
slug:
|
|
631
|
+
slug: String
|
|
632
632
|
}
|
|
633
633
|
|
|
634
634
|
type RelatedEvent {
|
|
@@ -636,7 +636,7 @@ type RelatedEvent {
|
|
|
636
636
|
url: AWSURL
|
|
637
637
|
image: Image
|
|
638
638
|
description: String
|
|
639
|
-
slug:
|
|
639
|
+
slug: String
|
|
640
640
|
}
|
|
641
641
|
|
|
642
642
|
type RelatedFellowship {
|
|
@@ -644,7 +644,7 @@ type RelatedFellowship {
|
|
|
644
644
|
url: AWSURL
|
|
645
645
|
image: Image
|
|
646
646
|
description: String
|
|
647
|
-
slug:
|
|
647
|
+
slug: String
|
|
648
648
|
}
|
|
649
649
|
|
|
650
650
|
type RelatedNews {
|
|
@@ -652,14 +652,14 @@ type RelatedNews {
|
|
|
652
652
|
url: AWSURL
|
|
653
653
|
image: Image
|
|
654
654
|
description: String
|
|
655
|
-
slug:
|
|
655
|
+
slug: String
|
|
656
656
|
}
|
|
657
657
|
|
|
658
658
|
type RelatedPeople {
|
|
659
659
|
firstname: String
|
|
660
660
|
lastname: String
|
|
661
661
|
image: Image
|
|
662
|
-
slug:
|
|
662
|
+
slug: String
|
|
663
663
|
}
|
|
664
664
|
|
|
665
665
|
type RelatedProject {
|
|
@@ -667,13 +667,13 @@ type RelatedProject {
|
|
|
667
667
|
url: AWSURL
|
|
668
668
|
image: Image
|
|
669
669
|
description: String
|
|
670
|
-
slug:
|
|
670
|
+
slug: String
|
|
671
671
|
}
|
|
672
672
|
|
|
673
673
|
type RelatedPublication {
|
|
674
674
|
name: String!
|
|
675
675
|
url: AWSURL!
|
|
676
|
-
slug:
|
|
676
|
+
slug: String
|
|
677
677
|
}
|
|
678
678
|
|
|
679
679
|
type Socials {
|
|
@@ -704,7 +704,7 @@ type Tag {
|
|
|
704
704
|
createdAt: AWSDateTime
|
|
705
705
|
updatedAt: AWSDateTime
|
|
706
706
|
appId: String
|
|
707
|
-
slug:
|
|
707
|
+
slug: String
|
|
708
708
|
score: Float
|
|
709
709
|
}
|
|
710
710
|
|
|
@@ -723,7 +723,7 @@ type News {
|
|
|
723
723
|
featured: AWSDateTime
|
|
724
724
|
related: Related
|
|
725
725
|
files: [File]
|
|
726
|
-
slug:
|
|
726
|
+
slug: String
|
|
727
727
|
score: Float
|
|
728
728
|
}
|
|
729
729
|
|
|
@@ -770,7 +770,7 @@ type People {
|
|
|
770
770
|
disciplines: [Disciplines]
|
|
771
771
|
related: Related
|
|
772
772
|
video: [Video]
|
|
773
|
-
slug:
|
|
773
|
+
slug: String
|
|
774
774
|
tags: [Tag]
|
|
775
775
|
score: Float
|
|
776
776
|
}
|
|
@@ -802,7 +802,7 @@ type User {
|
|
|
802
802
|
settings: Settings
|
|
803
803
|
status: Int
|
|
804
804
|
role: Int
|
|
805
|
-
slug:
|
|
805
|
+
slug: String
|
|
806
806
|
}
|
|
807
807
|
|
|
808
808
|
type UserList {
|
|
@@ -835,7 +835,7 @@ type Project {
|
|
|
835
835
|
date: AWSDateTime
|
|
836
836
|
featured: AWSDateTime
|
|
837
837
|
status: projectStatus
|
|
838
|
-
slug:
|
|
838
|
+
slug: String
|
|
839
839
|
score: Float
|
|
840
840
|
}
|
|
841
841
|
|
|
@@ -867,7 +867,7 @@ type Publication {
|
|
|
867
867
|
disciplines: [Disciplines]
|
|
868
868
|
color: String
|
|
869
869
|
date: AWSDateTime
|
|
870
|
-
slug:
|
|
870
|
+
slug: String
|
|
871
871
|
score: Float
|
|
872
872
|
}
|
|
873
873
|
|
package/dist/list/files.d.ts
CHANGED
package/dist/list/mailing.d.ts
CHANGED