@danielcok17/prisma-db 1.8.1 → 1.9.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/app.prisma +20 -0
- package/prisma/generated/app/edge.js +18 -4
- package/prisma/generated/app/index-browser.js +15 -1
- package/prisma/generated/app/index.d.ts +1083 -2
- package/prisma/generated/app/index.js +18 -4
- package/prisma/generated/app/package.json +1 -1
- package/prisma/generated/app/schema.prisma +20 -0
- package/prisma/generated/app/wasm.js +18 -4
- package/prisma/migrations/20260120212010_add_user_company_fields/migration.sql +22 -0
|
@@ -159,7 +159,16 @@ exports.Prisma.UserScalarFieldEnum = {
|
|
|
159
159
|
subscriptionTier: 'subscriptionTier',
|
|
160
160
|
messageCount: 'messageCount',
|
|
161
161
|
messageCountResetAt: 'messageCountResetAt',
|
|
162
|
-
adminGrantExpiresAt: 'adminGrantExpiresAt'
|
|
162
|
+
adminGrantExpiresAt: 'adminGrantExpiresAt',
|
|
163
|
+
customerType: 'customerType',
|
|
164
|
+
companyName: 'companyName',
|
|
165
|
+
companyNumber: 'companyNumber',
|
|
166
|
+
vatNumber: 'vatNumber',
|
|
167
|
+
taxNumber: 'taxNumber',
|
|
168
|
+
companyStreet: 'companyStreet',
|
|
169
|
+
companyCity: 'companyCity',
|
|
170
|
+
companyPostalCode: 'companyPostalCode',
|
|
171
|
+
companyCountry: 'companyCountry'
|
|
163
172
|
};
|
|
164
173
|
|
|
165
174
|
exports.Prisma.UserApprovalRequestScalarFieldEnum = {
|
|
@@ -568,6 +577,11 @@ exports.SubscriptionTier = exports.$Enums.SubscriptionTier = {
|
|
|
568
577
|
ENTERPRISE: 'ENTERPRISE'
|
|
569
578
|
};
|
|
570
579
|
|
|
580
|
+
exports.CustomerType = exports.$Enums.CustomerType = {
|
|
581
|
+
INDIVIDUAL: 'INDIVIDUAL',
|
|
582
|
+
SELF_EMPLOYED: 'SELF_EMPLOYED'
|
|
583
|
+
};
|
|
584
|
+
|
|
571
585
|
exports.ApprovalStatus = exports.$Enums.ApprovalStatus = {
|
|
572
586
|
PENDING: 'PENDING',
|
|
573
587
|
APPROVED: 'APPROVED',
|