@e-trias/woonplan 1.3.42 → 1.3.44

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 +10 -8
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.42",
5
+ "version": "1.3.44",
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
@@ -537,6 +537,7 @@ export interface ISettings {
537
537
  createProjectInPerfectview?: boolean
538
538
  houseScan?: boolean
539
539
  initialQuestionsetP?: number
540
+ showNewsletterOptIn?: boolean
540
541
  mailchimp?: IMailchimpSettings
541
542
  pipedrive?: { apiKey: string }
542
543
  pipedriveActivity?: {
@@ -608,6 +609,7 @@ export interface ISettings {
608
609
  hasNationalFinancing ?: string
609
610
  'buildyear-gt-1995-quotations-contractor' ?: string
610
611
  'buildyear-lte-1995-quotations-contractor' ?: string
612
+ gamification ?: "1" | "0"
611
613
  }
612
614
 
613
615
  export interface IMailchimpSettings {
@@ -1724,14 +1726,14 @@ export interface ITag{
1724
1726
  tagpostcodes ?: ITagpostcode[]
1725
1727
  contacts ?: IContact[]
1726
1728
  }
1727
-
1729
+
1728
1730
  export interface ITagpostcode{
1729
1731
  logged ?: ILogged
1730
1732
  tag ?: ITag
1731
1733
  tagid ?: string
1732
- postcode ?: string
1733
- housenumber ?: string
1734
- extension ?: string
1734
+ postcode ?: string
1735
+ housenumber ?: string
1736
+ extension ?: string
1735
1737
  }
1736
1738
 
1737
1739
 
@@ -1746,16 +1748,16 @@ export interface IQuestionnaireTag{
1746
1748
  id : string
1747
1749
  logged ?: ILogged
1748
1750
  type ?: string
1749
- tagdependencies ?: IQuestionnaireTagDependency[]
1751
+ tagdependencies ?: IQuestionnaireTagDependency[]
1750
1752
  }
1751
1753
 
1752
1754
  export interface IQuestionnaireTagDependency{
1753
1755
  tag ?: IQuestionnaireTag
1754
1756
  tagid ?: string
1755
1757
  answeroption ?: IAnsweroption
1756
- answeroptionid ?: string
1758
+ answeroptionid ?: string
1757
1759
  question ?: IQuestion
1758
- questionid ?: string
1759
- value ?: string
1760
+ questionid ?: string
1761
+ value ?: string
1760
1762
  operator ?: string
1761
1763
  }