@tarojs/taro-h5 3.7.0-alpha.12 → 3.7.0-alpha.13
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.
- package/dist/api/canvas/CanvasContext.d.ts +1 -1
- package/dist/api/canvas/CanvasContext.js +13 -2
- package/dist/api/canvas/CanvasContext.js.map +1 -1
- package/dist/api/index.js +3 -1
- package/dist/api/index.js.map +1 -1
- package/dist/api/open-api/favorites.d.ts +1 -2
- package/dist/api/open-api/favorites.js +1 -2
- package/dist/api/open-api/favorites.js.map +1 -1
- package/dist/api/open-api/index.d.ts +2 -0
- package/dist/api/open-api/index.js +3 -1
- package/dist/api/open-api/index.js.map +1 -1
- package/dist/api/open-api/my-miniprogram.d.ts +2 -0
- package/dist/api/open-api/my-miniprogram.js +7 -0
- package/dist/api/open-api/my-miniprogram.js.map +1 -0
- package/dist/api/open-api/privacy.d.ts +5 -0
- package/dist/api/open-api/privacy.js +10 -0
- package/dist/api/open-api/privacy.js.map +1 -0
- package/dist/api/taro.js +16 -8
- package/dist/api/taro.js.map +1 -1
- package/dist/index.cjs.d.ts +8 -2
- package/dist/index.cjs.js +42 -11
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.d.ts +8 -2
- package/dist/index.esm.js +39 -12
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -88,11 +88,13 @@ export { getChannelsLiveInfo, getChannelsLiveNoticeInfo, getChannelsShareKey, op
|
|
|
88
88
|
export { openCustomerServiceChat } from './api/open-api/customer-service.js';
|
|
89
89
|
export { getDeviceVoIPList, requestDeviceVoIP } from './api/open-api/device-voip.js';
|
|
90
90
|
export { checkIsSupportFacialRecognition, faceVerifyForPay, startFacialRecognitionVerify, startFacialRecognitionVerifyAndUploadVideo } from './api/open-api/facial.js';
|
|
91
|
-
export { addFileToFavorites, addVideoToFavorites
|
|
91
|
+
export { addFileToFavorites, addVideoToFavorites } from './api/open-api/favorites.js';
|
|
92
92
|
export { getGroupEnterInfo } from './api/open-api/group.js';
|
|
93
93
|
export { chooseInvoice, chooseInvoiceTitle } from './api/open-api/invoice.js';
|
|
94
94
|
export { chooseLicensePlate } from './api/open-api/license-plate.js';
|
|
95
95
|
export { checkSession, login, pluginLogin } from './api/open-api/login.js';
|
|
96
|
+
export { checkIsAddedToMyMiniProgram } from './api/open-api/my-miniprogram.js';
|
|
97
|
+
export { getPrivacySetting, onNeedPrivacyAuthorization, openPrivacyContract, requirePrivacyAuthorize } from './api/open-api/privacy.js';
|
|
96
98
|
export { showRedPackage } from './api/open-api/red-package.js';
|
|
97
99
|
export { getSetting, openSetting } from './api/open-api/settings.js';
|
|
98
100
|
export { checkIsSoterEnrolledInDevice, checkIsSupportSoterAuthentication, startSoterAuthentication } from './api/open-api/soter.js';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/taro-h5",
|
|
3
|
-
"version": "3.7.0-alpha.
|
|
3
|
+
"version": "3.7.0-alpha.13",
|
|
4
4
|
"description": "Taro h5 framework",
|
|
5
5
|
"browser": "dist/index.js",
|
|
6
6
|
"main:h5": "dist/index.esm.js",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"jsonp-retry": "^1.0.3",
|
|
37
37
|
"query-string": "^7.1.1",
|
|
38
38
|
"whatwg-fetch": "^3.4.0",
|
|
39
|
-
"@tarojs/api": "3.7.0-alpha.
|
|
40
|
-
"@tarojs/components": "3.7.0-alpha.
|
|
41
|
-
"@tarojs/router": "3.7.0-alpha.
|
|
42
|
-
"@tarojs/runtime": "3.7.0-alpha.
|
|
43
|
-
"@tarojs/shared": "3.7.0-alpha.
|
|
39
|
+
"@tarojs/api": "3.7.0-alpha.13",
|
|
40
|
+
"@tarojs/components": "3.7.0-alpha.13",
|
|
41
|
+
"@tarojs/router": "3.7.0-alpha.13",
|
|
42
|
+
"@tarojs/runtime": "3.7.0-alpha.13",
|
|
43
|
+
"@tarojs/shared": "3.7.0-alpha.13"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@babel/core": "^7.14.5",
|