@la-main-verte/shared-types 1.0.61 → 1.0.62

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@la-main-verte/shared-types",
3
- "version": "1.0.61",
3
+ "version": "1.0.62",
4
4
  "description": "Shared TypeScript interfaces for frontend of la-main-verte app",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -73,6 +73,7 @@ export interface GardenZoneI {
73
73
  * The culture on the GardenZone
74
74
  */
75
75
  GardenZoneCulture?: GardenZoneCultureI
76
+ rotationSuggestion?: string
76
77
  }
77
78
 
78
79
  export interface GardenZoneCultureI {
package/src/note.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { ImageI } from './image.d.ts'
2
2
  import { TaggedItemI } from './taggedItem.d.ts'
3
+ import { MemberI } from './member.d.ts'
3
4
 
4
5
  export interface NoteI {
5
6
  id: number
@@ -25,4 +26,5 @@ export interface NoteI {
25
26
  pastelColor: string
26
27
  Images: ImageI[]
27
28
  TaggedItems: TaggedItemI[]
29
+ Member?: MemberI
28
30
  }