@periskope/types 0.6.154 → 0.6.156

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/types.ts CHANGED
@@ -79,11 +79,14 @@ export type OrgMetadata = {
79
79
  referralSource?: string;
80
80
  surveyData?: MicrosurveyData;
81
81
  preferences?: OrgPreferences;
82
- hubspot_pipelines?: {
83
- id: string;
84
- label: string;
85
- default_stage: { id: string; label: string };
86
- }[];
82
+ hubspot: {
83
+ hubspot_pipelines?: {
84
+ id: string;
85
+ label: string;
86
+ default_stage: { id: string; label: string };
87
+ }[];
88
+ hubspot_hidden_fields?: string[];
89
+ }
87
90
  partition?: boolean;
88
91
  tickets: {
89
92
  prefix?: string;
@@ -160,7 +163,7 @@ export type ChatType = Merge<
160
163
  flag_count_map?: { [key: string]: number };
161
164
  is_archived?: boolean;
162
165
  is_pinned?: boolean;
163
- closed_at?: number;
166
+ closed_at?: number | null;
164
167
  common_chats?: string[];
165
168
  }
166
169
  >;