@paris-ias/trees 2.2.4 → 2.2.6
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.d.ts
CHANGED
|
@@ -24,11 +24,11 @@ export interface Projects {
|
|
|
24
24
|
color?: string
|
|
25
25
|
date?: Date
|
|
26
26
|
featured?: Date
|
|
27
|
-
state:
|
|
27
|
+
state: projectStates | projectStatesAdmin
|
|
28
28
|
type: projectTypes
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
export enum
|
|
31
|
+
export enum projectStates {
|
|
32
32
|
InProgress = "IN_PROGRESS",
|
|
33
33
|
Finished = "FINISHED",
|
|
34
34
|
}
|
|
@@ -469,7 +469,7 @@ enum organiserType {
|
|
|
469
469
|
EXTERNAL
|
|
470
470
|
}
|
|
471
471
|
|
|
472
|
-
enum
|
|
472
|
+
enum projectStates {
|
|
473
473
|
PLANNED
|
|
474
474
|
IN_PROGRESS
|
|
475
475
|
FINISHED
|
|
@@ -1042,7 +1042,7 @@ type Project {
|
|
|
1042
1042
|
related: Related
|
|
1043
1043
|
score: Float
|
|
1044
1044
|
slug: String
|
|
1045
|
-
state:
|
|
1045
|
+
state: projectStates
|
|
1046
1046
|
subtitle: String
|
|
1047
1047
|
summary: String
|
|
1048
1048
|
tags: [Tag]
|
|
@@ -261,7 +261,7 @@ enum organiserType {
|
|
|
261
261
|
EXTERNAL
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
enum
|
|
264
|
+
enum projectStates {
|
|
265
265
|
PLANNED
|
|
266
266
|
IN_PROGRESS
|
|
267
267
|
FINISHED
|
|
@@ -861,7 +861,7 @@ type Project {
|
|
|
861
861
|
related: Related
|
|
862
862
|
score: Float
|
|
863
863
|
slug: String
|
|
864
|
-
state:
|
|
864
|
+
state: projectStates
|
|
865
865
|
subtitle: String
|
|
866
866
|
summary: String
|
|
867
867
|
tags: [Tag]
|
package/dist/list/projects.d.ts
CHANGED
|
@@ -24,11 +24,11 @@ export interface Projects {
|
|
|
24
24
|
color?: string
|
|
25
25
|
date?: Date
|
|
26
26
|
featured?: Date
|
|
27
|
-
state:
|
|
27
|
+
state: projectStates | projectStatesAdmin
|
|
28
28
|
type: projectTypes
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
export enum
|
|
31
|
+
export enum projectStates {
|
|
32
32
|
InProgress = "IN_PROGRESS",
|
|
33
33
|
Finished = "FINISHED",
|
|
34
34
|
}
|