External System Access via Typescript v2

Hello, I am attempting to setup function-backed actions that make edits to Ontology objects as well as publish messages to an AWS SQS queue.

I started out using Typescript v1 for the actions, however I ran into an issue with this because one of the properties on the ontology object we need to edit is a struct, and it seems like struct properties on objects aren’t supported in v1.

I then proceeded to change to using Typescript v2 which does support structs however this leads to the issue that according to documentation v2 does not support using webhooks, which we need in order to publish messages to the SQS queue from the code repo via the Data Connection.

Is it still the case that Typescript v2 doesn’t support webhook usage? And if so are there any ways around this to fulfill my use case?