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.

marketplace.payout.viewList

List of payouts for sellers

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @marketplace-team
  • Tags: marketplace, payout, list
  • File: packages/examples/marketplace/src/payout/payout.presentation.ts
  • field.key.label
    marketplace.payout.viewList
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    marketplace.payout.viewList
    field.description.label

    List of payouts for sellers

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @marketplace-team
  • Tags: marketplace, payout, list
  • File: packages/examples/marketplace/src/payout/payout.presentation.ts
  • field.tags.label
    marketplace,payout,list
    field.owners.label
    @marketplace-team
    field.stability.label

    List of payouts for sellers

    Goal

    Show sellers their historical and pending payouts.

    Context

    Financial dashboard for sellers.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { PayoutModel } from './payout.schema';
    
    export const PayoutListPresentation = definePresentation({
    	meta: {
    		key: 'marketplace.payout.viewList',
    		version: '1.0.0',
    		title: 'Payout List',
    		description: 'List of payouts for sellers',
    		domain: 'marketplace',
    		owners: ['@marketplace-team'],
    		tags: ['marketplace', 'payout', 'list'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Show sellers their historical and pending payouts.',
    		context: 'Financial dashboard for sellers.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'PayoutList',
    		props: PayoutModel,
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['marketplace.payouts.enabled'],
    	},
    });