Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface GetActionVersionResponseContent

    interface GetActionVersionResponseContent {
        id?: string;
        action_id?: string;
        code?: string;
        dependencies?: ActionVersionDependency[];
        deployed?: boolean;
        runtime?: string;
        secrets?: ActionSecretResponse[];
        status?: Management.ActionVersionBuildStatusEnum;
        number?: number;
        errors?: ActionError[];
        action?: ActionBase;
        built_at?: string;
        created_at?: string;
        updated_at?: string;
        supported_triggers?: ActionTrigger[];
    }
    Index

    Properties

    id?: string

    The unique id of an action version.

    action_id?: string

    The id of the action to which this version belongs.

    code?: string

    The source code of this specific version of the action.

    dependencies?: ActionVersionDependency[]

    The list of third party npm modules, and their versions, that this specific version depends on.

    deployed?: boolean

    Indicates if this specific version is the currently one deployed.

    runtime?: string

    The Node runtime. For example: node22

    The list of secrets that are included in an action or a version of an action.

    number?: number

    The index of this version in list of versions for the action.

    errors?: ActionError[]

    Any errors that occurred while the version was being built.

    action?: ActionBase
    built_at?: string

    The time when this version was built successfully.

    created_at?: string

    The time when this version was created.

    updated_at?: string

    The time when a version was updated. Versions are never updated externally. Only Auth0 will update an action version as it is being built.

    supported_triggers?: ActionTrigger[]

    The list of triggers that this version supports. At this time, a version can only target a single trigger at a time.