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.
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',
],
});