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.
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'],
},
});