import { NextApiRequest, NextApiResponse } from 'next';
const WEBFLOW_API_KEY = process.env.WEBFLOW_API_KEY || '';
const DEV_MODE_KEY = process.env.DEV_MODE_KEY || '';
// Define specific types
type CollectionType = 'images' | 'videos' | 'widgets' | 'notes' | 'posts';
interface PositionChange {
itemId: string;
position: string;
order?: string;
collectionType: CollectionType;
}