@bash-app/bash-common 30.94.0 → 30.95.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.
- package/package.json +1 -1
- package/prisma/schema.prisma +6 -8
package/package.json
CHANGED
package/prisma/schema.prisma
CHANGED
|
@@ -4155,14 +4155,12 @@ model UserConsent {
|
|
|
4155
4155
|
}
|
|
4156
4156
|
|
|
4157
4157
|
enum ConsentType {
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
THIRD_PARTY_SHARING // Optional: Share data with partners
|
|
4165
|
-
COOKIES // Optional: Non-essential cookies
|
|
4158
|
+
PrivacyPolicy // Required: User accepts privacy policy
|
|
4159
|
+
TermsOfService // Required: User accepts terms
|
|
4160
|
+
DataCollection // Required: Basic data collection for service
|
|
4161
|
+
Analytics // Optional: Google Analytics, Mixpanel, etc.
|
|
4162
|
+
Marketing // Optional: Promotional emails
|
|
4163
|
+
ThirdPartySharing // Optional: Share data with partners
|
|
4166
4164
|
}
|
|
4167
4165
|
|
|
4168
4166
|
model AuditLog {
|