@trycompai/db 1.2.9 → 1.3.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/dist/client.d.ts.map +1 -1
- package/dist/schema.prisma +2 -0
- package/package.json +3 -3
package/dist/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAI9C,eAAO,MAAM,EAAE,gIAA+C,CAAC"}
|
package/dist/schema.prisma
CHANGED
|
@@ -740,10 +740,12 @@ model Trust {
|
|
|
740
740
|
soc2 Boolean @default(false)
|
|
741
741
|
iso27001 Boolean @default(false)
|
|
742
742
|
gdpr Boolean @default(false)
|
|
743
|
+
hipaa Boolean @default(false)
|
|
743
744
|
|
|
744
745
|
soc2_status FrameworkStatus @default(started)
|
|
745
746
|
iso27001_status FrameworkStatus @default(started)
|
|
746
747
|
gdpr_status FrameworkStatus @default(started)
|
|
748
|
+
hipaa_status FrameworkStatus @default(started)
|
|
747
749
|
|
|
748
750
|
@@id([status, organizationId])
|
|
749
751
|
@@unique([organizationId])
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trycompai/db",
|
|
3
3
|
"description": "Database package with Prisma client and schema for Comp AI",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.3.1",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@prisma/client": "^6.13.0"
|
|
6
|
+
"@prisma/client": "^6.13.0",
|
|
7
|
+
"dotenv": "^16.4.5"
|
|
7
8
|
},
|
|
8
9
|
"devDependencies": {
|
|
9
|
-
"dotenv": "^16.4.5",
|
|
10
10
|
"prisma": "^6.13.0",
|
|
11
11
|
"typescript": "^5.8.3"
|
|
12
12
|
},
|