@periskope/types 0.6.169 → 0.6.171
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/types.d.ts +11 -0
- package/package.json +1 -1
- package/supabase.types.ts +1 -1
- package/types.ts +11 -0
package/dist/types.d.ts
CHANGED
|
@@ -357,6 +357,17 @@ export type TicketInfoType = {
|
|
|
357
357
|
[key: string]: string;
|
|
358
358
|
} | null;
|
|
359
359
|
};
|
|
360
|
+
attached_messages: {
|
|
361
|
+
body: string;
|
|
362
|
+
chat_id: string;
|
|
363
|
+
org_phone: string;
|
|
364
|
+
timestamp: string;
|
|
365
|
+
media_path: string;
|
|
366
|
+
message_id: string;
|
|
367
|
+
sender_name: string;
|
|
368
|
+
performed_by: string;
|
|
369
|
+
sender_phone: string;
|
|
370
|
+
}[];
|
|
360
371
|
};
|
|
361
372
|
export type IntegrationLogObjectType = 'chat' | 'message' | 'reaction' | 'ticket';
|
|
362
373
|
export declare enum IntegrationLogType {
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
package/types.ts
CHANGED
|
@@ -471,6 +471,17 @@ export type TicketInfoType = {
|
|
|
471
471
|
quoted_message_id: string;
|
|
472
472
|
ticket_custom_properties: { [key: string]: string } | null;
|
|
473
473
|
};
|
|
474
|
+
attached_messages: {
|
|
475
|
+
body: string;
|
|
476
|
+
chat_id: string;
|
|
477
|
+
org_phone: string;
|
|
478
|
+
timestamp: string;
|
|
479
|
+
media_path: string;
|
|
480
|
+
message_id: string;
|
|
481
|
+
sender_name: string;
|
|
482
|
+
performed_by: string;
|
|
483
|
+
sender_phone: string;
|
|
484
|
+
}[];
|
|
474
485
|
};
|
|
475
486
|
|
|
476
487
|
export type IntegrationLogObjectType =
|