chore: fixes to http and request types for payment and regions (#13831)

This commit is contained in:
Shahed Nasser
2025-10-28 10:09:51 +01:00
committed by GitHub
parent 64c5019b3b
commit a2b6ef36d9
12 changed files with 41 additions and 20 deletions
@@ -38,7 +38,7 @@ export interface AdminCreatePriceList {
/**
* The price list's description.
*/
description?: string | null
description: string
/**
* The price list's start date.
*/
@@ -50,11 +50,11 @@ export interface AdminCreatePriceList {
/**
* The price list's status.
*/
status: PriceListStatus
status?: PriceListStatus
/**
* The price list's type.
*/
type: PriceListType
type?: PriceListType
/**
* The price list's rules.
*/
@@ -1,5 +1,6 @@
import { FindParams } from "../../common";
import { BaseRegionCountryFilters, BaseRegionFilters } from "../common"
export interface StoreRegionFilters
extends Omit<BaseRegionFilters, "created_at" | "updated_at"> {}
extends Omit<BaseRegionFilters, "created_at" | "updated_at">, FindParams {}
export interface StoreRegionCountryFilters extends BaseRegionCountryFilters {}