@aglyn/tenant-data-admin 1.0.0-beta.165 → 1.0.0-beta.166
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/package.json +6 -6
- package/src/lib/server/contact-merge.js +24 -19
- package/src/lib/server/contact-merge.js.map +1 -1
- package/src/lib/server/crm-booking-activity.js +8 -3
- package/src/lib/server/crm-booking-activity.js.map +1 -1
- package/src/lib/server/crm-inbound-email.js +12 -2
- package/src/lib/server/crm-inbound-email.js.map +1 -1
- package/src/lib/server/email-flow-gate.js +8 -1
- package/src/lib/server/email-flow-gate.js.map +1 -1
- package/src/lib/server/erase-person.js +20 -1
- package/src/lib/server/erase-person.js.map +1 -1
- package/src/lib/server/host-visitor-records.d.ts +78 -0
- package/src/lib/server/host-visitor-records.js +238 -17
- package/src/lib/server/host-visitor-records.js.map +1 -1
- package/src/lib/server/organizations.d.ts +1 -1
- package/src/lib/server/organizations.js.map +1 -1
|
@@ -229,7 +229,7 @@ export declare function getOrgForUser(uid: string, orgId?: string | null): Promi
|
|
|
229
229
|
* added for the export route (AGL-1046), which had been reading the
|
|
230
230
|
* legacy host path and exporting nothing at all.
|
|
231
231
|
*/
|
|
232
|
-
export type OrgDataCollection = 'datasets' | 'contacts' | 'contactSegments' | 'crmViews' | 'lists' | 'media' | 'mediaFolders';
|
|
232
|
+
export type OrgDataCollection = 'datasets' | 'contacts' | 'contactSegments' | 'crmViews' | 'leads' | 'lists' | 'media' | 'mediaFolders';
|
|
233
233
|
export declare function orgDataCollectionForHost(hostId: string, name: OrgDataCollection): Promise<FirebaseFirestore.CollectionReference>;
|
|
234
234
|
/**
|
|
235
235
|
* Narrows an org-scoped collection to what ONE host may see (AGL-1039).
|