@periskope/types 0.6.27 → 0.6.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.
package/types.ts CHANGED
@@ -53,7 +53,9 @@ export type MessageType = OverrideProperties<
53
53
  media: MediaType | null;
54
54
  }
55
55
  >;
56
-
56
+ export type TicketType = OverrideProperties<Tables<'tbl_chat_tickets'>, {
57
+ label_ids: Record<string, boolean>;
58
+ }>
57
59
  export type ContactType = Merge<
58
60
  Tables<'tbl_contacts'>,
59
61
  {
@@ -120,6 +122,7 @@ export type SendMessageContent = {
120
122
  quoted_message_id?: string;
121
123
  quoted_message_type?: 'reply' | 'forward' | 'reply_private';
122
124
  broadcast_id?: string;
125
+ performed_by?: string;
123
126
  variables?: Record<string, VariableType>;
124
127
  };
125
128