@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.169",
3
+ "version": "0.6.171",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/supabase.types.ts CHANGED
@@ -2733,4 +2733,4 @@ export type CompositeTypes<
2733
2733
  ? PublicSchema["CompositeTypes"][PublicCompositeTypeNameOrOptions]
2734
2734
  : never
2735
2735
 
2736
-
2736
+
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 =