chore: fixes to http and request types for customers (#13825)

This commit is contained in:
Shahed Nasser
2025-10-28 11:07:35 +02:00
committed by GitHub
parent db777dc3d5
commit faea42316a
14 changed files with 60 additions and 29 deletions

View File

@@ -23,6 +23,10 @@ export interface FindParams extends SelectParams {
* -created_at
*/
order?: string
/**
* Whether to include soft-deleted items in the results.
*/
with_deleted?: boolean
}
export interface AdminBatchLink {

View File

@@ -1,3 +1,4 @@
import { FindParams } from "../../common"
import {
BaseCustomerAddressFilters,
BaseCustomerFilters,
@@ -15,4 +16,4 @@ export interface AdminCustomerFilters extends BaseCustomerFilters {
has_account?: boolean
}
export interface AdminCustomerAddressFilters
extends BaseCustomerAddressFilters {}
extends BaseCustomerAddressFilters, FindParams {}