@7365admin1/core 3.19.0 → 3.21.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 +12 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3622 -3452
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1139 -969
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -2152,7 +2152,7 @@ declare function useDahuaService(): {
|
|
|
2152
2152
|
end?: string;
|
|
2153
2153
|
owner?: string;
|
|
2154
2154
|
isOpenGate?: boolean;
|
|
2155
|
-
}) => Promise<
|
|
2155
|
+
}) => Promise<any>;
|
|
2156
2156
|
removePlateNumber: (value: {
|
|
2157
2157
|
host: string;
|
|
2158
2158
|
username: string;
|
|
@@ -2409,7 +2409,7 @@ declare function parseDahuaFind(text: string): {
|
|
|
2409
2409
|
plateNumber: string | undefined;
|
|
2410
2410
|
};
|
|
2411
2411
|
declare function useVehicleService(): {
|
|
2412
|
-
add: (value: TVehicle, session?: ClientSession) => Promise<string>;
|
|
2412
|
+
add: (value: TVehicle, session?: ClientSession, user?: string) => Promise<string>;
|
|
2413
2413
|
deleteVehicle: (_id: string, recno: string, site: string, type: string, bypass?: boolean) => Promise<string>;
|
|
2414
2414
|
approveVehicleById: (id: string, orgId: string, siteId: string) => Promise<string>;
|
|
2415
2415
|
processDeletingExpiredVehicles: () => Promise<string>;
|