From 643df30d8b73ea0f0ffd2150ae54d55d4cdb6e66 Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Tue, 15 Oct 2024 09:45:53 +0700 Subject: [PATCH] feat: add query string options --- src/stores/customer/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stores/customer/index.ts b/src/stores/customer/index.ts index 8fc8d320..560607da 100644 --- a/src/stores/customer/index.ts +++ b/src/stores/customer/index.ts @@ -80,6 +80,7 @@ const useCustomerStore = defineStore('api-customer', () => { Options extends { zipCode?: string; customerId?: string; + company?: boolean; includeCustomer?: boolean; registeredBranchId?: string; status?: 'CREATED' | 'ACTIVE' | 'INACTIVE';