import type { Kysely } from "kysely"; import type { BundleNestedUpdate, InlangDatabaseSchema, } from "../database/schema.js"; export const updateBundleNested = async ( db: Kysely, bundle: BundleNestedUpdate & { id: string; messages: { id: string; variants: { id: string }[] }[]; } ): Promise => { await db .updateTable("bundle") .set(bundle) .where("id", "=", bundle.id) .execute(); for (const message of bundle.messages) { await db .updateTable("message") .set(message) .where("id", "=", message.id) .execute(); for (const variant of message.variants) { await db .updateTable("variant") .set(variant) .where("id", "=", variant.id) .execute(); } } };