/** * Durable links between a verified provider identity and an Agent Native user. * Provider credentials and raw provider payloads never belong in this table. */ export interface IntegrationIdentityLink { id: string; platform: string; tenantId: string; externalUserId: string; userEmail: string; orgId: string; createdAt: number; updatedAt: number; } /** Persist a verified mapping and fail closed if it changes identity later. */ export declare function upsertVerifiedIntegrationIdentity(input: { platform: string; tenantId: string; externalUserId: string; userEmail: string; orgId: string; }): Promise; //# sourceMappingURL=identity-links-store.d.ts.map