feat: add isEnterpriseCloud field to user schema

- Added `isEnterpriseCloud` field to the user schema to enhance user differentiation for enterprise cloud services.
- This change supports the ongoing updates to billing and subscription management for enterprise users.
This commit is contained in:
Mauricio Siu
2026-04-05 00:41:53 -06:00
parent 45f2f52cf0
commit e7c7d6a7cf

View File

@@ -93,6 +93,7 @@ const createSchema = createInsertSchema(user, {
trustedOrigins: true,
bookmarkedTemplates: true,
isValidEnterpriseLicense: true,
isEnterpriseCloud: true,
});
export const apiCreateUserInvitation = createSchema.pick({}).extend({