@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
@@ -0,0 +1,349 @@
1
+ export interface Uni {
2
+ /**
3
+ * 手机通讯录联系人和联系方式的增加
4
+ *
5
+ * @tutorial https://doc.dcloud.net.cn/uni-app-x/api/contact.html#addphonecontact
6
+ * @tutorial_uni_app_x https://doc.dcloud.net.cn/uni-app-x/api/contact.html#addphonecontact
7
+ * @tutorial_uni_app https://uniapp.dcloud.net.cn/api/system/contact.html#addphonecontact
8
+ *
9
+ * @uniPlatform {
10
+ * "app": {
11
+ * "android": {
12
+ * "osVer": "5.0",
13
+ * "uniVer": "√",
14
+ * "unixVer": "5.08"
15
+ * },
16
+ * "ios": {
17
+ * "osVer": "12.0",
18
+ * "uniVer": "√",
19
+ * "unixVer": "5.08"
20
+ * },
21
+ * "harmony": {
22
+ * "osVer": "5.0.0",
23
+ * "uniVer": "4.25",
24
+ * "unixVer": "4.61",
25
+ * "unixvVer": "5.0"
26
+ * }
27
+ * },
28
+ * "web": {
29
+ * "uniVer": "x",
30
+ * "unixVer": "x"
31
+ * },
32
+ * "mp":{
33
+ * "weixin": {
34
+ * "hostVer": "√",
35
+ * "uniVer": "√",
36
+ * "unixVer": "4.41"
37
+ * },
38
+ * "alipay": {
39
+ * "hostVer": "√",
40
+ * "uniVer": "√",
41
+ * "unixVer": "x"
42
+ * },
43
+ * "baidu": {
44
+ * "hostVer": "√",
45
+ * "uniVer": "√",
46
+ * "unixVer": "x"
47
+ * },
48
+ * "toutiao": {
49
+ * "hostVer": "x",
50
+ * "uniVer": "x",
51
+ * "unixVer": "x"
52
+ * },
53
+ * "lark": {
54
+ * "hostVer": "x",
55
+ * "uniVer": "x",
56
+ * "unixVer": "x"
57
+ * },
58
+ * "qq": {
59
+ * "hostVer": "x",
60
+ * "uniVer": "x",
61
+ * "unixVer": "x"
62
+ * },
63
+ * "kuaishou": {
64
+ * "hostVer": "√",
65
+ * "uniVer": "√",
66
+ * "unixVer": "x"
67
+ * },
68
+ * "jd": {
69
+ * "hostVer": "x",
70
+ * "uniVer": "x",
71
+ * "unixVer": "x"
72
+ * }
73
+ * }
74
+ * }
75
+ */
76
+ addPhoneContact(options: AddPhoneContactOptions): void;
77
+ /**
78
+ * 拉起手机通讯录,选择联系人
79
+ *
80
+ * @tutorial https://doc.dcloud.net.cn/uni-app-x/api/contact.html#choosecontact
81
+ * @tutorial_uni_app_x https://doc.dcloud.net.cn/uni-app-x/api/contact.html#choosecontact
82
+ * @tutorial_mp_weixin https://developers.weixin.qq.com/miniprogram/dev/api/device/contact/wx.chooseContact.html
83
+ *
84
+ * @uniPlatform {
85
+ * "app": {
86
+ * "android": {
87
+ * "osVer": "5.0",
88
+ * "uniVer": "√",
89
+ * "unixVer": "5.08"
90
+ * },
91
+ * "ios": {
92
+ * "osVer": "12.0",
93
+ * "uniVer": "√",
94
+ * "unixVer": "5.08"
95
+ * },
96
+ * "harmony": {
97
+ * "osVer": "5.0.0",
98
+ * "uniVer": "4.25",
99
+ * "unixVer": "4.61",
100
+ * "unixvVer": "5.0"
101
+ * }
102
+ * },
103
+ * "web": {
104
+ * "uniVer": "x",
105
+ * "unixVer": "x"
106
+ * },
107
+ * "mp":{
108
+ * "weixin": {
109
+ * "hostVer": "2.8.0",
110
+ * "uniVer": "√",
111
+ * "unixVer": "4.41"
112
+ * },
113
+ * "alipay": {
114
+ * "hostVer": "√",
115
+ * "uniVer": "√",
116
+ * "unixVer": "x"
117
+ * },
118
+ * "baidu": {
119
+ * "hostVer": "√",
120
+ * "uniVer": "√",
121
+ * "unixVer": "x"
122
+ * },
123
+ * "toutiao": {
124
+ * "hostVer": "x",
125
+ * "uniVer": "x",
126
+ * "unixVer": "x"
127
+ * },
128
+ * "lark": {
129
+ * "hostVer": "x",
130
+ * "uniVer": "x",
131
+ * "unixVer": "x"
132
+ * },
133
+ * "qq": {
134
+ * "hostVer": "x",
135
+ * "uniVer": "x",
136
+ * "unixVer": "x"
137
+ * },
138
+ * "kuaishou": {
139
+ * "hostVer": "√",
140
+ * "uniVer": "√",
141
+ * "unixVer": "x"
142
+ * },
143
+ * "jd": {
144
+ * "hostVer": "x",
145
+ * "uniVer": "x",
146
+ * "unixVer": "x"
147
+ * }
148
+ * }
149
+ * }
150
+ */
151
+ chooseContact(options: ChooseContactOptions): void;
152
+ }
153
+
154
+ export type AddPhoneContact = (options: AddPhoneContactOptions) => void;
155
+ export type AddPhoneContactSuccess = {};
156
+ export type AddPhoneContactSuccessCallback = (result: AddPhoneContactSuccess) => void;
157
+ export type AddPhoneContactErrorCode = 601 | 602 | 603;
158
+ export interface IAddPhoneContactFail extends IUniError {
159
+ errCode: AddPhoneContactErrorCode
160
+ }
161
+ export type AddPhoneContactFail = UniError;
162
+ export type AddPhoneContactFailCallback = (result: AddPhoneContactFail) => void;
163
+ export type AddPhoneContactComplete = any;
164
+ export type AddPhoneContactCompleteCallback = (result: AddPhoneContactComplete) => void;
165
+ export type AddPhoneContactOptions = {
166
+ /**
167
+ * 头像本地文件路径
168
+ */
169
+ photoFilePath?: string | null,
170
+ /**
171
+ * 昵称
172
+ */
173
+ nickName?: string | null,
174
+ /**
175
+ * 姓氏
176
+ */
177
+ lastName?: string | null,
178
+ /**
179
+ * 中间名
180
+ */
181
+ middleName?: string | null,
182
+ /**
183
+ * 名字
184
+ */
185
+ firstName?: string | null,
186
+ /**
187
+ * 备注
188
+ */
189
+ remark?: string | null,
190
+ /**
191
+ * 手机号
192
+ */
193
+ mobilePhoneNumber?: string | null,
194
+ /**
195
+ * 即时消息账号
196
+ */
197
+ weChatNumber?: string | null,
198
+ /**
199
+ * 联系地址国家
200
+ */
201
+ addressCountry?: string | null,
202
+ /**
203
+ * 联系地址省份
204
+ */
205
+ addressState?: string | null,
206
+ /**
207
+ * 联系地址城市
208
+ */
209
+ addressCity?: string | null,
210
+ /**
211
+ * 联系地址街道
212
+ */
213
+ addressStreet?: string | null,
214
+ /**
215
+ * 联系地址邮政编码
216
+ */
217
+ addressPostalCode?: string | null,
218
+ /**
219
+ * 公司
220
+ */
221
+ organization?: string | null,
222
+ /**
223
+ * 职位
224
+ */
225
+ title?: string | null,
226
+ /**
227
+ * 工作传真
228
+ */
229
+ workFaxNumber?: string | null,
230
+ /**
231
+ * 工作电话
232
+ */
233
+ workPhoneNumber?: string | null,
234
+ /**
235
+ * 公司电话
236
+ */
237
+ hostNumber?: string | null,
238
+ /**
239
+ * 电子邮件
240
+ */
241
+ email?: string | null,
242
+ /**
243
+ * 网站
244
+ */
245
+ url?: string | null,
246
+ /**
247
+ * 工作地址国家
248
+ */
249
+ workAddressCountry?: string | null,
250
+ /**
251
+ * 工作地址省份
252
+ */
253
+ workAddressState?: string | null,
254
+ /**
255
+ * 工作地址城市
256
+ */
257
+ workAddressCity?: string | null,
258
+ /**
259
+ * 工作地址街道
260
+ */
261
+ workAddressStreet?: string | null,
262
+ /**
263
+ * 工作地址邮政编码
264
+ */
265
+ workAddressPostalCode?: string | null,
266
+ /**
267
+ * 住宅传真
268
+ */
269
+ homeFaxNumber?: string | null,
270
+ /**
271
+ * 住宅电话
272
+ */
273
+ homePhoneNumber?: string | null,
274
+ /**
275
+ * 住宅地址国家
276
+ */
277
+ homeAddressCountry?: string | null,
278
+ /**
279
+ * 住宅地址省份
280
+ */
281
+ homeAddressState?: string | null,
282
+ /**
283
+ * 住宅地址城市
284
+ */
285
+ homeAddressCity?: string | null,
286
+ /**
287
+ * 住宅地址街道
288
+ */
289
+ homeAddressStreet?: string | null,
290
+ /**
291
+ * 住宅地址邮政编码
292
+ */
293
+ homeAddressPostalCode?: string | null,
294
+ /**
295
+ * 接口调用成功的回调函数
296
+ */
297
+ success?: AddPhoneContactSuccessCallback | null,
298
+ /**
299
+ * 接口调用失败的回调函数
300
+ */
301
+ fail?: AddPhoneContactFailCallback | null,
302
+ /**
303
+ * 接口调用结束的回调函数(调用成功、失败都会执行)
304
+ */
305
+ complete?: AddPhoneContactCompleteCallback | null
306
+ };
307
+
308
+ export type ChooseContact = (options: ChooseContactOptions) => void;
309
+ export type ChooseContactSuccess = {
310
+ /**
311
+ * 联系人姓名
312
+ */
313
+ displayName: string
314
+ /**
315
+ * 当前选中的手机号
316
+ */
317
+ phoneNumber: string
318
+ /**
319
+ * 联系人的所有手机号
320
+ */
321
+ phoneNumberList: Array<string>
322
+ /**
323
+ * 接口调用结果
324
+ */
325
+ errMsg: string
326
+ };
327
+ export type ChooseContactSuccessCallback = (result: ChooseContactSuccess) => void;
328
+ export type ChooseContactErrorCode = 601 | 602 | 603;
329
+ export interface IChooseContactFail extends IUniError {
330
+ errCode: ChooseContactErrorCode
331
+ }
332
+ export type ChooseContactFail = UniError;
333
+ export type ChooseContactFailCallback = (result: ChooseContactFail) => void;
334
+ export type ChooseContactComplete = ChooseContactSuccess | ChooseContactFail;
335
+ export type ChooseContactCompleteCallback = (result: ChooseContactComplete) => void;
336
+ export type ChooseContactOptions = {
337
+ /**
338
+ * 接口调用成功的回调函数
339
+ */
340
+ success?: ChooseContactSuccessCallback | null,
341
+ /**
342
+ * 接口调用失败的回调函数
343
+ */
344
+ fail?: ChooseContactFailCallback | null,
345
+ /**
346
+ * 接口调用结束的回调函数(调用成功、失败都会执行)
347
+ */
348
+ complete?: ChooseContactCompleteCallback | null
349
+ };
@@ -9,6 +9,7 @@
9
9
  GetPrivacySettingFailCallback as GetPrivacySettingFailCallbackOrigin,
10
10
  GetPrivacySettingCompleteCallback as GetPrivacySettingCompleteCallbackOrigin,
11
11
  ResetPrivacyAuthorization as ResetPrivacyAuthorizationOrigin,
12
+ AgreePrivacyAuthorization as AgreePrivacyAuthorizationOrigin,
12
13
  GetPrivacySettingSuccessResult as GetPrivacySettingSuccessResultOrigin,
13
14
  GetPrivacySettingOptions as GetPrivacySettingOptionsOrigin,
14
15
  Uni as UniOrigin
@@ -24,6 +25,7 @@
24
25
  type GetPrivacySettingFailCallback = GetPrivacySettingFailCallbackOrigin
25
26
  type GetPrivacySettingCompleteCallback = GetPrivacySettingCompleteCallbackOrigin
26
27
  type ResetPrivacyAuthorization = ResetPrivacyAuthorizationOrigin
28
+ type AgreePrivacyAuthorization = AgreePrivacyAuthorizationOrigin
27
29
  type GetPrivacySettingSuccessResult = GetPrivacySettingSuccessResultOrigin
28
30
  type GetPrivacySettingOptions = GetPrivacySettingOptionsOrigin
29
31
  interface Uni extends UniOrigin { }
@@ -9,6 +9,7 @@
9
9
  GetPrivacySettingFailCallback,
10
10
  GetPrivacySettingCompleteCallback,
11
11
  ResetPrivacyAuthorization,
12
+ AgreePrivacyAuthorization,
12
13
  GetPrivacySettingSuccessResult,
13
14
  GetPrivacySettingOptions,
14
15
  } from './interface'
@@ -85,75 +85,76 @@ export interface Uni {
85
85
  * 获取隐私协议状态
86
86
  * @tutorial https://doc.dcloud.net.cn/uni-app-x/api/privacy.html#getprivacysetting
87
87
  * @tutorial_uni_app_x https://doc.dcloud.net.cn/uni-app-x/api/privacy.html#getprivacysetting
88
- * @uniPlatform {
89
- * "app": {
90
- * "android": {
91
- * "osVer": "5.0",
92
- * "uniVer": "4.31",
93
- * "uniUtsPlugin": "4.31",
94
- * "unixVer": "4.31"
95
- * },
96
- * "ios": {
97
- * "osVer": "12.0",
98
- * "uniVer": "4.31",
99
- * "uniUtsPlugin": "4.31",
100
- * "unixVer": "4.31",
101
- * "unixUtsPlugin": "4.31"
102
- * },
103
- * "harmony": {
104
- * "osVer": "5.0",
105
- * "uniVer": "x",
106
- * "unixVer": "4.61",
107
- * "unixVaporVer": "5.0"
108
- * }
109
- * },
110
- * "mp": {
111
- * "weixin": {
112
- * "hostVer": "2.32.3",
113
- * "uniVer": "√",
114
- * "unixVer": "4.41"
115
- * },
116
- * "alipay": {
117
- * "hostVer": "√",
118
- * "uniVer": "√",
119
- * "unixVer": "x"
120
- * },
121
- * "baidu": {
122
- * "hostVer": "√",
123
- * "uniVer": "√",
124
- * "unixVer": "x"
125
- * },
126
- * "toutiao": {
127
- * "hostVer": "√",
128
- * "uniVer": "√",
129
- * "unixVer": "x"
130
- * },
131
- * "lark": {
132
- * "hostVer": "√",
133
- * "uniVer": "√",
134
- * "unixVer": "x"
135
- * },
136
- * "qq": {
137
- * "hostVer": "√",
138
- * "uniVer": "√",
139
- * "unixVer": "x"
140
- * },
141
- * "kuaishou": {
142
- * "hostVer": "√",
143
- * "uniVer": "√",
144
- * "unixVer": "x"
145
- * },
146
- * "jd": {
147
- * "hostVer": "√",
148
- * "uniVer": "√",
149
- * "unixVer": "x"
150
- * }
151
- * },
152
- * "web": {
153
- * "uniVer": "x",
154
- * "unixVer": "x"
155
- * }
156
- * }
88
+ * @uniPlatform
89
+ {
90
+ "app": {
91
+ "android": {
92
+ "osVer": "5.0",
93
+ "uniVer": "4.31",
94
+ "uniUtsPlugin": "4.31",
95
+ "unixVer": "4.31"
96
+ },
97
+ "ios": {
98
+ "osVer": "12.0",
99
+ "uniVer": "4.31",
100
+ "uniUtsPlugin": "4.31",
101
+ "unixVer": "4.31",
102
+ "unixUtsPlugin": "4.31"
103
+ },
104
+ "harmony": {
105
+ "osVer": "5.0",
106
+ "uniVer": "x",
107
+ "unixVer": "4.61",
108
+ "unixVaporVer": "5.0"
109
+ }
110
+ },
111
+ "mp": {
112
+ "weixin": {
113
+ "hostVer": "√",
114
+ "uniVer": "",
115
+ "unixVer": "4.41"
116
+ },
117
+ "alipay": {
118
+ "hostVer": "√",
119
+ "uniVer": "",
120
+ "unixVer": "x"
121
+ },
122
+ "baidu": {
123
+ "hostVer": "√",
124
+ "uniVer": "",
125
+ "unixVer": "x"
126
+ },
127
+ "toutiao": {
128
+ "hostVer": "√",
129
+ "uniVer": "",
130
+ "unixVer": "x"
131
+ },
132
+ "lark": {
133
+ "hostVer": "√",
134
+ "uniVer": "",
135
+ "unixVer": "x"
136
+ },
137
+ "qq": {
138
+ "hostVer": "√",
139
+ "uniVer": "",
140
+ "unixVer": "x"
141
+ },
142
+ "kuaishou": {
143
+ "hostVer": "√",
144
+ "uniVer": "",
145
+ "unixVer": "x"
146
+ },
147
+ "jd": {
148
+ "hostVer": "√",
149
+ "uniVer": "",
150
+ "unixVer": "x"
151
+ }
152
+ },
153
+ "web": {
154
+ "uniVer": "x",
155
+ "unixVer": "x"
156
+ }
157
+ }
157
158
  * @example
158
159
  ```typescript
159
160
  uni.getPrivacySetting({
@@ -167,9 +168,8 @@ export interface Uni {
167
168
  console.log('complete')
168
169
  }
169
170
  })
170
- ```
171
- * @tutorial_weixin https://developers.weixin.qq.com/miniprogram/dev/api/open-api/privacy/wx.getPrivacySetting.html
172
- */
171
+ ```
172
+ */
173
173
  getPrivacySetting(options: GetPrivacySettingOptions): void
174
174
 
175
175
  /**
@@ -209,7 +209,14 @@ export interface Uni {
209
209
  uni.resetPrivacyAuthorization()
210
210
  ```
211
211
  */
212
- resetPrivacyAuthorization(): void
212
+ resetPrivacyAuthorization(): void
213
+
214
+ /**
215
+ * 设置隐私协议状态为同意
216
+ * @internal
217
+ *
218
+ */
219
+ agreePrivacyAuthorization(): void
213
220
  }
214
221
 
215
222
  export type OnPrivacyAuthorizationChange = (callback: OnPrivacyAuthorizationChangeCallback) => number
@@ -258,7 +265,8 @@ export type GetPrivacySetting = (options: GetPrivacySettingOptions) => void
258
265
  export type GetPrivacySettingSuccessCallback = (result: GetPrivacySettingSuccessResult) => void;
259
266
  export type GetPrivacySettingFailCallback = (result: any) => void;
260
267
  export type GetPrivacySettingCompleteCallback = (result: any) => void;
261
- export type ResetPrivacyAuthorization = () => void
268
+ export type ResetPrivacyAuthorization = () => void;
269
+ export type AgreePrivacyAuthorization = () => void;
262
270
 
263
271
  export type GetPrivacySettingSuccessResult = {
264
272
  /**
@@ -334,56 +342,7 @@ export type GetPrivacySettingSuccessResult = {
334
342
  }
335
343
  }
336
344
  */
337
- needAuthorization: boolean
338
- /**
339
- * 隐私授权协议的名称
340
- *
341
- * @uniPlatform {
342
- * "mp": {
343
- * "weixin": {
344
- * "hostVer": "√",
345
- * "uniVer": "√",
346
- * "unixVer": "4.41"
347
- * },
348
- * "alipay": {
349
- * "hostVer": "-",
350
- * "uniVer": "-",
351
- * "unixVer": "-"
352
- * },
353
- * "baidu": {
354
- * "hostVer": "-",
355
- * "uniVer": "-",
356
- * "unixVer": "-"
357
- * },
358
- * "toutiao": {
359
- * "hostVer": "-",
360
- * "uniVer": "-",
361
- * "unixVer": "-"
362
- * },
363
- * "lark": {
364
- * "hostVer": "-",
365
- * "uniVer": "-",
366
- * "unixVer": "-"
367
- * },
368
- * "qq": {
369
- * "hostVer": "-",
370
- * "uniVer": "-",
371
- * "unixVer": "-"
372
- * },
373
- * "kuaishou": {
374
- * "hostVer": "-",
375
- * "uniVer": "-",
376
- * "unixVer": "-"
377
- * },
378
- * "jd": {
379
- * "hostVer": "-",
380
- * "uniVer": "-",
381
- * "unixVer": "-"
382
- * }
383
- * }
384
- * }
385
- */
386
- privacyContractName?: string | null;
345
+ needAuthorization: boolean
387
346
  }
388
347
 
389
348
  export type GetPrivacySettingOptions = {