@periskope/types 0.6.109 → 0.6.111
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/supabase.types.d.ts +266 -250
- package/dist/types.d.ts +7 -0
- package/package.json +1 -1
- package/supabase.types.ts +1904 -1890
- package/types.ts +5 -0
package/types.ts
CHANGED
|
@@ -104,6 +104,8 @@ export type OrgType = OverrideProperties<
|
|
|
104
104
|
is_enterprise: boolean;
|
|
105
105
|
is_free_trial: boolean;
|
|
106
106
|
is_hubspot_connected: boolean;
|
|
107
|
+
is_freshdesk_connected: boolean;
|
|
108
|
+
is_zohodesk_connected: boolean;
|
|
107
109
|
access_scopes: AccessScopes;
|
|
108
110
|
}
|
|
109
111
|
>,
|
|
@@ -142,6 +144,7 @@ export type ChatType = Merge<
|
|
|
142
144
|
messages_admins_only: boolean;
|
|
143
145
|
unread_count?: { [key: string]: number };
|
|
144
146
|
active_phone: string | null;
|
|
147
|
+
flag_count_map?: { [key: string]: number };
|
|
145
148
|
}
|
|
146
149
|
>;
|
|
147
150
|
|
|
@@ -195,6 +198,7 @@ export type TicketType = OverrideProperties<
|
|
|
195
198
|
};
|
|
196
199
|
object_data?: HubspotObjectDataType;
|
|
197
200
|
} | null;
|
|
201
|
+
freshdesk_metadata: Record<string, string>;
|
|
198
202
|
close_ticket_metadata?:
|
|
199
203
|
| {
|
|
200
204
|
closed_by: string;
|
|
@@ -310,6 +314,7 @@ export type MessageAttachmentFileTypes =
|
|
|
310
314
|
result: string;
|
|
311
315
|
file: File | null;
|
|
312
316
|
type: MessageAttachmentFileTypes;
|
|
317
|
+
localFileURL?:string
|
|
313
318
|
}
|
|
314
319
|
|
|
315
320
|
export type AttachmentLinkType = {
|