diff --git a/api/proto/teleport/legacy/types/types.proto b/api/proto/teleport/legacy/types/types.proto index f8df6d386a6aa..90e2dff7afbcc 100644 --- a/api/proto/teleport/legacy/types/types.proto +++ b/api/proto/teleport/legacy/types/types.proto @@ -6236,7 +6236,7 @@ message PluginSpecV1 { PluginDatadogAccessSettings datadog = 15; // PluginAWSICSettings holds settings for AWSICSettings PluginAWSICSettings aws_ic = 16; - // Settings for the Email Plugin + // Settings for the Email Access Request plugin PluginEmailSettings email = 17; } diff --git a/api/types/plugin.go b/api/types/plugin.go index 6d0511acf75be..f4e9a395b8f13 100644 --- a/api/types/plugin.go +++ b/api/types/plugin.go @@ -43,6 +43,7 @@ var AllPluginTypes = []PluginType{ PluginTypeSCIM, PluginTypeDatadog, PluginTypeAWSIdentityCenter, + PluginTypeEmail, } const ( diff --git a/web/packages/teleport/src/services/integrations/types.ts b/web/packages/teleport/src/services/integrations/types.ts index 769a06f517399..e525f72ff6ee6 100644 --- a/web/packages/teleport/src/services/integrations/types.ts +++ b/web/packages/teleport/src/services/integrations/types.ts @@ -245,7 +245,7 @@ export type PluginDatadogSpec = { export type PluginEmailSpec = { sender: string; fallbackRecipient: string; -} +}; export type IntegrationCreateRequest = { name: string;