-
Notifications
You must be signed in to change notification settings - Fork 0
/
system.device.d.ts
422 lines (379 loc) · 10.4 KB
/
system.device.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
/// <reference path="./types.d.ts"/>
/**
* 设备信息 device
* @后台运行限制 无限制。后台运行详细用法参见后台运行 脚本。
* @see https://doc.quickapp.cn/features/system/device.html
*/
declare module '@system.device' {
interface Device {
/**
* 获取设备信息
* @example
* ```js
* device.getInfo({
* success: function(ret) {
* console.log(`handling success, brand = ${ret.brand}`)
* }
* })
* ```
*/
getInfo(OBJECT: GetInfoOBJECT): any;
/**
* 批量获取设备标识,需要用户授权
* @example
* ```js
* device.getId({
* type: ['device', 'mac'],
* success: function(data) {
* console.log(`handling success: ${data.device}`)
* },
* fail: function(data, code) {
* console.log(`handling fail, code = ${code}`)
* }
* })
* ```
*/
getId(OBJECT: GetIdOBJECT): any;
/**
* 获取设备唯一标识。需要用户授权
* @since 1000
*/
getDeviceId(OBJECT: GetDeviceIdOBJECT): any;
/**
* 获取用户唯一标识
* @since 1000
*/
getUserId(OBJECT: GetUserIdOBJECT): any;
/**
* 获取广告唯一标识
* @since 1000
*/
getAdvertisingId(OBJECT: GetAdvertisingIdOBJECT): any;
/**
* 获取设备序列号
* @since 1040
*/
getSerial(OBJECT: GetSerialOBJECT): any;
/**
* 获取存储空间的总大小
* @since 1000
*/
getTotalStorage(OBJECT: GetTotalStorageOBJECT): any;
/**
* 获取存储空间的可用大小
* @since 1000
*/
getAvailableStorage(OBJECT: GetAvailableStorageOBJECT): any;
/**
* 返回 CPU 信息
* @since 1000
*/
getCpuInfo(OBJECT: GetCpuInfoOBJECT): any;
/**
* 返回厂商设备标识符中的OAID(匿名设备标识符)
* @since 1060
* @example
* ```js
* var device = require('@system.device')
* var allowTrackOAID = device.allowTrackOAID
* ```
*/
getOAID(OBJECT: GetOAIDOBJECT): GetOAIDReturn;
/**
* 限制oaid以及android q以上的deviceId是否可以用于广告跟踪
* @readable true
* @writeable false
*/
readonly allowTrackOAID: Boolean;
}
/**
* getOAID的返回值
* @param versionName 运行平台版本名称[可选]
* @param versionCode 运行平台版本号[可选]
*/
interface GetOAIDReturn {
versionName?: String;
versionCode?: Integer;
}
/**
*
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetOAIDOBJECT {
success?: GetOAIDOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetOAIDOBJECTSuccessCB = (successArg: GetOAIDSuccessSuccessArg) => any;
/**
* 成功回调
* @param oaid oaid的值,如果当前手机还不支持oaid,返回空值[可选]
*/
interface GetOAIDSuccessSuccessArg {
oaid?: String;
}
/**
*
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetCpuInfoOBJECT {
success?: GetCpuInfoOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetCpuInfoOBJECTSuccessCB = (
successArg: GetCpuInfoSuccessSuccessArg
) => any;
/**
* 成功回调
* @param cpuInfo CPU 信息。在 Android 上返回的是/proc/cpuinfo 文件的内容[可选]
*/
interface GetCpuInfoSuccessSuccessArg {
cpuInfo?: String;
}
/**
*
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetAvailableStorageOBJECT {
success?: GetAvailableStorageOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetAvailableStorageOBJECTSuccessCB = (
successArg: GetAvailableStorageSuccessSuccessArg
) => any;
/**
* 成功回调
* @param availableStorage 存储空间的可用大小,单位是 Byte。在 Android 上返回的是外部存储的可用大小[可选]
*/
interface GetAvailableStorageSuccessSuccessArg {
availableStorage?: Long;
}
/**
*
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetTotalStorageOBJECT {
success?: GetTotalStorageOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetTotalStorageOBJECTSuccessCB = (
successArg: GetTotalStorageSuccessSuccessArg
) => any;
/**
* 成功回调
* @param totalStorage 存储空间的总大小,单位是 Byte。在 Android 上返回的是外部存储的总大小[可选]
*/
interface GetTotalStorageSuccessSuccessArg {
totalStorage?: Long;
}
/**
*
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetSerialOBJECT {
success?: GetSerialOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetSerialOBJECTSuccessCB = (
successArg: GetSerialSuccessSuccessArg
) => any;
/**
* 成功回调
* @param serial 设备序列号[可选]
*/
interface GetSerialSuccessSuccessArg {
serial?: String;
}
/**
*
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetAdvertisingIdOBJECT {
success?: GetAdvertisingIdOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetAdvertisingIdOBJECTSuccessCB = (
successArg: GetAdvertisingIdSuccessSuccessArg
) => any;
/**
* 成功回调
* @param advertisingId 广告唯一标识[可选]
*/
interface GetAdvertisingIdSuccessSuccessArg {
advertisingId?: String;
}
/**
*
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetUserIdOBJECT {
success?: GetUserIdOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetUserIdOBJECTSuccessCB = (
successArg: GetUserIdSuccessSuccessArg
) => any;
/**
* 成功回调
* @param userId 设备唯一标识。在 Android 上返回 androidid[可选]
*/
interface GetUserIdSuccessSuccessArg {
userId?: String;
}
/**
*
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetDeviceIdOBJECT {
success?: GetDeviceIdOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetDeviceIdOBJECTSuccessCB = (
successArg: GetDeviceIdSuccessSuccessArg
) => any;
/**
* 成功回调
* @param deviceId 设备唯一标识。在 Android 上返回 IMEI 或 MEID; 在Android Q之后,除了华为手机返回aaid(应用匿名设备标识符),其他厂商手机如果支持oaid(匿名设备标识符)则返回oaid,否则返回空值。[可选]
*/
interface GetDeviceIdSuccessSuccessArg {
deviceId?: String;
}
/**
*
* @param type 支持 device、mac、user、advertising 1000+四种类型,可提供一至多个
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetIdOBJECT {
type: Array<any>;
success?: GetIdOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetIdOBJECTSuccessCB = (successArg: GetIdSuccessSuccessArg) => any;
/**
* 成功回调
* @param device 设备唯一标识。在 Android 上返回 IMEI 或 MEID; 在Android Q之后,除了华为手机返回aaid(应用匿名设备标识符),其他厂商手机如果支持oaid(匿名设备标识符)则返回oaid,否则返回空值。[可选]
* @param mac 设备的 mac 地址。在 Android M 及以上返回固定值:02:00:00:00:00:00[可选]
* @param user 用户唯一标识。在 Android 上返回 androidid[可选]
* @param advertising 广告唯一标识[可选] 1000+
*/
interface GetIdSuccessSuccessArg {
device?: String;
mac?: String;
user?: String;
advertising?: String;
}
/**
*
* @param success 成功回调[可选]
* @param fail 失败回调[可选]
* @param complete 执行结束后的回调[可选]
*/
interface GetInfoOBJECT {
success?: GetInfoOBJECTSuccessCB;
fail?: Function;
complete?: Function;
}
/**
* 成功回调
*/
type GetInfoOBJECTSuccessCB = (successArg: GetInfoSuccessSuccessArg) => any;
/**
* 成功回调
* @param brand 设备品牌[可选]
* @param manufacturer 设备生产商[可选]
* @param model 设备型号[可选]
* @param product 设备代号[可选]
* @param osType 操作系统名称[可选]
* @param osVersionName 操作系统版本名称[可选]
* @param osVersionCode 操作系统版本号[可选]
* @param platformVersionName 运行平台版本名称[可选]
* @param platformVersionCode 运行平台版本号[可选]
* @param language 系统语言[可选]
* @param region 系统地区[可选]
* @param screenWidth 屏幕宽[可选]
* @param screenHeight 屏幕高[可选]
* @param windowWidth 可使用窗口宽度[可选] 1030+
* @param windowHeight 可使用窗口高度[可选] 1030+
* @param statusBarHeight 状态栏高度[可选] 1030+
* @param screenDensity 设备的屏幕密度[可选] 1040+
*/
interface GetInfoSuccessSuccessArg {
brand?: String;
manufacturer?: String;
model?: String;
product?: String;
osType?: String;
osVersionName?: String;
osVersionCode?: Integer;
platformVersionName?: String;
platformVersionCode?: Integer;
language?: String;
region?: String;
screenWidth?: Integer;
screenHeight?: Integer;
windowWidth?: Integer;
windowHeight?: Integer;
statusBarHeight?: Integer;
screenDensity?: Float;
}
/**
* 设备信息 device
* @后台运行限制 无限制。后台运行详细用法参见后台运行 脚本。
* @see https://doc.quickapp.cn/features/system/device.html
*/
const device: Device;
export default device;
}