hylid-bridge 2.4.0-alpha.0 → 2.4.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/CHANGELOG.md +726 -0
  2. package/canIUse.json +1 -1
  3. package/lib/bridges.d.ts +3 -0
  4. package/lib/bridges.js +76 -1
  5. package/lib/clients/web/h5/clearStorage.d.ts +2 -0
  6. package/lib/clients/web/h5/clearStorage.js +4 -0
  7. package/lib/clients/web/h5/clearStorageSync.d.ts +1 -0
  8. package/lib/clients/web/h5/clearStorageSync.js +4 -0
  9. package/lib/clients/web/h5/createSelectorQuery.d.ts +2 -0
  10. package/lib/clients/web/h5/createSelectorQuery.js +4 -0
  11. package/lib/clients/web/h5/custom.d.ts +48 -0
  12. package/lib/clients/web/h5/custom.js +49 -1
  13. package/lib/clients/web/h5/getAppIdSync.d.ts +1 -0
  14. package/lib/clients/web/h5/getAppIdSync.js +4 -0
  15. package/lib/clients/web/h5/getClipboard.d.ts +2 -0
  16. package/lib/clients/web/h5/getClipboard.js +4 -0
  17. package/lib/clients/web/h5/getLaunchOptionsSync.d.ts +2 -0
  18. package/lib/clients/web/h5/getLaunchOptionsSync.js +4 -0
  19. package/lib/clients/web/h5/getNetworkType.d.ts +2 -0
  20. package/lib/clients/web/h5/getNetworkType.js +4 -0
  21. package/lib/clients/web/h5/getServerTime.d.ts +4 -0
  22. package/lib/clients/web/h5/getServerTime.js +4 -0
  23. package/lib/clients/web/h5/getSiteInfo.d.ts +2 -0
  24. package/lib/clients/web/h5/getSiteInfo.js +4 -0
  25. package/lib/clients/web/h5/getStorage.d.ts +2 -0
  26. package/lib/clients/web/h5/getStorage.js +4 -0
  27. package/lib/clients/web/h5/getStorageSync.d.ts +3 -0
  28. package/lib/clients/web/h5/getStorageSync.js +4 -0
  29. package/lib/clients/web/h5/getSystemInfo.d.ts +2 -0
  30. package/lib/clients/web/h5/getSystemInfo.js +4 -0
  31. package/lib/clients/web/h5/getSystemInfoSync.d.ts +2 -0
  32. package/lib/clients/web/h5/getSystemInfoSync.js +4 -0
  33. package/lib/clients/web/h5/index.d.ts +24 -0
  34. package/lib/clients/web/h5/makePhoneCall.d.ts +3 -0
  35. package/lib/clients/web/h5/makePhoneCall.js +4 -0
  36. package/lib/clients/web/h5/navigateToBizScene.d.ts +2 -0
  37. package/lib/clients/web/h5/navigateToBizScene.js +4 -0
  38. package/lib/clients/web/h5/navigateToMiniProgram.d.ts +2 -0
  39. package/lib/clients/web/h5/navigateToMiniProgram.js +4 -0
  40. package/lib/clients/web/h5/pageScrollTo.d.ts +2 -0
  41. package/lib/clients/web/h5/pageScrollTo.js +4 -0
  42. package/lib/clients/web/h5/removeStorage.d.ts +2 -0
  43. package/lib/clients/web/h5/removeStorage.js +4 -0
  44. package/lib/clients/web/h5/removeStorageSync.d.ts +3 -0
  45. package/lib/clients/web/h5/removeStorageSync.js +4 -0
  46. package/lib/clients/web/h5/rpc.d.ts +2 -0
  47. package/lib/clients/web/h5/rpc.js +22 -0
  48. package/lib/clients/web/h5/setClipboard.d.ts +2 -0
  49. package/lib/clients/web/h5/setClipboard.js +4 -0
  50. package/lib/clients/web/h5/setNavigationBar.d.ts +2 -0
  51. package/lib/clients/web/h5/setNavigationBar.js +4 -0
  52. package/lib/clients/web/h5/setStorage.d.ts +2 -0
  53. package/lib/clients/web/h5/setStorage.js +4 -0
  54. package/lib/clients/web/h5/setStorageSync.d.ts +4 -0
  55. package/lib/clients/web/h5/setStorageSync.js +4 -0
  56. package/lib/common/canIUse.js +25 -22
  57. package/lib/types/mp.d.ts +2 -0
  58. package/lib/umd/index.js +1 -1
  59. package/lib/umd/web_h5.js +1 -1
  60. package/package.json +2 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,726 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [2.4.0-alpha.3](https://code.alipay.com/ant-ife/hylid-bridge/compare/v2.4.0-alpha.2...v2.4.0-alpha.3) (2022-08-17)
7
+
8
+
9
+ ### Features
10
+
11
+ * 生成代码* 完善 web h5 环境* 增加 includes 判断条件
12
+
13
+
14
+ ## [2.4.0-alpha.2](https://code.alipay.com/ant-ife/hylid-bridge/compare/v2.4.0-alpha.1...v2.4.0-alpha.2) (2022-08-16)
15
+
16
+ **Note:** Version bump only for package hylid-bridge
17
+
18
+
19
+
20
+
21
+
22
+ ## [2.4.0-alpha.1](https://code.alipay.com/ant-ife/hylid-bridge/compare/v2.4.0-alpha.0...v2.4.0-alpha.1) (2022-08-15)
23
+
24
+ **Note:** Version bump only for package hylid-bridge
25
+
26
+
27
+
28
+
29
+
30
+ ## [2.4.0-alpha.0](https://code.alipay.com/ant-ife/hylid-bridge/compare/v2.1.0...v2.4.0-alpha.0) (2022-08-12)
31
+
32
+
33
+ ### Features
34
+
35
+ * 调整 eslint 配置* 根据源码注入 hylid-bridge 相应模块* 固定三方依赖版本号* 获取环境信息* 添加 bridge 单测支持* 文案* 引入 showLoading 和 hideLoading* 支持返回值是 undefined 的情况* 支持在 Marmot 上 build 时分版本号区分路径* 主站 crossPay* add getLocation api* export hideToast for web_h5* gulp add caniuse* process caniuse json* require api.config.json* toast* update request config* writeFileSync=>writeJSONSync
36
+
37
+ ### Bug Fixes
38
+
39
+ * 动态生成的代码的 lint errors* 类型* 添加 custom 配置* build error
40
+
41
+
42
+ ## [2.3.0](https://code.alipay.com/ant-ife/hylid-bridge/compare/v2.1.0...v2.3.0) (2022-08-05)
43
+
44
+
45
+ ### Features
46
+
47
+ * 调整 eslint 配置* 文案* 引入 showLoading 和 hideLoading* 支持在 Marmot 上 build 时分版本号区分路径* 主站 crossPay* add getLocation api* export hideToast for web_h5* gulp add caniuse* process caniuse json* require api.config.json* toast* update request config* writeFileSync=>writeJSONSync
48
+
49
+ ### Bug Fixes
50
+
51
+ * 动态生成的代码的 lint errors* 类型* 添加 custom 配置* build error
52
+
53
+
54
+ ## [2.2.0](https://code.alipay.com/ant-ife/hylid-bridge/compare/v2.1.0...v2.2.0) (2022-07-08)
55
+
56
+
57
+ ### Features
58
+
59
+ * 调整 eslint 配置* 文案* 引入 showLoading 和 hideLoading* 支持在 Marmot 上 build 时分版本号区分路径* 主站 crossPay* add getLocation api* toast* update request config
60
+
61
+ ### Bug Fixes
62
+
63
+ * 动态生成的代码的 lint errors* 类型* build error
64
+
65
+
66
+ # [2.1.0](https://code.alipay.com/ant-ife/hylid-bridge/compare/v1.1.0...v2.1.0) (2022-04-25)
67
+
68
+
69
+ ### Features
70
+
71
+ * 调整代码生成逻辑 ([4f16547](https://code.alipay.com/ant-ife/hylid-bridge/commits/4f165479e85a1103b52128b5463b177b63d64170))
72
+ * 调整发布相关配置 ([041fe83](https://code.alipay.com/ant-ife/hylid-bridge/commits/041fe83c8033da731fd5ebcaa5a86060115be90c))
73
+ * 脚本支持 includes 字段 ([0e85f4a](https://code.alipay.com/ant-ife/hylid-bridge/commits/0e85f4aa384fd6fa66081fd56cf85a2210fbc001))
74
+ * 接入 babel 插件 ([fdb8885](https://code.alipay.com/ant-ife/hylid-bridge/commits/fdb8885c6d7f16b8fbc528540ff3b397096da60b))
75
+ * 添加 rpc ([eb449d9](https://code.alipay.com/ant-ife/hylid-bridge/commits/eb449d98e8e31e09d5fc9c062cc7c276a2e8c691))
76
+ * 统一版本号 ([7539c2f](https://code.alipay.com/ant-ife/hylid-bridge/commits/7539c2f9fa4646fde964b609259e61d5e008c511))
77
+ * 修正编译 ([08bef15](https://code.alipay.com/ant-ife/hylid-bridge/commits/08bef15dcb7921a3d916dec7b3fd1719653f85c7))
78
+ * 引入 miniapp-web-jsapi ([65faac8](https://code.alipay.com/ant-ife/hylid-bridge/commits/65faac80fa3d2a5be531ac876e62ed4dddd005bd))
79
+ * 增加较为完整的国际端目录 ([76461a9](https://code.alipay.com/ant-ife/hylid-bridge/commits/76461a9fc108effa55706cfb5db565834dcd33c6))
80
+ * alert hideToast showToast request ([8fd0cad](https://code.alipay.com/ant-ife/hylid-bridge/commits/8fd0cad7157b1c6063955df2e9aba4b2c944d09a))
81
+ * bridge 针对容器纬度,打不同的 umd 包 ([4f4578f](https://code.alipay.com/ant-ife/hylid-bridge/commits/4f4578fde52d07c5e91e388a24d08868b100b619))
82
+
83
+
84
+
85
+
86
+
87
+ # 1.1.0
88
+
89
+ ## MiniProgram
90
+
91
+ > - addFatigueAction
92
+ > - addPhoneContact
93
+ > - alert
94
+ > - apDisableJSAPI
95
+ > - appxrpc
96
+ > - APRegionRPC
97
+ > - batchQueryCdpSpaceInfo
98
+ > - chooseImage
99
+ > - choosePhoneContact
100
+ > - clearStorage
101
+ > - clearStorageSync
102
+ > - closeBluetoothAdapter
103
+ > - closeSocket
104
+ > - confirm
105
+ > - connectBLEDevice
106
+ > - connectSocket
107
+ > - createAnimation
108
+ > - createWebViewContext
109
+ > - crossPay
110
+ > - datePicker
111
+ > - disconnectBLEDevice
112
+ > - downloadFile
113
+ > - exitApp
114
+ > - getAppIdSync
115
+ > - getAppToken
116
+ > - getAuthCode
117
+ > - getBatteryInfo
118
+ > - getBLEDeviceCharacteristics
119
+ > - getBLEDeviceServices
120
+ > - getBluetoothAdapterState
121
+ > - getBluetoothDevices
122
+ > - getClipboard
123
+ > - getComponentAuth
124
+ > - getConnectedBluetoothDevices
125
+ > - getFileInfo
126
+ > - getImageInfo
127
+ > - getLocation
128
+ > - getNetworkType
129
+ > - getOpenUserInfo
130
+ > - getPaymentCode
131
+ > - getPhoneNumber
132
+ > - getSavedFileInfo
133
+ > - getSavedFileList
134
+ > - getScreenBrightness
135
+ > - getServerTime
136
+ > - getSetting
137
+ > - getSiteInfo
138
+ > - getStorage
139
+ > - getStorageSync
140
+ > - getSystemInfo
141
+ > - hideBackHome
142
+ > - hideKeyboard
143
+ > - hideLoading
144
+ > - hideNavigationBarLoading
145
+ > - hideTabBar
146
+ > - hideToast
147
+ > - inquireQuote
148
+ > - isInstalledApp
149
+ > - makePhoneCall
150
+ > - multiLevelSelect
151
+ > - navigateBack
152
+ > - navigateBackMiniProgram
153
+ > - navigateTo
154
+ > - navigateToBizScene
155
+ > - navigateToMiniProgram
156
+ > - notifyBLECharacteristicValueChange
157
+ > - offAccelerometerChange
158
+ > - offBLECharacteristicValueChange
159
+ > - offBLEConnectionStateChanged
160
+ > - offBluetoothAdapterStateChange
161
+ > - offBluetoothDeviceFound
162
+ > - offCompassChange
163
+ > - offMemoryWarning
164
+ > - offSocketClose
165
+ > - offSocketError
166
+ > - offSocketMessage
167
+ > - offSocketOpen
168
+ > - offUserCaptureScreen
169
+ > - onAccelerometerChange
170
+ > - onBLECharacteristicValueChange
171
+ > - onBLEConnectionStateChanged
172
+ > - onBluetoothAdapterStateChange
173
+ > - onBluetoothDeviceFound
174
+ > - onCompassChange
175
+ > - onMemoryWarning
176
+ > - onSocketClose
177
+ > - onSocketError
178
+ > - onSocketMessage
179
+ > - onSocketOpen
180
+ > - onUserCaptureScreen
181
+ > - openBluetoothAdapter
182
+ > - openDocument
183
+ > - openSchemeWithBacking
184
+ > - openSetting
185
+ > - pageScrollTo
186
+ > - paySignCenter
187
+ > - previewImage
188
+ > - prompt
189
+ > - readBLECharacteristicValue
190
+ > - redirectTo
191
+ > - regionFetchAllApps
192
+ > - regionSearchAppsByKeywords
193
+ > - reLaunch
194
+ > - removeSavedFile
195
+ > - removeStorage
196
+ > - removeStorageSync
197
+ > - request
198
+ > - rpc
199
+ > - saveFile
200
+ > - saveImage
201
+ > - scan
202
+ > - sendSocketMessage
203
+ > - setBackgroundColor
204
+ > - setCanPullDown
205
+ > - setClipboard
206
+ > - setKeepScreenOn
207
+ > - setNavigationBar
208
+ > - setOptionMenu
209
+ > - setScreenBrightness
210
+ > - setStorage
211
+ > - setStorageSync
212
+ > - setTabBarStyle
213
+ > - showActionSheet
214
+ > - showAuthGuide
215
+ > - showLoading
216
+ > - showNavigationBarLoading
217
+ > - showToast
218
+ > - signContract
219
+ > - startApp
220
+ > - startBizService
221
+ > - startBluetoothDevicesDiscovery
222
+ > - startPullDownRefresh
223
+ > - stopBluetoothDevicesDiscovery
224
+ > - stopPullDownRefresh
225
+ > - switchTab
226
+ > - thirdPartyAuthForAc
227
+ > - tradePay
228
+ > - uploadApdidToken
229
+ > - uploadFile
230
+ > - vibrate
231
+ > - watchShake
232
+ > - writeBLECharacteristicValue
233
+
234
+ ## HTML5 MiniProgram
235
+
236
+ > - addFatigueAction
237
+ > - addPhoneContact
238
+ > - alert
239
+ > - apDisableJSAPI
240
+ > - appxrpc
241
+ > - APRegionRPC
242
+ > - batchQueryCdpSpaceInfo
243
+ > - chooseImage
244
+ > - choosePhoneContact
245
+ > - clearStorage
246
+ > - closeBluetoothAdapter
247
+ > - closeSocket
248
+ > - confirm
249
+ > - connectBLEDevice
250
+ > - connectSocket
251
+ > - crossPay
252
+ > - datePicker
253
+ > - disconnectBLEDevice
254
+ > - downloadFile
255
+ > - exitApp
256
+ > - getAppIdSync
257
+ > - getAppToken
258
+ > - getAuthCode
259
+ > - getBatteryInfo
260
+ > - getBLEDeviceCharacteristics
261
+ > - getBLEDeviceServices
262
+ > - getBluetoothAdapterState
263
+ > - getBluetoothDevices
264
+ > - getClipboard
265
+ > - getComponentAuth
266
+ > - getConnectedBluetoothDevices
267
+ > - getFileInfo
268
+ > - getImageInfo
269
+ > - getLocation
270
+ > - getNetworkType
271
+ > - getOpenUserInfo
272
+ > - getPaymentCode
273
+ > - getPhoneNumber
274
+ > - getSavedFileInfo
275
+ > - getSavedFileList
276
+ > - getScreenBrightness
277
+ > - getServerTime
278
+ > - getSetting
279
+ > - getSiteInfo
280
+ > - getStorage
281
+ > - getSystemInfo
282
+ > - hideKeyboard
283
+ > - hideLoading
284
+ > - hideNavigationBarLoading
285
+ > - hideTabBar
286
+ > - hideToast
287
+ > - inquireQuote
288
+ > - isInstalledApp
289
+ > - makePhoneCall
290
+ > - multiLevelSelect
291
+ > - navigateBackMiniProgram
292
+ > - navigateToBizScene
293
+ > - navigateToMiniProgram
294
+ > - notifyBLECharacteristicValueChange
295
+ > - offBLECharacteristicValueChange
296
+ > - offBLEConnectionStateChanged
297
+ > - offBluetoothAdapterStateChange
298
+ > - offBluetoothDeviceFound
299
+ > - offSocketClose
300
+ > - offSocketError
301
+ > - offSocketMessage
302
+ > - offSocketOpen
303
+ > - offUserCaptureScreen
304
+ > - onBLECharacteristicValueChange
305
+ > - onBLEConnectionStateChanged
306
+ > - onBluetoothAdapterStateChange
307
+ > - onBluetoothDeviceFound
308
+ > - onSocketClose
309
+ > - onSocketError
310
+ > - onSocketMessage
311
+ > - onSocketOpen
312
+ > - onUserCaptureScreen
313
+ > - openBluetoothAdapter
314
+ > - openDocument
315
+ > - openSchemeWithBacking
316
+ > - openSetting
317
+ > - paySignCenter
318
+ > - previewImage
319
+ > - prompt
320
+ > - readBLECharacteristicValue
321
+ > - regionFetchAllApps
322
+ > - regionSearchAppsByKeywords
323
+ > - removeSavedFile
324
+ > - removeStorage
325
+ > - request
326
+ > - rpc
327
+ > - saveFile
328
+ > - saveImage
329
+ > - scan
330
+ > - sendSocketMessage
331
+ > - setClipboard
332
+ > - setKeepScreenOn
333
+ > - setNavigationBar
334
+ > - setOptionMenu
335
+ > - setScreenBrightness
336
+ > - setStorage
337
+ > - setTabBarStyle
338
+ > - showActionSheet
339
+ > - showAuthGuide
340
+ > - showLoading
341
+ > - showNavigationBarLoading
342
+ > - showToast
343
+ > - signContract
344
+ > - startApp
345
+ > - startBizService
346
+ > - startBluetoothDevicesDiscovery
347
+ > - stopBluetoothDevicesDiscovery
348
+ > - thirdPartyAuthForAc
349
+ > - tradePay
350
+ > - uploadApdidToken
351
+ > - uploadFile
352
+ > - vibrate
353
+ > - writeBLECharacteristicValue
354
+
355
+ ## HTML5
356
+
357
+ > - addFatigueAction
358
+ > - addPhoneContact
359
+ > - alert
360
+ > - apDisableJSAPI
361
+ > - appxrpc
362
+ > - APRegionRPC
363
+ > - batchQueryCdpSpaceInfo
364
+ > - chooseImage
365
+ > - choosePhoneContact
366
+ > - clearStorage
367
+ > - confirm
368
+ > - crossPay
369
+ > - datePicker
370
+ > - downloadFile
371
+ > - exitApp
372
+ > - getAppToken
373
+ > - getAuthCode
374
+ > - getBatteryInfo
375
+ > - getClipboard
376
+ > - getComponentAuth
377
+ > - getFileInfo
378
+ > - getImageInfo
379
+ > - getLocation
380
+ > - getNetworkType
381
+ > - getOpenUserInfo
382
+ > - getPaymentCode
383
+ > - getPhoneNumber
384
+ > - getSavedFileInfo
385
+ > - getSavedFileList
386
+ > - getScreenBrightness
387
+ > - getServerTime
388
+ > - getSetting
389
+ > - getSiteInfo
390
+ > - getStorage
391
+ > - getSystemInfo
392
+ > - hideKeyboard
393
+ > - hideLoading
394
+ > - hideNavigationBarLoading
395
+ > - hideToast
396
+ > - inquireQuote
397
+ > - isInstalledApp
398
+ > - makePhoneCall
399
+ > - multiLevelSelect
400
+ > - navigateBackMiniProgram
401
+ > - navigateToBizScene
402
+ > - navigateToMiniProgram
403
+ > - openDocument
404
+ > - openSchemeWithBacking
405
+ > - openSetting
406
+ > - paySignCenter
407
+ > - previewImage
408
+ > - prompt
409
+ > - regionFetchAllApps
410
+ > - regionSearchAppsByKeywords
411
+ > - removeSavedFile
412
+ > - removeStorage
413
+ > - request
414
+ > - rpc
415
+ > - saveFile
416
+ > - saveImage
417
+ > - scan
418
+ > - setClipboard
419
+ > - setKeepScreenOn
420
+ > - setNavigationBar
421
+ > - setOptionMenu
422
+ > - setScreenBrightness
423
+ > - setStorage
424
+ > - showActionSheet
425
+ > - showAuthGuide
426
+ > - showLoading
427
+ > - showNavigationBarLoading
428
+ > - showToast
429
+ > - signContract
430
+ > - startApp
431
+ > - startBizService
432
+ > - thirdPartyAuthForAc
433
+ > - tradePay
434
+ > - uploadApdidToken
435
+ > - uploadFile
436
+ > - vibrate
437
+
438
+ # 1.0.5
439
+
440
+ ## Features
441
+
442
+ API support
443
+
444
+ ## MiniProgram
445
+
446
+ > - addFatigueAction
447
+ > - addPhoneContact
448
+ > - alert
449
+ > - apDisableJSAPI
450
+ > - appxrpc
451
+ > - APRegionRPC
452
+ > - batchQueryCdpSpaceInfo
453
+ > - chooseImage
454
+ > - choosePhoneContact
455
+ > - clearStorage
456
+ > - clearStorageSync
457
+ > - closeBluetoothAdapter
458
+ > - closeSocket
459
+ > - confirm
460
+ > - connectBLEDevice
461
+ > - connectSocket
462
+ > - createAnimation
463
+ > - createWebViewContext
464
+ > - crossPay
465
+ > - datePicker
466
+ > - disconnectBLEDevice
467
+ > - downloadFile
468
+ > - exitApp
469
+ > - getAppIdSync
470
+ > - getAppToken
471
+ > - getAuthCode
472
+ > - getBatteryInfo
473
+ > - getBLEDeviceCharacteristics
474
+ > - getBLEDeviceServices
475
+ > - getBluetoothAdapterState
476
+ > - getBluetoothDevices
477
+ > - getClipboard
478
+ > - getComponentAuth
479
+ > - getConnectedBluetoothDevices
480
+ > - getFileInfo
481
+ > - getImageInfo
482
+ > - getLocation
483
+ > - getNetworkType
484
+ > - getOpenUserInfo
485
+ > - getPaymentCode
486
+ > - getPhoneNumber
487
+ > - getSavedFileInfo
488
+ > - getSavedFileList
489
+ > - getScreenBrightness
490
+ > - getServerTime
491
+ > - getSetting
492
+ > - getSiteInfo
493
+ > - getStorage
494
+ > - getStorageSync
495
+ > - getSystemInfo
496
+ > - hideBackHome
497
+ > - hideKeyboard
498
+ > - hideLoading
499
+ > - hideNavigationBarLoading
500
+ > - hideTabBar
501
+ > - hideToast
502
+ > - inquireQuote
503
+ > - isInstalledApp
504
+ > - makePhoneCall
505
+ > - multiLevelSelect
506
+ > - navigateBack
507
+ > - navigateBackMiniProgram
508
+ > - navigateTo
509
+ > - navigateToBizScene
510
+ > - navigateToMiniProgram
511
+ > - notifyBLECharacteristicValueChange
512
+ > - offAccelerometerChange
513
+ > - offBLECharacteristicValueChange
514
+ > - offBLEConnectionStateChanged
515
+ > - offBluetoothAdapterStateChange
516
+ > - offBluetoothDeviceFound
517
+ > - offCompassChange
518
+ > - offMemoryWarning
519
+ > - offSocketClose
520
+ > - offSocketError
521
+ > - offSocketMessage
522
+ > - offSocketOpen
523
+ > - offUserCaptureScreen
524
+ > - onAccelerometerChange
525
+ > - onBLECharacteristicValueChange
526
+ > - onBLEConnectionStateChanged
527
+ > - onBluetoothAdapterStateChange
528
+ > - onBluetoothDeviceFound
529
+ > - onCompassChange
530
+ > - onMemoryWarning
531
+ > - onSocketClose
532
+ > - onSocketError
533
+ > - onSocketMessage
534
+ > - onSocketOpen
535
+ > - onUserCaptureScreen
536
+ > - openBluetoothAdapter
537
+ > - openDocument
538
+ > - openSchemeWithBacking
539
+ > - openSetting
540
+ > - pageScrollTo
541
+ > - paySignCenter
542
+ > - previewImage
543
+ > - prompt
544
+ > - readBLECharacteristicValue
545
+ > - redirectTo
546
+ > - regionFetchAllApps
547
+ > - regionSearchAppsByKeywords
548
+ > - reLaunch
549
+ > - removeSavedFile
550
+ > - removeStorage
551
+ > - removeStorageSync
552
+ > - request
553
+ > - rpc
554
+ > - saveFile
555
+ > - saveImage
556
+ > - scan
557
+ > - sendSocketMessage
558
+ > - setBackgroundColor
559
+ > - setCanPullDown
560
+ > - setClipboard
561
+ > - setKeepScreenOn
562
+ > - setNavigationBar
563
+ > - setOptionMenu
564
+ > - setScreenBrightness
565
+ > - setStorage
566
+ > - setStorageSync
567
+ > - setTabBarStyle
568
+ > - showActionSheet
569
+ > - showAuthGuide
570
+ > - showLoading
571
+ > - showNavigationBarLoading
572
+ > - showToast
573
+ > - signContract
574
+ > - startApp
575
+ > - startBizService
576
+ > - startBluetoothDevicesDiscovery
577
+ > - startPullDownRefresh
578
+ > - stopBluetoothDevicesDiscovery
579
+ > - stopPullDownRefresh
580
+ > - switchTab
581
+ > - thirdPartyAuthForAc
582
+ > - tradePay
583
+ > - uploadApdidToken
584
+ > - uploadFile
585
+ > - vibrate
586
+ > - watchShake
587
+ > - writeBLECharacteristicValue
588
+
589
+ ## HTML5 MiniProgram
590
+
591
+ > - addFatigueAction
592
+ > - addPhoneContact
593
+ > - alert
594
+ > - apDisableJSAPI
595
+ > - appxrpc
596
+ > - APRegionRPC
597
+ > - batchQueryCdpSpaceInfo
598
+ > - chooseImage
599
+ > - choosePhoneContact
600
+ > - clearStorage
601
+ > - closeBluetoothAdapter
602
+ > - closeSocket
603
+ > - confirm
604
+ > - connectBLEDevice
605
+ > - connectSocket
606
+ > - crossPay
607
+ > - datePicker
608
+ > - disconnectBLEDevice
609
+ > - downloadFile
610
+ > - exitApp
611
+ > - getAppIdSync
612
+ > - getAppToken
613
+ > - getAuthCode
614
+ > - getBatteryInfo
615
+ > - getBLEDeviceCharacteristics
616
+ > - getBLEDeviceServices
617
+ > - getBluetoothAdapterState
618
+ > - getBluetoothDevices
619
+ > - getClipboard
620
+ > - getComponentAuth
621
+ > - getConnectedBluetoothDevices
622
+ > - getFileInfo
623
+ > - getImageInfo
624
+ > - getLocation
625
+ > - getNetworkType
626
+ > - getOpenUserInfo
627
+ > - getPaymentCode
628
+ > - getPhoneNumber
629
+ > - getSavedFileInfo
630
+ > - getSavedFileList
631
+ > - getScreenBrightness
632
+ > - getServerTime
633
+ > - getSetting
634
+ > - getSiteInfo
635
+ > - getStorage
636
+ > - getSystemInfo
637
+ > - hideBackHome
638
+ > - hideKeyboard
639
+ > - hideLoading
640
+ > - hideNavigationBarLoading
641
+ > - hideTabBar
642
+ > - hideToast
643
+ > - inquireQuote
644
+ > - isInstalledApp
645
+ > - makePhoneCall
646
+ > - multiLevelSelect
647
+ > - navigateBack
648
+ > - navigateBackMiniProgram
649
+ > - navigateTo
650
+ > - navigateToBizScene
651
+ > - navigateToMiniProgram
652
+ > - notifyBLECharacteristicValueChange
653
+ > - offAccelerometerChange
654
+ > - offBLECharacteristicValueChange
655
+ > - offBLEConnectionStateChanged
656
+ > - offBluetoothAdapterStateChange
657
+ > - offBluetoothDeviceFound
658
+ > - offCompassChange
659
+ > - offMemoryWarning
660
+ > - offSocketClose
661
+ > - offSocketError
662
+ > - offSocketMessage
663
+ > - offSocketOpen
664
+ > - offUserCaptureScreen
665
+ > - onAccelerometerChange
666
+ > - onBLECharacteristicValueChange
667
+ > - onBLEConnectionStateChanged
668
+ > - onBluetoothAdapterStateChange
669
+ > - onBluetoothDeviceFound
670
+ > - onCompassChange
671
+ > - onMemoryWarning
672
+ > - onSocketClose
673
+ > - onSocketError
674
+ > - onSocketMessage
675
+ > - onSocketOpen
676
+ > - onUserCaptureScreen
677
+ > - openBluetoothAdapter
678
+ > - openDocument
679
+ > - openSchemeWithBacking
680
+ > - openSetting
681
+ > - pageScrollTo
682
+ > - paySignCenter
683
+ > - previewImage
684
+ > - prompt
685
+ > - readBLECharacteristicValue
686
+ > - redirectTo
687
+ > - regionFetchAllApps
688
+ > - regionSearchAppsByKeywords
689
+ > - reLaunch
690
+ > - removeSavedFile
691
+ > - removeStorage
692
+ > - request
693
+ > - rpc
694
+ > - saveFile
695
+ > - saveImage
696
+ > - scan
697
+ > - sendSocketMessage
698
+ > - setBackgroundColor
699
+ > - setCanPullDown
700
+ > - setClipboard
701
+ > - setKeepScreenOn
702
+ > - setNavigationBar
703
+ > - setOptionMenu
704
+ > - setScreenBrightness
705
+ > - setStorage
706
+ > - setTabBarStyle
707
+ > - showActionSheet
708
+ > - showAuthGuide
709
+ > - showLoading
710
+ > - showNavigationBarLoading
711
+ > - showToast
712
+ > - signContract
713
+ > - startApp
714
+ > - startBizService
715
+ > - startBluetoothDevicesDiscovery
716
+ > - startPullDownRefresh
717
+ > - stopBluetoothDevicesDiscovery
718
+ > - stopPullDownRefresh
719
+ > - switchTab
720
+ > - thirdPartyAuthForAc
721
+ > - tradePay
722
+ > - uploadApdidToken
723
+ > - uploadFile
724
+ > - vibrate
725
+ > - watchShake
726
+ > - writeBLECharacteristicValue