@periskope/types 0.6.100 → 0.6.103

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
@@ -48,6 +48,7 @@ export type OrgPreferences = {
48
48
  disable_allow_exports?: boolean;
49
49
  sync_phone_contacts?: boolean;
50
50
  mask_phone_numbers?: boolean;
51
+ show_sender_names?: boolean;
51
52
  };
52
53
  type OrgPreferenceKey = keyof OrgPreferences;
53
54
  export type OrgPreferencesValue = {
@@ -89,7 +90,6 @@ export type OrgType = OverrideProperties<Merge<Tables<'tbl_org'>, {
89
90
  is_enterprise: boolean;
90
91
  is_free_trial: boolean;
91
92
  is_hubspot_connected: boolean;
92
- is_freshdesk_connected: boolean;
93
93
  access_scopes: AccessScopes;
94
94
  }>, {
95
95
  org_plan: OrgPlan<AllPlans | Enterprise>;
@@ -165,7 +165,6 @@ export type TicketType = OverrideProperties<Tables<'tbl_chat_tickets'>, {
165
165
  };
166
166
  object_data?: HubspotObjectDataType;
167
167
  } | null;
168
- freshdesk_metadata: Record<string, string>;
169
168
  close_ticket_metadata?: {
170
169
  closed_by: string;
171
170
  closed_at: string;
@@ -302,6 +301,7 @@ export type TicketInfoType = {
302
301
  };
303
302
  export declare enum IntegrationLogType {
304
303
  NEW_CHAT = "chat.created",
304
+ NEW_CHAT_NOTIFICATION = "chat.notification.created",
305
305
  NEW_MESSAGE = "message.created",
306
306
  MESSAGE_UPDATED = "message.updated",
307
307
  MESSAGE_DELETED = "message.deleted",
package/dist/types.js CHANGED
@@ -57,6 +57,7 @@ exports.SUPPORTED_TYPES = [
57
57
  var IntegrationLogType;
58
58
  (function (IntegrationLogType) {
59
59
  IntegrationLogType["NEW_CHAT"] = "chat.created";
60
+ IntegrationLogType["NEW_CHAT_NOTIFICATION"] = "chat.notification.created";
60
61
  IntegrationLogType["NEW_MESSAGE"] = "message.created";
61
62
  IntegrationLogType["MESSAGE_UPDATED"] = "message.updated";
62
63
  IntegrationLogType["MESSAGE_DELETED"] = "message.deleted";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.100",
3
+ "version": "0.6.103",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",