@e-trias/woonplan 1.3.112 → 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 +47 -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.
|
|
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
|