not-node 5.1.25 → 5.1.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "not-node",
3
- "version": "5.1.25",
3
+ "version": "5.1.26",
4
4
  "description": "node complimentary part for client side notFramework.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -536,6 +536,26 @@ module.exports = ({
536
536
  return result;
537
537
  }
538
538
 
539
+ static async listAll({ activeUser, ip, root }) {
540
+ return await this._listAll({
541
+ activeUser,
542
+ ip,
543
+ root,
544
+ action: "listAll",
545
+ shouldOwn: false,
546
+ });
547
+ }
548
+
549
+ static async listAllOwn({ activeUser, ip, root }) {
550
+ return await this._listAll({
551
+ activeUser,
552
+ ip,
553
+ root,
554
+ action: "listAllOwn",
555
+ shouldOwn: true,
556
+ });
557
+ }
558
+
539
559
  static async _listAndCount({
540
560
  query,
541
561
  activeUser,