Interface DisqusNodeParameters
Sourceinterface DisqusNodeParameters {
additionalFields?:
| {
attach?: (
| "counters"
| "followsForum"
| "forumCanDisableAds"
| "forumDaysAlive"
| "forumFeatures"
| "forumForumCategory"
| "forumIntegration"
| "forumNewPolicy"
| "forumPermissions"
)[];
related?: "author"[];
}
| {
filters?: (
| "Has_Bad_Word"
| "Has_Link"
| "Has_Low_Rep_Author"
| "Has_Media"
| "Is_Anonymous"
| "Is_At_Flag_Limit"
| "Is_Flagged"
| "Is_Toxic"
| "Modified_By_Rule"
| "No_Issue"
| "Shadow_Banned"
)[];
include?: "approved"[];
order?: "asc"
| "desc";
query?: string;
related?: "thread"[];
since?: string;
}
| { order?: "asc"
| "desc" }
| {
include?: ("open" | "closed" | "killed")[];
order?: "asc" | "desc";
related?: ("forum" | "author")[];
since?: string;
thread?: string;
};
id?: string;
limit?: number;
operation?: | "get"
| "getCategories"
| "getThreads"
| "getPosts";
resource?: "forum";
returnAll?: boolean;
}
Default: {}