@paris-ias/trees 2.2.1 → 2.2.2
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/projects.cjs.js +8 -0
- package/dist/form/projects.d.ts +4 -3
- package/dist/form/projects.js +8 -0
- package/dist/form/publications.d.ts +15 -0
- package/dist/graphql/client/projects/query.get.projects.gql +5 -1
- package/dist/graphql/client/projects/query.list.projects.gql +5 -0
- package/dist/graphql/schemas/schema.apex.graphql +15 -14
- package/dist/graphql/schemas/schema.website.graphql +15 -14
- package/dist/list/projects.d.ts +4 -3
- package/dist/list/publications.d.ts +15 -0
- package/package.json +1 -1
|
@@ -69,6 +69,7 @@ const data = {
|
|
|
69
69
|
"en": "",
|
|
70
70
|
"fr": ""
|
|
71
71
|
},
|
|
72
|
+
"disciplines": "",
|
|
72
73
|
"type": "",
|
|
73
74
|
"image": "",
|
|
74
75
|
"url": "",
|
|
@@ -153,6 +154,13 @@ const data = {
|
|
|
153
154
|
},
|
|
154
155
|
"meta": "summary"
|
|
155
156
|
},
|
|
157
|
+
"disciplines": {
|
|
158
|
+
"label": "disciplines",
|
|
159
|
+
"component": "DocumentPicker",
|
|
160
|
+
"type": "DOCUMENT",
|
|
161
|
+
"meta": "disciplines",
|
|
162
|
+
"default": ""
|
|
163
|
+
},
|
|
156
164
|
"type": {
|
|
157
165
|
"label": "type",
|
|
158
166
|
"component": "Select",
|
package/dist/form/projects.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export interface Projects {
|
|
|
12
12
|
subtitle?: string
|
|
13
13
|
description?: string
|
|
14
14
|
summary?: string
|
|
15
|
+
disciplines?: Disciplines[]
|
|
15
16
|
url?: URL
|
|
16
17
|
affiliations?: Affiliations[]
|
|
17
18
|
related?: Related[]
|
|
@@ -23,16 +24,16 @@ export interface Projects {
|
|
|
23
24
|
color?: string
|
|
24
25
|
date?: Date
|
|
25
26
|
featured?: Date
|
|
26
|
-
|
|
27
|
+
state: projectState | projectStateAdmin
|
|
27
28
|
type: projectTypes
|
|
28
29
|
}
|
|
29
30
|
|
|
30
|
-
export enum
|
|
31
|
+
export enum projectState {
|
|
31
32
|
InProgress = "IN_PROGRESS",
|
|
32
33
|
Finished = "FINISHED",
|
|
33
34
|
}
|
|
34
35
|
|
|
35
|
-
export enum
|
|
36
|
+
export enum projectStateAdmin {
|
|
36
37
|
Planned = "PLANNED",
|
|
37
38
|
InProgress = "IN_PROGRESS",
|
|
38
39
|
Finished = "FINISHED",
|
package/dist/form/projects.js
CHANGED
|
@@ -67,6 +67,7 @@ const data = {
|
|
|
67
67
|
"en": "",
|
|
68
68
|
"fr": ""
|
|
69
69
|
},
|
|
70
|
+
"disciplines": "",
|
|
70
71
|
"type": "",
|
|
71
72
|
"image": "",
|
|
72
73
|
"url": "",
|
|
@@ -151,6 +152,13 @@ const data = {
|
|
|
151
152
|
},
|
|
152
153
|
"meta": "summary"
|
|
153
154
|
},
|
|
155
|
+
"disciplines": {
|
|
156
|
+
"label": "disciplines",
|
|
157
|
+
"component": "DocumentPicker",
|
|
158
|
+
"type": "DOCUMENT",
|
|
159
|
+
"meta": "disciplines",
|
|
160
|
+
"default": ""
|
|
161
|
+
},
|
|
154
162
|
"type": {
|
|
155
163
|
"label": "type",
|
|
156
164
|
"component": "Select",
|
|
@@ -9,6 +9,20 @@ export enum mediaType {
|
|
|
9
9
|
Other = "OTHER",
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
export enum publicationState {
|
|
13
|
+
Published = "PUBLISHED",
|
|
14
|
+
Finished = "FINISHED",
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export enum publicationStateAdmin {
|
|
18
|
+
Published = "PUBLISHED",
|
|
19
|
+
Removed = "REMOVED",
|
|
20
|
+
Finished = "FINISHED",
|
|
21
|
+
Cancelled = "CANCELLED",
|
|
22
|
+
Postponed = "POSTPONED",
|
|
23
|
+
Rescheduled = "RESCHEDULED",
|
|
24
|
+
}
|
|
25
|
+
|
|
12
26
|
export enum newsCategories {
|
|
13
27
|
Announcement = "ANNOUNCEMENT",
|
|
14
28
|
Article = "ARTICLE",
|
|
@@ -68,6 +82,7 @@ export interface Publications {
|
|
|
68
82
|
related?: Related[]
|
|
69
83
|
subtitle?: string
|
|
70
84
|
summary?: string
|
|
85
|
+
state?: publicationState | publicationStateAdmin
|
|
71
86
|
tags?: Tag[]
|
|
72
87
|
type: publicationType
|
|
73
88
|
url?: URL
|
|
@@ -7,6 +7,10 @@ query getProject(
|
|
|
7
7
|
color
|
|
8
8
|
date
|
|
9
9
|
description
|
|
10
|
+
disciplines {
|
|
11
|
+
name
|
|
12
|
+
slug
|
|
13
|
+
}
|
|
10
14
|
featured
|
|
11
15
|
slug
|
|
12
16
|
files {
|
|
@@ -96,7 +100,7 @@ query getProject(
|
|
|
96
100
|
updatedAt
|
|
97
101
|
}
|
|
98
102
|
appId
|
|
99
|
-
|
|
103
|
+
state
|
|
100
104
|
related {
|
|
101
105
|
events {
|
|
102
106
|
description
|
|
@@ -1027,26 +1027,27 @@ type Vintage {
|
|
|
1027
1027
|
}
|
|
1028
1028
|
|
|
1029
1029
|
type Project {
|
|
1030
|
-
appId: String
|
|
1031
|
-
name: String!
|
|
1032
|
-
subtitle: String
|
|
1033
|
-
summary: String
|
|
1034
|
-
description: String
|
|
1035
|
-
url: AWSURL
|
|
1036
1030
|
affiliations: [Affiliation]
|
|
1037
|
-
|
|
1038
|
-
gallery: [Image]
|
|
1039
|
-
image: Image
|
|
1040
|
-
video: [Video]
|
|
1041
|
-
tags: [Tag]
|
|
1042
|
-
files: [File]
|
|
1031
|
+
appId: String
|
|
1043
1032
|
color: String
|
|
1044
1033
|
date: AWSDateTime
|
|
1034
|
+
description: String
|
|
1035
|
+
disciplines: [Discipline]
|
|
1045
1036
|
featured: AWSDateTime
|
|
1046
|
-
|
|
1047
|
-
|
|
1037
|
+
files: [File]
|
|
1038
|
+
gallery: [Image]
|
|
1039
|
+
image: Image
|
|
1040
|
+
name: String!
|
|
1041
|
+
related: Related
|
|
1048
1042
|
score: Float
|
|
1043
|
+
slug: String
|
|
1044
|
+
state: projectState
|
|
1045
|
+
subtitle: String
|
|
1046
|
+
summary: String
|
|
1047
|
+
tags: [Tag]
|
|
1049
1048
|
type: projectTypes
|
|
1049
|
+
url: AWSURL
|
|
1050
|
+
video: [Video]
|
|
1050
1051
|
}
|
|
1051
1052
|
|
|
1052
1053
|
type ProjectFilters {
|
|
@@ -846,26 +846,27 @@ type Vintage {
|
|
|
846
846
|
}
|
|
847
847
|
|
|
848
848
|
type Project {
|
|
849
|
-
appId: String
|
|
850
|
-
name: String!
|
|
851
|
-
subtitle: String
|
|
852
|
-
summary: String
|
|
853
|
-
description: String
|
|
854
|
-
url: AWSURL
|
|
855
849
|
affiliations: [Affiliation]
|
|
856
|
-
|
|
857
|
-
gallery: [Image]
|
|
858
|
-
image: Image
|
|
859
|
-
video: [Video]
|
|
860
|
-
tags: [Tag]
|
|
861
|
-
files: [File]
|
|
850
|
+
appId: String
|
|
862
851
|
color: String
|
|
863
852
|
date: AWSDateTime
|
|
853
|
+
description: String
|
|
854
|
+
disciplines: [Discipline]
|
|
864
855
|
featured: AWSDateTime
|
|
865
|
-
|
|
866
|
-
|
|
856
|
+
files: [File]
|
|
857
|
+
gallery: [Image]
|
|
858
|
+
image: Image
|
|
859
|
+
name: String!
|
|
860
|
+
related: Related
|
|
867
861
|
score: Float
|
|
862
|
+
slug: String
|
|
863
|
+
state: projectState
|
|
864
|
+
subtitle: String
|
|
865
|
+
summary: String
|
|
866
|
+
tags: [Tag]
|
|
868
867
|
type: projectTypes
|
|
868
|
+
url: AWSURL
|
|
869
|
+
video: [Video]
|
|
869
870
|
}
|
|
870
871
|
|
|
871
872
|
type ProjectFilters {
|
package/dist/list/projects.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export interface Projects {
|
|
|
12
12
|
subtitle?: string
|
|
13
13
|
description?: string
|
|
14
14
|
summary?: string
|
|
15
|
+
disciplines?: Disciplines[]
|
|
15
16
|
url?: URL
|
|
16
17
|
affiliations?: Affiliations[]
|
|
17
18
|
related?: Related[]
|
|
@@ -23,16 +24,16 @@ export interface Projects {
|
|
|
23
24
|
color?: string
|
|
24
25
|
date?: Date
|
|
25
26
|
featured?: Date
|
|
26
|
-
|
|
27
|
+
state: projectState | projectStateAdmin
|
|
27
28
|
type: projectTypes
|
|
28
29
|
}
|
|
29
30
|
|
|
30
|
-
export enum
|
|
31
|
+
export enum projectState {
|
|
31
32
|
InProgress = "IN_PROGRESS",
|
|
32
33
|
Finished = "FINISHED",
|
|
33
34
|
}
|
|
34
35
|
|
|
35
|
-
export enum
|
|
36
|
+
export enum projectStateAdmin {
|
|
36
37
|
Planned = "PLANNED",
|
|
37
38
|
InProgress = "IN_PROGRESS",
|
|
38
39
|
Finished = "FINISHED",
|
|
@@ -9,6 +9,20 @@ export enum mediaType {
|
|
|
9
9
|
Other = "OTHER",
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
+
export enum publicationState {
|
|
13
|
+
Published = "PUBLISHED",
|
|
14
|
+
Finished = "FINISHED",
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export enum publicationStateAdmin {
|
|
18
|
+
Published = "PUBLISHED",
|
|
19
|
+
Removed = "REMOVED",
|
|
20
|
+
Finished = "FINISHED",
|
|
21
|
+
Cancelled = "CANCELLED",
|
|
22
|
+
Postponed = "POSTPONED",
|
|
23
|
+
Rescheduled = "RESCHEDULED",
|
|
24
|
+
}
|
|
25
|
+
|
|
12
26
|
export enum newsCategories {
|
|
13
27
|
Announcement = "ANNOUNCEMENT",
|
|
14
28
|
Article = "ARTICLE",
|
|
@@ -68,6 +82,7 @@ export interface Publications {
|
|
|
68
82
|
related?: Related[]
|
|
69
83
|
subtitle?: string
|
|
70
84
|
summary?: string
|
|
85
|
+
state?: publicationState | publicationStateAdmin
|
|
71
86
|
tags?: Tag[]
|
|
72
87
|
type: publicationType
|
|
73
88
|
url?: URL
|