TagoIO SDK for JavaScript and TypeScript
    Preparing search index...

    Interface UserListScope

    User List scope to be used in your analysis example:

    • async function editUser({ scope }: RouterConstructor & { scope: UserListScope[] }) {}
    interface UserListScope {
        active?: boolean;
        company?: string;
        email?: string;
        language?: string;
        name?: string;
        old?: { [key: string]: string } & Partial<
            Omit<UserCreateInfo, "password" | "tags">,
        >;
        options?: UserOptions;
        phone?: string;
        timezone?: string;
        user: string;
        [key: string]: any;
    }

    Hierarchy

    Indexable

    • [key: string]: any

      Tag keys are formated as tags.key and parameters as param.key

    Index

    Properties

    active?: boolean
    company?: string
    email?: string
    language?: string
    name?: string
    old?: { [key: string]: string } & Partial<
        Omit<UserCreateInfo, "password" | "tags">,
    >

    old parameter key will include a json with the old values of the parameters

    options?: UserOptions
    phone?: string
    timezone?: string
    user: string