@paris-ias/trees 2.0.19 → 2.0.20

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.
@@ -18,6 +18,7 @@ input FileInput {
18
18
  size: Int
19
19
  fileType: String
20
20
  image: ImageInput
21
+ category: FileCategory
21
22
  }
22
23
 
23
24
  input VideoInput {
@@ -368,6 +369,7 @@ type File {
368
369
  url: AWSURL!
369
370
  size: Int!
370
371
  fileType: String!
372
+ category: FileCategory!
371
373
  hash: String!
372
374
  path: String!
373
375
  file: String!
@@ -376,6 +378,13 @@ type File {
376
378
  createdAt: AWSDateTime!
377
379
  updatedAt: AWSDateTime!
378
380
  score: Float
381
+ slug: string
382
+ alt: String
383
+ caption: String
384
+ copyright: String
385
+ license: String
386
+ licenseUrl: String
387
+ backgroundColor: String
379
388
  }
380
389
 
381
390
  type Image {
@@ -511,6 +520,15 @@ enum FellowshipType {
511
520
  IN_GROUP
512
521
  }
513
522
 
523
+ enum FileCategory {
524
+ IMAGE
525
+ VIDEO
526
+ AUDIO
527
+ DOCUMENT
528
+ ARCHIVE
529
+ OTHER
530
+ }
531
+
514
532
  input AppInput {
515
533
  name: String!
516
534
  description: String
@@ -202,6 +202,7 @@ type File {
202
202
  url: AWSURL!
203
203
  size: Int!
204
204
  fileType: String!
205
+ category: FileCategory!
205
206
  hash: String!
206
207
  path: String!
207
208
  file: String!
@@ -210,6 +211,13 @@ type File {
210
211
  createdAt: AWSDateTime!
211
212
  updatedAt: AWSDateTime!
212
213
  score: Float
214
+ slug: string
215
+ alt: String
216
+ caption: String
217
+ copyright: String
218
+ license: String
219
+ licenseUrl: String
220
+ backgroundColor: String
213
221
  }
214
222
 
215
223
  type Image {
@@ -345,6 +353,15 @@ enum FellowshipType {
345
353
  IN_GROUP
346
354
  }
347
355
 
356
+ enum FileCategory {
357
+ IMAGE
358
+ VIDEO
359
+ AUDIO
360
+ DOCUMENT
361
+ ARCHIVE
362
+ OTHER
363
+ }
364
+
348
365
  input AppInput {
349
366
  name: String!
350
367
  description: String
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.0.19",
3
+ "version": "2.0.20",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",