@la-main-verte/shared-types 1.0.70 → 1.0.72
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/users.api.d.ts +16 -0
package/package.json
CHANGED
package/src/users.api.d.ts
CHANGED
|
@@ -87,6 +87,22 @@ export namespace USERS {
|
|
|
87
87
|
|
|
88
88
|
export type Response = RecommendationI[]
|
|
89
89
|
}
|
|
90
|
+
export namespace UPDATE {
|
|
91
|
+
export interface Request {
|
|
92
|
+
headers: RequestHeaders
|
|
93
|
+
body: {
|
|
94
|
+
city?: string
|
|
95
|
+
lastFreezingDate?: string | Date
|
|
96
|
+
firstFreezingDate?: string | Date
|
|
97
|
+
moveDatesRequested?: boolean
|
|
98
|
+
lastFertilizerIdChosen?: number
|
|
99
|
+
lastOrganicMatterPercentage?: number
|
|
100
|
+
unitSystem?: 'imperial' | 'metric'
|
|
101
|
+
gardenZoneTimelessPreference?: boolean
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
export type Response = MemberDataI
|
|
105
|
+
}
|
|
90
106
|
export namespace GIFT_CARDS {
|
|
91
107
|
export namespace REDEEM {
|
|
92
108
|
export interface Request {
|