I want to modify an array property on an Object using an Ontology Function (a.k.a FoO), but I'm seeing the following error:
[typescript] Property 'push' does not exist on type 'readonly string[]'.
Looking at the generated TypeScript definition for my Object type, it looks like my array property has type ReadonlyArray<string> | undefined
How can I update this array from my Function?