@e-trias/woonplan 1.3.106 → 1.3.108
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 +25 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -738,6 +738,7 @@ export interface IPayment {
|
|
|
738
738
|
status : string
|
|
739
739
|
mollieid: string
|
|
740
740
|
checkoutUrl?: string
|
|
741
|
+
subscriptionid ?: string
|
|
741
742
|
}
|
|
742
743
|
|
|
743
744
|
export interface IOnlineAfsprakenSettings{
|
|
@@ -1397,6 +1398,7 @@ export interface IAreaaction extends ILogged{
|
|
|
1397
1398
|
questionsets ?: IQuestionsetSettings[]
|
|
1398
1399
|
htmltitle ?: string
|
|
1399
1400
|
senderemail?: string
|
|
1401
|
+
subscriptionplanid ?: string
|
|
1400
1402
|
}
|
|
1401
1403
|
|
|
1402
1404
|
export interface IQuestionsetSettings{
|
|
@@ -1981,3 +1983,26 @@ export interface IAnnextemplate{
|
|
|
1981
1983
|
floorunattachedfactor : number
|
|
1982
1984
|
}
|
|
1983
1985
|
|
|
1986
|
+
|
|
1987
|
+
export interface ISubscriptionplan{
|
|
1988
|
+
id : string
|
|
1989
|
+
logged ?: ILogged
|
|
1990
|
+
partnerid ?: string
|
|
1991
|
+
price : number
|
|
1992
|
+
subscriptionplantype ?: ISubscriptionplantype
|
|
1993
|
+
subscriptionplantypeid ?: string
|
|
1994
|
+
subscriptions ?: ISubscription[]
|
|
1995
|
+
|
|
1996
|
+
}
|
|
1997
|
+
export interface ISubscription{
|
|
1998
|
+
id : string
|
|
1999
|
+
logged ?: ILogged
|
|
2000
|
+
subscriptionplan ?: ISubscriptionplan
|
|
2001
|
+
subscriptionplanid ?: string
|
|
2002
|
+
contactid ?: string
|
|
2003
|
+
}
|
|
2004
|
+
export interface ISubscriptionplantype{
|
|
2005
|
+
id : string
|
|
2006
|
+
logged ?: ILogged
|
|
2007
|
+
subscriptionplans ?: ISubscriptionplan[]
|
|
2008
|
+
}
|