OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

learning.onboarding.getProgress

Fetch onboarding progress for a specific track.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: stable
  • Tags: learning, onboarding, journey
  • File: packages/modules/learning-journey/src/contracts/onboarding.ts
  • field.key.label
    learning.onboarding.getProgress
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    learning.onboarding.getProgress
    field.description.label

    Fetch onboarding progress for a specific track.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: stable
  • Tags: learning, onboarding, journey
  • File: packages/modules/learning-journey/src/contracts/onboarding.ts
  • field.tags.label
    learning,onboarding,journey
    field.owners.label
    field.stability.label
    stable

    Fetch onboarding progress for a specific track.

    Goal

    Display learner progress and remaining steps.

    Context

    Called when rendering a track detail or widget.

    Source Definition

    export const GetOnboardingProgressContract = defineQuery({
    	meta: {
    		key: 'learning.onboarding.getProgress',
    		version: '1.0.0',
    		stability: 'stable',
    		owners: [...LEARNING_JOURNEY_OWNERS],
    		tags: ['learning', 'onboarding', 'journey'],
    		description: 'Fetch onboarding progress for a specific track.',
    		goal: 'Display learner progress and remaining steps.',
    		context: 'Called when rendering a track detail or widget.',
    	},
    	io: {
    		input: GetOnboardingProgressInput,
    		output: OnboardingProgressModel,
    	},
    	policy: {
    		auth: 'user',
    	},
    });