@overmap-ai/core 1.0.58-sign-up-hotfix.4 → 1.0.59

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.
@@ -2722,11 +2722,6 @@ var IssueUpdateChange = /* @__PURE__ */ ((IssueUpdateChange2) => {
2722
2722
  IssueUpdateChange2["DUE_DATE"] = "due_date";
2723
2723
  return IssueUpdateChange2;
2724
2724
  })(IssueUpdateChange || {});
2725
- var ProjectType = /* @__PURE__ */ ((ProjectType2) => {
2726
- ProjectType2[ProjectType2["PERSONAL"] = 0] = "PERSONAL";
2727
- ProjectType2[ProjectType2["ORGANIZATION"] = 2] = "ORGANIZATION";
2728
- return ProjectType2;
2729
- })(ProjectType || {});
2730
2725
  var VerificationCodeType = /* @__PURE__ */ ((VerificationCodeType2) => {
2731
2726
  VerificationCodeType2[VerificationCodeType2["USER_REGISTRATION"] = 0] = "USER_REGISTRATION";
2732
2727
  VerificationCodeType2[VerificationCodeType2["APPLICATION_INVITE"] = 2] = "APPLICATION_INVITE";
@@ -3026,7 +3021,6 @@ const initialState$d = {
3026
3021
  activeProjectId: null,
3027
3022
  recentProjectIds: [],
3028
3023
  recentSearchableQueries: [],
3029
- createProjectType: ProjectType.PERSONAL,
3030
3024
  attachments: {}
3031
3025
  };
3032
3026
  const projectSlice = createSlice({
@@ -3064,9 +3058,6 @@ const projectSlice = createSlice({
3064
3058
  state.projects[project.id] = project;
3065
3059
  });
3066
3060
  },
3067
- setCreateProjectType: (state, action) => {
3068
- state.createProjectType = action.payload;
3069
- },
3070
3061
  deleteProject: (state, action) => {
3071
3062
  delete state.projects[action.payload.id];
3072
3063
  state.recentProjectIds = state.recentProjectIds.filter((id) => id !== action.payload.id);
@@ -3115,7 +3106,6 @@ const {
3115
3106
  updateOrCreateProject,
3116
3107
  updateOrCreateProjects: addOrReplaceProjects,
3117
3108
  setActiveProjectId,
3118
- setCreateProjectType,
3119
3109
  deleteProject,
3120
3110
  acceptProjectInvite,
3121
3111
  addActiveProjectIssuesCount,
@@ -3157,7 +3147,6 @@ const selectSortedProjects = createSelector(
3157
3147
  });
3158
3148
  }
3159
3149
  );
3160
- const selectCreateProjectType = (state) => state.projectReducer.createProjectType;
3161
3150
  const projectReducer = projectSlice.reducer;
3162
3151
  const selectProjectUsersIds = createSelector(
3163
3152
  [selectProjectAccesses],
@@ -6650,7 +6639,6 @@ class MainService extends BaseApiService {
6650
6639
  store.dispatch(addOrReplaceProjects(projects));
6651
6640
  store.dispatch(addOrReplaceWorkspaces(workspaces));
6652
6641
  }
6653
- console.debug("currentProjectId", currentProjectId);
6654
6642
  if (!currentProjectId) {
6655
6643
  store.dispatch(setIsFetchingInitialData(false));
6656
6644
  } else {
@@ -16894,7 +16882,6 @@ export {
16894
16882
  ProjectAttachmentService,
16895
16883
  ProjectFileService,
16896
16884
  ProjectService,
16897
- ProjectType,
16898
16885
  QrField,
16899
16886
  QrInput,
16900
16887
  QrScanner,
@@ -17220,7 +17207,6 @@ export {
17220
17207
  selectConversation,
17221
17208
  selectConversationMapping,
17222
17209
  selectConversations,
17223
- selectCreateProjectType,
17224
17210
  selectCurrentUser,
17225
17211
  selectDeletedRequests,
17226
17212
  selectDocument,
@@ -17366,7 +17352,6 @@ export {
17366
17352
  setCenterMapToProject,
17367
17353
  setConversation,
17368
17354
  setConversations,
17369
- setCreateProjectType,
17370
17355
  setCurrentUser,
17371
17356
  setDocumentAttachment,
17372
17357
  setDocumentAttachments,