// // Copyright © 2020, 2021 Anticrm Platform Contributors. // Copyright © 2021 Hardcore Engineering Inc. // // Licensed under the Eclipse Public License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. You may // obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // // See the License for the specific language governing permissions and // limitations under the License. // import { Doc, Ref } from '@hcengineering/core' import { ObjectSearchCategory, ObjectSearchFactory } from '@hcengineering/model-presentation' import { IntlString, mergeIds, Resource } from '@hcengineering/platform' import { trackerId } from '@hcengineering/tracker' import tracker from '@hcengineering/tracker-resources/src/plugin' import type { AnyComponent } from '@hcengineering/ui/src/types' import { Action, ViewAction, Viewlet } from '@hcengineering/view' import { Application } from '@hcengineering/workbench' import { TxViewlet } from '@hcengineering/activity' import { NotificationGroup, NotificationType } from '@hcengineering/notification' export default mergeIds(trackerId, tracker, { string: { TrackerApplication: '' as IntlString, Projects: '' as IntlString, GotoIssues: '' as IntlString, GotoActive: '' as IntlString, GotoBacklog: '' as IntlString, GotoBoard: '' as IntlString, GotoComponents: '' as IntlString, GotoTrackerApplication: '' as IntlString, GotoMyIssues: '' as IntlString, SearchIssue: '' as IntlString, Parent: '' as IntlString, CreatedDate: '' as IntlString, ChangeStatus: '' as IntlString, ConfigLabel: '' as IntlString, ConfigDescription: '' as IntlString }, activity: { TxIssueCreated: '' as AnyComponent, StatusIcon: '' as AnyComponent, PriorityIcon: '' as AnyComponent }, component: { SprintSelector: '' as AnyComponent, IssueStatistics: '' as AnyComponent, TimeSpendReportPopup: '' as AnyComponent, NotificationIssuePresenter: '' as AnyComponent, SprintFilter: '' as AnyComponent }, app: { Tracker: '' as Ref }, viewlet: { IssueList: '' as Ref, IssueTemplateList: '' as Ref, IssueKanban: '' as Ref, SprintList: '' as Ref, ComponentList: '' as Ref, ComponentsTimeline: '' as Ref }, ids: { TxIssueCreated: '' as Ref, TrackerNotificationGroup: '' as Ref, AssigneeNotification: '' as Ref }, completion: { IssueQuery: '' as Resource, IssueCategory: '' as Ref }, actionImpl: { Move: '' as ViewAction, CopyToClipboard: '' as ViewAction, EditWorkflowStatuses: '' as ViewAction, EditProject: '' as ViewAction, DeleteProject: '' as ViewAction, DeleteSprint: '' as ViewAction }, action: { NewRelatedIssue: '' as Ref>>, DeleteSprint: '' as Ref>>, DeleteProject: '' as Ref>>, SetSprintLead: '' as Ref>> } })