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.

crm.deal.card

Compact deal card for kanban board display

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @crm-team
  • Tags: deal, card, kanban
  • File: packages/examples/crm-pipeline/src/presentations/pipeline.presentation.ts
  • field.key.label
    crm.deal.card
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    crm.deal.card
    field.description.label

    Compact deal card for kanban board display

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @crm-team
  • Tags: deal, card, kanban
  • File: packages/examples/crm-pipeline/src/presentations/pipeline.presentation.ts
  • field.tags.label
    deal,card,kanban
    field.owners.label
    @crm-team
    field.stability.label

    Compact deal card for kanban board display

    Goal

    Provide a quick overview of deal status in the pipeline view.

    Context

    Condensed representation used within the Pipeline Kanban board.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { DealModel } from '../deal/deal.schema';
    
    export const DealCardPresentation = definePresentation({
    	meta: {
    		key: 'crm.deal.card',
    		version: '1.0.0',
    		title: 'Deal Card',
    		description: 'Compact deal card for kanban board display',
    		domain: 'crm-pipeline',
    		owners: ['@crm-team'],
    		tags: ['deal', 'card', 'kanban'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Provide a quick overview of deal status in the pipeline view.',
    		context: 'Condensed representation used within the Pipeline Kanban board.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'DealCard',
    		props: DealModel,
    	},
    	targets: ['react'],
    	policy: {
    		flags: ['crm.deals.enabled'],
    	},
    });