@e-trias/woonplan 1.1.38 → 1.1.40
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/types.d.ts +34 -1
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1122,4 +1122,37 @@ export interface IDefaulthomesettings{
|
|
|
1122
1122
|
settings ?: IHomeSettings
|
|
1123
1123
|
yearmin ?: number
|
|
1124
1124
|
yearmax ?: number
|
|
1125
|
-
}
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
export interface IHousewish{
|
|
1129
|
+
name : string
|
|
1130
|
+
deleted : boolean
|
|
1131
|
+
sortorder : number
|
|
1132
|
+
userdatahousewishes ?: IUserdatahousewish
|
|
1133
|
+
housewishgroup ?: IHousewishgroup
|
|
1134
|
+
housewishgroupid ?: string | null
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
|
|
1138
|
+
export interface IHousewishgroup{
|
|
1139
|
+
name : string
|
|
1140
|
+
deleted : boolean
|
|
1141
|
+
sortorder : number
|
|
1142
|
+
housewishes ?: IHousewish[]
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
export interface IUserdatahousewish{
|
|
1147
|
+
name : string
|
|
1148
|
+
deleted : boolean
|
|
1149
|
+
sortorder : number
|
|
1150
|
+
housewish ?: IHousewish
|
|
1151
|
+
userdata ?: IUserdata
|
|
1152
|
+
housewishid ?: string | null
|
|
1153
|
+
userdataid ?: string | null
|
|
1154
|
+
score ?: number
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
|
|
1158
|
+
|