/** * Lightweight builder entry point. * Exports enums, commonFunctions, and interfaces (types-only, zero runtime cost) * without the 92 element schemas. * Use this instead of the full builder barrel when you don't need schema definitions. */ import * as enums from "./enums/index"; import commonFunctions from "./utilities/global"; import * as interfaces from "./interfaces/global"; export { enums, commonFunctions, interfaces };