@ericsanchezok/synergy-sdk 1.1.27 → 1.1.28

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.
@@ -1100,6 +1100,10 @@ export type ChannelFeishuAccountConfig = {
1100
1100
  * Require @mention in group chats
1101
1101
  */
1102
1102
  requireMention?: boolean;
1103
+ /**
1104
+ * Bot open_id used to verify real @mentions in group chats
1105
+ */
1106
+ botOpenId?: string;
1103
1107
  /**
1104
1108
  * Enable streaming card updates
1105
1109
  */
@@ -1690,6 +1694,7 @@ export type Session = {
1690
1694
  pinned?: number;
1691
1695
  permission?: PermissionRuleset;
1692
1696
  pendingReply?: boolean;
1697
+ allowAll?: boolean;
1693
1698
  interaction?: SessionInteraction;
1694
1699
  agenda?: {
1695
1700
  itemID: string;
@@ -2835,6 +2840,10 @@ export type EventPermissionAllowAllChanged = {
2835
2840
  properties: {
2836
2841
  sessionID: string;
2837
2842
  enabled: boolean;
2843
+ sessions: Array<{
2844
+ sessionID: string;
2845
+ enabled: boolean;
2846
+ }>;
2838
2847
  };
2839
2848
  };
2840
2849
  export type EventNoteCreated = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@ericsanchezok/synergy-sdk",
4
- "version": "1.1.27",
4
+ "version": "1.1.28",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {