Tweaked onboarding structure
This commit is contained in:
parent
c64c1d90c4
commit
8c1bbd7f6c
1 changed files with 5 additions and 5 deletions
|
|
@ -35,11 +35,11 @@ export type OnboardingFlow = {
|
||||||
|
|
||||||
export type OnboardingSession = {
|
export type OnboardingSession = {
|
||||||
uuid: string
|
uuid: string
|
||||||
flow: string
|
status: OnboardingSessionStatus | string
|
||||||
agent_run?: string | null
|
role?: string | UuidNameRef
|
||||||
status: 'in_progress' | 'completed' | 'abandoned'
|
state?: Record<string, unknown>
|
||||||
current_page_order: number
|
active_configs?: Record<string, unknown>
|
||||||
responses: Record<string, unknown>
|
completed_at?: string | null
|
||||||
}
|
}
|
||||||
|
|
||||||
export type OnboardingFeedback = {
|
export type OnboardingFeedback = {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue