1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-04 13:48:56 +02:00

task: added IEmailEnvelop to expored types so we can use it with email service in enterprise

This commit is contained in:
Christopher Kolstad 2025-06-20 11:20:00 +02:00
parent f9ca769179
commit fa12d39b1d
No known key found for this signature in database

View File

@ -183,6 +183,7 @@ import { testDbPrefix } from '../test/e2e/helpers/database-init.js';
import type { RequestHandler } from 'express';
import { UPDATE_REVISION } from './features/feature-toggle/configuration-revision-service.js';
import type { IFeatureUsageInfo } from './services/version-service.js';
import type { IEmailEnvelope } from './services/email-service.js';
export async function initialServiceSetup(
{ authentication }: Pick<IUnleashConfig, 'authentication'>,
@ -545,6 +546,7 @@ export type {
QueryOverride,
IUserPermission,
IFeatureUsageInfo,
IEmailEnvelope,
};
export * from './openapi/index.js';
export * from './types/index.js';