I have tried the following block of code where by I need to trigger a script when changes are made to the other spreadsheet. The script triggers & executes successfully. However I would like to trigger it for specific change events like "INSERT_ROW", "REMOVE_ROW", INSERT_COLUMN, & REMOVE_COLUMN only.
Reference Available here. But I cannot figure out the implementation https://developers.google.com/apps-script/guides/triggers/events#change
function uploadsDataOnChange(e){
var ss = SpreadsheetApp.openById("xxxxxxxxxxx")
ScriptApp.newTrigger('uploadToBigQuery')
.forSpreadsheet(ss)
.onChange()
.create();
}