/** * SOQL injection protection. * * Constitution §VI: "Inputs that are used to construct SOQL queries MUST be * allowlisted or parameterised; string concatenation of user input into SOQL * is forbidden." * * Used by org-client.ts, conflict-detector.ts, and org-comparator.ts before * any sObject name is interpolated into a URL path or SOQL string. */ export declare function safeSObjectName(input: unknown): string; //# sourceMappingURL=soql-builder.d.ts.map