diff --git a/src/stores/customer/index.ts b/src/stores/customer/index.ts index aa398262..663769fb 100644 --- a/src/stores/customer/index.ts +++ b/src/stores/customer/index.ts @@ -49,6 +49,7 @@ const useCustomerStore = defineStore('api-customer', () => { zipCode?: string; customerId?: string; includeCustomer?: boolean; + status?: 'CREATED' | 'ACTIVE' | 'INACTIVE'; query?: string; page?: number; pageSize?: number; @@ -100,6 +101,7 @@ const useCustomerStore = defineStore('api-customer', () => { pageSize?: number; query?: string; includeBranch?: boolean; + status?: 'CREATED' | 'ACTIVE' | 'INACTIVE'; customerType?: CustomerType; }, Data extends Pagination<