interface INodeExtendedInitOptions {
    data: IDataManagerInitOptions;
    operations?: any;
    self: {
        create_dt?: number;
        id?: string;
        meta?: {
            category?: string;
            description?: string | string[];
            external?: any;
            path?: any;
            ref_extern?: string | string[];
            site?: { id?: string; url?: string };
            status?: string;
        };
        name?: string;
        token?: string;
        type?: "project";
        update_dt?: number;
        userGroup?: string[];
    };
}

Properties

Properties

data: IDataManagerInitOptions
operations?: any
self: {
    create_dt?: number;
    id?: string;
    meta?: {
        category?: string;
        description?: string | string[];
        external?: any;
        path?: any;
        ref_extern?: string | string[];
        site?: { id?: string; url?: string };
        status?: string;
    };
    name?: string;
    token?: string;
    type?: "project";
    update_dt?: number;
    userGroup?: string[];
}