larksr_websdk 3.3.109 → 3.3.111

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.
@@ -253,7 +253,11 @@ declare enum LarkSRClientEvent {
253
253
  /**
254
254
  * Tooltip info
255
255
  */
256
- TOOLTIP_INFO = "tooltipinfo"
256
+ TOOLTIP_INFO = "tooltipinfo",
257
+ /**
258
+ * 等待队列状态更新
259
+ */
260
+ WAITQUEUE_STATUS = "waitqueuestatus"
257
261
  }
258
262
  /**
259
263
  * LarkSR 发出的事件
@@ -292,6 +296,11 @@ interface ILarkSRConfig {
292
296
  * /proxyBasePath/API
293
297
  */
294
298
  proxyBasePath?: string;
299
+ /**
300
+ * 当设置时websocket地址变为
301
+ * /proxyBaesPaht/API
302
+ */
303
+ proxyWsBasePath?: string;
295
304
  /**
296
305
  * 可选项。 sdk 授权码。如果不在此处填,则必须在后续的实例里调用 initSDKAuthCode 初始化。
297
306
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "larksr_websdk",
3
- "version": "3.3.109",
3
+ "version": "3.3.111",
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",
package/types/larksr.d.ts CHANGED
@@ -253,7 +253,11 @@ declare enum LarkSRClientEvent {
253
253
  /**
254
254
  * Tooltip info
255
255
  */
256
- TOOLTIP_INFO = "tooltipinfo"
256
+ TOOLTIP_INFO = "tooltipinfo",
257
+ /**
258
+ * 等待队列状态更新
259
+ */
260
+ WAITQUEUE_STATUS = "waitqueuestatus"
257
261
  }
258
262
  /**
259
263
  * LarkSR 发出的事件
@@ -292,6 +296,11 @@ interface ILarkSRConfig {
292
296
  * /proxyBasePath/API
293
297
  */
294
298
  proxyBasePath?: string;
299
+ /**
300
+ * 当设置时websocket地址变为
301
+ * /proxyBaesPaht/API
302
+ */
303
+ proxyWsBasePath?: string;
295
304
  /**
296
305
  * 可选项。 sdk 授权码。如果不在此处填,则必须在后续的实例里调用 initSDKAuthCode 初始化。
297
306
  */