@cfxlabsinc/b2b-services
    Preparing search index...
    RfRetryRunState: "stalled" | "progressing" | "closed" | "none" | "unknown"

    Live state of an org's onboarding workflow, resolved at retry time.

    A healthy onboarding run completes in seconds, so a run still RUNNING minutes later is not "in progress" — it is parked on an activity retrying forever (RouteFusion rejections arrive as plain Errors, which Temporal classifies as retryable, and the workflow's policy is maximumAttempts: Infinity). That is the state Retry exists to clear.

    Type Declaration

    • "stalled"

      RUNNING past STALLED_AFTER_MS — retrying forever, needs a re-drive.

    • "progressing"

      RUNNING and young enough that it may still be doing real work.

    • "closed"

      Reached a terminal status; the workflow id is free to reuse.

    • "none"

      No run at this id (never started, or past retention).

    • "unknown"

      Temporal couldn't be reached — the operator decides with less information.