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.
Emitted when a new control plane intent is accepted.
Source Definition
import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
import { defineEvent } from '../../events';
import {
CONTROL_PLANE_DOMAIN,
CONTROL_PLANE_OWNERS,
CONTROL_PLANE_STABILITY,
CONTROL_PLANE_TAGS,
} from '../constants';
export const ControlPlaneIntentReceivedEvent = defineEvent({
meta: {
key: 'controlPlane.intent.received',
version: '1.0.0',
description: 'Emitted when a new control plane intent is accepted.',
domain: CONTROL_PLANE_DOMAIN,
owners: CONTROL_PLANE_OWNERS,
tags: [...CONTROL_PLANE_TAGS, 'intent'],
stability: CONTROL_PLANE_STABILITY,
},
payload: ControlPlaneIntentReceivedPayload,
});