Interface PublishActions

interface PublishActions {
    bookmarked: {
        commentId: null | string;
        key: string;
    };
    clear: [];
    comments: Comment[];
    config: Config;
    connected: {
        comments?: Comment[];
        config?: Config;
        services?: Service[];
        setList?: SetListAPIResponse;
        waitingList?: OrderItem[];
    };
    deleted: {
        id: string;
        message: string;
    }[];
    meta: {
        meta: ServiceMeta;
        service: Service;
    };
    meta.clear: string;
    ni.survey.finish: any;
    ni.survey.start: any;
    notification: void;
    pinned: Comment;
    reactions: {
        effect: boolean;
        reactions: Reaction[];
    };
    services: Service[];
    setList: SetListAPIResponse;
    setList.request: RequestItem[];
    systemComment: any;
    toast: any;
    userDatas: UserStoreData;
    waitingList: OrderItem[];
    wp.exec: WordPartyExecParams;
    wp.update: {
        dir: string;
    };
    yt.survey.finish: any;
    yt.survey.start: any;
    yt.survey.update: any;
}

Hierarchy

  • SendActions
    • PublishActions

Properties

bookmarked: {
    commentId: null | string;
    key: string;
}

Type declaration

  • commentId: null | string
  • key: string
clear: []
comments: Comment[]
config: Config
connected: {
    comments?: Comment[];
    config?: Config;
    services?: Service[];
    setList?: SetListAPIResponse;
    waitingList?: OrderItem[];
}

Type declaration

deleted: {
    id: string;
    message: string;
}[]

Type declaration

  • id: string
  • message: string
meta: {
    meta: ServiceMeta;
    service: Service;
}

Type declaration

meta.clear: string
ni.survey.finish: any
ni.survey.start: any
notification: void
pinned: Comment
reactions: {
    effect: boolean;
    reactions: Reaction[];
}

Type declaration

services: Service[]
setList.request: RequestItem[]
systemComment: any
toast: any
userDatas: UserStoreData
waitingList: OrderItem[]
wp.update: {
    dir: string;
}

Type declaration

  • dir: string
yt.survey.finish: any
yt.survey.start: any
yt.survey.update: any