@rongcloud/engine 5.30.0-enterprise.5 → 5.30.0-enterprise.6

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/index.d.ts CHANGED
@@ -69,8 +69,6 @@ declare const Log: {
69
69
  readonly L_INSTALL_PLUGIN_R: "L-INSTALL_PLUGIN-R";
70
70
  /** navi 配置错误 */
71
71
  readonly L_NAVI_CONF_E: "L-NAVI_CONF_ERROR-E";
72
- /** CMP 地址 */
73
- readonly L_NAVI_CMP_R: "L-NAVI_CPM-R";
74
72
  readonly A_SEND_MSG_T: "A-send_msg-T";
75
73
  readonly A_SEND_MSG_R: "A-send_msg-R";
76
74
  readonly L_SEND_MSG_T: "L-send_msg-T";
@@ -3177,10 +3175,10 @@ declare enum ErrorCode {
3177
3175
  DNS_PROXY_ERROR = 35052,
3178
3176
  /**
3179
3177
  * 35053
3180
- * dns 代理数据解构错误
3178
+ * dns 代理返回数据错误
3181
3179
  * @since 5.12.2
3182
3180
  */
3183
- DNS_PROXY_DATA_DESTRUCTUR_ERROR = 35053,
3181
+ DNS_PROXY_DATA_ERROR = 35053,
3184
3182
  /**
3185
3183
  * 35054
3186
3184
  * 传入的 disableUpdateLastMessage 参数无效。在会话类型为 ULTRA GROUP 时,该字段不允许设置为 true
@@ -9580,6 +9578,10 @@ declare class Validator {
9580
9578
 
9581
9579
  interface IServerAddressData {
9582
9580
  addr: string;
9581
+ /**
9582
+ * Electron 平台用户自定义 dns 解析结果,用于向协议栈传递;结果为空时不赋值,保持 undefined
9583
+ */
9584
+ ipList?: string[];
9583
9585
  protocol: EConnectProtocol;
9584
9586
  weight: number;
9585
9587
  /** 是否进行 tls 和 quic 竞速 */