@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/dist/rules.types.d.ts +1 -1
- package/dist/rules.types.js +45 -7
- package/dist/supabase.types.d.ts +4 -1
- package/dist/types.d.ts +10 -7
- package/package.json +1 -1
- package/rules.types.ts +44 -6
- package/supabase.types.ts +2654 -2651
- package/types.ts +9 -6
package/types.ts
CHANGED
|
@@ -79,11 +79,14 @@ export type OrgMetadata = {
|
|
|
79
79
|
referralSource?: string;
|
|
80
80
|
surveyData?: MicrosurveyData;
|
|
81
81
|
preferences?: OrgPreferences;
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
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
|
>;
|