@paris-ias/trees 2.0.27 → 2.0.29
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/form/events.cjs.js +8 -1
- package/dist/form/events.d.ts +1 -0
- package/dist/form/events.js +8 -1
- package/dist/form/files.d.ts +2 -2
- package/dist/graphql/client/events/query.get.events.gql +11 -2
- package/dist/graphql/client/events/query.list.events.gql +1 -0
- package/dist/graphql/client/fellowships/query.get.fellowships.gql +1 -14
- package/dist/graphql/client/files/mutation.multipart.finalize.gql +9 -0
- package/dist/graphql/client/files/mutation.multipart.init.gql +6 -0
- package/dist/graphql/client/files/mutation.multipart.presigned.urls.gql +10 -0
- package/dist/graphql/client/people/query.get.people.gql +1 -1
- package/dist/graphql/client/projects/query.get.projects.gql +1 -1
- package/dist/graphql/schemas/apex-resolvers-list.json +3 -0
- package/dist/graphql/schemas/schema.apex.graphql +41 -0
- package/dist/graphql/schemas/schema.website.graphql +2 -0
- package/dist/list/events.d.ts +1 -0
- package/dist/list/files.d.ts +2 -2
- package/package.json +1 -1
package/dist/form/events.cjs.js
CHANGED
|
@@ -133,6 +133,7 @@ const data = {
|
|
|
133
133
|
"state": "",
|
|
134
134
|
"tags": "",
|
|
135
135
|
"totalSlots": "",
|
|
136
|
+
"place": "",
|
|
136
137
|
"stream": "",
|
|
137
138
|
"url": ""
|
|
138
139
|
},
|
|
@@ -476,7 +477,7 @@ const data = {
|
|
|
476
477
|
"meta": "outside"
|
|
477
478
|
},
|
|
478
479
|
"location": {
|
|
479
|
-
"label": "
|
|
480
|
+
"label": "location",
|
|
480
481
|
"component": "ObjectContainerPanel",
|
|
481
482
|
"type": "OBJECT",
|
|
482
483
|
"rules": {
|
|
@@ -690,6 +691,12 @@ const data = {
|
|
|
690
691
|
},
|
|
691
692
|
"meta": "totalSlots"
|
|
692
693
|
},
|
|
694
|
+
"place": {
|
|
695
|
+
"label": "place",
|
|
696
|
+
"component": "TextField",
|
|
697
|
+
"type": "PRIMITIVE",
|
|
698
|
+
"meta": "place"
|
|
699
|
+
},
|
|
693
700
|
"stream": {
|
|
694
701
|
"label": "stream",
|
|
695
702
|
"component": "TextField",
|
package/dist/form/events.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export interface Events {
|
|
|
23
23
|
organizers: RelatedPeople[] | Affiliations[] // 3 - Server & Client -
|
|
24
24
|
outside: boolean // 0 - Server & Client - // Near inscription
|
|
25
25
|
location: Location // 0 - Server & Client -
|
|
26
|
+
place: String
|
|
26
27
|
organiserType: organiserType // server & client - 0 = IAS, 1 = member, 2 = fellow, 3 = external
|
|
27
28
|
program: String // 0 - Server & Client -
|
|
28
29
|
related: Related
|
package/dist/form/events.js
CHANGED
|
@@ -131,6 +131,7 @@ const data = {
|
|
|
131
131
|
"state": "",
|
|
132
132
|
"tags": "",
|
|
133
133
|
"totalSlots": "",
|
|
134
|
+
"place": "",
|
|
134
135
|
"stream": "",
|
|
135
136
|
"url": ""
|
|
136
137
|
},
|
|
@@ -474,7 +475,7 @@ const data = {
|
|
|
474
475
|
"meta": "outside"
|
|
475
476
|
},
|
|
476
477
|
"location": {
|
|
477
|
-
"label": "
|
|
478
|
+
"label": "location",
|
|
478
479
|
"component": "ObjectContainerPanel",
|
|
479
480
|
"type": "OBJECT",
|
|
480
481
|
"rules": {
|
|
@@ -688,6 +689,12 @@ const data = {
|
|
|
688
689
|
},
|
|
689
690
|
"meta": "totalSlots"
|
|
690
691
|
},
|
|
692
|
+
"place": {
|
|
693
|
+
"label": "place",
|
|
694
|
+
"component": "TextField",
|
|
695
|
+
"type": "PRIMITIVE",
|
|
696
|
+
"meta": "place"
|
|
697
|
+
},
|
|
691
698
|
"stream": {
|
|
692
699
|
"label": "stream",
|
|
693
700
|
"component": "TextField",
|
package/dist/form/files.d.ts
CHANGED
|
@@ -19,9 +19,17 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
19
19
|
}
|
|
20
20
|
name
|
|
21
21
|
location {
|
|
22
|
-
|
|
22
|
+
alt
|
|
23
|
+
city
|
|
24
|
+
country
|
|
25
|
+
details
|
|
26
|
+
geocode {
|
|
27
|
+
lat
|
|
28
|
+
lng
|
|
29
|
+
}
|
|
23
30
|
name
|
|
24
|
-
|
|
31
|
+
street
|
|
32
|
+
zip
|
|
25
33
|
}
|
|
26
34
|
start
|
|
27
35
|
slug
|
|
@@ -36,6 +44,7 @@ query getEvent($appId: ID = "iea", $itemId: ID = "", $lang: String = "en") {
|
|
|
36
44
|
stop
|
|
37
45
|
subtitle
|
|
38
46
|
summary
|
|
47
|
+
place
|
|
39
48
|
program
|
|
40
49
|
totalSlots
|
|
41
50
|
eventType
|
|
@@ -81,19 +81,6 @@ query getFellowship(
|
|
|
81
81
|
licenseUrl
|
|
82
82
|
url
|
|
83
83
|
}
|
|
84
|
-
location {
|
|
85
|
-
alt
|
|
86
|
-
city
|
|
87
|
-
country
|
|
88
|
-
details
|
|
89
|
-
geocode {
|
|
90
|
-
lat
|
|
91
|
-
lng
|
|
92
|
-
}
|
|
93
|
-
name
|
|
94
|
-
street
|
|
95
|
-
zip
|
|
96
|
-
}
|
|
97
84
|
}
|
|
98
85
|
name
|
|
99
86
|
video {
|
|
@@ -123,7 +110,7 @@ query getFellowship(
|
|
|
123
110
|
licenseUrl
|
|
124
111
|
url
|
|
125
112
|
}
|
|
126
|
-
|
|
113
|
+
locations {
|
|
127
114
|
alt
|
|
128
115
|
city
|
|
129
116
|
country
|
|
@@ -7,6 +7,9 @@
|
|
|
7
7
|
"mutations/deleteItem",
|
|
8
8
|
"mutations/forgotPassword",
|
|
9
9
|
"mutations/inviteUser",
|
|
10
|
+
"mutations/multipartFinalize",
|
|
11
|
+
"mutations/multipartInit",
|
|
12
|
+
"mutations/multipartPreSignedUrls",
|
|
10
13
|
"mutations/updateUser",
|
|
11
14
|
"mutations/upsertApp",
|
|
12
15
|
"mutations/upsertEvent",
|
|
@@ -21,6 +21,28 @@ input FileInput {
|
|
|
21
21
|
category: FileCategory
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
input MultipartInitInput {
|
|
25
|
+
fileName: String!
|
|
26
|
+
appId: ID
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
input MultipartPreSignedUrlsInput {
|
|
30
|
+
fileKey: String!
|
|
31
|
+
fileId: String!
|
|
32
|
+
parts: Int!
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
input MultipartPartInput {
|
|
36
|
+
ETag: String!
|
|
37
|
+
PartNumber: Int!
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
input MultipartFinalizeInput {
|
|
41
|
+
fileKey: String!
|
|
42
|
+
fileId: String!
|
|
43
|
+
parts: [MultipartPartInput!]!
|
|
44
|
+
}
|
|
45
|
+
|
|
24
46
|
input VideoInput {
|
|
25
47
|
url: AWSURL
|
|
26
48
|
alt: String
|
|
@@ -36,6 +58,20 @@ type FilesList {
|
|
|
36
58
|
items: [File]
|
|
37
59
|
}
|
|
38
60
|
|
|
61
|
+
type MultipartInitResult {
|
|
62
|
+
fileId: String!
|
|
63
|
+
fileKey: String!
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
type MultipartPreSignedUrl {
|
|
67
|
+
signedUrl: String!
|
|
68
|
+
PartNumber: Int!
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
type MultipartFinalizeResult {
|
|
72
|
+
fileKey: String!
|
|
73
|
+
}
|
|
74
|
+
|
|
39
75
|
type Mailing {
|
|
40
76
|
appId: String
|
|
41
77
|
name: String
|
|
@@ -90,6 +126,9 @@ type Mutation {
|
|
|
90
126
|
deleteItem(appId: ID, itemId: ID!, type: String!): Boolean
|
|
91
127
|
bookEvent(itemId: ID!, slot: SlotInput!): Boolean
|
|
92
128
|
createNomenclature(options: NomenclatureInput!): Nomenclature
|
|
129
|
+
multipartInit(fileName: String!, appId: ID): MultipartInitResult!
|
|
130
|
+
multipartPreSignedUrls(fileKey: String!, fileId: String!, parts: Int!): [MultipartPreSignedUrl!]!
|
|
131
|
+
multipartFinalize(fileKey: String!, fileId: String!, parts: [MultipartPartInput!]!): MultipartFinalizeResult!
|
|
93
132
|
}
|
|
94
133
|
|
|
95
134
|
type Query {
|
|
@@ -249,6 +288,7 @@ input EventInput {
|
|
|
249
288
|
location: LocationInput
|
|
250
289
|
name: String!
|
|
251
290
|
outside: Boolean
|
|
291
|
+
place: String
|
|
252
292
|
program: String
|
|
253
293
|
slots: [SlotInput!]
|
|
254
294
|
start: AWSDateTime
|
|
@@ -275,6 +315,7 @@ type Event {
|
|
|
275
315
|
location: Location
|
|
276
316
|
name: String!
|
|
277
317
|
outside: Boolean
|
|
318
|
+
place: String
|
|
278
319
|
program: String
|
|
279
320
|
related: Related
|
|
280
321
|
score: Float
|
|
@@ -82,6 +82,7 @@ input EventInput {
|
|
|
82
82
|
location: LocationInput
|
|
83
83
|
name: String!
|
|
84
84
|
outside: Boolean
|
|
85
|
+
place: String
|
|
85
86
|
program: String
|
|
86
87
|
slots: [SlotInput!]
|
|
87
88
|
start: AWSDateTime
|
|
@@ -108,6 +109,7 @@ type Event {
|
|
|
108
109
|
location: Location
|
|
109
110
|
name: String!
|
|
110
111
|
outside: Boolean
|
|
112
|
+
place: String
|
|
111
113
|
program: String
|
|
112
114
|
related: Related
|
|
113
115
|
score: Float
|
package/dist/list/events.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export interface Events {
|
|
|
23
23
|
organizers: RelatedPeople[] | Affiliations[] // 3 - Server & Client -
|
|
24
24
|
outside: boolean // 0 - Server & Client - // Near inscription
|
|
25
25
|
location: Location // 0 - Server & Client -
|
|
26
|
+
place: String
|
|
26
27
|
organiserType: organiserType // server & client - 0 = IAS, 1 = member, 2 = fellow, 3 = external
|
|
27
28
|
program: String // 0 - Server & Client -
|
|
28
29
|
related: Related
|
package/dist/list/files.d.ts
CHANGED