You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`@Install()`| Handles [`onInstall`](https://developers.google.com/apps-script/guides/triggers#oninstalle) event, triggered when the add-on is first installed. |
84
+
|`@Open()`| Handles [`onOpen`](https://developers.google.com/apps-script/guides/triggers#onopene) event, triggered when a Google Sheet is opened. |
85
+
|`@Edit()`| Handles [`onEdit`](https://developers.google.com/apps-script/guides/triggers#onedite) event, triggered by manual cell changes in a Google Sheet. |
86
+
|`@Change()`| Handles `onChange` event, triggered by any structural or content change in a Google Sheet. |
87
+
|`@SelectionChange()`| Handles [`onSelectionChange`](https://developers.google.com/apps-script/guides/triggers#onselectionchangee) event, triggered by user cell selection changes. |
88
+
|`@FormSubmit()`| Handles `onFormSubmit` event, triggered when a form connected to a Google Sheet is submitted. |
89
+
|`@Post()`| Maps a method to handle HTTP POST requests. |
90
+
|`@Get()`| Maps a method to handle HTTP GET requests. |
91
+
|`@Delete()`| Maps a method to handle HTTP DELETE requests. |
92
+
|`@Put()`| Maps a method to handle HTTP PUT requests. |
93
+
|`@Patch()`| Maps a method to handle HTTP PATCH requests. |
94
+
|`@Options()`| Maps a method to handle HTTP OPTIONS requests. |
95
+
|`@Head()`| Maps a method to handle HTTP HEAD requests. |
0 commit comments