servcraft 0.4.2 → 0.4.3

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/dist/cli/index.js CHANGED
@@ -5780,7 +5780,18 @@ function getSkip(params) {
5780
5780
  }
5781
5781
 
5782
5782
  // src/modules/user/user.repository.ts
5783
- import { UserRole, UserStatus } from "@prisma/client";
5783
+ var UserRole = {
5784
+ USER: "USER",
5785
+ MODERATOR: "MODERATOR",
5786
+ ADMIN: "ADMIN",
5787
+ SUPER_ADMIN: "SUPER_ADMIN"
5788
+ };
5789
+ var UserStatus = {
5790
+ ACTIVE: "ACTIVE",
5791
+ INACTIVE: "INACTIVE",
5792
+ SUSPENDED: "SUSPENDED",
5793
+ BANNED: "BANNED"
5794
+ };
5784
5795
  var UserRepository = class {
5785
5796
  /**
5786
5797
  * Find user by ID