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.

service-business-os.client.list

List of service clients

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @service-os
  • Tags: services, clients, list
  • File: packages/examples/service-business-os/src/presentations.ts
  • field.key.label
    service-business-os.client.list
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    service-business-os.client.list
    field.description.label

    List of service clients

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @service-os
  • Tags: services, clients, list
  • File: packages/examples/service-business-os/src/presentations.ts
  • field.tags.label
    services,clients,list
    field.owners.label
    @service-os
    field.stability.label

    List of service clients

    Goal

    Browse and manage service clients

    Context

    Client management

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const ClientListPresentation = definePresentation({
    	meta: {
    		key: 'service-business-os.client.list',
    		version: '1.0.0',
    		title: 'Client List',
    		description: 'List of service clients',
    		domain: 'services',
    		owners: ['@service-os'],
    		tags: ['services', 'clients', 'list'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Browse and manage service clients',
    		context: 'Client management',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'ClientList',
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['service.clients.enabled'],
    	},
    });