@rongcloud/engine 5.5.8-beem-alpha.4 → 5.6.0-beem-alpha.1

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
@@ -4325,8 +4325,9 @@ declare abstract class BasicReporter {
4325
4325
  * @param platform 平台
4326
4326
  * @param uri 本次拉取的上传地址,若无值,使用导航配置下发地址
4327
4327
  * @param logId 拉取事务 Id,用于上传日志时的 Http 请求
4328
+ * @param messageUId 消息 messageUId
4328
4329
  */
4329
- report(startTime: number, endTime: number, platform: string, uri: string, logId: string): Promise<void>;
4330
+ report(startTime: number, endTime: number, platform: string, uri: string, logId: string, messageUId: string): Promise<void>;
4330
4331
  private transcsv;
4331
4332
  /**
4332
4333
  * 以 `POST` 方法向服务发送日志数据
@@ -4368,8 +4369,9 @@ declare class IndexDBReporter extends BasicReporter {
4368
4369
  * @param platform
4369
4370
  * @param uri
4370
4371
  * @param logId
4372
+ * @param messageUId
4371
4373
  */
4372
- report(startTime: number, endTime: number, platform: string, uri: string, logId: string): Promise<void>;
4374
+ report(startTime: number, endTime: number, platform: string, uri: string, logId: string, messageUId: string): Promise<void>;
4373
4375
  protected realtimeReport(url: string, level: LogL, itv: number): Promise<void>;
4374
4376
  }
4375
4377
 
@@ -7582,6 +7584,7 @@ declare const SEND_MESSAGE_TYPE_OPTION: {
7582
7584
  [key: string]: {
7583
7585
  isCounted: boolean;
7584
7586
  isPersited: boolean;
7587
+ searchProps?: string[];
7585
7588
  };
7586
7589
  };
7587
7590
  /**