From a07cf8870c3f29ab5438db5ed0b59cbd3ff4be24 Mon Sep 17 00:00:00 2001 From: Matt Apperson Date: Tue, 11 Dec 2018 08:30:38 -0500 Subject: [PATCH] [Beats CM] Add basic license type (#26935) --- x-pack/plugins/beats_management/common/constants/security.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/plugins/beats_management/common/constants/security.ts b/x-pack/plugins/beats_management/common/constants/security.ts index 4d72e3c9f2ac..c80b036dddf8 100644 --- a/x-pack/plugins/beats_management/common/constants/security.ts +++ b/x-pack/plugins/beats_management/common/constants/security.ts @@ -6,5 +6,5 @@ export const REQUIRED_ROLES = ['beats_admin']; export const REQUIRED_LICENSES = ['standard', 'gold', 'trial', 'platinum']; -export const LICENSES = ['oss', 'standard', 'gold', 'trial', 'platinum']; -export type LicenseType = 'oss' | 'trial' | 'standard' | 'basic' | 'gold' | 'platinum'; +export const LICENSES = ['oss', 'basic', 'standard', 'gold', 'trial', 'platinum']; +export type LicenseType = 'oss' | 'basic' | 'trial' | 'standard' | 'basic' | 'gold' | 'platinum';