@ray-js/api 1.5.38 → 1.5.39
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/cloud/gateway.d.ts +11 -10
- package/lib/cloud/gateway.js +11 -1
- package/lib/cloud/health.d.ts +19 -18
- package/lib/cloud/health.js +19 -1
- package/lib/cloud/index.d.ts +2 -2
- package/lib/cloud/index.js +2 -2
- package/package.json +5 -5
package/lib/cloud/gateway.d.ts
CHANGED
@@ -1,10 +1,11 @@
|
|
1
|
-
declare const
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
1
|
+
export declare const gateway: {
|
2
|
+
sendCmdForRefreshDeviceLQI: typeof ty.gateway.sendCmdForRefreshDeviceLQI;
|
3
|
+
getLastDeviceLQI: typeof ty.gateway.getLastDeviceLQI;
|
4
|
+
getSeniorAbility: typeof ty.gateway.getSeniorAbility;
|
5
|
+
getGatewaySubDevLimit: typeof ty.gateway.getGatewaySubDevLimit;
|
6
|
+
updateRelationMesh: typeof ty.gateway.updateRelationMesh;
|
7
|
+
updateRelationBlue: typeof ty.gateway.updateRelationBlue;
|
8
|
+
updateRelationBeacon: typeof ty.gateway.updateRelationBeacon;
|
9
|
+
getGatewayAbility: typeof ty.gateway.getGatewayAbility;
|
10
|
+
getSecurityDeviceLog: typeof ty.gateway.getSecurityDeviceLog;
|
11
|
+
};
|
package/lib/cloud/gateway.js
CHANGED
@@ -26,4 +26,14 @@ const getGatewayAbility = factory('getGatewayAbility', {
|
|
26
26
|
const getSecurityDeviceLog = factory('getSecurityDeviceLog', {
|
27
27
|
namespace: 'gateway'
|
28
28
|
});
|
29
|
-
export
|
29
|
+
export const gateway = {
|
30
|
+
sendCmdForRefreshDeviceLQI,
|
31
|
+
getLastDeviceLQI,
|
32
|
+
getSeniorAbility,
|
33
|
+
getGatewaySubDevLimit,
|
34
|
+
updateRelationMesh,
|
35
|
+
updateRelationBlue,
|
36
|
+
updateRelationBeacon,
|
37
|
+
getGatewayAbility,
|
38
|
+
getSecurityDeviceLog
|
39
|
+
};
|
package/lib/cloud/health.d.ts
CHANGED
@@ -1,18 +1,19 @@
|
|
1
|
-
declare const
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
1
|
+
export declare const health: {
|
2
|
+
addPanelUser: typeof ty.health.addPanelUser;
|
3
|
+
updatePanelUser: typeof ty.health.updatePanelUser;
|
4
|
+
deletePanelUser: typeof ty.health.deletePanelUser;
|
5
|
+
getPanelUserList: typeof ty.health.getPanelUserList;
|
6
|
+
getDefaultAvatarList: typeof ty.health.getDefaultAvatarList;
|
7
|
+
reportPanelBpgData: typeof ty.health.reportPanelBpgData;
|
8
|
+
reportSingleBpgData: typeof ty.health.reportSingleBpgData;
|
9
|
+
updateBpgDataRemark: typeof ty.health.updateBpgDataRemark;
|
10
|
+
deleteBpgData: typeof ty.health.deleteBpgData;
|
11
|
+
getBpgDataHistory: typeof ty.health.getBpgDataHistory;
|
12
|
+
getBpgDataTrendLatest: typeof ty.health.getBpgDataTrendLatest;
|
13
|
+
getBpgDataLevnum: typeof ty.health.getBpgDataLevnum;
|
14
|
+
getBpgDataTrend: typeof ty.health.getBpgDataTrend;
|
15
|
+
getBpgDataDays: typeof ty.health.getBpgDataDays;
|
16
|
+
getBpgDataUnallocated: typeof ty.health.getBpgDataUnallocated;
|
17
|
+
updateBpgDataUnallocated: typeof ty.health.updateBpgDataUnallocated;
|
18
|
+
deleteBpgDataUnallocated: typeof ty.health.deleteBpgDataUnallocated;
|
19
|
+
};
|
package/lib/cloud/health.js
CHANGED
@@ -50,4 +50,22 @@ const updateBpgDataUnallocated = factory('updateBpgDataUnallocated', {
|
|
50
50
|
const deleteBpgDataUnallocated = factory('deleteBpgDataUnallocated', {
|
51
51
|
namespace: 'health'
|
52
52
|
});
|
53
|
-
export
|
53
|
+
export const health = {
|
54
|
+
addPanelUser,
|
55
|
+
updatePanelUser,
|
56
|
+
deletePanelUser,
|
57
|
+
getPanelUserList,
|
58
|
+
getDefaultAvatarList,
|
59
|
+
reportPanelBpgData,
|
60
|
+
reportSingleBpgData,
|
61
|
+
updateBpgDataRemark,
|
62
|
+
deleteBpgData,
|
63
|
+
getBpgDataHistory,
|
64
|
+
getBpgDataTrendLatest,
|
65
|
+
getBpgDataLevnum,
|
66
|
+
getBpgDataTrend,
|
67
|
+
getBpgDataDays,
|
68
|
+
getBpgDataUnallocated,
|
69
|
+
updateBpgDataUnallocated,
|
70
|
+
deleteBpgDataUnallocated
|
71
|
+
};
|
package/lib/cloud/index.d.ts
CHANGED
package/lib/cloud/index.js
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ray-js/api",
|
3
|
-
"version": "1.5.
|
3
|
+
"version": "1.5.39",
|
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.5.
|
33
|
-
"@ray-js/router": "1.5.
|
32
|
+
"@ray-js/framework": "1.5.39",
|
33
|
+
"@ray-js/router": "1.5.39",
|
34
34
|
"@ray-js/wechat": "^0.2.9",
|
35
35
|
"base64-browser": "^1.0.1",
|
36
36
|
"query-string": "^7.1.3"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
|
-
"@ray-js/cli": "1.5.
|
39
|
+
"@ray-js/cli": "1.5.39",
|
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.com"
|
48
48
|
},
|
49
|
-
"gitHead": "
|
49
|
+
"gitHead": "a35a033e7eb2abc038c99afedb2e1bde6c5d93b8"
|
50
50
|
}
|