@vario-software/types
v2026.35.1
Published
TypeScript type definitions for the VARIO Cloud platform: REST API schemas, app framework contexts and scripting interfaces. Provides type checking, autocompletion and IntelliSense in TypeScript and JavaScript projects.
Readme
VARIO Cloud TypeScript Definitions
TypeScript type definitions for the VARIO Cloud platform.
The package provides type checking, autocompletion and IntelliSense for VARIO Cloud APIs, platform contexts, OpenAPI schemas and scripting interfaces.
It works in plain JavaScript projects too — no TypeScript build step is required.
What's included
| Area | Contents | | ---- | -------- | | VARIO Cloud APIs | The REST and VQL clients, and the platform modules (EAV, migrations, text enums, webhooks, permitted tokens) | | Platform contexts | The App object, request context, migrator and error types | | OpenAPI schemas | The generated ERP schema — every request and response shape of the REST API | | Scripting interfaces | The script entry points (batch scripts, work items, output filters, the scripting proxy) and the service layer |
Installation
npm install @vario-software/types --save-devTo enable type support in your project, create a jsconfig.json file in the project root:
{
"compilerOptions": {
"checkJs": true,
"types": ["@vario-software/types"]
},
"exclude": [
"**/node_modules"
]
}