@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +13 -0
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.2.41",
5
+ "version": "1.2.43",
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
@@ -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{