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 orders with status and tracking
Goal
Provide a comprehensive view of all orders for the user.
Context
Used in the buyer and seller dashboards to track order progress.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { OrderModel } from './order.schema';
export const OrderListPresentation = definePresentation({
meta: {
key: 'marketplace.order.list',
version: '1.0.0',
title: 'Order List',
description: 'List of orders with status and tracking',
domain: 'marketplace',
owners: ['@marketplace-team'],
tags: ['marketplace', 'order', 'list'],
stability: StabilityEnum.Experimental,
goal: 'Provide a comprehensive view of all orders for the user.',
context: 'Used in the buyer and seller dashboards to track order progress.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'OrderList',
props: OrderModel,
},
targets: ['react', 'markdown'],
policy: {
flags: ['marketplace.orders.enabled'],
},
});