import { createGetDb } from "@agent-native/core/db"; import { registerShareableResource } from "@agent-native/core/sharing"; import * as schema from "./schema.js"; export const getDb = createGetDb(schema); export { schema }; registerShareableResource({ type: "booking-link", resourceTable: schema.bookingLinks, sharesTable: schema.bookingLinkShares, displayName: "Booking link", titleColumn: "title", getResourcePath: (bookingLink) => `/booking-links/${bookingLink.id}`, getDb, });