-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtypes.d.ts
430 lines (387 loc) · 9.43 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
interface V2RayConfig {
log?: V2RayConfigLog,
api?: V2RayConfigApi,
dns?: V2RayConfigDns,
routing?: V2RayConfigRouting,
inbounds?: V2RayConfigInbound[],
outbounds?: V2RayConfigOutbound[]
policy?: V2RayConfigPolicy
stats?: {}
nodes?: V2RayNode[]
}
interface V2RayNode {
apiKey?: string
name?: string
}
interface V2RayConfigPolicy {
levels?: { [userLevel: string]: V2RayConfigPolicyLevel }
system?: V2RayConfigPolicySystem
}
interface V2RayConfigPolicySystem {
statsInboundUplink?: boolean,
statsInboundDownlink?: boolean
}
interface V2RayConfigPolicyLevel {
handshake?: number,
connIdle?: number,
uplinkOnly?: number,
downlinkOnly?: number,
statsUserUplink?: boolean,
statsUserDownlink?: boolean,
bufferSize?: number
}
export type V2RayConfigInboundFlow = "none" | "xtls-rprx-vision"
interface V2RayConfigInboundClient {
id?: string
email?: string
level?: number
flow:? V2RayConfigInboundFlow
/** Custom fields */
deActiveDate?: string
maxConnections?: number
deActiveReason?: string
expiredDate?: string
billingStartDate?: string
firstConnect?: string
expireDays?: number
createDate?: string
fullName?: string
mobile?: string
emailAddress?: string
private?: boolean
free?: boolean
quotaLimit?: number
serverNode?: string
serverNodeInbound?: string
createdBy?: string
createdById?: string
/** Temp */
lastConnectIP?: string,
lastConnectNode?: string,
lastConnect?: string
}
interface V2RayConfigInboundSettings {
clients?: V2RayConfigInboundClient[]
accounts?: {user?: string, pass?: string}[]
users?: {email?: string, level?: number, secret?: string}[]
decryption?: string
}
interface V2RayConfigInboundStreamSettings {
network?: "tcp" | "ws" | ""
security?: "tls" | "reality" | "" | "none"
tcpSettings?: any
tlsSettings?: {
alpn?: string[]
certificates?: {
certificateFile?: string
keyFile?: string
}[]
}
realitySettings?: {
show?: boolean
dest?: string
xver?: number
serverNames?: string[]
privateKey?: string
publicKey?: string /** Custom */
minClientVer?: string
maxClientVer?: string
maxTimerDiff?: number
shortIds?: string[]
}
}
interface V2RayConfigInboundAllocate {
strategy?: "always" | "random"
refresh?: number
concurrency?: number
}
interface V2RayConfigInbound {
listen?: string
port?: number | string
protocol?: string
settings?: V2RayConfigInboundSettings
streamSettings?: V2RayConfigInboundStreamSettings
tag?: string,
sniffing?: V2RayConfigInboundSiffingObject
allocate?: any
usersServerNode?: string
mirrorInbound?: string
/** Client Configs (Custom) */
clientPanelUrl?: string
clientConfigs?: {
description?: string
prefix?: string
address?: string
sni?: string
host?: string
port?: string
}[]
}
interface V2RayConfigInboundSiffingObject {
enabled?: boolean
destOverride?: ('http' | 'tls')[]
}
interface V2RayConfigOutbound {
protocol?: string
tag?: string
settings?: V2RayConfigOutboundSettings
sendThrough?: string
streamSettings?: V2RayConfigStream
proxySettings?: V2RayConfigProxy
mux?: V2RayConfigMux
}
interface V2RayConfigOutboundSettings {
servers?: V2RayConfigOutboundSettingsServer[]
vnext?: V2RayConfigOutboundSettingsServerVNext[]
redirect?: string
// MTProto
users?: { secret?: string }[]
response?: { type?: string }
}
interface V2RayConfigOutboundSettingsServerVNext {
address?: string
port?: number
users?: { id?: string, security?: string, flow?: V2RayConfigInboundFlow, encryption?: string }[]
}
interface V2RayConfigOutboundSettingsServer {
address?: string
port?: number
users?: { user?: string, pass?: string }[]
}
interface V2RayConfigProxy {
tag?: string,
transportLayer?: boolean
}
interface V2RayConfigMux {
enabled?: boolean
concurrency?: number
}
interface V2RayConfigStream {
transport: "tcp" | "udp",
transportSettings: any,
security: "none" | "auto" | 'tls' | 'reality',
securitySettings: any
network?: 'tcp' | 'kcp' | 'ws' | 'http' | 'domainsocket' | 'quic'
tcpSettings?: HttpHeaderObject
realitySettings?: {
show?: boolean
fingerprint?: string
serverName?: string
publicKey?: string
shortId?: string
spiderX?: string
}
}
interface HttpHeaderObject {
header?: {
type?: 'http' | 'none'
}
request?: {
path?: string
method?: string
headers?: { [name: string]: string }
}
response?: any
}
interface V2RayConfigLog {
logLevel?: "debug" | "info" | "warning" | "error" | "none"
access?: string
error?: string
}
interface V2RayConfigRouting {
domainStrategy?: "AsIs" | "IPIfNonMatch" | "IPOnDemand",
domainMatcher?: "linear" | "mph"
rules?: V2RayConfigRoutingRule[]
balancers?: V2RayConfigRoutingBalancer[]
}
interface V2RayConfigRoutingBalancer {
tag?: string
selector?: string[]
}
interface V2RayConfigApi {
tag?: string
services: ("HandlerService" | "LoggerService" | "StatsService" | "ObservatoryService")[]
}
interface V2RayConfigDns {
tag?: string
clientIp?: string
queryStrategy?: "UseIP" | "UseIPv4" | "UseIPv6"
disableCache?: boolean
disableFallback?: boolean
servers?: (string | V2RayConfigDnsServer)[]
hosts?: { [host: string]: string | string[] }
}
interface V2RayConfigDnsServer {
address?: string,
port?: number,
clientIp?: number,
skipFallback?: boolean,
domains?: string[],
expectIPs: string[]
}
interface V2RayConfigRoutingRule {
domainMatcher?: "linear" | "mph"
type?: "field"
domain?: string[]
ip?: string[]
source?: string
port?: string
sourcePort?: string
network?: "tcp" | "udp"
user?: string[]
inboundTag?: string[]
protocol?: string
attrs?: string
outboundTag?: string
balancerTag?: string
description?: string
}
interface Transaction {
id?: string
user?: string
remark?: string
amount?: number
createDate?: string
creator?: string
serverNodeId?: string
createdBy?: string
createdById?: string
createdForID?: string
createdFor?: string
}
interface V2RayDb {
idCounter?: {
transactions?: number
},
transactions?: Transaction[];
users?: User[];
}
interface User {
user:? string
token?: string
isAdmin?: boolean
}
interface Change {
action: 'set' | 'delete' | 'add',
value?: any,
path?: string[]
prevValue?: any
}
interface TrafficUsages {
[date: string]: { name: string, direction: string, type: string, traffic: number, server: string }[]
}
interface UserUsage {
firstConnect?: string
lastConnect?: string
lastConnectNode?: string
quotaUsage?: number
quotaUsageAfterBilling?: number
quotaUsage_local?: number
quotaUsageUpdate?: string
lastConnectIP?: string
}
interface UserUsages {
[user?: string]: UserUsage
}
interface ServerNode {
id?: string
name?: string
type?: 'client' | 'server'
address?: string
apiKey: string
lastConnectDate?: string
lastConnectIP?: string
lastSyncDate?: string
sync?: boolean
syncConfig?: boolean
readLastMinutesLogs?: boolean
disabled?: boolean
show_in_other_nodes?: boolean
show_in_home?: boolean
}
interface CRUDAcl {
add?: boolean
list?: boolean
edit?: boolean
delete?: boolean
}
interface SystemAcls {
isAdmin?: boolean;
administrators?: boolean;
transactions?: CRUDAcl;
serverNodes?: CRUDAcl;
trafficUsage?: { list?: boolean };
logs?: { list?: boolean };
users?: CRUDAcl & {
allUsers?: boolean;
deleteConnected?: boolean;
renew?: boolean;
active?: boolean;
activeExpired?: boolean;
subscribeUrl?: boolean;
clientConfig?: boolean;
freeUsers?: boolean;
changeFree?: boolean;
privateUsers?: boolean;
changePrivate?: boolean;
regenerateId?: boolean;
changeInbound?: boolean;
copyUser?: boolean;
setFirstConnectionAsCreateDate?: boolean;
dailyUsage?: boolean;
logs?: boolean;
changeExpireDays?: boolean
changeMaxConnections?: boolean
changeBandwidth?: boolean
otherNodes?: boolean
traffics?: boolean
cancel?: boolean
};
config?: { list?: boolean; edit?: boolean };
home?: {
show?: boolean;
traffics?: boolean;
users?: boolean;
servers?: boolean;
transactions?: boolean;
};
allowedInbounds?: string[];
}
interface SystemUser {
id?: string
username?: string
password?: string
isActive?: boolean
email?: string
mobile?: string
acls?: SystemAcls
pricing?: SystemPricing
subUsers?: string[]
createBillsFor?: string
}
interface SystemPricing {
newUserCost?: number
renewUserCost?: number
}
interface SystemConfig extends SystemPricing {
webPort?: boolean
}
interface LoginSession {
token?: string
username?: string
userId?: string
loginDate?: number
lastRequestTime?: number
isExpired?: boolean
userAgent?: string
lastRequestIP?: string
}
type AsyncGeneratorType<T extends AsyncGenerator<any>> = T extends AsyncGenerator<infer R> ? R : any;
interface SubscriberRecord {
firstUpdate?: string
lastUpdate?: string
clientIP?: string
}
interface Subscribers {
[username: string]: SubscriberRecord
}