@trycompai/db 1.3.5 → 1.3.6
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/schema.prisma +4 -0
- package/package.json +1 -1
package/dist/schema.prisma
CHANGED
|
@@ -445,6 +445,7 @@ model Organization {
|
|
|
445
445
|
website String?
|
|
446
446
|
onboardingCompleted Boolean @default(false)
|
|
447
447
|
hasAccess Boolean @default(false)
|
|
448
|
+
advancedModeEnabled Boolean @default(false)
|
|
448
449
|
|
|
449
450
|
// FleetDM
|
|
450
451
|
fleetDmLabelId Int?
|
|
@@ -712,6 +713,7 @@ model Task {
|
|
|
712
713
|
createdAt DateTime @default(now())
|
|
713
714
|
updatedAt DateTime @updatedAt
|
|
714
715
|
lastCompletedAt DateTime?
|
|
716
|
+
reviewDate DateTime?
|
|
715
717
|
|
|
716
718
|
// Relationships
|
|
717
719
|
controls Control[]
|
|
@@ -759,6 +761,7 @@ model Trust {
|
|
|
759
761
|
soc2type1 Boolean @default(false)
|
|
760
762
|
soc2type2 Boolean @default(false)
|
|
761
763
|
iso27001 Boolean @default(false)
|
|
764
|
+
iso42001 Boolean @default(false)
|
|
762
765
|
gdpr Boolean @default(false)
|
|
763
766
|
hipaa Boolean @default(false)
|
|
764
767
|
pci_dss Boolean @default(false)
|
|
@@ -767,6 +770,7 @@ model Trust {
|
|
|
767
770
|
soc2type1_status FrameworkStatus @default(started)
|
|
768
771
|
soc2type2_status FrameworkStatus @default(started)
|
|
769
772
|
iso27001_status FrameworkStatus @default(started)
|
|
773
|
+
iso42001_status FrameworkStatus @default(started)
|
|
770
774
|
gdpr_status FrameworkStatus @default(started)
|
|
771
775
|
hipaa_status FrameworkStatus @default(started)
|
|
772
776
|
pci_dss_status FrameworkStatus @default(started)
|