@e-trias/woonplan 1.3.152 → 1.3.154
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 +9 -9
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ export interface IPartner extends ICompany {
|
|
|
57
57
|
areaactions?: IAreaaction[]
|
|
58
58
|
packages?: IPackage[]
|
|
59
59
|
questionsets?: IQuestionset[]
|
|
60
|
-
settings?:
|
|
60
|
+
settings?: ISettings
|
|
61
61
|
abbreviatedname?: string
|
|
62
62
|
collectivebuys?: ICollectivebuy[]
|
|
63
63
|
}
|
|
@@ -67,13 +67,6 @@ export interface ICollectivebuy {
|
|
|
67
67
|
partnerid?: string
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
export interface ICompanySettings{
|
|
71
|
-
powerbiapi ?: {
|
|
72
|
-
reportid ?: string,
|
|
73
|
-
datasetid ?: string
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
70
|
export interface IContractor extends ICompany{
|
|
78
71
|
}
|
|
79
72
|
|
|
@@ -774,7 +767,14 @@ export interface ISettings {
|
|
|
774
767
|
|
|
775
768
|
heatNetworkTemperature ?: string
|
|
776
769
|
|
|
777
|
-
colors
|
|
770
|
+
colors?: IColors
|
|
771
|
+
backgrounds?: string[]
|
|
772
|
+
favicon?: string
|
|
773
|
+
|
|
774
|
+
powerbiapi ?: {
|
|
775
|
+
reportid ?: string,
|
|
776
|
+
datasetid ?: string
|
|
777
|
+
}
|
|
778
778
|
}
|
|
779
779
|
|
|
780
780
|
export interface IColors {
|