@e-trias/woonplan 1.2.41 → 1.2.43
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 +13 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1184,6 +1184,18 @@ export interface IAreaaction extends ILogged{
|
|
|
1184
1184
|
hostname ?: string
|
|
1185
1185
|
pvmark ?: string
|
|
1186
1186
|
partnerid ?: string
|
|
1187
|
+
|
|
1188
|
+
}
|
|
1189
|
+
|
|
1190
|
+
export interface IQuestionsetSettings{
|
|
1191
|
+
id: string,
|
|
1192
|
+
name: string,
|
|
1193
|
+
rule: string,
|
|
1194
|
+
initial: boolean,
|
|
1195
|
+
adminonly: boolean,
|
|
1196
|
+
questionset ?: string,
|
|
1197
|
+
questionsets ?: IQuestionsetSettings[],
|
|
1198
|
+
editable_after_finish: boolean
|
|
1187
1199
|
}
|
|
1188
1200
|
|
|
1189
1201
|
export interface IHomeSettings{
|
|
@@ -1432,6 +1444,7 @@ export interface IQuestionset{
|
|
|
1432
1444
|
id : string
|
|
1433
1445
|
collectionid ?: string
|
|
1434
1446
|
questions ?: IQuestion[]
|
|
1447
|
+
name: string
|
|
1435
1448
|
}
|
|
1436
1449
|
|
|
1437
1450
|
export interface IQuestion{
|