@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/dist/types.d.ts
CHANGED
|
@@ -82,6 +82,8 @@ export type OrgType = OverrideProperties<Merge<Tables<'tbl_org'>, {
|
|
|
82
82
|
is_enterprise: boolean;
|
|
83
83
|
is_free_trial: boolean;
|
|
84
84
|
is_hubspot_connected: boolean;
|
|
85
|
+
is_freshdesk_connected: boolean;
|
|
86
|
+
is_zohodesk_connected: boolean;
|
|
85
87
|
access_scopes: AccessScopes;
|
|
86
88
|
}>, {
|
|
87
89
|
org_plan: OrgPlan<AllPlans | Enterprise>;
|
|
@@ -118,6 +120,9 @@ export type ChatType = Merge<Tables<'view_chats'>, {
|
|
|
118
120
|
[key: string]: number;
|
|
119
121
|
};
|
|
120
122
|
active_phone: string | null;
|
|
123
|
+
flag_count_map?: {
|
|
124
|
+
[key: string]: number;
|
|
125
|
+
};
|
|
121
126
|
}>;
|
|
122
127
|
export type MediaType = {
|
|
123
128
|
path: string;
|
|
@@ -161,6 +166,7 @@ export type TicketType = OverrideProperties<Tables<'tbl_chat_tickets'>, {
|
|
|
161
166
|
};
|
|
162
167
|
object_data?: HubspotObjectDataType;
|
|
163
168
|
} | null;
|
|
169
|
+
freshdesk_metadata: Record<string, string>;
|
|
164
170
|
close_ticket_metadata?: {
|
|
165
171
|
closed_by: string;
|
|
166
172
|
closed_at: string;
|
|
@@ -210,6 +216,7 @@ export type AttachmentFileType = {
|
|
|
210
216
|
result: string;
|
|
211
217
|
file: File | null;
|
|
212
218
|
type: MessageAttachmentFileTypes;
|
|
219
|
+
localFileURL?: string;
|
|
213
220
|
};
|
|
214
221
|
export type AttachmentLinkType = {
|
|
215
222
|
link: {
|