@e-trias/woonplan 1.3.106 → 1.3.107

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 +26 -0
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.106",
5
+ "version": "1.3.107",
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
@@ -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,27 @@ 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
+ paymentid ?: string
2004
+ }
2005
+ export interface ISubscriptionplantype{
2006
+ id : string
2007
+ logged ?: ILogged
2008
+ subscriptionplans ?: ISubscriptionplan[]
2009
+ }