-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathtypes.d.ts
90 lines (90 loc) · 1.79 KB
/
types.d.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/// <reference types="node" />
import * as https from "https";
export interface Operation {
schema?: string;
dropAttr?: string;
dropAll?: boolean;
}
export interface Payload {
data: {};
}
export interface Request {
query: string;
vars?: {
[k: string]: string;
};
startTs?: number;
timeout?: number;
debug?: boolean;
readOnly?: boolean;
bestEffort?: boolean;
hash?: string;
}
export interface Response {
data: {};
extensions: Extensions;
}
export interface UiKeywords {
keywords: {
type: string;
name: string;
}[];
}
export interface LoginResponse {
data: {
accessJWT: string;
refreshJWT: string;
};
}
export interface Mutation {
setJson?: object;
deleteJson?: object;
setNquads?: string;
deleteNquads?: string;
startTs?: number;
commitNow?: boolean;
mutation?: string;
isJsonString?: boolean;
hash?: string;
}
export interface Assigned {
data: AssignedData;
extensions: Extensions;
}
export interface AssignedData {
uids: {
[k: string]: string;
};
}
export interface Extensions {
server_latency: Latency;
txn: TxnContext;
}
export interface TxnContext {
start_ts: number;
aborted?: boolean;
keys?: string[];
preds?: string[];
readOnly: boolean;
bestEffort: boolean;
hash?: string;
}
export interface Latency {
parsing_ns?: number;
processing_ns?: number;
encoding_ns?: number;
}
export interface TxnOptions {
readOnly?: boolean;
bestEffort?: boolean;
}
export interface ErrorNonJson extends Error {
responseText?: string;
}
export interface Options extends https.RequestOptions {
agent?: https.Agent;
}
export interface Config extends Options {
acceptRawText?: boolean;
body?: string;
}