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.
Delete an integration connection for a tenant.
Goal
Safely remove credentials and disable connector usage.
Context
Ensures connections are de-provisioned when no longer needed or breached.
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 DeleteIntegrationConnection = defineCommand({
meta: {
key: 'integrations.connection.delete',
title: 'Delete Integration Connection',
version: '1.0.0',
description: 'Delete an integration connection for a tenant.',
goal: 'Safely remove credentials and disable connector usage.',
context:
'Ensures connections are de-provisioned when no longer needed or breached.',
owners: ['@platform.integrations'],
tags: ['integration', 'connections'],
stability: 'experimental',
},
io: {
input: DeleteIntegrationConnectionInput,
output: DeleteIntegrationConnectionOutput,
},
policy: {
auth: 'admin',
policies: [{ key: 'platform.integration.manage', version: '1.0.0' }],
},
});