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.

integration-stripe

Stripe payments integration with blueprint, workflow, and tenant configuration

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @integration-team
  • Tags: integration, stripe, payments
  • field.key.label
    integration-stripe
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    integration-stripe
    field.description.label

    Stripe payments integration with blueprint, workflow, and tenant configuration

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @integration-team
  • Tags: integration, stripe, payments
  • field.tags.label
    integration,stripe,payments
    field.owners.label
    @integration-team
    field.stability.label
    experimental

    Stripe payments integration with blueprint, workflow, and tenant configuration

    Source Definition

    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    import { StripePaymentsIntegrationSpec } from './integration';
    import { collectPaymentWorkflow } from './workflow';
    
    export const IntegrationStripeFeature = defineFeature({
    	meta: {
    		key: 'integration-stripe',
    		version: '1.0.0',
    		title: 'Stripe Payments Integration',
    		description:
    			'Stripe payments integration with blueprint, workflow, and tenant configuration',
    		domain: 'integration',
    		owners: ['@integration-team'],
    		tags: ['integration', 'stripe', 'payments'],
    		stability: 'experimental',
    	},
    
    	integrations: [
    		{
    			key: StripePaymentsIntegrationSpec.meta.key,
    			version: StripePaymentsIntegrationSpec.meta.version,
    		},
    	],
    
    	workflows: [
    		{
    			key: collectPaymentWorkflow.meta.key,
    			version: collectPaymentWorkflow.meta.version,
    		},
    	],
    
    	docs: [
    		'docs.examples.integration-stripe',
    		'docs.examples.integration-stripe.usage',
    	],
    });