@makehq/sdk
    Preparing search index...

    Type Alias ScenarioNoteMetadata

    Presentation metadata of a scenario note.

    The published OpenAPI spec declares metadata as a bare object, but the API validates it against exactly these two optional properties and rejects anything else, so it is typed here as the closed shape the endpoint actually accepts.

    type ScenarioNoteMetadata = {
        canvasPosition?: { x: number; y: number };
        color?: string;
    }
    Index

    Properties

    canvasPosition?: { x: number; y: number }

    Position of the note on the scenario canvas

    Type declaration

    • x: number

      Horizontal coordinate on the canvas

    • y: number

      Vertical coordinate on the canvas

    color?: string

    Colour of the note as a CSS colour string, for example #9138FE