fix(types): add option_id field to FilterableProductOptionValueProps (#13085)

Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
This commit is contained in:
Aditya Erlangga Wibowo
2025-08-14 16:49:29 +07:00
committed by GitHub
parent f4ae615a3e
commit ae12623ca6

View File

@@ -861,6 +861,10 @@ export interface FilterableProductOptionValueProps
* The values to filter product option values by.
*/
value?: string | string[]
/**
* The Product Option IDs to filter product option values by.
*/
option_id?: string | string[]
}
/**