-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglobal-types.ts
63 lines (51 loc) · 2.07 KB
/
global-types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import type { ApiQueryParams } from 'types-mediawiki/api_params';
type OneOrMore<T> = T | T[];
// Page searches
export interface BacklinksResult {
query?: { backlinks: object[] };
}
export interface EmbeddedinResult {
query?: { embeddedin: object[] };
}
export interface SearchResult {
query?: { searchinfo: { totalhits: number } };
}
// Generators (modified from their ApiQueryParams counterparts)
export interface ApiQueryAllPagesGeneratorParameters extends ApiQueryParams {
gapfrom?: string;
gapcontinue?: string;
gapto?: string;
gapprefix?: string;
gapnamespace?: number;
gapfilterredir?: 'all' | 'nonredirects' | 'redirects';
gapminsize?: number;
gapmaxsize?: number;
gapprtype?: OneOrMore<'edit' | 'move' | 'upload'>;
gapprlevel?: OneOrMore<'' | 'autoconfirmed' | 'extendedconfirmed' | 'sysop' | 'templateeditor'>;
gapprfiltercascade?: 'all' | 'cascading' | 'noncascading';
gaplimit?: number | 'max';
gapdir?: 'ascending' | 'descending';
gapfilterlanglinks?: 'all' | 'withlanglinks' | 'withoutlanglinks';
gapprexpiry?: 'all' | 'definite' | 'indefinite';
}
// Page information
export interface PageInfoResult {
query?: { pages: { missing?: string; redirect?: string }[] };
}
export interface PageParseResult {
parse?: { title: string; redirects: { to: string; tofragment: string }[]; sections: { line: string }[] };
}
export interface PagepropsResult {
query?: { pages: { pageprops?: { defaultsort?: string; disambiguation?: string; displaytitle?: string } }[] };
}
export interface CategoriesResult {
query?: { pages: { title: string; categories?: { title: string }[] }[] };
}
export interface PageRevisionsResult {
query?: { pages: { revisions: { revid: number; slots: { main: { content: string } } }[] }[] };
}
// Other
export interface PageTriageListResponse {
pagetriagelist: { pages: { user_name: string; patrol_status: string }[]; result: string }; // eslint-disable-line @typescript-eslint/naming-convention
}
export type MediaWikiDataError = { error: { code: string; info: string } } | undefined;