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.listTracks

List onboarding tracks available to a learner or product.

  • 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.listTracks
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    learning.onboarding.listTracks
    field.description.label

    List onboarding tracks available to a learner or product.

  • 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

    List onboarding tracks available to a learner or product.

    Goal

    Expose track catalog for UI/API surfaces.

    Context

    Called when showing onboarding/learning journey catalog.

    Source Definition

    export const ListOnboardingTracksContract = defineQuery({
    	meta: {
    		key: 'learning.onboarding.listTracks',
    		version: '1.0.0',
    		stability: 'stable',
    		owners: [...LEARNING_JOURNEY_OWNERS],
    		tags: ['learning', 'onboarding', 'journey'],
    		description: 'List onboarding tracks available to a learner or product.',
    		goal: 'Expose track catalog for UI/API surfaces.',
    		context: 'Called when showing onboarding/learning journey catalog.',
    	},
    	io: {
    		input: ListOnboardingTracksInput,
    		output: ListOnboardingTracksOutput,
    	},
    	policy: {
    		auth: 'user',
    	},
    });