@7365admin1/core 2.6.4 → 2.6.5
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 +7 -0
- package/dist/index.d.ts +25 -10
- package/dist/index.js +312 -214
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +337 -214
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -3750,16 +3750,31 @@ declare function useNfcPatrolTagRepo(): {
|
|
|
3750
3750
|
pages: number;
|
|
3751
3751
|
pageRange: string;
|
|
3752
3752
|
} | TNfcPatrolTag>;
|
|
3753
|
-
updateNfcPatrolTagBySite: (...args: [
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3753
|
+
updateNfcPatrolTagBySite: (...args: [
|
|
3754
|
+
"Configure",
|
|
3755
|
+
TNfcPatrolTagConfigureReset,
|
|
3756
|
+
{
|
|
3757
|
+
tagUID: string;
|
|
3758
|
+
status: typeof DEVICE_STATUS.CONFIGURED;
|
|
3759
|
+
},
|
|
3760
|
+
ClientSession?
|
|
3761
|
+
] | [
|
|
3762
|
+
"Reset",
|
|
3763
|
+
TNfcPatrolTagConfigureReset,
|
|
3764
|
+
{
|
|
3765
|
+
status: typeof DEVICE_STATUS.NOT_CONFIGURED;
|
|
3766
|
+
},
|
|
3767
|
+
ClientSession?
|
|
3768
|
+
] | [
|
|
3769
|
+
"Edit",
|
|
3770
|
+
TNfcPatrolTagEdit,
|
|
3771
|
+
{
|
|
3772
|
+
name: string;
|
|
3773
|
+
tagID: string;
|
|
3774
|
+
updatedBy: string | ObjectId;
|
|
3775
|
+
},
|
|
3776
|
+
ClientSession?
|
|
3777
|
+
]) => Promise<mongodb.UpdateResult<bson.Document>>;
|
|
3763
3778
|
};
|
|
3764
3779
|
|
|
3765
3780
|
type TOccurrenceBook = {
|