hylid-bridge 2.7.2 → 2.8.0
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/CHANGELOG.md +20 -0
- package/canIUse.json +1 -1
- package/lib/bridges.d.ts +6 -0
- package/lib/bridges.js +70 -0
- package/lib/clients/mp/alipay_plus/canIUse.d.ts +2 -0
- package/lib/clients/mp/alipay_plus/canIUse.js +3 -0
- package/lib/clients/mp/alipay_plus/createSelectorQuery.d.ts +2 -0
- package/lib/clients/mp/alipay_plus/createSelectorQuery.js +2 -0
- package/lib/clients/mp/alipay_plus/custom.d.ts +3 -1
- package/lib/clients/mp/alipay_plus/custom.js +4 -1
- package/lib/clients/mp/alipay_plus/generated.d.ts +7 -0
- package/lib/clients/mp/alipay_plus/generated.js +15 -1
- package/lib/clients/mp/alipay_plus/getStorageInfo.d.ts +2 -0
- package/lib/clients/mp/alipay_plus/getStorageInfo.js +2 -0
- package/lib/clients/mp/alipay_plus/getStorageInfoSync.d.ts +2 -0
- package/lib/clients/mp/alipay_plus/getStorageInfoSync.js +2 -0
- package/lib/clients/mp/alipay_plus/getSystemInfoSync.d.ts +2 -0
- package/lib/clients/mp/alipay_plus/getSystemInfoSync.js +2 -0
- package/lib/clients/mp/alipay_plus/index.d.ts +8 -0
- package/lib/clients/mp/alipay_plus/onMessage.d.ts +2 -0
- package/lib/clients/mp/alipay_plus/onMessage.js +2 -0
- package/lib/clients/mp/alipay_plus/postMessage.d.ts +2 -0
- package/lib/clients/mp/alipay_plus/postMessage.js +2 -0
- package/lib/clients/mp/alipay_plus/showSharePanel.d.ts +2 -0
- package/lib/clients/mp/alipay_plus/showSharePanel.js +2 -0
- package/lib/common/apis/generated/canIUse.d.ts +2 -0
- package/lib/common/apis/generated/canIUse.js +4 -0
- package/lib/common/apis/generated/createSelectorQuery.d.ts +2 -0
- package/lib/common/apis/generated/createSelectorQuery.js +4 -0
- package/lib/common/apis/generated/getStorageInfo.d.ts +2 -0
- package/lib/common/apis/generated/getStorageInfo.js +4 -0
- package/lib/common/apis/generated/getStorageInfoSync.d.ts +2 -0
- package/lib/common/apis/generated/getStorageInfoSync.js +4 -0
- package/lib/common/apis/generated/getSystemInfoSync.d.ts +2 -0
- package/lib/common/apis/generated/getSystemInfoSync.js +4 -0
- package/lib/common/apis/generated/onMessage.d.ts +2 -0
- package/lib/common/apis/generated/onMessage.js +4 -0
- package/lib/common/apis/generated/postMessage.d.ts +2 -0
- package/lib/common/apis/generated/postMessage.js +4 -0
- package/lib/common/apis/generated/showSharePanel.d.ts +2 -0
- package/lib/common/apis/generated/showSharePanel.js +4 -0
- package/lib/common/whichCanIUse.d.ts +3 -0
- package/lib/common/{canIUse.js → whichCanIUse.js} +10 -4
- package/lib/index.d.ts +1 -2
- package/lib/index.js +1 -2
- package/lib/types/mp.d.ts +6 -0
- package/lib/umd/index.js +1 -1
- package/lib/umd/mp_alipay_plus.js +1 -1
- package/lib/umd/web_h5.js +1 -1
- package/package.json +2 -2
- package/lib/common/canIUse.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hylid-bridge",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"description": "Unite Api For MiniProgram Project",
|
|
6
6
|
"scripts": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@babel/runtime": "7.18.9",
|
|
22
22
|
"@goldfishjs/utils": "^2.18.0",
|
|
23
23
|
"@types/miniprogram": "^1.0.3",
|
|
24
|
-
"miniapp-web-jsapi": "^2.
|
|
24
|
+
"miniapp-web-jsapi": "^2.8.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@babel/preset-typescript": "7.17.12",
|
package/lib/common/canIUse.d.ts
DELETED