@rongcloud/engine 5.8.5 → 5.8.6-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 +6 -2
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5557,7 +5557,9 @@ interface IUpdatedExpansion {
|
|
|
5557
5557
|
[key: string]: any;
|
|
5558
5558
|
};
|
|
5559
5559
|
messageUId: string;
|
|
5560
|
-
|
|
5560
|
+
conversationType: ConversationType;
|
|
5561
|
+
targetId: string;
|
|
5562
|
+
channelId: string;
|
|
5561
5563
|
}
|
|
5562
5564
|
/**
|
|
5563
5565
|
* 扩展删除
|
|
@@ -5566,7 +5568,9 @@ interface IUpdatedExpansion {
|
|
|
5566
5568
|
interface IDeletedExpansion {
|
|
5567
5569
|
deletedKeys: string[];
|
|
5568
5570
|
messageUId: string;
|
|
5569
|
-
|
|
5571
|
+
conversationType: ConversationType;
|
|
5572
|
+
targetId: string;
|
|
5573
|
+
channelId: string;
|
|
5570
5574
|
}
|
|
5571
5575
|
/**
|
|
5572
5576
|
* 扩展变更监听
|