Rendre le dashboard actionnable (inbox, peek, carte mentale), aligner la facturation sur l’essai 7 jours, et bloquer le login e-mail tant que l’adresse n’est pas confirmée. Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
621 B
TypeScript
29 lines
621 B
TypeScript
export {
|
|
INTERACTIVE_PAGE_CAPS,
|
|
INTERACTIVE_PAGE_SCHEMA_VERSION,
|
|
PAGE_BLOCK_TYPES,
|
|
CALLOUT_KINDS,
|
|
PAGE_HUMAN_STRING_KEYS,
|
|
STEPS_CAPS,
|
|
isPageHumanStringKey,
|
|
} from './constants'
|
|
export { pageSpecV1Schema, pageBlockSchema } from './schema'
|
|
export { validateInteractivePage } from './validate'
|
|
export { normalizeInteractivePageCandidate } from './normalize'
|
|
export type {
|
|
PageSpecV1,
|
|
PageSection,
|
|
PageBlock,
|
|
PageHero,
|
|
PageOverview,
|
|
PageValidationIssue,
|
|
PageValidationResult,
|
|
IntentId,
|
|
SimRef,
|
|
CatalogSimRef,
|
|
GenericFormulaSim,
|
|
SimBlock,
|
|
StepsBlock,
|
|
DerivationStep,
|
|
} from './types'
|