@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.
@@ -0,0 +1,6 @@
1
+ query checkAltcha($payload: String!) {
2
+ checkAltcha(payload: $payload) {
3
+ valid
4
+ verified
5
+ }
6
+ }
@@ -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
@@ -0,0 +1,6 @@
1
+ query checkAltcha($payload: String!, $hmacKey: String!) {
2
+ checkAltcha(payload: $payload, hmacKey: $hmacKey) {
3
+ valid
4
+ verified
5
+ }
6
+ }
@@ -15,6 +15,7 @@
15
15
  "mutations/upsertEvent",
16
16
  "mutations/upsertItem",
17
17
  "queries/buildFiltersValues",
18
+ "queries/checkAltcha",
18
19
  "queries/getAction",
19
20
  "queries/getAffiliation",
20
21
  "queries/getApp",
@@ -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
  }
@@ -1,6 +1,7 @@
1
1
  [
2
2
  "mutations/bookEvent",
3
3
  "queries/buildFiltersValues",
4
+ "queries/checkAltcha",
4
5
  "queries/getAction",
5
6
  "queries/getAffiliation",
6
7
  "queries/getEvent",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.0.46",
3
+ "version": "2.0.48",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",