I want to add additional fields to the organization roles, but when i send data to it it does not register(empty). What am i doing wrong? Amusing prisma and supabase postgres in the auth: organizationRole: { additionalFields: { roleColor: { type: "string", }, roleDescription: { type: "string", }, isDeactivated: { type: "boolean", }, isDeleted: { type: "boolean", }, deactivatedAt: { type: "date", }, deletedAt: { type: "date", }, }, }, In the authClient: schema: inferOrgAdditionalFields({ // Additional fields for roles within the store (organization). organizationRole: { additionalFields: { roleColor: { type: "string", }, roleDescription: { type: "string", }, isDeactivated: { type: "boolean", }, isDeleted: { type: "boolean", }, deactivatedAt: { type: "date", }, deletedAt: { type: "date", }, }, }, }), @Better Auth