/*** * * SaaSquatch Type Definitions * * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. * * Generated on 2026-03-20T21:11:42.771Z * ***/ /*** * SimpleEmail.schema.json * Generated on 2026-03-20T21:11:43.405Z * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. ***/ export type FromName = string export type FromAddress = string export type Subject = string export type HeaderImage = string export type Header = string /** * Supports markdown and handlebars expressions. e.g. *bold* _underline_ and [link](https://example.com) */ export type Body = string export type DisplayCTAButton = boolean export type Text = string export type Link = string export type Footer = string /** * Defines the customization points available in a Simple Email Template. */ export interface SimpleEmailTemplateSchema { meta: Email content: Content } export interface Email { fromName: FromName fromAddress: FromAddress subject: Subject } export interface Content { headerImage?: HeaderImage headerContent?: Header bodyContent: Body cta?: CallToAction footerContent?: Footer } export interface CallToAction { enabled?: DisplayCTAButton text?: Text link?: Link [k: string]: unknown }