@ray-js/api 1.4.48 → 1.4.49
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/lib/MiniKit-3.1.0.d.ts
CHANGED
@@ -5,6 +5,7 @@ export declare const getPermissionConfig: typeof ty.getPermissionConfig;
|
|
5
5
|
export declare const getPermissionConfigSync: typeof ty.getPermissionConfigSync;
|
6
6
|
export declare const openSetting: typeof ty.openSetting;
|
7
7
|
export declare const changeDebugMode: typeof ty.changeDebugMode;
|
8
|
+
export declare const openHelpCenter: typeof ty.openHelpCenter;
|
8
9
|
export declare const showTabBarRedDot: typeof ty.showTabBarRedDot;
|
9
10
|
export declare const showTabBar: typeof ty.showTabBar;
|
10
11
|
export declare const setTabBarStyle: typeof ty.setTabBarStyle;
|
package/lib/MiniKit-3.1.0.js
CHANGED
@@ -7,7 +7,7 @@ export const getPermissionConfig = factory('getPermissionConfig');
|
|
7
7
|
export const getPermissionConfigSync = factory('getPermissionConfigSync');
|
8
8
|
export const openSetting = factory('openSetting');
|
9
9
|
export const changeDebugMode = factory('changeDebugMode');
|
10
|
-
|
10
|
+
export const openHelpCenter = factory('openHelpCenter'); // 已废弃TTT能力封装有问题使用ty.router封装的api,见nativeRouters
|
11
11
|
export const showTabBarRedDot = factory('showTabBarRedDot');
|
12
12
|
export const showTabBar = factory('showTabBar');
|
13
13
|
export const setTabBarStyle = factory('setTabBarStyle');
|
@@ -21,13 +21,11 @@ type OpenMoreService = {} & ICommon;
|
|
21
21
|
* 跳转到更多服务
|
22
22
|
*/
|
23
23
|
export declare function openMoreService(params?: OpenMoreService): Promise<void>;
|
24
|
-
type
|
25
|
-
devId?: string;
|
26
|
-
} & ICommon;
|
24
|
+
type OpenAppHelpCenter = {} & ICommon;
|
27
25
|
/**
|
28
|
-
*
|
26
|
+
* 跳转到App帮助与反馈页
|
29
27
|
*/
|
30
|
-
export declare function
|
28
|
+
export declare function openAppHelpCenter(params?: OpenAppHelpCenter): Promise<void>;
|
31
29
|
type OpenMessageCenter = {
|
32
30
|
category?: 0 | 1 | 2;
|
33
31
|
} & ICommon;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ray-js/api",
|
3
|
-
"version": "1.4.
|
3
|
+
"version": "1.4.49",
|
4
4
|
"description": "Ray universal api",
|
5
5
|
"keywords": [
|
6
6
|
"ray"
|
@@ -29,14 +29,14 @@
|
|
29
29
|
"watch": "ray start --type=component"
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
|
-
"@ray-js/framework": "1.4.
|
33
|
-
"@ray-js/router": "1.4.
|
32
|
+
"@ray-js/framework": "1.4.49",
|
33
|
+
"@ray-js/router": "1.4.49",
|
34
34
|
"@ray-js/wechat": "^0.0.33",
|
35
35
|
"base64-browser": "^1.0.1",
|
36
36
|
"query-string": "^7.1.3"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
|
-
"@ray-js/cli": "1.4.
|
39
|
+
"@ray-js/cli": "1.4.49",
|
40
40
|
"art-template": "^4.13.2",
|
41
41
|
"fs-extra": "^10.1.0",
|
42
42
|
"miniprogram-api-typings": "^3.12.2",
|
@@ -46,5 +46,5 @@
|
|
46
46
|
"access": "public",
|
47
47
|
"registry": "https://registry.npmjs.org"
|
48
48
|
},
|
49
|
-
"gitHead": "
|
49
|
+
"gitHead": "f713bf263556c73672caf98970f5709cd925163e"
|
50
50
|
}
|