@vario-software/types 2026.12.5 → 2026.13.0
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/readme.md +15 -0
- package/schema/erp.d.ts +15653 -5637
- package/scripting/eav_types.d.ts +12 -0
- package/scripting/services.d.ts +646 -72
- package/scripting/types.d.ts +1121 -330
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -6,4 +6,19 @@ For more information about VARIO and our ERP system, visit [www.vario.ag](https:
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npm install @vario-software/types --save-dev
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
To enable type support in your project, create a `jsconfig.json` file in the project root:
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
```json
|
|
15
|
+
{
|
|
16
|
+
"compilerOptions": {
|
|
17
|
+
"checkJs": true,
|
|
18
|
+
"types": ["@vario-software/types"]
|
|
19
|
+
},
|
|
20
|
+
"exclude": [
|
|
21
|
+
"**/node_modules"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
9
24
|
```
|