Member Junction
    Preparing search index...

    Interface InteractiveFormApplyResult

    Result of an apply attempt — surfaced to the caller for any post-apply UI.

    interface InteractiveFormApplyResult {
        ComponentID?: string;
        Message?: string;
        Mode?: "create" | "modify-new-version" | "modify-in-place";
        OverrideID?: string;
        Success: boolean;
        Version?: string;
    }
    Index

    Properties

    ComponentID?: string

    ComponentID that now holds the spec.

    Message?: string
    Mode?: "create" | "modify-new-version" | "modify-in-place"

    Mode the server ran: 'create' / 'modify-new-version' / 'modify-in-place'.

    OverrideID?: string

    OverrideID the user can now reference.

    Success: boolean
    Version?: string

    Version string (e.g. '1.0.0' for create, '1.1.0' for modify-new).