@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +34 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@e-trias/woonplan",
3
3
  "private": false,
4
4
  "types": "types.d.ts",
5
- "version": "1.1.38",
5
+ "version": "1.1.40",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
8
  "build": "tsc -p tsconfig.json"
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
+