@paris-ias/trees 2.0.46 → 2.0.48
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/graphql/client/misc/apex.queries.checkAltcha.gql +6 -0
- package/dist/graphql/client/misc/query.search.all.gql +4 -0
- package/dist/graphql/client/misc/shared.query.checkAltcha.gql +6 -0
- package/dist/graphql/schemas/apex-resolvers-list.json +1 -0
- package/dist/graphql/schemas/schema.apex.graphql +6 -0
- package/dist/graphql/schemas/schema.website.graphql +6 -0
- package/dist/graphql/schemas/website-resolvers-list.json +1 -0
- package/package.json +1 -1
|
@@ -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
|
|
@@ -778,6 +779,11 @@ type Slot {
|
|
|
778
779
|
lang: String!
|
|
779
780
|
}
|
|
780
781
|
|
|
782
|
+
type AltchaVerification {
|
|
783
|
+
valid: Boolean!
|
|
784
|
+
verified: Boolean!
|
|
785
|
+
}
|
|
786
|
+
|
|
781
787
|
type Token {
|
|
782
788
|
accessToken: String!
|
|
783
789
|
}
|
|
@@ -502,6 +502,7 @@ type Query {
|
|
|
502
502
|
listFellowships(appId: ID, options: ListInput!, lang: String): FellowshipList
|
|
503
503
|
getPresignedUploadUrl(appId: ID, typeFile: String!): String
|
|
504
504
|
buildFiltersValues: Filters
|
|
505
|
+
checkAltcha(payload: String!, hmacKey: String!): AltchaVerification
|
|
505
506
|
}
|
|
506
507
|
|
|
507
508
|
schema {
|
|
@@ -598,6 +599,11 @@ type Slot {
|
|
|
598
599
|
lang: String!
|
|
599
600
|
}
|
|
600
601
|
|
|
602
|
+
type AltchaVerification {
|
|
603
|
+
valid: Boolean!
|
|
604
|
+
verified: Boolean!
|
|
605
|
+
}
|
|
606
|
+
|
|
601
607
|
type Token {
|
|
602
608
|
accessToken: String!
|
|
603
609
|
}
|