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.seller.dashboard

Seller dashboard with sales and analytics

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

    Seller dashboard with sales and analytics

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

    Seller dashboard with sales and analytics

    Goal

    Provide sellers with an overview of their business performance.

    Context

    The primary workspace for store owners.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { StoreModel } from './store.schema';
    
    export const SellerDashboardPresentation = definePresentation({
    	meta: {
    		key: 'marketplace.seller.dashboard',
    		version: '1.0.0',
    		title: 'Seller Dashboard',
    		description: 'Seller dashboard with sales and analytics',
    		domain: 'marketplace',
    		owners: ['@marketplace-team'],
    		tags: ['marketplace', 'seller', 'dashboard'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Provide sellers with an overview of their business performance.',
    		context: 'The primary workspace for store owners.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'SellerDashboard',
    		props: StoreModel,
    	},
    	targets: ['react'],
    	policy: {
    		flags: ['marketplace.seller.enabled'],
    	},
    });