Calls the "getClaimConditionById" function on the contract.
import { getClaimConditionById } from "thirdweb/extensions/erc721"; const result = await getClaimConditionById({ contract, conditionId: ...,});function getClaimConditionById(): Promise<{  currency: string;  maxClaimableSupply: bigint;  merkleRoot: `0x${string}`;  metadata: string;  pricePerToken: bigint;  quantityLimitPerWallet: bigint;  startTimestamp: bigint;  supplyClaimed: bigint;}>;The options for the getClaimConditionById function.