@overmap-ai/core 1.0.48-add-teams.0 → 1.0.48-add-teams.1
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 +2 -2
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +2 -2
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/typings/models/base.d.ts +8 -0
- package/dist/typings/models/components.d.ts +2 -3
- package/dist/typings/models/teams.d.ts +3 -3
- package/package.json +1 -1
package/dist/overmap-core.js
CHANGED
|
@@ -7856,9 +7856,9 @@ class TeamService extends BaseApiService {
|
|
|
7856
7856
|
}
|
|
7857
7857
|
const offlineTeam = offline({
|
|
7858
7858
|
...teamPayload,
|
|
7859
|
-
organization: activeOrganizationId
|
|
7859
|
+
organization: activeOrganizationId,
|
|
7860
|
+
submitted_at: (/* @__PURE__ */ new Date()).toISOString()
|
|
7860
7861
|
// TODO: uncomment once supported
|
|
7861
|
-
// submitted_at: new Date().toISOString(),
|
|
7862
7862
|
// created_by: state.userReducer.currentUser.id,
|
|
7863
7863
|
});
|
|
7864
7864
|
store.dispatch(addTeam(offlineTeam));
|