godcrm/backend/services/GoogleCalendarService.js
GOD CRM Release f89e074dd1
Some checks failed
CI / Lint / Typecheck / Test / Build (push) Has been cancelled
CI / PostgreSQL Integration Tests (push) Has been cancelled
GOD CRM — public scrubbed snapshot
Governed substrate for autonomous agents: scoped identity (passports),
audited actions, MCP workspace. Infra IPs and secrets redacted for public release.
2026-08-10 04:01:45 +03:00

35 lines
747 B
JavaScript

/**
* GoogleCalendarService — thin wrapper (ADR-119)
*
* All logic has been split into modules under ./google-calendar/.
* This file re-exports everything to maintain backward compatibility.
*/
export { generateBaseId } from './google-calendar/helpers.js';
export {
getAuthUrl,
handleCallback,
getOAuth2Client,
getConnectionStatus,
disconnectCalendar,
} from './google-calendar/auth.js';
export {
listCalendars,
listEvents,
createEvent,
updateEvent,
deleteEvent,
mapGoogleEventToCrm,
mapCrmToGoogleEvent,
} from './google-calendar/operations.js';
export {
syncFromGoogle,
syncToGoogle,
fullSync,
syncAllAccounts,
} from './google-calendar/sync.js';
export { default } from './google-calendar/index.js';