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.

integrations.connection.list

List integration connections for a tenant.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: integration, connections
  • File: packages/libs/contracts-integrations/src/integrations/operations.ts
  • field.key.label
    integrations.connection.list
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    integrations.connection.list
    field.description.label

    List integration connections for a tenant.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: integration, connections
  • File: packages/libs/contracts-integrations/src/integrations/operations.ts
  • field.tags.label
    integration,connections
    field.owners.label
    @platform.integrations
    field.stability.label
    experimental

    List integration connections for a tenant.

    Goal

    Provide visibility into configured integrations and their status.

    Context

    Used by the App Studio and Ops flows to show bindings and health.

    Source Definition

    import {
    	type AnyOperationSpec,
    	defineCommand,
    	defineQuery,
    } from '@lssm-tech/lib.contracts-spec/operations';
    import type { OperationSpecRegistry } from '@lssm-tech/lib.contracts-spec/operations/registry';
    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    
    export const ListIntegrationConnections = defineQuery({
    	meta: {
    		key: 'integrations.connection.list',
    		title: 'List Integration Connections',
    		version: '1.0.0',
    		description: 'List integration connections for a tenant.',
    		goal: 'Provide visibility into configured integrations and their status.',
    		context:
    			'Used by the App Studio and Ops flows to show bindings and health.',
    		owners: ['@platform.integrations'],
    		tags: ['integration', 'connections'],
    		stability: 'experimental',
    	},
    	io: {
    		input: ListIntegrationConnectionsInput,
    		output: ListIntegrationConnectionsOutput,
    	},
    	policy: {
    		auth: 'admin',
    		policies: [{ key: 'platform.integration.read', version: '1.0.0' }],
    	},
    });