@la-main-verte/shared-types 1.0.66 → 1.0.67
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 +1 -1
- package/src/home.api.d.ts +4 -0
- package/src/member.d.ts +5 -0
- package/src/selection.d.ts +3 -0
package/package.json
CHANGED
package/src/home.api.d.ts
CHANGED
|
@@ -209,6 +209,10 @@ export namespace HOME {
|
|
|
209
209
|
url: string
|
|
210
210
|
previewPlants?: WhenToSeedWhatPlantPreviewI[]
|
|
211
211
|
backgroundColor?: string
|
|
212
|
+
/** Show a red badge indicator (replaces the plant preview stack when true) */
|
|
213
|
+
showBadge?: boolean
|
|
214
|
+
/** Optional badge count to display */
|
|
215
|
+
badgeCount?: number
|
|
212
216
|
}
|
|
213
217
|
|
|
214
218
|
export type SectionI =
|
package/src/member.d.ts
CHANGED
|
@@ -48,6 +48,11 @@ export interface MemberI {
|
|
|
48
48
|
unitSystem: 'imperial' | 'metric'
|
|
49
49
|
gardenZoneTimelessPreference?: boolean
|
|
50
50
|
subscriptionEndDate?: Date
|
|
51
|
+
/**
|
|
52
|
+
* Last fertilizer ID chosen by the user.
|
|
53
|
+
* Used as the default fertilizer for new garden zones.
|
|
54
|
+
*/
|
|
55
|
+
lastFertilizerIdChosen?: number
|
|
51
56
|
/**
|
|
52
57
|
* Virtual field to get the app badge count
|
|
53
58
|
* ----------------------------------------
|