@dcloudio/uni-app-x 0.7.120 → 0.7.122

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 (279) hide show
  1. package/README.md +87 -0
  2. package/package.json +1 -1
  3. package/types/app.d.ts +2 -1
  4. package/types/dom2-internal/UniCommon.d.ts +7 -2
  5. package/types/dom2-internal/UniNativeDefines.d.ts +7 -2
  6. package/types/dom2-internal/UniPage.d.ts +6 -0
  7. package/types/native/DrawableContext.d.ts +104 -52
  8. package/types/native/IUniElement.d.ts +4 -2
  9. package/types/node_modules/.package-lock.json +20 -0
  10. package/types/node_modules/typescript/LICENSE.txt +55 -0
  11. package/types/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
  12. package/types/node_modules/typescript/bin/tsc +2 -0
  13. package/types/node_modules/typescript/bin/tsserver +2 -0
  14. package/types/node_modules/typescript/lib/cancellationToken.js +90 -0
  15. package/types/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +1880 -0
  16. package/types/node_modules/typescript/lib/de/diagnosticMessages.generated.json +1880 -0
  17. package/types/node_modules/typescript/lib/es/diagnosticMessages.generated.json +1880 -0
  18. package/types/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +1880 -0
  19. package/types/node_modules/typescript/lib/it/diagnosticMessages.generated.json +1880 -0
  20. package/types/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +1880 -0
  21. package/types/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +1880 -0
  22. package/types/node_modules/typescript/lib/lib.d.ts +22 -0
  23. package/types/node_modules/typescript/lib/lib.decorators.d.ts +386 -0
  24. package/types/node_modules/typescript/lib/lib.decorators.legacy.d.ts +22 -0
  25. package/types/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +33 -0
  26. package/types/node_modules/typescript/lib/lib.dom.d.ts +28596 -0
  27. package/types/node_modules/typescript/lib/lib.dom.iterable.d.ts +475 -0
  28. package/types/node_modules/typescript/lib/lib.es2015.collection.d.ts +147 -0
  29. package/types/node_modules/typescript/lib/lib.es2015.core.d.ts +597 -0
  30. package/types/node_modules/typescript/lib/lib.es2015.d.ts +28 -0
  31. package/types/node_modules/typescript/lib/lib.es2015.generator.d.ts +77 -0
  32. package/types/node_modules/typescript/lib/lib.es2015.iterable.d.ts +495 -0
  33. package/types/node_modules/typescript/lib/lib.es2015.promise.d.ts +81 -0
  34. package/types/node_modules/typescript/lib/lib.es2015.proxy.d.ts +128 -0
  35. package/types/node_modules/typescript/lib/lib.es2015.reflect.d.ts +144 -0
  36. package/types/node_modules/typescript/lib/lib.es2015.symbol.d.ts +46 -0
  37. package/types/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +326 -0
  38. package/types/node_modules/typescript/lib/lib.es2016.array.include.d.ts +116 -0
  39. package/types/node_modules/typescript/lib/lib.es2016.d.ts +21 -0
  40. package/types/node_modules/typescript/lib/lib.es2016.full.d.ts +23 -0
  41. package/types/node_modules/typescript/lib/lib.es2016.intl.d.ts +31 -0
  42. package/types/node_modules/typescript/lib/lib.es2017.d.ts +25 -0
  43. package/types/node_modules/typescript/lib/lib.es2017.date.d.ts +31 -0
  44. package/types/node_modules/typescript/lib/lib.es2017.full.d.ts +23 -0
  45. package/types/node_modules/typescript/lib/lib.es2017.intl.d.ts +44 -0
  46. package/types/node_modules/typescript/lib/lib.es2017.object.d.ts +49 -0
  47. package/types/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +135 -0
  48. package/types/node_modules/typescript/lib/lib.es2017.string.d.ts +45 -0
  49. package/types/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +53 -0
  50. package/types/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +77 -0
  51. package/types/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +43 -0
  52. package/types/node_modules/typescript/lib/lib.es2018.d.ts +24 -0
  53. package/types/node_modules/typescript/lib/lib.es2018.full.d.ts +24 -0
  54. package/types/node_modules/typescript/lib/lib.es2018.intl.d.ts +83 -0
  55. package/types/node_modules/typescript/lib/lib.es2018.promise.d.ts +30 -0
  56. package/types/node_modules/typescript/lib/lib.es2018.regexp.d.ts +37 -0
  57. package/types/node_modules/typescript/lib/lib.es2019.array.d.ts +79 -0
  58. package/types/node_modules/typescript/lib/lib.es2019.d.ts +24 -0
  59. package/types/node_modules/typescript/lib/lib.es2019.full.d.ts +24 -0
  60. package/types/node_modules/typescript/lib/lib.es2019.intl.d.ts +23 -0
  61. package/types/node_modules/typescript/lib/lib.es2019.object.d.ts +33 -0
  62. package/types/node_modules/typescript/lib/lib.es2019.string.d.ts +37 -0
  63. package/types/node_modules/typescript/lib/lib.es2019.symbol.d.ts +24 -0
  64. package/types/node_modules/typescript/lib/lib.es2020.bigint.d.ts +727 -0
  65. package/types/node_modules/typescript/lib/lib.es2020.d.ts +27 -0
  66. package/types/node_modules/typescript/lib/lib.es2020.date.d.ts +42 -0
  67. package/types/node_modules/typescript/lib/lib.es2020.full.d.ts +24 -0
  68. package/types/node_modules/typescript/lib/lib.es2020.intl.d.ts +474 -0
  69. package/types/node_modules/typescript/lib/lib.es2020.number.d.ts +28 -0
  70. package/types/node_modules/typescript/lib/lib.es2020.promise.d.ts +47 -0
  71. package/types/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
  72. package/types/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
  73. package/types/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +37 -0
  74. package/types/node_modules/typescript/lib/lib.es2021.d.ts +23 -0
  75. package/types/node_modules/typescript/lib/lib.es2021.full.d.ts +24 -0
  76. package/types/node_modules/typescript/lib/lib.es2021.intl.d.ts +166 -0
  77. package/types/node_modules/typescript/lib/lib.es2021.promise.d.ts +48 -0
  78. package/types/node_modules/typescript/lib/lib.es2021.string.d.ts +33 -0
  79. package/types/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
  80. package/types/node_modules/typescript/lib/lib.es2022.array.d.ts +121 -0
  81. package/types/node_modules/typescript/lib/lib.es2022.d.ts +26 -0
  82. package/types/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
  83. package/types/node_modules/typescript/lib/lib.es2022.full.d.ts +24 -0
  84. package/types/node_modules/typescript/lib/lib.es2022.intl.d.ts +117 -0
  85. package/types/node_modules/typescript/lib/lib.es2022.object.d.ts +26 -0
  86. package/types/node_modules/typescript/lib/lib.es2022.regexp.d.ts +39 -0
  87. package/types/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts +39 -0
  88. package/types/node_modules/typescript/lib/lib.es2022.string.d.ts +25 -0
  89. package/types/node_modules/typescript/lib/lib.es2023.array.d.ts +924 -0
  90. package/types/node_modules/typescript/lib/lib.es2023.collection.d.ts +21 -0
  91. package/types/node_modules/typescript/lib/lib.es2023.d.ts +22 -0
  92. package/types/node_modules/typescript/lib/lib.es2023.full.d.ts +24 -0
  93. package/types/node_modules/typescript/lib/lib.es2023.intl.d.ts +56 -0
  94. package/types/node_modules/typescript/lib/lib.es5.d.ts +4585 -0
  95. package/types/node_modules/typescript/lib/lib.es6.d.ts +23 -0
  96. package/types/node_modules/typescript/lib/lib.esnext.array.d.ts +35 -0
  97. package/types/node_modules/typescript/lib/lib.esnext.collection.d.ts +106 -0
  98. package/types/node_modules/typescript/lib/lib.esnext.d.ts +28 -0
  99. package/types/node_modules/typescript/lib/lib.esnext.decorators.d.ts +28 -0
  100. package/types/node_modules/typescript/lib/lib.esnext.disposable.d.ts +185 -0
  101. package/types/node_modules/typescript/lib/lib.esnext.full.d.ts +24 -0
  102. package/types/node_modules/typescript/lib/lib.esnext.intl.d.ts +21 -0
  103. package/types/node_modules/typescript/lib/lib.esnext.object.d.ts +29 -0
  104. package/types/node_modules/typescript/lib/lib.esnext.promise.d.ts +35 -0
  105. package/types/node_modules/typescript/lib/lib.esnext.regexp.d.ts +25 -0
  106. package/types/node_modules/typescript/lib/lib.esnext.string.d.ts +29 -0
  107. package/types/node_modules/typescript/lib/lib.scripthost.d.ts +322 -0
  108. package/types/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +33 -0
  109. package/types/node_modules/typescript/lib/lib.webworker.d.ts +9431 -0
  110. package/types/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +23 -0
  111. package/types/node_modules/typescript/lib/lib.webworker.iterable.d.ts +276 -0
  112. package/types/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +1880 -0
  113. package/types/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +1880 -0
  114. package/types/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +1880 -0
  115. package/types/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +1880 -0
  116. package/types/node_modules/typescript/lib/tsc.js +129741 -0
  117. package/types/node_modules/typescript/lib/tsserver.js +621 -0
  118. package/types/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
  119. package/types/node_modules/typescript/lib/tsserverlibrary.js +21 -0
  120. package/types/node_modules/typescript/lib/typesMap.json +497 -0
  121. package/types/node_modules/typescript/lib/typescript.d.ts +11240 -0
  122. package/types/node_modules/typescript/lib/typescript.js +194910 -0
  123. package/types/node_modules/typescript/lib/typingsInstaller.js +236 -0
  124. package/types/node_modules/typescript/lib/watchGuard.js +53 -0
  125. package/types/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +1880 -0
  126. package/types/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +1880 -0
  127. package/types/node_modules/typescript/package.json +116 -0
  128. package/types/page.d.ts +2 -2
  129. package/types/uni/env/index.d.ts +2 -1
  130. package/types/uni/uts-plugin-api/global.d.ts +8 -0
  131. package/types/uni/uts-plugin-api/index.d.ts +8 -0
  132. package/types/uni/uts-plugin-api/lib/uni-accelerometer/utssdk/global.d.ts +35 -0
  133. package/types/uni/uts-plugin-api/lib/uni-accelerometer/utssdk/index.d.ts +17 -0
  134. package/types/uni/uts-plugin-api/lib/uni-accelerometer/utssdk/interface.d.ts +359 -0
  135. package/types/uni/uts-plugin-api/lib/uni-authentication/utssdk/interface.d.ts +323 -1294
  136. package/types/uni/uts-plugin-api/lib/uni-calendar/utssdk/global.d.ts +35 -0
  137. package/types/uni/uts-plugin-api/lib/uni-calendar/utssdk/index.d.ts +17 -0
  138. package/types/uni/uts-plugin-api/lib/uni-calendar/utssdk/interface.d.ts +944 -0
  139. package/types/uni/uts-plugin-api/lib/uni-canvas-dom2/utssdk/interface.d.ts +2 -1
  140. package/types/uni/{uts-plugin-extend → uts-plugin-api}/lib/uni-compass/utssdk/global.d.ts +16 -6
  141. package/types/uni/{uts-plugin-extend → uts-plugin-api}/lib/uni-compass/utssdk/index.d.ts +9 -3
  142. package/types/uni/uts-plugin-api/lib/uni-compass/utssdk/interface.d.ts +353 -0
  143. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/global.d.ts +0 -2
  144. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/index.d.ts +0 -1
  145. package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +0 -1
  146. package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/global.d.ts +2 -0
  147. package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/index.d.ts +1 -0
  148. package/types/uni/uts-plugin-api/lib/uni-editor/utssdk/interface.d.ts +144 -110
  149. package/types/uni/uts-plugin-api/lib/uni-getElementById/utssdk/interface.d.ts +1 -0
  150. package/types/uni/uts-plugin-api/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +72 -531
  151. package/types/uni/uts-plugin-api/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +72 -531
  152. package/types/uni/uts-plugin-api/lib/uni-gyroscope/utssdk/global.d.ts +35 -0
  153. package/types/uni/uts-plugin-api/lib/uni-gyroscope/utssdk/index.d.ts +17 -0
  154. package/types/uni/uts-plugin-api/lib/uni-gyroscope/utssdk/interface.d.ts +362 -0
  155. package/types/uni/uts-plugin-api/lib/uni-keyboard/utssdk/interface.d.ts +6 -6
  156. package/types/uni/uts-plugin-api/lib/uni-makePhoneCall/utssdk/interface.d.ts +72 -68
  157. package/types/uni/uts-plugin-api/lib/uni-memorywarning/utssdk/global.d.ts +21 -0
  158. package/types/uni/uts-plugin-api/lib/uni-memorywarning/utssdk/index.d.ts +10 -0
  159. package/types/uni/uts-plugin-api/lib/uni-memorywarning/utssdk/interface.d.ts +20 -0
  160. package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/global.d.ts +8 -12
  161. package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/index.d.ts +4 -6
  162. package/types/uni/uts-plugin-api/lib/uni-modal/utssdk/interface.d.ts +1741 -905
  163. package/types/uni/uts-plugin-api/lib/uni-oauth/utssdk/interface.d.ts +12 -12
  164. package/types/uni/uts-plugin-api/lib/uni-openLocation/utssdk/global.d.ts +23 -0
  165. package/types/uni/uts-plugin-api/lib/uni-openLocation/utssdk/index.d.ts +11 -0
  166. package/types/uni/uts-plugin-api/lib/uni-openLocation/utssdk/interface.d.ts +418 -0
  167. package/types/uni/uts-plugin-api/lib/uni-phoneContact/utssdk/global.d.ts +49 -0
  168. package/types/uni/uts-plugin-api/lib/uni-phoneContact/utssdk/index.d.ts +24 -0
  169. package/types/uni/uts-plugin-api/lib/uni-phoneContact/utssdk/interface.d.ts +349 -0
  170. package/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/global.d.ts +2 -0
  171. package/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/index.d.ts +1 -0
  172. package/types/uni/uts-plugin-api/lib/uni-privacy/utssdk/interface.d.ts +83 -124
  173. package/types/uni/uts-plugin-api/lib/uni-screenBrightness/utssdk/interface.d.ts +1157 -830
  174. package/types/uni/uts-plugin-api/lib/uni-share/utssdk/interface.d.ts +936 -335
  175. package/types/uni/uts-plugin-api/lib/uni-showLoading/utssdk/global.d.ts +8 -0
  176. package/types/uni/uts-plugin-api/lib/uni-showLoading/utssdk/index.d.ts +4 -0
  177. package/types/uni/uts-plugin-api/lib/uni-showLoading/utssdk/interface.d.ts +1155 -1142
  178. package/types/uni/uts-plugin-api/lib/uni-vibrate/utssdk/global.d.ts +27 -0
  179. package/types/uni/uts-plugin-api/lib/uni-vibrate/utssdk/index.d.ts +13 -0
  180. package/types/uni/uts-plugin-api/lib/uni-vibrate/utssdk/interface.d.ts +88 -0
  181. package/types/uni/uts-plugin-api/lib/uni-web-view/utssdk/interface.d.ts +6 -6
  182. package/types/uni/uts-plugin-biz/global.d.ts +9 -0
  183. package/types/uni/uts-plugin-biz/index.d.ts +9 -0
  184. package/types/uni/uts-plugin-biz/lib/uni-accelerometer/utssdk/global.d.ts +35 -0
  185. package/types/uni/uts-plugin-biz/lib/uni-accelerometer/utssdk/index.d.ts +17 -0
  186. package/types/uni/uts-plugin-biz/lib/uni-accelerometer/utssdk/interface.d.ts +359 -0
  187. package/types/uni/uts-plugin-biz/lib/uni-authentication/utssdk/global.d.ts +59 -0
  188. package/types/uni/uts-plugin-biz/lib/uni-authentication/utssdk/index.d.ts +29 -0
  189. package/types/uni/uts-plugin-biz/lib/uni-authentication/utssdk/interface.d.ts +371 -0
  190. package/types/uni/uts-plugin-biz/lib/uni-calendar/utssdk/global.d.ts +35 -0
  191. package/types/uni/uts-plugin-biz/lib/uni-calendar/utssdk/index.d.ts +17 -0
  192. package/types/uni/uts-plugin-biz/lib/uni-calendar/utssdk/interface.d.ts +944 -0
  193. package/types/uni/uts-plugin-biz/lib/uni-compass/utssdk/global.d.ts +35 -0
  194. package/types/uni/uts-plugin-biz/lib/uni-compass/utssdk/index.d.ts +17 -0
  195. package/types/uni/uts-plugin-biz/lib/uni-compass/utssdk/interface.d.ts +353 -0
  196. package/types/uni/uts-plugin-biz/lib/uni-gyroscope/utssdk/global.d.ts +35 -0
  197. package/types/uni/uts-plugin-biz/lib/uni-gyroscope/utssdk/index.d.ts +17 -0
  198. package/types/uni/uts-plugin-biz/lib/uni-gyroscope/utssdk/interface.d.ts +362 -0
  199. package/types/uni/uts-plugin-biz/lib/uni-memorywarning/utssdk/global.d.ts +21 -0
  200. package/types/uni/uts-plugin-biz/lib/uni-memorywarning/utssdk/index.d.ts +10 -0
  201. package/types/uni/uts-plugin-biz/lib/uni-memorywarning/utssdk/interface.d.ts +20 -0
  202. package/types/uni/uts-plugin-biz/lib/uni-phoneContact/utssdk/global.d.ts +49 -0
  203. package/types/uni/uts-plugin-biz/lib/uni-phoneContact/utssdk/index.d.ts +24 -0
  204. package/types/uni/uts-plugin-biz/lib/uni-phoneContact/utssdk/interface.d.ts +349 -0
  205. package/types/uni/uts-plugin-biz/lib/uni-screenBrightness/utssdk/global.d.ts +57 -0
  206. package/types/uni/uts-plugin-biz/lib/uni-screenBrightness/utssdk/index.d.ts +28 -0
  207. package/types/uni/uts-plugin-biz/lib/uni-screenBrightness/utssdk/interface.d.ts +1172 -0
  208. package/types/uni/uts-plugin-biz/lib/uni-verify/utssdk/interface.d.ts +6 -1
  209. package/types/uni/uts-plugin-biz/lib/uni-vibrate/utssdk/global.d.ts +27 -0
  210. package/types/uni/uts-plugin-biz/lib/uni-vibrate/utssdk/index.d.ts +13 -0
  211. package/types/uni/uts-plugin-biz/lib/uni-vibrate/utssdk/interface.d.ts +88 -0
  212. package/types/uni/uts-plugin-component/global.d.ts +8 -1
  213. package/types/uni/uts-plugin-component/index.d.ts +8 -1
  214. package/types/uni/uts-plugin-component/lib/uni-accelerometer/utssdk/global.d.ts +35 -0
  215. package/types/uni/uts-plugin-component/lib/uni-accelerometer/utssdk/index.d.ts +17 -0
  216. package/types/uni/uts-plugin-component/lib/uni-accelerometer/utssdk/interface.d.ts +359 -0
  217. package/types/uni/uts-plugin-component/lib/uni-authentication/utssdk/interface.d.ts +1342 -371
  218. package/types/uni/uts-plugin-component/lib/uni-calendar/utssdk/global.d.ts +35 -0
  219. package/types/uni/uts-plugin-component/lib/uni-calendar/utssdk/index.d.ts +17 -0
  220. package/types/uni/uts-plugin-component/lib/uni-calendar/utssdk/interface.d.ts +944 -0
  221. package/types/uni/uts-plugin-component/lib/uni-canvas-dom2/utssdk/interface.d.ts +2 -1
  222. package/types/uni/uts-plugin-component/lib/uni-compass/utssdk/global.d.ts +35 -0
  223. package/types/uni/uts-plugin-component/lib/uni-compass/utssdk/index.d.ts +17 -0
  224. package/types/uni/uts-plugin-component/lib/uni-compass/utssdk/interface.d.ts +353 -0
  225. package/types/uni/uts-plugin-component/lib/uni-dialogPage/utssdk/global.d.ts +0 -2
  226. package/types/uni/uts-plugin-component/lib/uni-dialogPage/utssdk/index.d.ts +0 -1
  227. package/types/uni/uts-plugin-component/lib/uni-dialogPage/utssdk/interface.d.ts +0 -1
  228. package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/global.d.ts +2 -0
  229. package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/index.d.ts +1 -0
  230. package/types/uni/uts-plugin-component/lib/uni-editor/utssdk/interface.d.ts +144 -110
  231. package/types/uni/uts-plugin-component/lib/uni-editor-global/utssdk/interface.d.ts +15 -5
  232. package/types/uni/uts-plugin-component/lib/uni-form-global/utssdk/interface.d.ts +1 -1
  233. package/types/uni/uts-plugin-component/lib/uni-getElementById/utssdk/interface.d.ts +1 -0
  234. package/types/uni/uts-plugin-component/lib/uni-getEnterOptionsSync/utssdk/interface.d.ts +531 -72
  235. package/types/uni/uts-plugin-component/lib/uni-getLaunchOptionsSync/utssdk/interface.d.ts +531 -72
  236. package/types/uni/uts-plugin-component/lib/uni-gyroscope/utssdk/global.d.ts +35 -0
  237. package/types/uni/uts-plugin-component/lib/uni-gyroscope/utssdk/index.d.ts +17 -0
  238. package/types/uni/uts-plugin-component/lib/uni-gyroscope/utssdk/interface.d.ts +362 -0
  239. package/types/uni/uts-plugin-component/lib/uni-keyboard/utssdk/interface.d.ts +6 -6
  240. package/types/uni/uts-plugin-component/lib/uni-makePhoneCall/utssdk/interface.d.ts +73 -67
  241. package/types/uni/uts-plugin-component/lib/uni-match-media-global/utssdk/interface.d.ts +1 -1
  242. package/types/uni/uts-plugin-component/lib/uni-memorywarning/utssdk/global.d.ts +21 -0
  243. package/types/uni/uts-plugin-component/lib/uni-memorywarning/utssdk/index.d.ts +10 -0
  244. package/types/uni/uts-plugin-component/lib/uni-memorywarning/utssdk/interface.d.ts +20 -0
  245. package/types/uni/uts-plugin-component/lib/uni-modal/utssdk/global.d.ts +8 -12
  246. package/types/uni/uts-plugin-component/lib/uni-modal/utssdk/index.d.ts +4 -6
  247. package/types/uni/uts-plugin-component/lib/uni-modal/utssdk/interface.d.ts +1743 -291
  248. package/types/uni/uts-plugin-component/lib/uni-navigator-global/utssdk/interface.d.ts +1 -1
  249. package/types/uni/uts-plugin-component/lib/uni-oauth/utssdk/interface.d.ts +12 -12
  250. package/types/uni/uts-plugin-component/lib/uni-openLocation/utssdk/global.d.ts +23 -0
  251. package/types/uni/uts-plugin-component/lib/uni-openLocation/utssdk/index.d.ts +11 -0
  252. package/types/uni/uts-plugin-component/lib/uni-openLocation/utssdk/interface.d.ts +420 -0
  253. package/types/uni/uts-plugin-component/lib/uni-phoneContact/utssdk/global.d.ts +49 -0
  254. package/types/uni/uts-plugin-component/lib/uni-phoneContact/utssdk/index.d.ts +24 -0
  255. package/types/uni/uts-plugin-component/lib/uni-phoneContact/utssdk/interface.d.ts +349 -0
  256. package/types/uni/uts-plugin-component/lib/uni-privacy/utssdk/global.d.ts +2 -0
  257. package/types/uni/uts-plugin-component/lib/uni-privacy/utssdk/index.d.ts +1 -0
  258. package/types/uni/uts-plugin-component/lib/uni-privacy/utssdk/interface.d.ts +132 -75
  259. package/types/uni/uts-plugin-component/lib/uni-progress-global/utssdk/interface.d.ts +1 -1
  260. package/types/uni/uts-plugin-component/lib/uni-screenBrightness/utssdk/interface.d.ts +1175 -314
  261. package/types/uni/uts-plugin-component/lib/uni-share/utssdk/interface.d.ts +936 -335
  262. package/types/uni/uts-plugin-component/lib/uni-showLoading/utssdk/global.d.ts +8 -0
  263. package/types/uni/uts-plugin-component/lib/uni-showLoading/utssdk/index.d.ts +4 -0
  264. package/types/uni/uts-plugin-component/lib/uni-showLoading/utssdk/interface.d.ts +1617 -446
  265. package/types/uni/uts-plugin-component/lib/uni-vibrate/utssdk/global.d.ts +27 -0
  266. package/types/uni/uts-plugin-component/lib/uni-vibrate/utssdk/index.d.ts +13 -0
  267. package/types/uni/uts-plugin-component/lib/uni-vibrate/utssdk/interface.d.ts +88 -0
  268. package/types/uni/uts-plugin-component/lib/uni-web-view/utssdk/interface.d.ts +6 -6
  269. package/types/uni/uts-plugin-extend/global.d.ts +0 -1
  270. package/types/uni/uts-plugin-extend/index.d.ts +0 -1
  271. package/types/uni/uts-plugin-extend/lib/uni-openLocation/utssdk/interface.d.ts +2 -1
  272. package/types/vue/LifeCycle.d.ts +2 -2
  273. package/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/global.d.ts +0 -12
  274. package/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/index.d.ts +0 -1
  275. package/types/uni/uts-plugin-extend/lib/uni-accelerometer/utssdk/interface.d.ts +0 -917
  276. package/types/uni/uts-plugin-extend/lib/uni-compass/utssdk/interface.d.ts +0 -1095
  277. package/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/global.d.ts +0 -9
  278. package/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/index.d.ts +0 -1
  279. package/types/uni/uts-plugin-extend/lib/uni-memory/utssdk/interface.d.ts +0 -253
@@ -26,6 +26,7 @@ export interface Uni {
26
26
  * "osVer": "5.0.0",
27
27
  * "uniVer": "x",
28
28
  * "unixVer": "4.61",
29
+ * "unixVaporVer": "5.0",
29
30
  * "unixUtsPlugin": "4.61"
30
31
  * }
31
32
  * },
@@ -20,7 +20,7 @@ export type OnShowOptions = {
20
20
  * "osVer": "3,0",
21
21
  * "uniVer": "4.31",
22
22
  * "unixVer": "4.61",
23
- * "unixVaporVer": "x"
23
+ * "unixVaporVer": "5.0"
24
24
  * }
25
25
  * },
26
26
  * "mp": {
@@ -93,7 +93,7 @@ export type OnShowOptions = {
93
93
  * "osVer": "5.0.0",
94
94
  * "uniVer": "4.81",
95
95
  * "unixVer": "4.81",
96
- * "unixVaporVer": "x"
96
+ * "unixVaporVer": "5.0"
97
97
  * }
98
98
  * },
99
99
  * "mp": {
@@ -166,7 +166,7 @@ export type OnShowOptions = {
166
166
  * "osVer": "5.0.0",
167
167
  * "uniVer": "4.81",
168
168
  * "unixVer": "4.81",
169
- * "unixVaporVer": "x"
169
+ * "unixVaporVer": "5.0"
170
170
  * }
171
171
  * },
172
172
  * "mp": {
@@ -240,7 +240,7 @@ export type OnShowOptions = {
240
240
  * "osVer": "5.0.0",
241
241
  * "uniVer": "4.81",
242
242
  * "unixVer": "4.81",
243
- * "unixVaporVer": "x"
243
+ * "unixVaporVer": "5.0"
244
244
  * }
245
245
  * },
246
246
  * "mp": {
@@ -291,7 +291,316 @@ export type OnShowOptions = {
291
291
  * }
292
292
  * }
293
293
  */
294
- query?: UTSJSONObject | null
294
+ query?: UTSJSONObject | null
295
+ /**
296
+ * 需要基础库: `2.20.0`
297
+ *
298
+ * API 类别
299
+ *
300
+ * 可选值:
301
+ * - 'default': 默认类别;
302
+ * - 'nativeFunctionalized': 原生功能化,视频号直播商品、商品橱窗等场景打开的小程序;
303
+ * - 'browseOnly': 仅浏览,朋友圈快照页等场景打开的小程序;
304
+ * - 'embedded': 内嵌,通过打开半屏小程序能力打开的小程序;
305
+ * - 'chatTool': 聊天工具,通过打开聊天工具能力打开的小程序;
306
+ *
307
+ * @uniPlatform {
308
+ * "mp": {
309
+ * "weixin": {
310
+ * "hostVer": "2.20.0",
311
+ * "uniVer": "√",
312
+ * "unixVer": "4.41"
313
+ * },
314
+ * "alipay": {
315
+ * "hostVer": "-",
316
+ * "uniVer": "-",
317
+ * "unixVer": "-"
318
+ * },
319
+ * "baidu": {
320
+ * "hostVer": "-",
321
+ * "uniVer": "-",
322
+ * "unixVer": "-"
323
+ * },
324
+ * "toutiao": {
325
+ * "hostVer": "-",
326
+ * "uniVer": "-",
327
+ * "unixVer": "-"
328
+ * },
329
+ * "lark": {
330
+ * "hostVer": "-",
331
+ * "uniVer": "-",
332
+ * "unixVer": "-"
333
+ * },
334
+ * "qq": {
335
+ * "hostVer": "-",
336
+ * "uniVer": "-",
337
+ * "unixVer": "-"
338
+ * },
339
+ * "kuaishou": {
340
+ * "hostVer": "-",
341
+ * "uniVer": "-",
342
+ * "unixVer": "-"
343
+ * },
344
+ * "jd": {
345
+ * "hostVer": "-",
346
+ * "uniVer": "-",
347
+ * "unixVer": "-"
348
+ * }
349
+ * }
350
+ * }
351
+ */
352
+ apiCategory?: "default" | "nativeFunctionalized" | "browseOnly" | "embedded" | "chatTool" | null;
353
+ /**
354
+ * 打开的文件信息数组,只有从聊天素材场景打开(scene为1173)才会携带该参数
355
+ *
356
+ * @uniPlatform {
357
+ * "mp": {
358
+ * "weixin": {
359
+ * "hostVer": "√",
360
+ * "uniVer": "√",
361
+ * "unixVer": "4.41"
362
+ * },
363
+ * "alipay": {
364
+ * "hostVer": "-",
365
+ * "uniVer": "-",
366
+ * "unixVer": "-"
367
+ * },
368
+ * "baidu": {
369
+ * "hostVer": "-",
370
+ * "uniVer": "-",
371
+ * "unixVer": "-"
372
+ * },
373
+ * "toutiao": {
374
+ * "hostVer": "-",
375
+ * "uniVer": "-",
376
+ * "unixVer": "-"
377
+ * },
378
+ * "lark": {
379
+ * "hostVer": "-",
380
+ * "uniVer": "-",
381
+ * "unixVer": "-"
382
+ * },
383
+ * "qq": {
384
+ * "hostVer": "-",
385
+ * "uniVer": "-",
386
+ * "unixVer": "-"
387
+ * },
388
+ * "kuaishou": {
389
+ * "hostVer": "-",
390
+ * "uniVer": "-",
391
+ * "unixVer": "-"
392
+ * },
393
+ * "jd": {
394
+ * "hostVer": "-",
395
+ * "uniVer": "-",
396
+ * "unixVer": "-"
397
+ * }
398
+ * }
399
+ * }
400
+ */
401
+ forwardMaterials?: any | null;
402
+ /**
403
+ * 来源信息。从另一个小程序、公众号或 App 进入小程序时返回。否则返回 `{}`。(参见后文注意)
404
+ *
405
+ * @uniPlatform {
406
+ * "mp": {
407
+ * "weixin": {
408
+ * "hostVer": "√",
409
+ * "uniVer": "√",
410
+ * "unixVer": "4.41"
411
+ * },
412
+ * "alipay": {
413
+ * "hostVer": "-",
414
+ * "uniVer": "-",
415
+ * "unixVer": "-"
416
+ * },
417
+ * "baidu": {
418
+ * "hostVer": "-",
419
+ * "uniVer": "-",
420
+ * "unixVer": "-"
421
+ * },
422
+ * "toutiao": {
423
+ * "hostVer": "-",
424
+ * "uniVer": "-",
425
+ * "unixVer": "-"
426
+ * },
427
+ * "lark": {
428
+ * "hostVer": "-",
429
+ * "uniVer": "-",
430
+ * "unixVer": "-"
431
+ * },
432
+ * "qq": {
433
+ * "hostVer": "-",
434
+ * "uniVer": "-",
435
+ * "unixVer": "-"
436
+ * },
437
+ * "kuaishou": {
438
+ * "hostVer": "-",
439
+ * "uniVer": "-",
440
+ * "unixVer": "-"
441
+ * },
442
+ * "jd": {
443
+ * "hostVer": "-",
444
+ * "uniVer": "-",
445
+ * "unixVer": "-"
446
+ * }
447
+ * }
448
+ * }
449
+ */
450
+ referrerInfo?: OnShowOptionsReferrerInfo | null;
451
+ /**
452
+ * @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/scene.html
453
+ *
454
+ * @uniPlatform {
455
+ * "mp": {
456
+ * "weixin": {
457
+ * "hostVer": "√",
458
+ * "uniVer": "√",
459
+ * "unixVer": "4.41"
460
+ * },
461
+ * "alipay": {
462
+ * "hostVer": "-",
463
+ * "uniVer": "-",
464
+ * "unixVer": "-"
465
+ * },
466
+ * "baidu": {
467
+ * "hostVer": "-",
468
+ * "uniVer": "-",
469
+ * "unixVer": "-"
470
+ * },
471
+ * "toutiao": {
472
+ * "hostVer": "-",
473
+ * "uniVer": "-",
474
+ * "unixVer": "-"
475
+ * },
476
+ * "lark": {
477
+ * "hostVer": "-",
478
+ * "uniVer": "-",
479
+ * "unixVer": "-"
480
+ * },
481
+ * "qq": {
482
+ * "hostVer": "-",
483
+ * "uniVer": "-",
484
+ * "unixVer": "-"
485
+ * },
486
+ * "kuaishou": {
487
+ * "hostVer": "-",
488
+ * "uniVer": "-",
489
+ * "unixVer": "-"
490
+ * },
491
+ * "jd": {
492
+ * "hostVer": "-",
493
+ * "uniVer": "-",
494
+ * "unixVer": "-"
495
+ * }
496
+ * }
497
+ * }
498
+ */
499
+ scene?: number | null;
500
+ /**
501
+ * 从微信群聊/单聊打开小程序时,chatType 表示具体微信群聊/单聊类型
502
+ *
503
+ * 可选值:
504
+ * - 1: 微信联系人单聊;
505
+ * - 2: 企业微信联系人单聊;
506
+ * - 3: 普通微信群聊;
507
+ * - 4: 企业微信互通群聊;
508
+ *
509
+ * @uniPlatform {
510
+ * "mp": {
511
+ * "weixin": {
512
+ * "hostVer": "√",
513
+ * "uniVer": "√",
514
+ * "unixVer": "4.41"
515
+ * },
516
+ * "alipay": {
517
+ * "hostVer": "-",
518
+ * "uniVer": "-",
519
+ * "unixVer": "-"
520
+ * },
521
+ * "baidu": {
522
+ * "hostVer": "-",
523
+ * "uniVer": "-",
524
+ * "unixVer": "-"
525
+ * },
526
+ * "toutiao": {
527
+ * "hostVer": "-",
528
+ * "uniVer": "-",
529
+ * "unixVer": "-"
530
+ * },
531
+ * "lark": {
532
+ * "hostVer": "-",
533
+ * "uniVer": "-",
534
+ * "unixVer": "-"
535
+ * },
536
+ * "qq": {
537
+ * "hostVer": "-",
538
+ * "uniVer": "-",
539
+ * "unixVer": "-"
540
+ * },
541
+ * "kuaishou": {
542
+ * "hostVer": "-",
543
+ * "uniVer": "-",
544
+ * "unixVer": "-"
545
+ * },
546
+ * "jd": {
547
+ * "hostVer": "-",
548
+ * "uniVer": "-",
549
+ * "unixVer": "-"
550
+ * }
551
+ * }
552
+ * }
553
+ */
554
+ chatType?: 1 | 2 | 3 | 4 | null;
555
+ /**
556
+ * @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html#获取更多转发信息
557
+ *
558
+ * @uniPlatform {
559
+ * "mp": {
560
+ * "weixin": {
561
+ * "hostVer": "√",
562
+ * "uniVer": "√",
563
+ * "unixVer": "4.41"
564
+ * },
565
+ * "alipay": {
566
+ * "hostVer": "-",
567
+ * "uniVer": "-",
568
+ * "unixVer": "-"
569
+ * },
570
+ * "baidu": {
571
+ * "hostVer": "-",
572
+ * "uniVer": "-",
573
+ * "unixVer": "-"
574
+ * },
575
+ * "toutiao": {
576
+ * "hostVer": "-",
577
+ * "uniVer": "-",
578
+ * "unixVer": "-"
579
+ * },
580
+ * "lark": {
581
+ * "hostVer": "-",
582
+ * "uniVer": "-",
583
+ * "unixVer": "-"
584
+ * },
585
+ * "qq": {
586
+ * "hostVer": "-",
587
+ * "uniVer": "-",
588
+ * "unixVer": "-"
589
+ * },
590
+ * "kuaishou": {
591
+ * "hostVer": "-",
592
+ * "uniVer": "-",
593
+ * "unixVer": "-"
594
+ * },
595
+ * "jd": {
596
+ * "hostVer": "-",
597
+ * "uniVer": "-",
598
+ * "unixVer": "-"
599
+ * }
600
+ * }
601
+ * }
602
+ */
603
+ shareTicket?: string | null;
295
604
  }
296
605
 
297
606
  export type GetEnterOptionsSync = () => OnShowOptions
@@ -303,72 +612,222 @@ export interface Uni {
303
612
  * @tutorial https://doc.dcloud.net.cn/uni-app-x/api/get-enter-options-sync.html
304
613
  * @tutorial_uni_app_x https://doc.dcloud.net.cn/uni-app-x/api/get-enter-options-sync.html
305
614
  * @tutorial_uni_app https://uniapp.dcloud.net.cn/api/getEnterOptionsSync.html
306
- * @uniPlatform {
307
- * "app": {
308
- * "android": {
309
- * "osVer": "5.0",
310
- * "uniVer": "x",
311
- * "unixVer": "4.25"
312
- * },
313
- * "ios": {
314
- * "osVer": "12.0",
315
- * "uniVer": "x",
316
- * "unixVer": "4.25"
317
- * },
318
- * "harmony": {
319
- * "osVer": "3,0",
320
- * "uniVer": "4.31",
321
- * "unixVer": "4.61",
322
- * "unixVaporVer": "x"
323
- * }
324
- * },
325
- * "mp": {
326
- * "weixin": {
327
- * "hostVer": "",
328
- * "uniVer": "√",
329
- * "unixVer": "4.41"
330
- * },
331
- * "alipay": {
332
- * "hostVer": "√",
333
- * "uniVer": "√",
334
- * "unixVer": "x"
335
- * },
336
- * "baidu": {
337
- * "hostVer": "√",
338
- * "uniVer": "√",
339
- * "unixVer": "x"
340
- * },
341
- * "toutiao": {
342
- * "hostVer": "√",
343
- * "uniVer": "√",
344
- * "unixVer": "x"
345
- * },
346
- * "lark": {
347
- * "hostVer": "√",
348
- * "uniVer": "√",
349
- * "unixVer": "x"
350
- * },
351
- * "qq": {
352
- * "hostVer": "√",
353
- * "uniVer": "√",
354
- * "unixVer": "x"
355
- * },
356
- * "kuaishou": {
357
- * "hostVer": "√",
358
- * "uniVer": "√",
359
- * "unixVer": "x"
360
- * },
361
- * "jd": {
362
- * "hostVer": "√",
363
- * "uniVer": "√",
364
- * "unixVer": "x"
365
- * }
366
- * },
367
- * "web": {
368
- * "uniVer": "√",
369
- * "unixVer": "4.0"
370
- * }
371
- * }
615
+ * @uniPlatform {
616
+ * "app": {
617
+ * "android": {
618
+ * "osVer": "5.0",
619
+ * "uniVer": "x",
620
+ * "unixVer": "4.25"
621
+ * },
622
+ * "ios": {
623
+ * "osVer": "12.0",
624
+ * "uniVer": "x",
625
+ * "unixVer": "4.25"
626
+ * },
627
+ * "harmony": {
628
+ * "osVer": "3,0",
629
+ * "uniVer": "4.31",
630
+ * "unixVer": "4.61",
631
+ * "unixVaporVer": "5.0"
632
+ * }
633
+ * },
634
+ * "mp": {
635
+ * "weixin": {
636
+ * "hostVer": "2.9.4",
637
+ * "uniVer": "√",
638
+ * "unixVer": "4.41"
639
+ * },
640
+ * "alipay": {
641
+ * "hostVer": "√",
642
+ * "uniVer": "√",
643
+ * "unixVer": "x"
644
+ * },
645
+ * "baidu": {
646
+ * "hostVer": "√",
647
+ * "uniVer": "√",
648
+ * "unixVer": "x"
649
+ * },
650
+ * "toutiao": {
651
+ * "hostVer": "√",
652
+ * "uniVer": "√",
653
+ * "unixVer": "x"
654
+ * },
655
+ * "lark": {
656
+ * "hostVer": "√",
657
+ * "uniVer": "√",
658
+ * "unixVer": "x"
659
+ * },
660
+ * "qq": {
661
+ * "hostVer": "√",
662
+ * "uniVer": "√",
663
+ * "unixVer": "x"
664
+ * },
665
+ * "kuaishou": {
666
+ * "hostVer": "√",
667
+ * "uniVer": "√",
668
+ * "unixVer": "x"
669
+ * },
670
+ * "jd": {
671
+ * "hostVer": "√",
672
+ * "uniVer": "√",
673
+ * "unixVer": "x"
674
+ * }
675
+ * },
676
+ * "web": {
677
+ * "uniVer": "√",
678
+ * "unixVer": "4.0"
679
+ * }
680
+ * }
681
+ * @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/api/base/app/life-cycle/wx.getEnterOptionsSync.html
372
682
  */
373
683
  getEnterOptionsSync(): OnShowOptions
374
- }
684
+ }
685
+
686
+ /**
687
+ * 来源信息。从另一个小程序、公众号或 App 进入小程序时返回。否则返回 `{}`。(参见后文注意)
688
+ *
689
+ * @uniPlatform {
690
+ * "mp": {
691
+ * "weixin": {
692
+ * "hostVer": "√",
693
+ * "uniVer": "√",
694
+ * "unixVer": "4.41"
695
+ * },
696
+ * "alipay": {
697
+ * "hostVer": "-",
698
+ * "uniVer": "-",
699
+ * "unixVer": "-"
700
+ * },
701
+ * "baidu": {
702
+ * "hostVer": "-",
703
+ * "uniVer": "-",
704
+ * "unixVer": "-"
705
+ * },
706
+ * "toutiao": {
707
+ * "hostVer": "-",
708
+ * "uniVer": "-",
709
+ * "unixVer": "-"
710
+ * },
711
+ * "lark": {
712
+ * "hostVer": "-",
713
+ * "uniVer": "-",
714
+ * "unixVer": "-"
715
+ * },
716
+ * "qq": {
717
+ * "hostVer": "-",
718
+ * "uniVer": "-",
719
+ * "unixVer": "-"
720
+ * },
721
+ * "kuaishou": {
722
+ * "hostVer": "-",
723
+ * "uniVer": "-",
724
+ * "unixVer": "-"
725
+ * },
726
+ * "jd": {
727
+ * "hostVer": "-",
728
+ * "uniVer": "-",
729
+ * "unixVer": "-"
730
+ * }
731
+ * }
732
+ * }
733
+ */
734
+ export type OnShowOptionsReferrerInfo = {
735
+ /**
736
+ * 来源小程序、公众号或 App 的 appId
737
+ *
738
+ * @uniPlatform {
739
+ * "mp": {
740
+ * "weixin": {
741
+ * "hostVer": "√",
742
+ * "uniVer": "√",
743
+ * "unixVer": "4.41"
744
+ * },
745
+ * "alipay": {
746
+ * "hostVer": "-",
747
+ * "uniVer": "-",
748
+ * "unixVer": "-"
749
+ * },
750
+ * "baidu": {
751
+ * "hostVer": "-",
752
+ * "uniVer": "-",
753
+ * "unixVer": "-"
754
+ * },
755
+ * "toutiao": {
756
+ * "hostVer": "-",
757
+ * "uniVer": "-",
758
+ * "unixVer": "-"
759
+ * },
760
+ * "lark": {
761
+ * "hostVer": "-",
762
+ * "uniVer": "-",
763
+ * "unixVer": "-"
764
+ * },
765
+ * "qq": {
766
+ * "hostVer": "-",
767
+ * "uniVer": "-",
768
+ * "unixVer": "-"
769
+ * },
770
+ * "kuaishou": {
771
+ * "hostVer": "-",
772
+ * "uniVer": "-",
773
+ * "unixVer": "-"
774
+ * },
775
+ * "jd": {
776
+ * "hostVer": "-",
777
+ * "uniVer": "-",
778
+ * "unixVer": "-"
779
+ * }
780
+ * }
781
+ * }
782
+ */
783
+ appId?: string | null;
784
+ /**
785
+ * 来源小程序传过来的数据,scene=1037或1038时支持
786
+ *
787
+ * @uniPlatform {
788
+ * "mp": {
789
+ * "weixin": {
790
+ * "hostVer": "√",
791
+ * "uniVer": "√",
792
+ * "unixVer": "4.41"
793
+ * },
794
+ * "alipay": {
795
+ * "hostVer": "-",
796
+ * "uniVer": "-",
797
+ * "unixVer": "-"
798
+ * },
799
+ * "baidu": {
800
+ * "hostVer": "-",
801
+ * "uniVer": "-",
802
+ * "unixVer": "-"
803
+ * },
804
+ * "toutiao": {
805
+ * "hostVer": "-",
806
+ * "uniVer": "-",
807
+ * "unixVer": "-"
808
+ * },
809
+ * "lark": {
810
+ * "hostVer": "-",
811
+ * "uniVer": "-",
812
+ * "unixVer": "-"
813
+ * },
814
+ * "qq": {
815
+ * "hostVer": "-",
816
+ * "uniVer": "-",
817
+ * "unixVer": "-"
818
+ * },
819
+ * "kuaishou": {
820
+ * "hostVer": "-",
821
+ * "uniVer": "-",
822
+ * "unixVer": "-"
823
+ * },
824
+ * "jd": {
825
+ * "hostVer": "-",
826
+ * "uniVer": "-",
827
+ * "unixVer": "-"
828
+ * }
829
+ * }
830
+ * }
831
+ */
832
+ extraData?: any | null
833
+ };