@ray-js/api 1.6.0-beta.9 → 1.6.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/@types/BaseKit.d.ts +837 -37
- package/@types/BizKit.d.ts +1831 -85
- package/@types/DeviceKit.d.ts +581 -58
- package/@types/HomeKit.d.ts +0 -74
- package/@types/MiniKit.d.ts +411 -8
- package/@types/api-cloud.d.ts +145 -0
- package/@types/api-extend.d.ts +42 -10
- package/@types/api.d.ts +3 -0
- package/@types/gateway.d.ts +146 -0
- package/@types/health.d.ts +309 -0
- package/lib/{BaseKit-3.11.0.d.ts → BaseKit-3.14.3.d.ts} +29 -1
- package/lib/{BaseKit-3.11.0.js → BaseKit-3.14.3.js} +32 -1
- package/lib/BizKit-4.10.4.d.ts +84 -0
- package/lib/{BizKit-3.2.7.js → BizKit-4.10.4.js} +46 -5
- package/lib/{DeviceKit-3.3.1.d.ts → DeviceKit-4.9.0.d.ts} +22 -1
- package/lib/{DeviceKit-3.3.1.js → DeviceKit-4.9.0.js} +66 -0
- package/lib/HomeKit-3.1.4.d.ts +0 -1
- package/lib/MapKit-3.4.13.d.ts +0 -1
- package/lib/{MiniKit-3.1.0.d.ts → MiniKit-3.12.1.d.ts} +11 -1
- package/lib/{MiniKit-3.1.0.js → MiniKit-3.12.1.js} +12 -1
- package/lib/OutdoorKit-1.0.4.d.ts +0 -1
- package/lib/P2PKit-2.0.3.d.ts +0 -1
- package/lib/PlayNetKit-1.1.3.d.ts +24 -24
- package/lib/all-kits.d.ts +5 -5
- package/lib/all-kits.js +5 -5
- package/lib/cloud/device.d.ts +3 -3
- package/lib/cloud/gateway.d.ts +11 -0
- package/lib/cloud/gateway.js +39 -0
- package/lib/cloud/health.d.ts +19 -0
- package/lib/cloud/health.js +71 -0
- package/lib/cloud/index.d.ts +3 -0
- package/lib/cloud/index.js +6 -1
- package/lib/cloud/interface.d.ts +40 -1
- package/lib/cloud/laser-clean/index.d.ts +3 -0
- package/lib/cloud/laser-clean/index.js +3 -0
- package/lib/cloud/laser-clean/map.d.ts +3 -0
- package/lib/cloud/laser-clean/map.js +4 -0
- package/lib/cloud/laser-clean/record.d.ts +3 -0
- package/lib/cloud/laser-clean/record.js +4 -0
- package/lib/cloud/laser-clean/voice.d.ts +2 -0
- package/lib/cloud/laser-clean/voice.js +3 -0
- package/lib/cloud/recipe/basket.js +1 -0
- package/lib/cloud/recipe/custom.js +1 -0
- package/lib/cloud/recipe/menu.js +1 -0
- package/lib/cloud/recipe/query.js +1 -0
- package/lib/cloud/recipe/score.js +1 -0
- package/lib/cloud/recipe/star.js +1 -0
- package/lib/getBoundingClientRect/index.thing.js +1 -0
- package/lib/getBoundingClientRect/index.wechat.js +1 -0
- package/lib/getCdnUrl/index.thing.js +13 -8
- package/lib/hideTabBar/index.d.ts +4 -5
- package/lib/index.d.ts +0 -1
- package/lib/navigateBack/index.d.ts +0 -1
- package/lib/navigateTo/index.d.ts +0 -1
- package/lib/panel/devInfo/index.js +7 -1
- package/lib/panel/i18n/index.js +4 -0
- package/lib/panel/i18n/index.wechat.js +4 -0
- package/lib/panel/publishDps.js +2 -0
- package/lib/reLaunch/index.d.ts +0 -1
- package/lib/redirectTo/index.d.ts +0 -1
- package/lib/redirectTo/index.js +1 -0
- package/lib/requestCloud/index.d.ts +0 -1
- package/lib/setNavigationBarColor/index.d.ts +0 -1
- package/lib/setNavigationBarTitle/index.d.ts +0 -1
- package/lib/showTabBar/index.d.ts +4 -5
- package/lib/switchTab/index.d.ts +0 -1
- package/lib/utils.wechat.js +1 -0
- package/lib/viewAPI.d.ts +1 -1
- package/lib/viewAPI.js +2 -1
- package/package.json +8 -8
- package/lib/BizKit-3.2.7.d.ts +0 -46
- package/lib/cloud/doorlock/README.md +0 -62
- package/lib/cloud/doorlock/auth.md +0 -323
- package/lib/cloud/doorlock/device.md +0 -265
- package/lib/cloud/doorlock/log.md +0 -153
- package/lib/cloud/doorlock/member-opmode.md +0 -279
- package/lib/cloud/doorlock/member.md +0 -276
- package/lib/cloud/doorlock/offline-pwd.md +0 -155
- package/lib/cloud/doorlock/temp-pwd.md +0 -362
- package/lib/cloud/doorlock/unlock-method.md +0 -121
- package/lib/cloud/doorlock/unlock.md +0 -222
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference path="../@types/BaseKit.d.ts" />
|
2
1
|
export declare const stopAccelerometer: typeof ty.stopAccelerometer;
|
3
2
|
export declare const startAccelerometer: typeof ty.startAccelerometer;
|
4
3
|
export declare const getAudioFileDuration: typeof ty.getAudioFileDuration;
|
@@ -82,3 +81,32 @@ export declare const uploadFile: typeof ty.uploadFile;
|
|
82
81
|
export declare const openMiniWidget: typeof ty.openMiniWidget;
|
83
82
|
export declare const getCurrentVolumeByMode: typeof ty.getCurrentVolumeByMode;
|
84
83
|
export declare const saveImageToPhotosAlbum: typeof ty.saveImageToPhotosAlbum;
|
84
|
+
export declare const getSetting: typeof ty.getSetting;
|
85
|
+
export declare const getTempDirectory: typeof ty.getTempDirectory;
|
86
|
+
export declare const writeLogFile: typeof ty.writeLogFile;
|
87
|
+
export declare const getFileInfo: typeof ty.getFileInfo;
|
88
|
+
export declare const initializeUploadFile: typeof ty.initializeUploadFile;
|
89
|
+
export declare const uploadFileToDevice: typeof ty.uploadFileToDevice;
|
90
|
+
export declare const cancelUploadFileToDevice: typeof ty.cancelUploadFileToDevice;
|
91
|
+
export declare const compressImage: typeof ty.compressImage;
|
92
|
+
export declare const cropImages: typeof ty.cropImages;
|
93
|
+
export declare const onUploadFileToDeviceStart: typeof ty.onUploadFileToDeviceStart;
|
94
|
+
export declare const offUploadFileToDeviceStart: typeof ty.offUploadFileToDeviceStart;
|
95
|
+
export declare const onUploadFileToDeviceProgress: typeof ty.onUploadFileToDeviceProgress;
|
96
|
+
export declare const offUploadFileToDeviceProgress: typeof ty.offUploadFileToDeviceProgress;
|
97
|
+
export declare const onUploadFileToDeviceComplete: typeof ty.onUploadFileToDeviceComplete;
|
98
|
+
export declare const offUploadFileToDeviceComplete: typeof ty.offUploadFileToDeviceComplete;
|
99
|
+
export declare const onUploadFileFragToDeviceProgress: typeof ty.onUploadFileFragToDeviceProgress;
|
100
|
+
export declare const offUploadFileFragToDeviceProgress: typeof ty.offUploadFileFragToDeviceProgress;
|
101
|
+
export declare const cropImage: typeof ty.cropImage;
|
102
|
+
export declare const fetchImageThumbnail: typeof ty.fetchImageThumbnail;
|
103
|
+
export declare const onKeyboardHeightChange: typeof ty.onKeyboardHeightChange;
|
104
|
+
export declare const offKeyboardHeightChange: typeof ty.offKeyboardHeightChange;
|
105
|
+
export declare const onKeyboardWillShow: typeof ty.onKeyboardWillShow;
|
106
|
+
export declare const offKeyboardWillShow: typeof ty.offKeyboardWillShow;
|
107
|
+
export declare const onKeyboardWillHide: typeof ty.onKeyboardWillHide;
|
108
|
+
export declare const offKeyboardWillHide: typeof ty.offKeyboardWillHide;
|
109
|
+
export declare const fetchVideoThumbnails: typeof ty.fetchVideoThumbnails;
|
110
|
+
export declare const clearVideoThumbnails: typeof ty.clearVideoThumbnails;
|
111
|
+
export declare const clipVideo: typeof ty.clipVideo;
|
112
|
+
export declare const getAppAuthorizeSetting: typeof ty.getAppAuthorizeSetting;
|
@@ -89,4 +89,35 @@ export const openMiniWidget = factory('openMiniWidget');
|
|
89
89
|
export const getCurrentVolumeByMode = factory('getCurrentVolumeByMode');
|
90
90
|
|
91
91
|
// 3.11.0 新增 - 5.12.0
|
92
|
-
export const saveImageToPhotosAlbum = factory('saveImageToPhotosAlbum');
|
92
|
+
export const saveImageToPhotosAlbum = factory('saveImageToPhotosAlbum');
|
93
|
+
|
94
|
+
// 3.14.3 新增
|
95
|
+
export const getSetting = factory('getSetting');
|
96
|
+
export const getTempDirectory = factory('getTempDirectory');
|
97
|
+
export const writeLogFile = factory('writeLogFile');
|
98
|
+
export const getFileInfo = factory('getFileInfo');
|
99
|
+
export const initializeUploadFile = factory('initializeUploadFile');
|
100
|
+
export const uploadFileToDevice = factory('uploadFileToDevice');
|
101
|
+
export const cancelUploadFileToDevice = factory('cancelUploadFileToDevice');
|
102
|
+
export const compressImage = factory('compressImage');
|
103
|
+
export const cropImages = factory('cropImages');
|
104
|
+
export const onUploadFileToDeviceStart = factory('onUploadFileToDeviceStart');
|
105
|
+
export const offUploadFileToDeviceStart = factory('offUploadFileToDeviceStart');
|
106
|
+
export const onUploadFileToDeviceProgress = factory('onUploadFileToDeviceProgress');
|
107
|
+
export const offUploadFileToDeviceProgress = factory('offUploadFileToDeviceProgress');
|
108
|
+
export const onUploadFileToDeviceComplete = factory('onUploadFileToDeviceComplete');
|
109
|
+
export const offUploadFileToDeviceComplete = factory('offUploadFileToDeviceComplete');
|
110
|
+
export const onUploadFileFragToDeviceProgress = factory('onUploadFileFragToDeviceProgress');
|
111
|
+
export const offUploadFileFragToDeviceProgress = factory('offUploadFileFragToDeviceProgress');
|
112
|
+
export const cropImage = factory('cropImage');
|
113
|
+
export const fetchImageThumbnail = factory('fetchImageThumbnail');
|
114
|
+
export const onKeyboardHeightChange = factory('onKeyboardHeightChange');
|
115
|
+
export const offKeyboardHeightChange = factory('offKeyboardHeightChange');
|
116
|
+
export const onKeyboardWillShow = factory('onKeyboardWillShow');
|
117
|
+
export const offKeyboardWillShow = factory('offKeyboardWillShow');
|
118
|
+
export const onKeyboardWillHide = factory('onKeyboardWillHide');
|
119
|
+
export const offKeyboardWillHide = factory('offKeyboardWillHide');
|
120
|
+
export const fetchVideoThumbnails = factory('fetchVideoThumbnails');
|
121
|
+
export const clearVideoThumbnails = factory('clearVideoThumbnails');
|
122
|
+
export const clipVideo = factory('clipVideo');
|
123
|
+
export const getAppAuthorizeSetting = factory('getAppAuthorizeSetting');
|
@@ -0,0 +1,84 @@
|
|
1
|
+
export declare const apiRequestByAtop: typeof ty.apiRequestByAtop;
|
2
|
+
export declare const event: typeof ty.event;
|
3
|
+
export declare const beginEvent: typeof ty.beginEvent;
|
4
|
+
export declare const trackEvent: typeof ty.trackEvent;
|
5
|
+
export declare const endEvent: typeof ty.endEvent;
|
6
|
+
export declare const getAppInfo: typeof ty.getAppInfo;
|
7
|
+
export declare const getCurrentWifiSSID: typeof ty.getCurrentWifiSSID;
|
8
|
+
export declare const openCountrySelectPage: typeof ty.openCountrySelectPage;
|
9
|
+
export declare const getIconfontInfo: typeof ty.getIconfontInfo;
|
10
|
+
export declare const uploadImage: typeof ty.uploadImage;
|
11
|
+
export declare const getLangKey: typeof ty.getLangKey;
|
12
|
+
export declare const getLangContent: typeof ty.getLangContent;
|
13
|
+
export declare const openRNPanel: typeof ty.openRNPanel;
|
14
|
+
export declare const openPanel: typeof ty.openPanel;
|
15
|
+
export declare const preloadPanel: typeof ty.preloadPanel;
|
16
|
+
export declare const openInnerH5: typeof ty.openInnerH5;
|
17
|
+
export declare const openAppSystemSettingPage: typeof ty.openAppSystemSettingPage;
|
18
|
+
export declare const emitChannel: typeof ty.emitChannel;
|
19
|
+
export declare const router: typeof ty.router;
|
20
|
+
export declare const canIUseRouter: typeof ty.canIUseRouter;
|
21
|
+
export declare const goDeviceDetail: typeof ty.goDeviceDetail;
|
22
|
+
export declare const goDeviceAlarm: typeof ty.goDeviceAlarm;
|
23
|
+
export declare const share: typeof ty.share;
|
24
|
+
export declare const getShareChannelList: typeof ty.getShareChannelList;
|
25
|
+
export declare const getUserInfo: typeof ty.getUserInfo;
|
26
|
+
export declare const resizeImage: typeof ty.resizeImage;
|
27
|
+
export declare const rotateImage: typeof ty.rotateImage;
|
28
|
+
export declare const saveToAlbum: typeof ty.saveToAlbum;
|
29
|
+
export declare const onCountrySelectResult: typeof ty.onCountrySelectResult;
|
30
|
+
export declare const offCountrySelectResult: typeof ty.offCountrySelectResult;
|
31
|
+
export declare const onUploadProgressUpdate: typeof ty.onUploadProgressUpdate;
|
32
|
+
export declare const offUploadProgressUpdate: typeof ty.offUploadProgressUpdate;
|
33
|
+
export declare const onReceiveMessage: typeof ty.onReceiveMessage;
|
34
|
+
export declare const offReceiveMessage: typeof ty.offReceiveMessage;
|
35
|
+
export declare const onRouterEvent: typeof ty.onRouterEvent;
|
36
|
+
export declare const offRouterEvent: typeof ty.offRouterEvent;
|
37
|
+
export declare const onRouterResult: typeof ty.onRouterResult;
|
38
|
+
export declare const offRouterResult: typeof ty.offRouterResult;
|
39
|
+
export declare const registerChannel: typeof ty.registerChannel;
|
40
|
+
export declare const handleShortcut: typeof ty.handleShortcut;
|
41
|
+
export declare const isAssociatedShortcut: typeof ty.isAssociatedShortcut;
|
42
|
+
export declare const isSupportedShortcut: typeof ty.isSupportedShortcut;
|
43
|
+
export declare const backToHomeAndOpenPanel: typeof ty.backToHomeAndOpenPanel;
|
44
|
+
export declare const openSystemSettingPage: typeof ty.openSystemSettingPage;
|
45
|
+
export declare const apiRequestByHighwayRestful: typeof ty.apiRequestByHighwayRestful;
|
46
|
+
export declare const eventLink: typeof ty.eventLink;
|
47
|
+
export declare const performanceEvent: typeof ty.performanceEvent;
|
48
|
+
export declare const getNGConfigByKeys: typeof ty.getNGConfigByKeys;
|
49
|
+
export declare const getConfigByKeys: typeof ty.getConfigByKeys;
|
50
|
+
export declare const getThirdPartyServiceInfo: typeof ty.getThirdPartyServiceInfo;
|
51
|
+
export declare const openThirdPartyMiniProgram: typeof ty.openThirdPartyMiniProgram;
|
52
|
+
export declare const getCloudEnv: typeof ty.getCloudEnv;
|
53
|
+
export declare const isMiniAppAvailable: typeof ty.isMiniAppAvailable;
|
54
|
+
export declare const getAppTabInfo: typeof ty.getAppTabInfo;
|
55
|
+
export declare const getIapInfo: typeof ty.getIapInfo;
|
56
|
+
export declare const iapPayReady: typeof ty.iapPayReady;
|
57
|
+
export declare const pay: typeof ty.pay;
|
58
|
+
export declare const addOrderStatusListener: typeof ty.addOrderStatusListener;
|
59
|
+
export declare const removeOrderStatusListener: typeof ty.removeOrderStatusListener;
|
60
|
+
export declare const onOrderStatusListener: typeof ty.onOrderStatusListener;
|
61
|
+
export declare const offOrderStatusListener: typeof ty.offOrderStatusListener;
|
62
|
+
export declare const onUserSelectedAlternativeBilling: typeof ty.onUserSelectedAlternativeBilling;
|
63
|
+
export declare const offUserSelectedAlternativeBilling: typeof ty.offUserSelectedAlternativeBilling;
|
64
|
+
export declare const showSharePanel: typeof ty.showSharePanel;
|
65
|
+
export declare const shareDirectly: typeof ty.shareDirectly;
|
66
|
+
export declare const setActivityResult: typeof ty.setActivityResult;
|
67
|
+
export declare const openThirdApp: typeof ty.openThirdApp;
|
68
|
+
export declare const openThirdAppSync: typeof ty.openThirdAppSync;
|
69
|
+
export declare const openUrlForceDefaultBrowser: typeof ty.openUrlForceDefaultBrowser;
|
70
|
+
export declare const registerPageRefreshListener: typeof ty.registerPageRefreshListener;
|
71
|
+
export declare const onPageRefresh: typeof ty.onPageRefresh;
|
72
|
+
export declare const offPageRefresh: typeof ty.offPageRefresh;
|
73
|
+
export declare const getWebSocketStatus: typeof ty.getWebSocketStatus;
|
74
|
+
export declare const getWebSocketStatusSync: typeof ty.getWebSocketStatusSync;
|
75
|
+
export declare const onWebSocketStatusChange: typeof ty.onWebSocketStatusChange;
|
76
|
+
export declare const offWebSocketStatusChange: typeof ty.offWebSocketStatusChange;
|
77
|
+
export declare const bindWechat: typeof ty.bindWechat;
|
78
|
+
export declare const isSupportWechat: typeof ty.isSupportWechat;
|
79
|
+
export declare const gotoWechatMiniApp: typeof ty.gotoWechatMiniApp;
|
80
|
+
export declare const isCalling: typeof ty.isCalling;
|
81
|
+
export declare const canLaunchCall: typeof ty.canLaunchCall;
|
82
|
+
export declare const launchCall: typeof ty.launchCall;
|
83
|
+
export declare const getAsrListenerManager: typeof ty.getAsrListenerManager;
|
84
|
+
export declare const getLogManager: typeof ty.getLogManager;
|
@@ -23,9 +23,6 @@ export const openInnerH5 = factory('openInnerH5');
|
|
23
23
|
export const openAppSystemSettingPage = factory('openAppSystemSettingPage', {
|
24
24
|
"deprecated": true
|
25
25
|
});
|
26
|
-
export const openSystemSettingPage = factory('openSystemSettingPage', {
|
27
|
-
"deprecated": true
|
28
|
-
});
|
29
26
|
export const emitChannel = factory('emitChannel');
|
30
27
|
export const router = factory('router');
|
31
28
|
export const canIUseRouter = factory('canIUseRouter');
|
@@ -55,9 +52,53 @@ export const onRouterResult = factory('onRouterResult');
|
|
55
52
|
export const offRouterResult = factory('offRouterResult');
|
56
53
|
export const registerChannel = factory('registerChannel');
|
57
54
|
// 3.1.1 新增 - 4.7.0 容器
|
58
|
-
export const getTempDirectory = factory('getTempDirectory');
|
59
55
|
export const handleShortcut = factory('handleShortcut');
|
60
56
|
export const isAssociatedShortcut = factory('isAssociatedShortcut');
|
61
57
|
export const isSupportedShortcut = factory('isSupportedShortcut');
|
62
58
|
// 3.2.7 新增 - 4.8.0 容器
|
63
|
-
export const backToHomeAndOpenPanel = factory('backToHomeAndOpenPanel');
|
59
|
+
export const backToHomeAndOpenPanel = factory('backToHomeAndOpenPanel');
|
60
|
+
|
61
|
+
// 4.5.1 新增 - 5.12.0 容器 之前是标注deprecated的,4.5.1之后不再标注,iOS已支持
|
62
|
+
export const openSystemSettingPage = factory('openSystemSettingPage');
|
63
|
+
|
64
|
+
// 4.10.4 新增
|
65
|
+
export const apiRequestByHighwayRestful = factory('apiRequestByHighwayRestful');
|
66
|
+
export const eventLink = factory('eventLink');
|
67
|
+
export const performanceEvent = factory('performanceEvent');
|
68
|
+
export const getNGConfigByKeys = factory('getNGConfigByKeys');
|
69
|
+
export const getConfigByKeys = factory('getConfigByKeys');
|
70
|
+
export const getThirdPartyServiceInfo = factory('getThirdPartyServiceInfo');
|
71
|
+
export const openThirdPartyMiniProgram = factory('openThirdPartyMiniProgram');
|
72
|
+
export const getCloudEnv = factory('getCloudEnv');
|
73
|
+
export const isMiniAppAvailable = factory('isMiniAppAvailable');
|
74
|
+
export const getAppTabInfo = factory('getAppTabInfo');
|
75
|
+
export const getIapInfo = factory('getIapInfo');
|
76
|
+
export const iapPayReady = factory('iapPayReady');
|
77
|
+
export const pay = factory('pay');
|
78
|
+
export const addOrderStatusListener = factory('addOrderStatusListener');
|
79
|
+
export const removeOrderStatusListener = factory('removeOrderStatusListener');
|
80
|
+
export const onOrderStatusListener = factory('onOrderStatusListener');
|
81
|
+
export const offOrderStatusListener = factory('offOrderStatusListener');
|
82
|
+
export const onUserSelectedAlternativeBilling = factory('onUserSelectedAlternativeBilling');
|
83
|
+
export const offUserSelectedAlternativeBilling = factory('offUserSelectedAlternativeBilling');
|
84
|
+
export const showSharePanel = factory('showSharePanel');
|
85
|
+
export const shareDirectly = factory('shareDirectly');
|
86
|
+
export const setActivityResult = factory('setActivityResult');
|
87
|
+
export const openThirdApp = factory('openThirdApp');
|
88
|
+
export const openThirdAppSync = factory('openThirdAppSync');
|
89
|
+
export const openUrlForceDefaultBrowser = factory('openUrlForceDefaultBrowser');
|
90
|
+
export const registerPageRefreshListener = factory('registerPageRefreshListener');
|
91
|
+
export const onPageRefresh = factory('onPageRefresh');
|
92
|
+
export const offPageRefresh = factory('offPageRefresh');
|
93
|
+
export const getWebSocketStatus = factory('getWebSocketStatus');
|
94
|
+
export const getWebSocketStatusSync = factory('getWebSocketStatusSync');
|
95
|
+
export const onWebSocketStatusChange = factory('onWebSocketStatusChange');
|
96
|
+
export const offWebSocketStatusChange = factory('offWebSocketStatusChange');
|
97
|
+
export const bindWechat = factory('bindWechat');
|
98
|
+
export const isSupportWechat = factory('isSupportWechat');
|
99
|
+
export const gotoWechatMiniApp = factory('gotoWechatMiniApp');
|
100
|
+
export const isCalling = factory('isCalling');
|
101
|
+
export const canLaunchCall = factory('canLaunchCall');
|
102
|
+
export const launchCall = factory('launchCall');
|
103
|
+
export const getAsrListenerManager = factory('getAsrListenerManager');
|
104
|
+
export const getLogManager = factory('getLogManager');
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference path="../@types/DeviceKit.d.ts" />
|
2
1
|
export declare const unregisterLeaveBeaconFenceEvent: typeof ty.device.unregisterLeaveBeaconFenceEvent;
|
3
2
|
export declare const registerLeaveBeaconFenceEvent: typeof ty.device.registerLeaveBeaconFenceEvent;
|
4
3
|
export declare const writeBeaconFenceConfig: typeof ty.device.writeBeaconFenceConfig;
|
@@ -190,3 +189,25 @@ export declare const getDeviceListByDevIds: typeof ty.device.getDeviceListByDevI
|
|
190
189
|
export declare const sendMqttMessage: typeof ty.device.sendMqttMessage;
|
191
190
|
export declare const dispatchSubFunctionTouchEvent: typeof ty.device.dispatchSubFunctionTouchEvent;
|
192
191
|
export declare const onSubFunctionDataChange: typeof ty.device.onSubFunctionDataChange;
|
192
|
+
export declare const activeDeviceExtendModule: typeof ty.device.activeDeviceExtendModule;
|
193
|
+
export declare const updateMeshProxyState: typeof ty.device.updateMeshProxyState;
|
194
|
+
export declare const updateMeshRelayState: typeof ty.device.updateMeshRelayState;
|
195
|
+
export declare const recordBleConnectEvent: typeof ty.device.recordBleConnectEvent;
|
196
|
+
export declare const requestWifiSignal: typeof ty.device.requestWifiSignal;
|
197
|
+
export declare const yuChannelSync: typeof ty.device.yuChannelSync;
|
198
|
+
export declare const isYuDeviceOnline: typeof ty.device.isYuDeviceOnline;
|
199
|
+
export declare const isYuDeviceOnlineSync: typeof ty.device.isYuDeviceOnlineSync;
|
200
|
+
export declare const syncDeviceMeshDps: typeof ty.device.syncDeviceMeshDps;
|
201
|
+
export declare const getOTAUpdateInfo: typeof ty.device.getOTAUpdateInfo;
|
202
|
+
export declare const getDeviceDetailConfiguration: typeof ty.device.getDeviceDetailConfiguration;
|
203
|
+
export declare const dispatchDataResult: typeof ty.device.dispatchDataResult;
|
204
|
+
export declare const getSubFunctionShowState: typeof ty.device.getSubFunctionShowState;
|
205
|
+
export declare const getSubFunctionExtShowData: typeof ty.device.getSubFunctionExtShowData;
|
206
|
+
export declare const getRemoteRebootTimers: typeof ty.device.getRemoteRebootTimers;
|
207
|
+
export declare const onDispatchEvent: typeof ty.device.onDispatchEvent;
|
208
|
+
export declare const offDispatchEvent: typeof ty.device.offDispatchEvent;
|
209
|
+
export declare const otaStatus: typeof ty.device.otaStatus;
|
210
|
+
export declare const registerOTACompleted: typeof ty.device.registerOTACompleted;
|
211
|
+
export declare const onOtaCompleted: typeof ty.device.onOtaCompleted;
|
212
|
+
export declare const offOtaCompleted: typeof ty.device.offOtaCompleted;
|
213
|
+
export declare const initVirtualDevice: typeof ty.device.initVirtualDevice;
|
@@ -577,4 +577,70 @@ export const dispatchSubFunctionTouchEvent = factory('dispatchSubFunctionTouchEv
|
|
577
577
|
});
|
578
578
|
export const onSubFunctionDataChange = factory('onSubFunctionDataChange', {
|
579
579
|
"namespace": "device"
|
580
|
+
});
|
581
|
+
export const activeDeviceExtendModule = factory('activeDeviceExtendModule', {
|
582
|
+
"namespace": "device"
|
583
|
+
});
|
584
|
+
export const updateMeshProxyState = factory('updateMeshProxyState', {
|
585
|
+
"namespace": "device"
|
586
|
+
});
|
587
|
+
export const updateMeshRelayState = factory('updateMeshRelayState', {
|
588
|
+
"namespace": "device"
|
589
|
+
});
|
590
|
+
export const recordBleConnectEvent = factory('recordBleConnectEvent', {
|
591
|
+
"namespace": "device"
|
592
|
+
});
|
593
|
+
export const requestWifiSignal = factory('requestWifiSignal', {
|
594
|
+
"namespace": "device"
|
595
|
+
});
|
596
|
+
export const yuChannelSync = factory('yuChannelSync', {
|
597
|
+
"namespace": "device"
|
598
|
+
});
|
599
|
+
export const isYuDeviceOnline = factory('isYuDeviceOnline', {
|
600
|
+
"namespace": "device"
|
601
|
+
});
|
602
|
+
export const isYuDeviceOnlineSync = factory('isYuDeviceOnlineSync', {
|
603
|
+
"namespace": "device"
|
604
|
+
});
|
605
|
+
export const syncDeviceMeshDps = factory('syncDeviceMeshDps', {
|
606
|
+
"namespace": "device"
|
607
|
+
});
|
608
|
+
export const getOTAUpdateInfo = factory('getOTAUpdateInfo', {
|
609
|
+
"namespace": "device"
|
610
|
+
});
|
611
|
+
export const getDeviceDetailConfiguration = factory('getDeviceDetailConfiguration', {
|
612
|
+
"namespace": "device"
|
613
|
+
});
|
614
|
+
export const dispatchDataResult = factory('dispatchDataResult', {
|
615
|
+
"namespace": "device"
|
616
|
+
});
|
617
|
+
export const getSubFunctionShowState = factory('getSubFunctionShowState', {
|
618
|
+
"namespace": "device"
|
619
|
+
});
|
620
|
+
export const getSubFunctionExtShowData = factory('getSubFunctionExtShowData', {
|
621
|
+
"namespace": "device"
|
622
|
+
});
|
623
|
+
export const getRemoteRebootTimers = factory('getRemoteRebootTimers', {
|
624
|
+
"namespace": "device"
|
625
|
+
});
|
626
|
+
export const onDispatchEvent = factory('onDispatchEvent', {
|
627
|
+
"namespace": "device"
|
628
|
+
});
|
629
|
+
export const offDispatchEvent = factory('offDispatchEvent', {
|
630
|
+
"namespace": "device"
|
631
|
+
});
|
632
|
+
export const otaStatus = factory('otaStatus', {
|
633
|
+
"namespace": "device"
|
634
|
+
});
|
635
|
+
export const registerOTACompleted = factory('registerOTACompleted', {
|
636
|
+
"namespace": "device"
|
637
|
+
});
|
638
|
+
export const onOtaCompleted = factory('onOtaCompleted', {
|
639
|
+
"namespace": "device"
|
640
|
+
});
|
641
|
+
export const offOtaCompleted = factory('offOtaCompleted', {
|
642
|
+
"namespace": "device"
|
643
|
+
});
|
644
|
+
export const initVirtualDevice = factory('initVirtualDevice', {
|
645
|
+
"namespace": "device"
|
580
646
|
});
|
package/lib/HomeKit-3.1.4.d.ts
CHANGED
package/lib/MapKit-3.4.13.d.ts
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
/// <reference path="../@types/MiniKit.d.ts" />
|
2
1
|
export declare const nativeDisabled: typeof ty.nativeDisabled;
|
3
2
|
export declare const nativeInovke: typeof ty.nativeInovke;
|
4
3
|
export declare const getPermissionConfig: typeof ty.getPermissionConfig;
|
@@ -62,3 +61,14 @@ export declare const setBoardIcon: typeof ty.setBoardIcon;
|
|
62
61
|
export declare const setBoardIconSync: typeof ty.setBoardIconSync;
|
63
62
|
export declare const showBoardTitleIcon: typeof ty.showBoardTitleIcon;
|
64
63
|
export declare const showBoardTitleIconSync: typeof ty.showBoardTitleIconSync;
|
64
|
+
export declare const getMiniAppConfig: typeof ty.getMiniAppConfig;
|
65
|
+
export declare const getMiniAppConfigSync: typeof ty.getMiniAppConfigSync;
|
66
|
+
export declare const showBoard: typeof ty.showBoard;
|
67
|
+
export declare const resetBoardMenus: typeof ty.resetBoardMenus;
|
68
|
+
export declare const resetSystemMenus: typeof ty.resetSystemMenus;
|
69
|
+
export declare const showRedBot: typeof ty.showRedBot;
|
70
|
+
export declare const hiddenRedBot: typeof ty.hiddenRedBot;
|
71
|
+
export declare const hideRenderLoading: typeof ty.hideRenderLoading;
|
72
|
+
export declare const setBackgroundImage: typeof ty.setBackgroundImage;
|
73
|
+
export declare const widgetRemove: typeof ty.widgetRemove;
|
74
|
+
export declare const createNativeEventManager: typeof ty.createNativeEventManager;
|
@@ -65,4 +65,15 @@ export const hideBoardTitleIconSync = factory('hideBoardTitleIconSync');
|
|
65
65
|
export const setBoardIcon = factory('setBoardIcon');
|
66
66
|
export const setBoardIconSync = factory('setBoardIconSync');
|
67
67
|
export const showBoardTitleIcon = factory('showBoardTitleIcon');
|
68
|
-
export const showBoardTitleIconSync = factory('showBoardTitleIconSync');
|
68
|
+
export const showBoardTitleIconSync = factory('showBoardTitleIconSync');
|
69
|
+
export const getMiniAppConfig = factory('getMiniAppConfig');
|
70
|
+
export const getMiniAppConfigSync = factory('getMiniAppConfigSync');
|
71
|
+
export const showBoard = factory('showBoard');
|
72
|
+
export const resetBoardMenus = factory('resetBoardMenus');
|
73
|
+
export const resetSystemMenus = factory('resetSystemMenus');
|
74
|
+
export const showRedBot = factory('showRedBot');
|
75
|
+
export const hiddenRedBot = factory('hiddenRedBot');
|
76
|
+
export const hideRenderLoading = factory('hideRenderLoading');
|
77
|
+
export const setBackgroundImage = factory('setBackgroundImage');
|
78
|
+
export const widgetRemove = factory('widgetRemove');
|
79
|
+
export const createNativeEventManager = factory('createNativeEventManager');
|
package/lib/P2PKit-2.0.3.d.ts
CHANGED
@@ -1,26 +1,26 @@
|
|
1
1
|
export declare const playnet: {
|
2
|
-
autoConnectToAp:
|
3
|
-
getDeviceSecurityConfigs:
|
4
|
-
getPairConfigToken:
|
5
|
-
hasBlePermission:
|
6
|
-
hasLocalNetworkPermission:
|
7
|
-
hasPermission:
|
8
|
-
isSystemPopupInAutoConnectAp:
|
9
|
-
offBLEScanDevice:
|
10
|
-
offBLEStateChange:
|
11
|
-
offBlePermissionChange:
|
12
|
-
offWifiStateChange:
|
13
|
-
offlocalNetWorkPermissionChange:
|
14
|
-
onBLEScanDevice:
|
15
|
-
onBLEStateChange:
|
16
|
-
onBlePermissionChange:
|
17
|
-
onWifiStateChange:
|
18
|
-
onlocalNetWorkPermissionChange:
|
19
|
-
queryDeviceConfigState:
|
20
|
-
requestPermission:
|
21
|
-
resetDevice:
|
22
|
-
startActivator:
|
23
|
-
startBLEScanDevice:
|
24
|
-
stopActivator:
|
25
|
-
stopBLEScan:
|
2
|
+
autoConnectToAp: typeof ty.playnet.autoConnectToAp;
|
3
|
+
getDeviceSecurityConfigs: typeof ty.playnet.getDeviceSecurityConfigs;
|
4
|
+
getPairConfigToken: typeof ty.playnet.getPairConfigToken;
|
5
|
+
hasBlePermission: typeof ty.playnet.hasBlePermission;
|
6
|
+
hasLocalNetworkPermission: typeof ty.playnet.hasLocalNetworkPermission;
|
7
|
+
hasPermission: typeof ty.playnet.hasPermission;
|
8
|
+
isSystemPopupInAutoConnectAp: typeof ty.playnet.isSystemPopupInAutoConnectAp;
|
9
|
+
offBLEScanDevice: typeof ty.playnet.offBLEScanDevice;
|
10
|
+
offBLEStateChange: typeof ty.playnet.offBLEStateChange;
|
11
|
+
offBlePermissionChange: typeof ty.playnet.offBlePermissionChange;
|
12
|
+
offWifiStateChange: typeof ty.playnet.offWifiStateChange;
|
13
|
+
offlocalNetWorkPermissionChange: typeof ty.playnet.offlocalNetWorkPermissionChange;
|
14
|
+
onBLEScanDevice: typeof ty.playnet.onBLEScanDevice;
|
15
|
+
onBLEStateChange: typeof ty.playnet.onBLEStateChange;
|
16
|
+
onBlePermissionChange: typeof ty.playnet.onBlePermissionChange;
|
17
|
+
onWifiStateChange: typeof ty.playnet.onWifiStateChange;
|
18
|
+
onlocalNetWorkPermissionChange: typeof ty.playnet.onlocalNetWorkPermissionChange;
|
19
|
+
queryDeviceConfigState: typeof ty.playnet.queryDeviceConfigState;
|
20
|
+
requestPermission: typeof ty.playnet.requestPermission;
|
21
|
+
resetDevice: typeof ty.playnet.resetDevice;
|
22
|
+
startActivator: typeof ty.playnet.startActivator;
|
23
|
+
startBLEScanDevice: typeof ty.playnet.startBLEScanDevice;
|
24
|
+
stopActivator: typeof ty.playnet.stopActivator;
|
25
|
+
stopBLEScan: typeof ty.playnet.stopBLEScan;
|
26
26
|
};
|
package/lib/all-kits.d.ts
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
export * from './BaseKit-3.
|
2
|
-
export * from './BizKit-
|
3
|
-
export * from './DeviceKit-
|
4
|
-
export * from './MiniKit-3.1
|
1
|
+
export * from './BaseKit-3.14.3';
|
2
|
+
export * from './BizKit-4.10.4';
|
3
|
+
export * from './DeviceKit-4.9.0';
|
4
|
+
export * from './MiniKit-3.12.1';
|
5
5
|
export * from './PlayNetKit-1.1.3';
|
6
6
|
export * from './MapKit-3.4.13';
|
7
7
|
export * from './HomeKit-3.1.4';
|
8
8
|
export * from './P2PKit-2.0.3';
|
9
9
|
export * from './OutdoorKit-1.0.4';
|
10
|
-
import * as device from './DeviceKit-
|
10
|
+
import * as device from './DeviceKit-4.9.0';
|
11
11
|
export { device };
|
package/lib/all-kits.js
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
export * from './BaseKit-3.
|
2
|
-
export * from './BizKit-
|
3
|
-
export * from './DeviceKit-
|
4
|
-
export * from './MiniKit-3.1
|
1
|
+
export * from './BaseKit-3.14.3';
|
2
|
+
export * from './BizKit-4.10.4';
|
3
|
+
export * from './DeviceKit-4.9.0';
|
4
|
+
export * from './MiniKit-3.12.1';
|
5
5
|
export * from './PlayNetKit-1.1.3';
|
6
6
|
export * from './MapKit-3.4.13';
|
7
7
|
export * from './HomeKit-3.1.4';
|
8
8
|
export * from './P2PKit-2.0.3';
|
9
9
|
export * from './OutdoorKit-1.0.4';
|
10
|
-
import * as device from './DeviceKit-
|
10
|
+
import * as device from './DeviceKit-4.9.0';
|
11
11
|
export { device };
|
package/lib/cloud/device.d.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
import { IGetDpsInfos, IUpdateDpName, IUpdateGroupDpName, IGetWeatherQuality, IGetWeathers, ISaveCustomizePosition, IGetCustomizePosition, IGetDpsInfosResponse, IGetGroupDpsInfosResponse, IGetWeatherQualityResponse, IGetCustomizePositionResponse, IGetWeathersResponse, IGetDevProperty, ISaveDevProperty } from './interface';
|
1
|
+
import { IGetDpsInfos, IUpdateDpName, IUpdateGroupDpName, IGetWeatherQuality, IGetWeathers, ISaveCustomizePosition, IGetCustomizePosition, IGetDpsInfosResponse, IGetGroupDpsInfosResponse, IGetWeatherQualityResponse, IGetCustomizePositionResponse, IGetWeathersResponse, IGetDevProperty, IGetDevPropertyResponse, ISaveDevProperty } from './interface';
|
2
2
|
/**
|
3
3
|
* 获取设备所有 DP 信息
|
4
4
|
* @param {string} gwId 网关Id, 直连设备值同 devId,子设备则传网关的设备id
|
5
5
|
* @param {string} devId 设备Id
|
6
6
|
*/
|
7
|
-
declare const getDpsInfos: (params: IGetDpsInfos) => Promise<IGetDpsInfosResponse>;
|
7
|
+
declare const getDpsInfos: (params: IGetDpsInfos) => Promise<IGetDpsInfosResponse[]>;
|
8
8
|
/**
|
9
9
|
* 更新设备 DP 名称
|
10
10
|
* @param {string} devId 设备Id
|
@@ -54,7 +54,7 @@ declare const getCustomizePosition: (params: IGetCustomizePosition) => Promise<I
|
|
54
54
|
* 获取设备属性
|
55
55
|
* @param {string} devId 设备Id
|
56
56
|
*/
|
57
|
-
declare const getDevProperty: (params: IGetDevProperty) => Promise<
|
57
|
+
declare const getDevProperty: (params: IGetDevProperty) => Promise<IGetDevPropertyResponse>;
|
58
58
|
/**
|
59
59
|
* 保存设备属性
|
60
60
|
* @param {string} devId 设备Id
|
@@ -0,0 +1,11 @@
|
|
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
|
+
};
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import { factory } from '../utils';
|
2
|
+
const sendCmdForRefreshDeviceLQI = factory('sendCmdForRefreshDeviceLQI', {
|
3
|
+
namespace: 'gateway'
|
4
|
+
});
|
5
|
+
const getLastDeviceLQI = factory('getLastDeviceLQI', {
|
6
|
+
namespace: 'gateway'
|
7
|
+
});
|
8
|
+
const getSeniorAbility = factory('getSeniorAbility', {
|
9
|
+
namespace: 'gateway'
|
10
|
+
});
|
11
|
+
const getGatewaySubDevLimit = factory('getGatewaySubDevLimit', {
|
12
|
+
namespace: 'gateway'
|
13
|
+
});
|
14
|
+
const updateRelationMesh = factory('updateRelationMesh', {
|
15
|
+
namespace: 'gateway'
|
16
|
+
});
|
17
|
+
const updateRelationBlue = factory('updateRelationBlue', {
|
18
|
+
namespace: 'gateway'
|
19
|
+
});
|
20
|
+
const updateRelationBeacon = factory('updateRelationBeacon', {
|
21
|
+
namespace: 'gateway'
|
22
|
+
});
|
23
|
+
const getGatewayAbility = factory('getGatewayAbility', {
|
24
|
+
namespace: 'gateway'
|
25
|
+
});
|
26
|
+
const getSecurityDeviceLog = factory('getSecurityDeviceLog', {
|
27
|
+
namespace: 'gateway'
|
28
|
+
});
|
29
|
+
export const gateway = {
|
30
|
+
sendCmdForRefreshDeviceLQI,
|
31
|
+
getLastDeviceLQI,
|
32
|
+
getSeniorAbility,
|
33
|
+
getGatewaySubDevLimit,
|
34
|
+
updateRelationMesh,
|
35
|
+
updateRelationBlue,
|
36
|
+
updateRelationBeacon,
|
37
|
+
getGatewayAbility,
|
38
|
+
getSecurityDeviceLog
|
39
|
+
};
|
@@ -0,0 +1,19 @@
|
|
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
|
+
};
|
@@ -0,0 +1,71 @@
|
|
1
|
+
import { factory } from '../utils';
|
2
|
+
const addPanelUser = factory('addPanelUser', {
|
3
|
+
namespace: 'health'
|
4
|
+
});
|
5
|
+
const updatePanelUser = factory('updatePanelUser', {
|
6
|
+
namespace: 'health'
|
7
|
+
});
|
8
|
+
const deletePanelUser = factory('deletePanelUser', {
|
9
|
+
namespace: 'health'
|
10
|
+
});
|
11
|
+
const getPanelUserList = factory('getPanelUserList', {
|
12
|
+
namespace: 'health'
|
13
|
+
});
|
14
|
+
const getDefaultAvatarList = factory('getDefaultAvatarList', {
|
15
|
+
namespace: 'health'
|
16
|
+
});
|
17
|
+
const reportPanelBpgData = factory('reportPanelBpgData', {
|
18
|
+
namespace: 'health'
|
19
|
+
});
|
20
|
+
const reportSingleBpgData = factory('reportSingleBpgData', {
|
21
|
+
namespace: 'health'
|
22
|
+
});
|
23
|
+
const updateBpgDataRemark = factory('updateBpgDataRemark', {
|
24
|
+
namespace: 'health'
|
25
|
+
});
|
26
|
+
const deleteBpgData = factory('deleteBpgData', {
|
27
|
+
namespace: 'health'
|
28
|
+
});
|
29
|
+
const getBpgDataHistory = factory('getBpgDataHistory', {
|
30
|
+
namespace: 'health'
|
31
|
+
});
|
32
|
+
const getBpgDataTrendLatest = factory('getBpgDataTrendLatest', {
|
33
|
+
namespace: 'health'
|
34
|
+
});
|
35
|
+
const getBpgDataLevnum = factory('getBpgDataLevnum', {
|
36
|
+
namespace: 'health'
|
37
|
+
});
|
38
|
+
const getBpgDataTrend = factory('getBpgDataTrend', {
|
39
|
+
namespace: 'health'
|
40
|
+
});
|
41
|
+
const getBpgDataDays = factory('getBpgDataDays', {
|
42
|
+
namespace: 'health'
|
43
|
+
});
|
44
|
+
const getBpgDataUnallocated = factory('getBpgDataUnallocated', {
|
45
|
+
namespace: 'health'
|
46
|
+
});
|
47
|
+
const updateBpgDataUnallocated = factory('updateBpgDataUnallocated', {
|
48
|
+
namespace: 'health'
|
49
|
+
});
|
50
|
+
const deleteBpgDataUnallocated = factory('deleteBpgDataUnallocated', {
|
51
|
+
namespace: 'health'
|
52
|
+
});
|
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
|
+
};
|