Hi
Is there a way to use UCV to filter only public assets without making them as defaultSearchTerm “isPublic:1”
The idea is “I do not want the end user to remove that isPublic:1 and see the not public assets yet”
As I know I can’t use Predefined Metaproperty Ids as Public is not part of those metaproperties.
I see we can filter on isLimitedUse but none on isPublic
type AssetFilterJson = { predefinedAssetType?: AssetType[]; //predefined asset types collectionId?: string; //predefined collection id predefinedMetapropertiesOptions?: string[]; //predefined metaproperty IDs searchTerm?: string; //predefined search term predefinedTagNames?: string[]; //predefined tags isLimitedUse?: boolean; //whether or not this asset is marked as Limited Use showToolbar?: boolean; //show toolbar for predefined filters (false by default)};Thanks in advance.