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