@dnax/core 0.54.0 → 0.54.1
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/driver/mongo/rest.ts +2 -1
- package/package.json +1 -1
package/driver/mongo/rest.ts
CHANGED
|
@@ -2041,7 +2041,7 @@ const restActivity = {
|
|
|
2041
2041
|
}
|
|
2042
2042
|
) => {
|
|
2043
2043
|
return await tenant.database.db
|
|
2044
|
-
?.collection("
|
|
2044
|
+
?.collection("_activity_")
|
|
2045
2045
|
.insertOne(
|
|
2046
2046
|
toBson({
|
|
2047
2047
|
ip: activity?.ip,
|
|
@@ -2051,6 +2051,7 @@ const restActivity = {
|
|
|
2051
2051
|
collection: activity?.collection,
|
|
2052
2052
|
auth: activity?.auth ?? false,
|
|
2053
2053
|
createdAt: moment().format(),
|
|
2054
|
+
internal: activity?.internal ?? false,
|
|
2054
2055
|
updatedAt: moment().format(),
|
|
2055
2056
|
user: activity?.user,
|
|
2056
2057
|
state: activity?.state,
|