feat: operationalize Flemish land and nature themes
This commit is contained in:
@@ -28,6 +28,8 @@ import type {
|
||||
DhmvProductRead,
|
||||
GrbAcquireRequest,
|
||||
GrbProductRead,
|
||||
OfficialVectorAcquireRequest,
|
||||
OfficialVectorProductRead,
|
||||
TerrainSelectionResponse,
|
||||
ThematicRasterAcquireRequest,
|
||||
ThematicRasterProductRead,
|
||||
@@ -152,6 +154,14 @@ export const datasetsApi = {
|
||||
apiPost<JobRead>(`/api/v1/projects/${projectId}/datasets/grb/acquire`, payload),
|
||||
listGrbProducts: (projectId: string): Promise<{ items: GrbProductRead[]; total: number }> =>
|
||||
apiGet<{ items: GrbProductRead[]; total: number }>(`/api/v1/projects/${projectId}/datasets/grb/products`),
|
||||
acquireOfficialVector: (projectId: string, payload: OfficialVectorAcquireRequest): Promise<JobRead> =>
|
||||
apiPost<JobRead>(`/api/v1/projects/${projectId}/datasets/official-vector/acquire`, payload),
|
||||
listOfficialVectorProducts: (
|
||||
projectId: string,
|
||||
): Promise<{ items: OfficialVectorProductRead[]; total: number }> =>
|
||||
apiGet<{ items: OfficialVectorProductRead[]; total: number }>(
|
||||
`/api/v1/projects/${projectId}/datasets/official-vector/products`,
|
||||
),
|
||||
selectTerrain: (
|
||||
projectId: string,
|
||||
datasetId: string,
|
||||
|
||||
Reference in New Issue
Block a user