larksr_websdk 3.3.105 → 3.3.107
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/dist/larksr-web-sdk.min.js +1 -1
- package/dist/types/lark/application.d.ts +3 -1
- package/dist/types/lark/peer_connection.d.ts +2 -1
- package/dist/types/larksr.d.ts +5 -1
- package/package.json +1 -1
- package/types/lark/application.d.ts +3 -1
- package/types/lark/peer_connection.d.ts +2 -1
- package/types/larksr.d.ts +5 -1
|
@@ -50,7 +50,8 @@ export declare enum APP_EVENT_TYPE {
|
|
|
50
50
|
RTC_RETRY_SUCCESS = 24,
|
|
51
51
|
AerialViewStatus = 25,
|
|
52
52
|
AerialViewScreen = 26,
|
|
53
|
-
START_XR_STREAM_RESPONSE = 27
|
|
53
|
+
START_XR_STREAM_RESPONSE = 27,
|
|
54
|
+
TooltipInfo = 28
|
|
54
55
|
}
|
|
55
56
|
export interface AppEvent extends LocalEvent<APP_EVENT_TYPE> {
|
|
56
57
|
data?: any;
|
|
@@ -163,6 +164,7 @@ export default class Application extends EventBase<APP_EVENT_TYPE, AppEvent> {
|
|
|
163
164
|
private onAerialViewStatus;
|
|
164
165
|
private onAerialViewScreen;
|
|
165
166
|
private onVideoFrame;
|
|
167
|
+
private onToolTipinfo;
|
|
166
168
|
private onShareMediaError;
|
|
167
169
|
private onShareMediaInfo;
|
|
168
170
|
private onShareMediaOffer;
|
package/dist/types/larksr.d.ts
CHANGED
|
@@ -249,7 +249,11 @@ declare enum LarkSRClientEvent {
|
|
|
249
249
|
AERIAL_VIEW_SCREEN = "aerialviewscreen",
|
|
250
250
|
/**
|
|
251
251
|
*/
|
|
252
|
-
START_XR_STREAM_RESPONSE = "startxrstreamresponse"
|
|
252
|
+
START_XR_STREAM_RESPONSE = "startxrstreamresponse",
|
|
253
|
+
/**
|
|
254
|
+
* Tooltip info
|
|
255
|
+
*/
|
|
256
|
+
TOOLTIP_INFO = "tooltipinfo"
|
|
253
257
|
}
|
|
254
258
|
/**
|
|
255
259
|
* LarkSR 发出的事件
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "larksr_websdk",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.107",
|
|
4
4
|
"description": "Larksr websdk. Easy to build a cloud render client for larksr system or ue4 pixelstreaming.docs: https://paraversetechnology.github.io/en/webclient_sdk/",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pingxingyun",
|
|
@@ -50,7 +50,8 @@ export declare enum APP_EVENT_TYPE {
|
|
|
50
50
|
RTC_RETRY_SUCCESS = 24,
|
|
51
51
|
AerialViewStatus = 25,
|
|
52
52
|
AerialViewScreen = 26,
|
|
53
|
-
START_XR_STREAM_RESPONSE = 27
|
|
53
|
+
START_XR_STREAM_RESPONSE = 27,
|
|
54
|
+
TooltipInfo = 28
|
|
54
55
|
}
|
|
55
56
|
export interface AppEvent extends LocalEvent<APP_EVENT_TYPE> {
|
|
56
57
|
data?: any;
|
|
@@ -163,6 +164,7 @@ export default class Application extends EventBase<APP_EVENT_TYPE, AppEvent> {
|
|
|
163
164
|
private onAerialViewStatus;
|
|
164
165
|
private onAerialViewScreen;
|
|
165
166
|
private onVideoFrame;
|
|
167
|
+
private onToolTipinfo;
|
|
166
168
|
private onShareMediaError;
|
|
167
169
|
private onShareMediaInfo;
|
|
168
170
|
private onShareMediaOffer;
|
package/types/larksr.d.ts
CHANGED
|
@@ -249,7 +249,11 @@ declare enum LarkSRClientEvent {
|
|
|
249
249
|
AERIAL_VIEW_SCREEN = "aerialviewscreen",
|
|
250
250
|
/**
|
|
251
251
|
*/
|
|
252
|
-
START_XR_STREAM_RESPONSE = "startxrstreamresponse"
|
|
252
|
+
START_XR_STREAM_RESPONSE = "startxrstreamresponse",
|
|
253
|
+
/**
|
|
254
|
+
* Tooltip info
|
|
255
|
+
*/
|
|
256
|
+
TOOLTIP_INFO = "tooltipinfo"
|
|
253
257
|
}
|
|
254
258
|
/**
|
|
255
259
|
* LarkSR 发出的事件
|