import { Client, TablesDB } from "https://deno.land/x/appwrite/mod.ts"; const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('') // Your project ID .setKey(''); // Your secret API key const tablesDB = new TablesDB(client); const response = await tablesDB.updateEmailColumn({ databaseId: '', tableId: '', key: '', required: false, default: 'email@example.com', newKey: '' // optional });