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.update

Update metadata or credentials for an integration connection.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: integration, connections
  • field.key.label
    integrations.connection.update
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    integrations.connection.update
    field.description.label

    Update metadata or credentials for an integration connection.

  • Type: operation (command)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.integrations
  • Tags: integration, connections
  • field.tags.label
    integration,connections
    field.owners.label
    @platform.integrations
    field.stability.label
    experimental

    Update metadata or credentials for an integration connection.

    Goal

    Allow secure rotation of credentials and metadata adjustments.

    Context

    Supports rotating API keys, toggling status, or updating labels for tenant integrations.

    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 UpdateIntegrationConnection = defineCommand({
    	meta: {
    		key: 'integrations.connection.update',
    		title: 'Update Integration Connection',
    		version: '1.0.0',
    		description:
    			'Update metadata or credentials for an integration connection.',
    		goal: 'Allow secure rotation of credentials and metadata adjustments.',
    		context:
    			'Supports rotating API keys, toggling status, or updating labels for tenant integrations.',
    		owners: ['@platform.integrations'],
    		tags: ['integration', 'connections'],
    		stability: 'experimental',
    	},
    	io: {
    		input: UpdateIntegrationConnectionInput,
    		output: IntegrationConnectionRecord,
    	},
    	policy: {
    		auth: 'admin',
    		policies: [{ key: 'platform.integration.manage', version: '1.0.0' }],
    	},
    });