@paris-ias/trees 2.2.24 → 2.2.25

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,8 @@
1
+ query getRawItem(
2
+ $appId: ID = "iea"
3
+ $itemId: ID!
4
+ $type: String!
5
+ $lang: String = "en"
6
+ ) {
7
+ getRawItem(appId: $appId, itemId: $itemId, type: $type, lang: $lang)
8
+ }
@@ -29,6 +29,7 @@
29
29
  "queries/getPresignedUploadUrl",
30
30
  "queries/getProject",
31
31
  "queries/getPublication",
32
+ "queries/getRawItem",
32
33
  "queries/getTag",
33
34
  "queries/getUser",
34
35
  "queries/listActions",
@@ -138,6 +138,7 @@ type Query {
138
138
  getFile(appId: ID, itemId: ID, lang: String): File
139
139
  getMailing(appId: ID, itemId: ID, lang: String): Mailing
140
140
  getTag(appId: ID, itemId: ID, lang: String): Tag
141
+ getRawItem(appId: ID, itemId: ID!, type: String!, lang: String): AWSJSON
141
142
  listApps(appId: ID, options: ListInput!, lang: String): AppList
142
143
  listActions(appId: ID, options: ListInput!, lang: String): ActionList
143
144
  listDisciplines(appId: ID, options: ListInput!, lang: String): DisciplinesList
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.2.24",
3
+ "version": "2.2.25",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",