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..7e622812 --- /dev/null +++ b/src/types/integrations.ts @@ -0,0 +1,3 @@ +export const INTEGRATIONS = ["email", "bops", "uniform", "s3", "idox"] as const; + +export type Integrations = (typeof INTEGRATIONS)[number];