@makehq/sdk
    Preparing search index...

    Type Alias FunctionHistory

    Represents a historical version of a custom function. Function history keeps track of changes made to the function over time.

    type FunctionHistory = {
        id: number;
        previousCode: string;
        updatedAt: string;
        updatedBy: string;
    }
    Index

    Properties

    id: number

    Unique identifier of the history entry

    previousCode: string

    The function code before the update

    updatedAt: string

    Timestamp when the update was made

    updatedBy: string

    User who made the update