Create and manage apps for your customers
const app = await vartiq.app.create({ name: "App name", projectId: "PROJECT_ID", description: "Optional description", // optional });
const apps = await vartiq.app.list("PROJECT_ID");
const app = await vartiq.app.get("APP_ID");
const app = await vartiq.app.update("APP_ID", { name: "New name", // optional description: "New description" // optional });
await vartiq.app.delete("APP_ID");