@hirelink/database-prisma 1.0.0 → 1.0.2

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,19 +1,28 @@
1
1
  {
2
2
  "name": "@hirelink/database-prisma",
3
- "version": "1.0.0",
4
- "description": "",
3
+ "version": "1.0.2",
4
+ "description": "A Prisma-based database package for Hirelink applications.",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "prisma:generate": "npx prisma format && npx prisma generate",
8
8
  "prisma:migrate:dev": "npx prisma migrate dev",
9
9
  "prisma:migrate:deploy": "npx prisma migrate deploy"
10
10
  },
11
+ "keywords": [
12
+ "prisma",
13
+ "database",
14
+ "hirelink"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/yourusername/your-repo.git"
19
+ },
20
+ "author": "Your Name <your.email@example.com>",
21
+ "license": "ISC",
11
22
  "dependencies": {
12
23
  "@prisma/client": "^6.3.1"
13
24
  },
14
25
  "devDependencies": {
15
26
  "prisma": "^6.3.1"
16
- },
17
- "author": "",
18
- "license": "ISC"
19
- }
27
+ }
28
+ }
@@ -8,15 +8,14 @@ datasource db {
8
8
  }
9
9
 
10
10
  model User {
11
- id String @id @default(uuid())
12
- email String @unique
13
- first_name String?
14
- last_name String?
15
- password_hash String
16
- role Role
17
- status UserStatus @default(active)
18
- created_at DateTime? @default(now())
19
- updated_at DateTime? @updatedAt
11
+ id String @id @default(uuid())
12
+ email String @unique
13
+ first_name String?
14
+ last_name String?
15
+ role Role
16
+ status UserStatus @default(active)
17
+ created_at DateTime? @default(now())
18
+ updated_at DateTime? @updatedAt
20
19
 
21
20
  hr_users HrUser[]
22
21
  onboarding_details OnboardingDetail[]
package/.npmignore DELETED
File without changes