diff --git a/ee/packages/license/src/v2/bundles.ts b/ee/packages/license/src/v2/bundles.ts index 70f9d7b5a653..0ff1cd6c41a9 100644 --- a/ee/packages/license/src/v2/bundles.ts +++ b/ee/packages/license/src/v2/bundles.ts @@ -1,23 +1,7 @@ -export type BundleFeature = - | 'auditing' - | 'canned-responses' - | 'ldap-enterprise' - | 'livechat-enterprise' - | 'voip-enterprise' - | 'omnichannel-mobile-enterprise' - | 'engagement-dashboard' - | 'push-privacy' - | 'scalability' - | 'saml-enterprise' - | 'device-management' - | 'oauth-enterprise' - | 'federation' - | 'videoconference-enterprise' - | 'message-read-receipt' - | 'outlook-calendar'; +import type { LicenseModule } from '../definition/LicenseModule'; interface IBundle { - [key: string]: BundleFeature[]; + [key: string]: LicenseModule[]; } const bundles: IBundle = { @@ -38,6 +22,10 @@ const bundles: IBundle = { 'videoconference-enterprise', 'message-read-receipt', 'outlook-calendar', + 'teams-mention', + 'hide-watermark', + 'custom-roles', + 'accessibility-certification', ], pro: [], };