@e-trias/woonplan 1.3.40 → 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.
- package/package.json +1 -1
- package/types.d.ts +10 -0
package/package.json
CHANGED
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
|
|
@@ -1721,6 +1722,7 @@ export interface IWaterheater{
|
|
|
1721
1722
|
export interface ITag{
|
|
1722
1723
|
logged ?: ILogged
|
|
1723
1724
|
tagpostcodes ?: ITagpostcode[]
|
|
1725
|
+
contacts ?: IContact[]
|
|
1724
1726
|
}
|
|
1725
1727
|
|
|
1726
1728
|
export interface ITagpostcode{
|
|
@@ -1732,6 +1734,14 @@ export interface ITagpostcode{
|
|
|
1732
1734
|
extension ?: string
|
|
1733
1735
|
}
|
|
1734
1736
|
|
|
1737
|
+
|
|
1738
|
+
export interface IContactTag{
|
|
1739
|
+
tag ?: ITag
|
|
1740
|
+
tagid ?: string
|
|
1741
|
+
contactid ?: string
|
|
1742
|
+
contact ?: IContact
|
|
1743
|
+
}
|
|
1744
|
+
|
|
1735
1745
|
export interface IQuestionnaireTag{
|
|
1736
1746
|
logged ?: ILogged
|
|
1737
1747
|
type ?: string
|