This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Auto-generate data-layer API wrapper files from Convex backend functions | |
* | |
* This version reads the actual TypeScript files to extract exported function names | |
* and creates semantic wrappers with proper function references. | |
*/ | |
import fs from 'fs'; | |
import path from 'path'; | |
import ts from 'typescript'; |