@overmap-ai/core 1.0.60-forms-removal.4 → 1.0.60-forms-removal.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2322,7 +2322,7 @@ var __publicField = (obj, key, value) => {
2322
2322
  doesn't exist.`
2323
2323
  );
2324
2324
  }
2325
- state.projectFiles[activeProjectFileId].geo_bounds = action.payload;
2325
+ state.projectFiles[activeProjectFileId].bounds = action.payload;
2326
2326
  },
2327
2327
  // TODO: Move to MapContext. Should not be persisted.
2328
2328
  setActiveProjectFileId: (state, action) => {
@@ -5347,7 +5347,7 @@ var __publicField = (obj, key, value) => {
5347
5347
  url: `/projects/${activeProjectId}/files/`,
5348
5348
  payload: {
5349
5349
  ...activeProjectFile,
5350
- geo_bounds: JSON.stringify(activeProjectFile.geo_bounds),
5350
+ bounds: JSON.stringify(activeProjectFile.bounds),
5351
5351
  ...fileProps
5352
5352
  },
5353
5353
  blockers: [activeProjectFileId],
@@ -5428,7 +5428,7 @@ var __publicField = (obj, key, value) => {
5428
5428
  url,
5429
5429
  payload: {
5430
5430
  name: project.name,
5431
- geo_bounds: project.geo_bounds,
5431
+ bounds: project.bounds,
5432
5432
  ...projectType
5433
5433
  },
5434
5434
  blockers: [],
@@ -5444,7 +5444,7 @@ var __publicField = (obj, key, value) => {
5444
5444
  url: `/projects/${project.id}/`,
5445
5445
  payload: {
5446
5446
  name: project.name,
5447
- geo_bounds: project.geo_bounds
5447
+ bounds: project.bounds
5448
5448
  },
5449
5449
  blockers: [project.id.toString()],
5450
5450
  blocks: [project.id.toString()]