@periskope/types 0.6.42 → 0.6.43

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/types.ts CHANGED
@@ -162,14 +162,12 @@ export type LogsType = {
162
162
  total_count: number | null;
163
163
  delivery_info: MessageInfo | null;
164
164
  delivered_count: number | null;
165
- chat_image: string | null;
166
- chat_name: string | null;
167
165
  members: Partial<ChatMemberType>[];
168
166
  member_count: number | null;
169
167
  };
170
168
 
171
169
  export type BroadcastLogType = Tables<'view_broadcast_logs'> & {
172
- logs: LogsType[];
170
+ logs: (LogsType & ChatType)[];
173
171
  };
174
172
 
175
173
  /* ----------------------- CHAT PARTICIPANT OPERATION ----------------------- */