@servicenow/sdk - v4.7.0
    Preparing search index...

    Interface NowAssistPanelConfig

    Now Assist Platform (NAP) deployment configuration Configures NAP deployment with required roles for panel access

    interface NowAssistPanelConfig {
        enabled: true;
        roles: (string | Role | Record<"sys_user_role">)[];
    }
    Index

    Properties

    Properties

    enabled: true

    Enable NAP deployment

    roles: (string | Role | Record<"sys_user_role">)[]

    Roles that can access this skill in the Now Assist Panel Must include 'now_assist_panel_user' for NAP access

    Supports:

    • Role name strings (e.g., 'now_assist_panel_user')
    • Role sys_id strings
    • Role objects created with Role()
    • DbRecord references to sys_user_role
    roles: ['now_assist_panel_user', 'access_analyzer_ai_user']