@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.
- package/dist/overmap-core.js +4 -4
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +4 -4
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/typings/models/assets.d.ts +1 -2
- package/dist/typings/models/geo.d.ts +1 -1
- package/dist/typings/models/issues.d.ts +1 -4
- package/dist/typings/models/projects.d.ts +2 -3
- package/package.json +1 -1
|
@@ -2322,7 +2322,7 @@ var __publicField = (obj, key, value) => {
|
|
|
2322
2322
|
doesn't exist.`
|
|
2323
2323
|
);
|
|
2324
2324
|
}
|
|
2325
|
-
state.projectFiles[activeProjectFileId].
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
5447
|
+
bounds: project.bounds
|
|
5448
5448
|
},
|
|
5449
5449
|
blockers: [project.id.toString()],
|
|
5450
5450
|
blocks: [project.id.toString()]
|