Google Event integration

0
Hi Community,   I am currently looking into a way to create/update a Google event in  a calendar from a Mendix application. In order to authenticate we need to use a google service account. We want to do this in a javascript action. The javascript code to authenticate looks something like this.    const { GoogleAuth } = require('google-auth-library');   async function authenticate() {    const auth = new GoogleAuth({        keyFile: 'path/to/your-key.json',        scopes: ['https://www.googleapis.com/auth/cloud-platform'],    });     const client = await auth.getClient();      console.log('Authenticated successfully');}   authenticate();   Is it possible to import /require a google libary into a Mendix app? And if so, how do we do that so it automatically works everytime we deploy?      
asked
0 answers