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

    Interface ActionModuleVersion

    interface ActionModuleVersion {
        id?: string;
        module_id?: string;
        version_number?: number;
        code?: string;
        secrets?: ActionModuleSecret[];
        dependencies?: ActionModuleDependency[];
        created_at?: string;
    }
    Index

    Properties

    id?: string

    The unique ID for this version.

    module_id?: string

    The ID of the parent module.

    version_number?: number

    The sequential version number.

    code?: string

    The exact source code that was published with this version.

    secrets?: ActionModuleSecret[]

    Secrets available to this version (name and updated_at only, values never returned).

    dependencies?: ActionModuleDependency[]

    Dependencies locked to this version.

    created_at?: string

    The timestamp when this version was created.