@e-trias/woonplan 1.3.111 → 1.3.113
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 +2 -2
- package/types.d.ts +58 -1
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.
|
|
5
|
+
"version": "1.3.113",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
8
|
"build": "tsc -p tsconfig.json",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"homepage": "https://github.com/e-trias/woonplan-types#readme",
|
|
22
22
|
"description": "",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"typescript": "^4.
|
|
24
|
+
"typescript": "^4.9.5"
|
|
25
25
|
},
|
|
26
26
|
"exports": {
|
|
27
27
|
".": "./types.d.ts"
|
package/types.d.ts
CHANGED
|
@@ -111,8 +111,55 @@ export interface ILogged{
|
|
|
111
111
|
sortorder:number;
|
|
112
112
|
createdate:Date
|
|
113
113
|
createcontact ?: IContact
|
|
114
|
+
translations ?: ITranslation
|
|
114
115
|
}
|
|
115
116
|
|
|
117
|
+
export interface ITranslation{
|
|
118
|
+
id : string
|
|
119
|
+
deleted : boolean
|
|
120
|
+
sortorder : number
|
|
121
|
+
fields ?: string
|
|
122
|
+
locale ?: ILocale
|
|
123
|
+
localeid ?: string
|
|
124
|
+
logged ?: ILogged
|
|
125
|
+
loggedid ?: string
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export interface ILocale{
|
|
129
|
+
id : string
|
|
130
|
+
name : string
|
|
131
|
+
code ?: string
|
|
132
|
+
translations ?: ITranslation[]
|
|
133
|
+
language ?: ILanguage
|
|
134
|
+
languageid ?: string
|
|
135
|
+
country ?: ICountry
|
|
136
|
+
countryid ?: string
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export interface ICountry{
|
|
140
|
+
id : string
|
|
141
|
+
option : IOption
|
|
142
|
+
iso2 : string
|
|
143
|
+
iso3 : string
|
|
144
|
+
locales ?: ILocale[]
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface ILanguage{
|
|
148
|
+
id : string
|
|
149
|
+
option : IOption
|
|
150
|
+
iso2 : string
|
|
151
|
+
iso3 : string
|
|
152
|
+
locales ?: ILocale[]
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
export interface IOption{
|
|
158
|
+
id : string
|
|
159
|
+
name : string
|
|
160
|
+
deleted : boolean
|
|
161
|
+
sortorder : number
|
|
162
|
+
}
|
|
116
163
|
|
|
117
164
|
export interface ILog{
|
|
118
165
|
id : string
|
|
@@ -541,7 +588,7 @@ export interface QuotationRequestForm{
|
|
|
541
588
|
contractorid : string
|
|
542
589
|
}
|
|
543
590
|
|
|
544
|
-
export interface IAppointment
|
|
591
|
+
export interface IAppointment{
|
|
545
592
|
id: string
|
|
546
593
|
status?: string
|
|
547
594
|
start?: Date
|
|
@@ -1993,6 +2040,7 @@ export interface ISubscriptionplan{
|
|
|
1993
2040
|
subscriptionplantype ?: ISubscriptionplantype
|
|
1994
2041
|
subscriptionplantypeid ?: string
|
|
1995
2042
|
subscriptions ?: ISubscription[]
|
|
2043
|
+
vouchercodes ?: IVouchercode[]
|
|
1996
2044
|
|
|
1997
2045
|
}
|
|
1998
2046
|
export interface ISubscription{
|
|
@@ -2001,9 +2049,18 @@ export interface ISubscription{
|
|
|
2001
2049
|
subscriptionplan ?: ISubscriptionplan
|
|
2002
2050
|
subscriptionplanid ?: string
|
|
2003
2051
|
contactid ?: string
|
|
2052
|
+
vouchercodes ?: IVouchercode[]
|
|
2004
2053
|
}
|
|
2005
2054
|
export interface ISubscriptionplantype{
|
|
2006
2055
|
id : string
|
|
2007
2056
|
logged ?: ILogged
|
|
2008
2057
|
subscriptionplans ?: ISubscriptionplan[]
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2060
|
+
export interface IVouchercode{
|
|
2061
|
+
logged ?: ILogged
|
|
2062
|
+
subscriptionid ?: string
|
|
2063
|
+
subscriptionplanid ?: string
|
|
2064
|
+
subscription ?: ISubscription
|
|
2065
|
+
subscriptionplan ?: ISubscriptionplan
|
|
2009
2066
|
}
|