@7365admin1/core 3.21.1 → 3.23.0

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,17 @@
1
1
  # @iservice365/core
2
2
 
3
+ ## 3.23.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 4f7bc2c: release changes in entrypass api and dashboard api
8
+
9
+ ## 3.22.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 8590d35: release changes in vehicle api
14
+
3
15
  ## 3.21.1
4
16
 
5
17
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -2014,6 +2014,14 @@ declare function useBuildingService(): {
2014
2014
  uploadSpreadsheetBuilding: (data: any[], site: string) => Promise<{
2015
2015
  buildingPayloads: any[];
2016
2016
  buildingUnitPayloads: any[];
2017
+ insertedBuildings: number;
2018
+ insertedUnits: number;
2019
+ skippedRows: {
2020
+ row: number;
2021
+ block: number;
2022
+ name: string;
2023
+ reason: string;
2024
+ }[];
2017
2025
  }>;
2018
2026
  };
2019
2027