mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 06:36:37 +00:00
Major additions: - Complete Next.js studio application with 1600+ components - Docker support (Dockerfile.combined, docker-compose.yml) - GCP deployment documentation and benchmarks - SQL benchmark scripts for performance testing - Sentry integration for monitoring - Comprehensive test suite and mocks Studio features: - Dashboard and admin interfaces - Data visualization components - Authentication and user management - API integration with RuVector backend - Static data and public assets 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
1.4 KiB
TypeScript
20 lines
1.4 KiB
TypeScript
export const replicationKeys = {
|
|
sources: (projectRef: string | undefined) => ['projects', projectRef, 'sources'] as const,
|
|
destinations: (projectRef: string | undefined) =>
|
|
['projects', projectRef, 'destinations'] as const,
|
|
destinationById: (projectRef: string | undefined, destinationId: number | undefined) =>
|
|
['projects', projectRef, 'destinations', destinationId] as const,
|
|
publications: (projectRef: string | undefined, source_id: number | undefined) =>
|
|
['projects', projectRef, 'sources', source_id, 'publications'] as const,
|
|
tables: (projectRef: string | undefined, source_id: number | undefined) =>
|
|
['projects', projectRef, 'sources', source_id, 'tables'] as const,
|
|
pipelines: (projectRef: string | undefined) => ['projects', projectRef, 'pipelines'] as const,
|
|
pipelineById: (projectRef: string | undefined, pipelineId: number | undefined) =>
|
|
['projects', projectRef, 'pipelines', pipelineId] as const,
|
|
pipelinesStatus: (projectRef: string | undefined, pipelineId: number | undefined) =>
|
|
['projects', projectRef, 'pipelines', pipelineId, 'status'] as const,
|
|
pipelinesReplicationStatus: (projectRef: string | undefined, pipelineId: number | undefined) =>
|
|
['projects', projectRef, 'pipelines', pipelineId, 'replication-status'] as const,
|
|
pipelinesVersion: (projectRef: string | undefined, pipelineId: number | undefined) =>
|
|
['projects', projectRef, 'pipelines', pipelineId, 'version'] as const,
|
|
}
|