Add vector change detection foundation
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-16 23:55:52 +02:00
parent 97017c6512
commit 01f063b921
18 changed files with 871 additions and 10 deletions
+7
View File
@@ -0,0 +1,7 @@
import { apiPost } from './client'
import type { ChangeDetectionRequest, ChangeDetectionSummary, JobRead } from '../../types'
export const analysisApi = {
runChangeDetection: (payload: ChangeDetectionRequest): Promise<JobRead & { result_json?: ChangeDetectionSummary | null }> =>
apiPost<JobRead & { result_json?: ChangeDetectionSummary | null }>('/api/v1/analysis/change-detection', payload),
}
+1
View File
@@ -1,4 +1,5 @@
export { areasApi } from './areas'
export { analysisApi } from './analysis'
export { datasetsApi } from './datasets'
export { demoApi } from './demo'
export { detectionApi } from './detection'