When working with Zod, setting values can be done as shown below:
z.string().max(5);
z.string().min(5);
z.string().length(5);
However, in my scenario, the values (e.g., 5) are not predetermined. They are fetched from an API dynamically. How can I create the zod schema where the values are set asynchronously?