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

    Interface ActionModuleListItem

    interface ActionModuleListItem {
        id?: string;
        name?: string;
        code?: string;
        dependencies?: ActionModuleDependency[];
        secrets?: ActionModuleSecret[];
        actions_using_module_total?: number;
        all_changes_published?: boolean;
        latest_version_number?: number;
        created_at?: string;
        updated_at?: string;
    }
    Index

    Properties

    id?: string

    The unique ID of the module.

    name?: string

    The name of the module.

    code?: string

    The source code from the module's draft version.

    dependencies?: ActionModuleDependency[]

    The npm dependencies from the module's draft version.

    secrets?: ActionModuleSecret[]

    The secrets from the module's draft version (names and timestamps only, values never returned).

    actions_using_module_total?: number

    The number of deployed actions using this module.

    all_changes_published?: boolean

    Whether all draft changes have been published as a version.

    latest_version_number?: number

    The version number of the latest published version. Omitted if no versions have been published.

    created_at?: string

    Timestamp when the module was created.

    updated_at?: string

    Timestamp when the module was last updated.