fix(dashboard,medusa,types): allow searching for promotion rule options (#12028)

* fix: allow searching for promotion rule options

* fix: allow searching for promotion rule options

* add changeset

* cleanup
This commit is contained in:
Kasper Fabricius Kristensen
2025-03-28 14:45:05 +01:00
committed by GitHub
parent 6d8390a529
commit 3dba58785f
6 changed files with 55 additions and 65 deletions
@@ -61,12 +61,12 @@ export interface RuleValueOptionsResponse {
/**
* @experimental
*/
export type AdminRuleValueOptionsListResponse = {
export type AdminRuleValueOptionsListResponse = PaginatedResponse<{
/**
* The list of rule value options.
*/
values: AdminRuleValueOption[]
}
}>
export type AdminPromotionRuleBatchResponse = BatchResponse<AdminPromotionRule>