@paris-ias/trees 2.2.5 → 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.
@@ -24,11 +24,11 @@ export interface Projects {
24
24
  color?: string
25
25
  date?: Date
26
26
  featured?: Date
27
- state: projectState | projectStateAdmin
27
+ state: projectStates | projectStatesAdmin
28
28
  type: projectTypes
29
29
  }
30
30
 
31
- export enum projectState {
31
+ export enum projectStates {
32
32
  InProgress = "IN_PROGRESS",
33
33
  Finished = "FINISHED",
34
34
  }
@@ -1042,7 +1042,7 @@ type Project {
1042
1042
  related: Related
1043
1043
  score: Float
1044
1044
  slug: String
1045
- state: projectState
1045
+ state: projectStates
1046
1046
  subtitle: String
1047
1047
  summary: String
1048
1048
  tags: [Tag]
@@ -861,7 +861,7 @@ type Project {
861
861
  related: Related
862
862
  score: Float
863
863
  slug: String
864
- state: projectState
864
+ state: projectStates
865
865
  subtitle: String
866
866
  summary: String
867
867
  tags: [Tag]
@@ -24,11 +24,11 @@ export interface Projects {
24
24
  color?: string
25
25
  date?: Date
26
26
  featured?: Date
27
- state: projectState | projectStateAdmin
27
+ state: projectStates | projectStatesAdmin
28
28
  type: projectTypes
29
29
  }
30
30
 
31
- export enum projectState {
31
+ export enum projectStates {
32
32
  InProgress = "IN_PROGRESS",
33
33
  Finished = "FINISHED",
34
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paris-ias/trees",
3
- "version": "2.2.5",
3
+ "version": "2.2.6",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",