tonightpass 0.0.159 → 0.0.160

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/dist/index.d.mts CHANGED
@@ -274,11 +274,11 @@ type ChannelMessage = Base & {
274
274
  sender: ChannelParticipant;
275
275
  content: string;
276
276
  attachments: Attachment[];
277
- sent: boolean;
278
- delivered: boolean;
279
- read: boolean;
277
+ isSent: boolean;
278
+ isDelivered: boolean;
279
+ isRead: boolean;
280
280
  readBy?: ChannelMessageReadByEntry[];
281
- edited: boolean;
281
+ isEdited: boolean;
282
282
  editedAt?: Date;
283
283
  replyTo?: ChannelMessage;
284
284
  reactions?: ChannelMessageReaction[];
package/dist/index.d.ts CHANGED
@@ -274,11 +274,11 @@ type ChannelMessage = Base & {
274
274
  sender: ChannelParticipant;
275
275
  content: string;
276
276
  attachments: Attachment[];
277
- sent: boolean;
278
- delivered: boolean;
279
- read: boolean;
277
+ isSent: boolean;
278
+ isDelivered: boolean;
279
+ isRead: boolean;
280
280
  readBy?: ChannelMessageReadByEntry[];
281
- edited: boolean;
281
+ isEdited: boolean;
282
282
  editedAt?: Date;
283
283
  replyTo?: ChannelMessage;
284
284
  reactions?: ChannelMessageReaction[];