@campus-labs/prisma-client 0.17.0 → 0.18.0

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.
@@ -0,0 +1,11 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(ls -la /Users/nunomatos/Desktop/SerMais/prisma/.env*)",
5
+ "Bash(git check-ignore -v /Users/nunomatos/Desktop/SerMais/prisma/.env.staging)",
6
+ "Bash(git check-ignore -v .env.staging)",
7
+ "Bash(ls -la /Users/nunomatos/Desktop/SerMais/prisma/*.ts /Users/nunomatos/Desktop/SerMais/prisma/*.js)",
8
+ "Bash(grep -r \"\\\\.password\" /Users/nunomatos/Desktop/SerMais --include=\"*.ts\" --include=\"*.js\" ! -path \"*/node_modules/*\" ! -path \"*/.next/*\" ! -path \"*/dist/*\")"
9
+ ]
10
+ }
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campus-labs/prisma-client",
3
- "version": "0.17.0",
3
+ "version": "0.18.0",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "",
@@ -663,19 +663,20 @@ model initiatives_tags {
663
663
  }
664
664
 
665
665
  model projects {
666
- id Int @id @default(autoincrement())
667
- is_draft Boolean @default(true)
668
- is_pending Boolean @default(false)
669
- is_published Boolean @default(false)
670
- author_id String @db.VarChar(50)
671
- editor_id String? @db.VarChar(50)
672
- created_at DateTime @default(now()) @db.Timestamp(6)
673
- updated_at DateTime @default(now()) @db.Timestamp(6)
674
- deleted_at DateTime? @db.Timestamp(6)
675
- version Int @default(1)
676
- current_state Json
677
- initiatives initiatives[]
678
- patches patches[]
666
+ id Int @id @default(autoincrement())
667
+ is_draft Boolean @default(true)
668
+ is_pending Boolean @default(false)
669
+ is_published Boolean @default(false)
670
+ author_id String @db.VarChar(50)
671
+ editor_id String? @db.VarChar(50)
672
+ created_at DateTime @default(now()) @db.Timestamp(6)
673
+ updated_at DateTime @default(now()) @db.Timestamp(6)
674
+ deleted_at DateTime? @db.Timestamp(6)
675
+ version Int @default(1)
676
+ current_state Json
677
+ repository_ai_badges Json[]
678
+ initiatives initiatives[]
679
+ patches patches[]
679
680
 
680
681
  authors users @relation("ProjectAuthor", fields: [author_id], references: [id], onDelete: Cascade, onUpdate: Cascade)
681
682
  editors users? @relation("ProjectEditor", fields: [editor_id], references: [id], onDelete: SetNull, onUpdate: Cascade)