Thanks to the recent addition of the new features, AppSheet is going to be more deeply integrated with Google Apps Script to do new bits and pieces which were NOT possible before this new features.
AppSheet is also one of the major applications in Google Workspace. So it is making perfect sense to me that we get "AppSheet Class" for Google Apps Script to control app behavior from GAS, such as data changes, fire actions etc. AppSheet already provided the user (enterprise) with AppSheet native APIs for data control.
For now, we need to call this API endpoint from Scrip using URLfetchApp all the time, which is tedious.
AppSheetApp class could make it far more easier by introducing new class with several methods to control the apps data from the script.
From script, just add new rows with script something like : -
var data = [ a , b , c , d, e ]
AppSheetApp.getAppByName("xxxx").getTableByName("yyyy"), appendRow(data)
Google Apps Script is basially wrapper for APIs of Google Workspace products. Why not adding AppSheet as a new class?
Thank you for considering.