/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Data to update onboarding progress * * @example * { * flow: Flatfile.OnboardingFlow.Buildmode, * currentStep: 2 * } */ export interface OnboardingProgressUpdate { /** The type of onboarding flow */ flow?: Flatfile.OnboardingFlow; /** The current step in the onboarding flow */ currentStep: number; /** When the onboarding was completed (set to complete the onboarding) */ completedAt?: Date; }