diff --git a/src/types/index.ts b/src/types/index.ts index c16fb782..37a41cef 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -7,6 +7,7 @@ export * from "./export"; export * from "./flags"; export * from "./flow"; export * from "./gov-uk-payment"; +export * from "./integrations"; export * from "./payment-request"; export * from "./planning-constraints"; export * from "./result"; diff --git a/src/types/integrations.ts b/src/types/integrations.ts new file mode 100644 index 00000000..0bd8c9ba --- /dev/null +++ b/src/types/integrations.ts @@ -0,0 +1,9 @@ +export const SEND_INTEGRATIONS = [ + "email", + "bops", + "uniform", + "s3", + "idox", +] as const; + +export type SendIntegration = (typeof SEND_INTEGRATIONS)[number];