/** * Utility functions for working with IDs */ /** * Coerces a string or number ID to a number for API calls that require numeric IDs. * * @deprecated This function is deprecated and will be removed in a future version. * Use String(value) instead to preserve UUID authentication IDs. * @param fieldName - The name of the field (for error messages) * @param value - The ID value to coerce * @returns The numeric ID * @throws {ZapierValidationError} If the value cannot be converted to a valid number */ export declare function coerceToNumericId(fieldName: string, value: string | number): number; //# sourceMappingURL=id-utils.d.ts.map