@e-trias/woonplan 1.3.144 → 1.3.146
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 +13 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -59,6 +59,12 @@ export interface IPartner extends ICompany {
|
|
|
59
59
|
questionsets?: IQuestionset[]
|
|
60
60
|
settings?: ICompanySettings
|
|
61
61
|
abbreviatedname?: string
|
|
62
|
+
collectivebuys?: ICollectivebuy[]
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface ICollectivebuy {
|
|
66
|
+
id?: string
|
|
67
|
+
partnerid?: string
|
|
62
68
|
}
|
|
63
69
|
|
|
64
70
|
export interface ICompanySettings{
|
|
@@ -971,6 +977,13 @@ export interface IWallfinish{
|
|
|
971
977
|
name ?: string
|
|
972
978
|
image ?: string | null
|
|
973
979
|
}
|
|
980
|
+
export interface IRoofshape{
|
|
981
|
+
deleted ?: boolean
|
|
982
|
+
id ?: string
|
|
983
|
+
sortorder ?: number
|
|
984
|
+
name ?: string
|
|
985
|
+
}
|
|
986
|
+
|
|
974
987
|
export interface IRoofing{
|
|
975
988
|
deleted ?: boolean
|
|
976
989
|
id ?: string
|