@ray-js/api 1.5.32 → 1.5.34
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/DeviceKit.d.ts
CHANGED
@@ -1986,7 +1986,7 @@ declare namespace ty.device {
|
|
1986
1986
|
/** 设备id */
|
1987
1987
|
deviceId: string
|
1988
1988
|
/** dpids 数组 */
|
1989
|
-
dpIds:
|
1989
|
+
dpIds: string[]
|
1990
1990
|
/** 查询类型 0 */
|
1991
1991
|
queryType?: number
|
1992
1992
|
complete?: () => void
|
@@ -3941,7 +3941,7 @@ declare namespace ty.device {
|
|
3941
3941
|
/** 设备模型 设备id */
|
3942
3942
|
deviceId: string
|
3943
3943
|
/** dpId */
|
3944
|
-
dpIds:
|
3944
|
+
dpIds: string[]
|
3945
3945
|
complete?: () => void
|
3946
3946
|
success?: (params: null) => void
|
3947
3947
|
fail?: (params: {
|
@@ -5846,7 +5846,7 @@ declare namespace ty.device {
|
|
5846
5846
|
/** 设备id */
|
5847
5847
|
deviceId: string
|
5848
5848
|
/** dpids 数组 */
|
5849
|
-
dpIds:
|
5849
|
+
dpIds: string[]
|
5850
5850
|
/** 查询类型 0 */
|
5851
5851
|
queryType?: number
|
5852
5852
|
}
|
@@ -6783,7 +6783,7 @@ declare namespace ty.device {
|
|
6783
6783
|
/** 设备模型 设备id */
|
6784
6784
|
deviceId: string
|
6785
6785
|
/** dpId */
|
6786
|
-
dpIds:
|
6786
|
+
dpIds: string[]
|
6787
6787
|
}
|
6788
6788
|
|
6789
6789
|
export type CheckOTAUpgradeStatusParams = {
|
package/lib/BaseKit-3.14.3.d.ts
CHANGED
@@ -107,3 +107,6 @@ export declare const onKeyboardWillShow: typeof ty.onKeyboardWillShow;
|
|
107
107
|
export declare const offKeyboardWillShow: typeof ty.offKeyboardWillShow;
|
108
108
|
export declare const onKeyboardWillHide: typeof ty.onKeyboardWillHide;
|
109
109
|
export declare const offKeyboardWillHide: typeof ty.offKeyboardWillHide;
|
110
|
+
export declare const fetchVideoThumbnails: typeof ty.fetchVideoThumbnails;
|
111
|
+
export declare const clearVideoThumbnails: typeof ty.clearVideoThumbnails;
|
112
|
+
export declare const clipVideo: typeof ty.clipVideo;
|
package/lib/BaseKit-3.14.3.js
CHANGED
@@ -116,4 +116,7 @@ export const offKeyboardHeightChange = factory('offKeyboardHeightChange');
|
|
116
116
|
export const onKeyboardWillShow = factory('onKeyboardWillShow');
|
117
117
|
export const offKeyboardWillShow = factory('offKeyboardWillShow');
|
118
118
|
export const onKeyboardWillHide = factory('onKeyboardWillHide');
|
119
|
-
export const offKeyboardWillHide = factory('offKeyboardWillHide');
|
119
|
+
export const offKeyboardWillHide = factory('offKeyboardWillHide');
|
120
|
+
export const fetchVideoThumbnails = factory('fetchVideoThumbnails');
|
121
|
+
export const clearVideoThumbnails = factory('clearVideoThumbnails');
|
122
|
+
export const clipVideo = factory('clipVideo');
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ray-js/api",
|
3
|
-
"version": "1.5.
|
3
|
+
"version": "1.5.34",
|
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.34",
|
33
|
+
"@ray-js/router": "1.5.34",
|
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.34",
|
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": "f36fdd16034493c545d16f4cad54da22bad8588b"
|
50
50
|
}
|