@paris-ias/trees 2.0.10 → 2.0.12

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.
@@ -10,7 +10,6 @@ query getProject($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
10
10
  createdAt
11
11
  fileType
12
12
  hash
13
- slug
14
13
  image {
15
14
  alt
16
15
  backgroundColor
@@ -226,6 +226,46 @@ input EventInput {
226
226
  bookingState: bookingState
227
227
  }
228
228
 
229
+ type Event {
230
+ appId: String
231
+ createdBy: ID
232
+ category: eventCategories
233
+ name: String!
234
+ description: String
235
+ details: String
236
+ dateText: String
237
+ eventType: eventType
238
+ totalSlots: Int
239
+ availableSlots: Int
240
+ slots: [Slot]
241
+ delay: AWSDateTime
242
+ place: Place
243
+ start: AWSDateTime
244
+ stop: AWSDateTime
245
+ summary: String
246
+ related: Related
247
+ subtitle: String
248
+ program: String
249
+ outside: Boolean
250
+ url: AWSURL
251
+ image: Image
252
+ state: eventState
253
+ bookingState: bookingState
254
+ slug: AWSJSON
255
+ }
256
+
257
+ type EventFilters {
258
+ disciplines: [String!]
259
+ fellowships: [String!]
260
+ tags: [String!]
261
+ category: [eventCategories!]
262
+ }
263
+
264
+ type EventsList {
265
+ total: Int!
266
+ items: [Event]
267
+ }
268
+
229
269
  type FellowshipDetails {
230
270
  type: String
231
271
  fundingPeriod: String
@@ -547,46 +587,6 @@ type Disciplines {
547
587
  updatedAt: AWSDateTime
548
588
  }
549
589
 
550
- type Event {
551
- appId: String
552
- createdBy: ID
553
- category: eventCategories
554
- name: String!
555
- description: String
556
- details: String
557
- dateText: String
558
- eventType: eventType
559
- totalSlots: Int
560
- availableSlots: Int
561
- slots: [Slot]
562
- delay: AWSDateTime
563
- place: Place
564
- start: AWSDateTime
565
- stop: AWSDateTime
566
- summary: String
567
- related: Related
568
- subtitle: String
569
- program: String
570
- outside: Boolean
571
- url: AWSURL
572
- image: Image
573
- state: eventState
574
- bookingState: bookingState
575
- slug: AWSJSON
576
- }
577
-
578
- type EventFilters {
579
- disciplines: [String!]
580
- fellowships: [String!]
581
- tags: [String!]
582
- category: [eventCategories!]
583
- }
584
-
585
- type EventsList {
586
- total: Int!
587
- items: [Event]
588
- }
589
-
590
590
  type Location {
591
591
  name: String!
592
592
  details: String
@@ -63,6 +63,46 @@ input EventInput {
63
63
  bookingState: bookingState
64
64
  }
65
65
 
66
+ type Event {
67
+ appId: String
68
+ createdBy: ID
69
+ category: eventCategories
70
+ name: String!
71
+ description: String
72
+ details: String
73
+ dateText: String
74
+ eventType: eventType
75
+ totalSlots: Int
76
+ availableSlots: Int
77
+ slots: [Slot]
78
+ delay: AWSDateTime
79
+ place: Place
80
+ start: AWSDateTime
81
+ stop: AWSDateTime
82
+ summary: String
83
+ related: Related
84
+ subtitle: String
85
+ program: String
86
+ outside: Boolean
87
+ url: AWSURL
88
+ image: Image
89
+ state: eventState
90
+ bookingState: bookingState
91
+ slug: AWSJSON
92
+ }
93
+
94
+ type EventFilters {
95
+ disciplines: [String!]
96
+ fellowships: [String!]
97
+ tags: [String!]
98
+ category: [eventCategories!]
99
+ }
100
+
101
+ type EventsList {
102
+ total: Int!
103
+ items: [Event]
104
+ }
105
+
66
106
  type FellowshipDetails {
67
107
  type: String
68
108
  fundingPeriod: String
@@ -410,46 +450,6 @@ type Disciplines {
410
450
  updatedAt: AWSDateTime
411
451
  }
412
452
 
413
- type Event {
414
- appId: String
415
- createdBy: ID
416
- category: eventCategories
417
- name: String!
418
- description: String
419
- details: String
420
- dateText: String
421
- eventType: eventType
422
- totalSlots: Int
423
- availableSlots: Int
424
- slots: [Slot]
425
- delay: AWSDateTime
426
- place: Place
427
- start: AWSDateTime
428
- stop: AWSDateTime
429
- summary: String
430
- related: Related
431
- subtitle: String
432
- program: String
433
- outside: Boolean
434
- url: AWSURL
435
- image: Image
436
- state: eventState
437
- bookingState: bookingState
438
- slug: AWSJSON
439
- }
440
-
441
- type EventFilters {
442
- disciplines: [String!]
443
- fellowships: [String!]
444
- tags: [String!]
445
- category: [eventCategories!]
446
- }
447
-
448
- type EventsList {
449
- total: Int!
450
- items: [Event]
451
- }
452
-
453
453
  type Location {
454
454
  name: String!
455
455
  details: String
@@ -96,7 +96,7 @@ const data = {
96
96
  "text": "by-date-most-recent-first",
97
97
  "value": [
98
98
  "start",
99
- -1
99
+ 1
100
100
  ],
101
101
  "default": true
102
102
  },
@@ -196,7 +196,7 @@ const data = {
196
196
  "start"
197
197
  ],
198
198
  "sortDesc": [
199
- -1
199
+ 1
200
200
  ]
201
201
  };
202
202
 
@@ -94,7 +94,7 @@ const data = {
94
94
  "text": "by-date-most-recent-first",
95
95
  "value": [
96
96
  "start",
97
- -1
97
+ 1
98
98
  ],
99
99
  "default": true
100
100
  },
@@ -194,7 +194,7 @@ const data = {
194
194
  "start"
195
195
  ],
196
196
  "sortDesc": [
197
- -1
197
+ 1
198
198
  ]
199
199
  };
200
200
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.0.10",
3
+ "version": "2.0.12",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",