@e-trias/woonplan 1.3.105 → 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 +27 -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.105",
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
@@ -379,6 +379,7 @@ export interface QuotationRequest{
379
379
  data:JSON | null
380
380
  files?:QuotationFile[]
381
381
  logged ?: ILogged
382
+ canceldate ?: Date
382
383
  }
383
384
 
384
385
  export interface Collectivebuy{
@@ -737,6 +738,7 @@ export interface IPayment {
737
738
  status : string
738
739
  mollieid: string
739
740
  checkoutUrl?: string
741
+ subscriptionid ?: string
740
742
  }
741
743
 
742
744
  export interface IOnlineAfsprakenSettings{
@@ -1396,6 +1398,7 @@ export interface IAreaaction extends ILogged{
1396
1398
  questionsets ?: IQuestionsetSettings[]
1397
1399
  htmltitle ?: string
1398
1400
  senderemail?: string
1401
+ subscriptionplanid ?: string
1399
1402
  }
1400
1403
 
1401
1404
  export interface IQuestionsetSettings{
@@ -1980,3 +1983,27 @@ export interface IAnnextemplate{
1980
1983
  floorunattachedfactor : number
1981
1984
  }
1982
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
+ }