@7365admin1/layer-common 1.11.50 → 1.11.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @iservice365/layer-common
2
2
 
3
+ ## 1.11.51
4
+
5
+ ### Patch Changes
6
+
7
+ - 9e40a22: Update Vehicle Mgmt filter
8
+
3
9
  ## 1.11.50
4
10
 
5
11
  ### Patch Changes
@@ -296,6 +296,7 @@ const { data: getVehiclesReq, refresh: getVehiclesRefresh, pending: getVehiclesP
296
296
  page: page.value,
297
297
  search: searchInput.value,
298
298
  type: vehicleTypeFilter.value ?? "",
299
+ site: props.site,
299
300
  }),
300
301
  {
301
302
  watch: [page],
@@ -6,10 +6,11 @@ export default function useVehicle() {
6
6
  order = "desc",
7
7
  type = "",
8
8
  category = "",
9
+ site = "",
9
10
  } = {}) {
10
11
  return await useNuxtApp().$api<Record<string, any>>("/api/vehicles", {
11
12
  method: "GET",
12
- query: { search, page, limit, order, type, category },
13
+ query: { search, page, limit, order, type, category, site },
13
14
  });
14
15
  }
15
16
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@7365admin1/layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "1.11.50",
5
+ "version": "1.11.51",
6
6
  "author": "7365admin1",
7
7
  "main": "./nuxt.config.ts",
8
8
  "publishConfig": {