I am trying to filter down to products that are published. However, I'm getting the TypeScript error "Type '"published"' is not assignable to type 'ProductStatus'.ts(2322)" when attempting to make this call:
const response = await medusa.admin.products.list({ status: ["published"] });
I'm confused because "published" is one of the allowable values. How should I resolve this?