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.
Detailed view of a deal with activities, contacts, and history
Goal
Deep dive into deal details and historical activities.
Context
The main workspace for managing a single deal execution.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { DealModel } from '../deal/deal.schema';
export const DealDetailPresentation = definePresentation({
meta: {
key: 'crm.deal.detail',
version: '1.0.0',
title: 'Deal Details',
description:
'Detailed view of a deal with activities, contacts, and history',
domain: 'crm-pipeline',
owners: ['@crm-team'],
tags: ['deal', 'detail'],
stability: StabilityEnum.Experimental,
goal: 'Deep dive into deal details and historical activities.',
context: 'The main workspace for managing a single deal execution.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'DealDetailView',
},
targets: ['react', 'markdown'],
policy: {
flags: ['crm.deals.enabled'],
},
});