@e-trias/woonplan 0.0.50 → 0.0.54
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/index.d.ts +32 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -147,6 +147,7 @@ export interface Collectivebuy{
|
|
|
147
147
|
|
|
148
148
|
export interface Measuredata{
|
|
149
149
|
id:string
|
|
150
|
+
name:string
|
|
150
151
|
deleted:boolean
|
|
151
152
|
sortorder?:number
|
|
152
153
|
active?:boolean
|
|
@@ -158,5 +159,35 @@ export interface Measuredata{
|
|
|
158
159
|
rcvalue?:number
|
|
159
160
|
investment?:number
|
|
160
161
|
collectivebuyid?:string
|
|
162
|
+
contractorid?:string
|
|
163
|
+
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export interface Text{
|
|
167
|
+
id:string
|
|
168
|
+
title: string
|
|
169
|
+
body: string
|
|
170
|
+
localeid:string
|
|
171
|
+
partnerid:string
|
|
172
|
+
}
|
|
161
173
|
|
|
162
|
-
|
|
174
|
+
export interface Content{
|
|
175
|
+
id:string
|
|
176
|
+
fullyqualifiedaction : string
|
|
177
|
+
subtitle?: string
|
|
178
|
+
excerpt?: string
|
|
179
|
+
searchbox?: string
|
|
180
|
+
actionsbox?: string
|
|
181
|
+
htmltitle?: string
|
|
182
|
+
htmlkeywords?: string
|
|
183
|
+
htmldescription?: string
|
|
184
|
+
parentid?: string
|
|
185
|
+
areaactionid?: string
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
export interface Measuretext{
|
|
189
|
+
id:string
|
|
190
|
+
measureid?:string
|
|
191
|
+
measuredataid?:string
|
|
192
|
+
excerpt?:string
|
|
193
|
+
}
|