@e-trias/woonplan 1.3.39 → 1.3.41

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 +41 -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.3.39",
5
+ "version": "1.3.41",
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
@@ -30,6 +30,7 @@ export interface IContact{
30
30
  files ?: IContactFile[]
31
31
  notes ?: INote[]
32
32
  lastlogindate?: Date
33
+ tags ?: ITag
33
34
  }
34
35
  export interface INote{
35
36
  id?: string | null
@@ -1716,4 +1717,44 @@ export interface IWaterheater{
1716
1717
  waterheatercwclassid ?: string
1717
1718
  waterheatercwclass ?: IWaterheaterCwclass
1718
1719
 
1720
+ }
1721
+
1722
+ export interface ITag{
1723
+ logged ?: ILogged
1724
+ tagpostcodes ?: ITagpostcode[]
1725
+ contacts ?: IContact[]
1726
+ }
1727
+
1728
+ export interface ITagpostcode{
1729
+ logged ?: ILogged
1730
+ tag ?: ITag
1731
+ tagid ?: string
1732
+ postcode ?: string
1733
+ housenumber ?: string
1734
+ extension ?: string
1735
+ }
1736
+
1737
+
1738
+ export interface IContactTag{
1739
+ tag ?: ITag
1740
+ tagid ?: string
1741
+ contactid ?: string
1742
+ contact ?: IContact
1743
+ }
1744
+
1745
+ export interface IQuestionnaireTag{
1746
+ logged ?: ILogged
1747
+ type ?: string
1748
+ tagdependencies ?: IQuestionnaireTagDependency[]
1749
+ }
1750
+
1751
+ export interface IQuestionnaireTagDependency{
1752
+ tag ?: IQuestionnaireTag
1753
+ tagid ?: string
1754
+ answeroption ?: IAnsweroption
1755
+ answeroptionid ?: string
1756
+ question ?: IQuestion
1757
+ questionid ?: string
1758
+ value ?: string
1759
+ operator ?: string
1719
1760
  }