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