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.

controlPlane.execution.completed

Emitted when an execution run finishes successfully.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: execution
  • File: packages/libs/contracts-spec/src/control-plane/events/controlPlaneExecutionCompleted.event.ts
  • field.key.label
    controlPlane.execution.completed
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    controlPlane.execution.completed
    field.description.label

    Emitted when an execution run finishes successfully.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: execution
  • File: packages/libs/contracts-spec/src/control-plane/events/controlPlaneExecutionCompleted.event.ts
  • field.tags.label
    execution
    field.owners.label
    field.stability.label

    Emitted when an execution run finishes successfully.

    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 ControlPlaneExecutionCompletedEvent = defineEvent({
    	meta: {
    		key: 'controlPlane.execution.completed',
    		version: '1.0.0',
    		description: 'Emitted when an execution run finishes successfully.',
    		domain: CONTROL_PLANE_DOMAIN,
    		owners: CONTROL_PLANE_OWNERS,
    		tags: [...CONTROL_PLANE_TAGS, 'execution'],
    		stability: CONTROL_PLANE_STABILITY,
    	},
    	payload: ControlPlaneExecutionCompletedPayload,
    });