Update cipher ecnrypted name

Hello, I’m trying to update a cipherText in my function like said on this page: Cipher • Use CipherText properties in Functions and Actions • Palantir but I can’t get the mandatory import used for “@Edits(EncryptedCustomers)”. Trying to import it manually or by rebuild the code but nothing work and can’t get it.
Is there any things more to import ? Or maybe the doc I used is outdated ?

Thanks for your help :slight_smile:

Hello! If you’re using a different name for your object, you’ll need to switch EncryptedCustomers to the api name of your object.

If this is the case, you’ll want to update the ontology import line from the example: import { Objects, <YOUR_OBJECT_NAME_HERE> } from "@foundry/ontology-api";

And also update the Edits decorator: @Edits(<YOUR_OBJECT_NAME_HERE>)