From a95dce7bbb1afe4510feffd0105153db156dac1a Mon Sep 17 00:00:00 2001 From: sriramveeraghanta Date: Thu, 4 Dec 2025 18:37:52 +0530 Subject: [PATCH] fix: file fomat --- apps/silo/src/apps/github/types/index.ts | 2 +- .../v2/migrator/orchestrator.ts | 2 +- .../steps/cloud/issues/issues.step.ts | 3 +-- .../steps/shared/entities/cycles.step.ts | 4 ++-- .../steps/shared/issues/issues.step.ts | 6 +++--- apps/space/vite.config.ts | 20 ++++++++----------- .../[workspaceSlug]/(settings)/layout.tsx | 1 - .../components/comments/quick-actions.tsx | 2 +- apps/web/core/components/modules/form.tsx | 2 +- .../core/components/modules/select/status.tsx | 2 +- .../analytics/use-analytics-tabs.tsx | 2 +- apps/web/ee/components/desktop/index.ts | 1 - .../labels/initiative-label-item.tsx | 11 ++-------- .../navigations/use-navigation-items.ts | 4 ---- .../components/pages/modals/move/footer.tsx | 4 +++- .../artifacts/preview-cards/add-remove.tsx | 3 ++- .../sidebar/extended-sidebar-item.tsx | 1 - apps/web/ee/hooks/app-rail/provider.tsx | 3 +-- apps/web/ee/store/automations/node/base.ts | 3 +-- apps/web/ee/store/command-palette.store.ts | 8 ++++---- .../ee/store/initiatives/initiatives.store.ts | 8 ++++---- apps/web/ee/store/pi-chat/attachment.store.ts | 2 +- apps/web/ee/store/templates/instance/base.ts | 6 ++++-- .../bubble-menu/selection-conversion/utils.ts | 3 +-- packages/etl/src/jira-server/etl/pull-v2.ts | 12 +++++------ packages/etl/src/jira-server/etl/transform.ts | 3 +-- .../src/locales/de/translations-extended.ts | 9 ++++++--- .../src/locales/es/translations-extended.ts | 3 ++- .../src/locales/fr/translations-extended.ts | 3 ++- .../src/locales/id/translations-extended.ts | 3 ++- .../src/locales/it/translations-extended.ts | 3 ++- .../locales/pt-BR/translations-extended.ts | 3 ++- packages/sdk/{.eslintrc.js => .eslintrc.cjs} | 0 packages/services/src/ai/ai.service.ts | 2 +- packages/services/src/issue/comments/index.ts | 2 +- packages/services/src/issue/index.ts | 2 +- packages/types/src/milestone.ts | 2 +- .../configs/filters/index.ts | 2 +- 38 files changed, 70 insertions(+), 82 deletions(-) rename packages/sdk/{.eslintrc.js => .eslintrc.cjs} (100%) diff --git a/apps/silo/src/apps/github/types/index.ts b/apps/silo/src/apps/github/types/index.ts index e45d93e6db..1b72affce5 100644 --- a/apps/silo/src/apps/github/types/index.ts +++ b/apps/silo/src/apps/github/types/index.ts @@ -112,4 +112,4 @@ export enum IssueWebhookActions { UNLABELED = "unlabeled", UNLOCKED = "unlocked", UNPINNED = "unpinned", -} \ No newline at end of file +} diff --git a/apps/silo/src/apps/jira-server-importer/v2/migrator/orchestrator.ts b/apps/silo/src/apps/jira-server-importer/v2/migrator/orchestrator.ts index 51323a7787..e37dcf6296 100644 --- a/apps/silo/src/apps/jira-server-importer/v2/migrator/orchestrator.ts +++ b/apps/silo/src/apps/jira-server-importer/v2/migrator/orchestrator.ts @@ -45,7 +45,7 @@ export class JiraImportOrchestrator implements TaskHandler { private readonly mq: MQ, private readonly store: Store, private readonly steps: IStep[] - ) { } + ) {} /** * Main task handler - called by worker diff --git a/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/cloud/issues/issues.step.ts b/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/cloud/issues/issues.step.ts index 0fbde5b73d..7e139026c2 100644 --- a/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/cloud/issues/issues.step.ts +++ b/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/cloud/issues/issues.step.ts @@ -2,11 +2,10 @@ import { pullIssuesV2 } from "@plane/etl/jira"; import { logger } from "@plane/logger"; import type { TImportJob } from "@plane/types"; import { createJiraClient } from "@/apps/jira-importer/helpers/migration-helpers"; -import type { TStepExecutionContext } from "@/apps/jira-server-importer/v2/types"; +import type { TStepExecutionContext, TJobContext } from "@/apps/jira-server-importer/v2/types"; import { getJobCredentials } from "@/helpers/job"; import { withCache } from "../../../../helpers/cache"; import { buildExternalId } from "../../../../helpers/job"; -import type { TJobContext } from "../../../../types"; import { JiraIssuesStep } from "../../shared/issues"; /** diff --git a/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/shared/entities/cycles.step.ts b/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/shared/entities/cycles.step.ts index 7b59ced019..a23423877f 100644 --- a/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/shared/entities/cycles.step.ts +++ b/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/shared/entities/cycles.step.ts @@ -30,7 +30,7 @@ export class JiraCyclesStep implements IStep { private readonly PAGE_SIZE = 100; - constructor(private readonly source: E_IMPORTER_KEYS.JIRA_SERVER | E_IMPORTER_KEYS.JIRA) { } + constructor(private readonly source: E_IMPORTER_KEYS.JIRA_SERVER | E_IMPORTER_KEYS.JIRA) {} /** * Executes the sprint extraction process: @@ -67,7 +67,7 @@ export class JiraCyclesStep implements IStep { } catch (error) { logger.error(`[${jobContext.job.id}] [${this.name}] Step failed`, { jobId: jobContext.job.id, - error: error + error: error, }); throw error; } diff --git a/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/shared/issues/issues.step.ts b/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/shared/issues/issues.step.ts index 17567bb939..7e1d96d464 100644 --- a/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/shared/issues/issues.step.ts +++ b/apps/silo/src/apps/jira-server-importer/v2/migrator/steps/shared/issues/issues.step.ts @@ -57,7 +57,7 @@ export class JiraIssuesStep implements IStep { EJiraStep.ISSUE_PROPERTY_OPTIONS, // Provides options ]; - constructor(private readonly source: E_IMPORTER_KEYS.JIRA_SERVER | E_IMPORTER_KEYS.JIRA) { } + constructor(private readonly source: E_IMPORTER_KEYS.JIRA_SERVER | E_IMPORTER_KEYS.JIRA) {} private readonly PAGE_SIZE = 50; @@ -554,8 +554,8 @@ export class JiraIssuesStep implements IStep { : null; return sprintObjects ? sprintObjects - .map((s) => (s ? buildExternalId(projectId, resourceId, s.id.toString()) : null)) - .filter((s) => s !== null) + .map((s) => (s ? buildExternalId(projectId, resourceId, s.id.toString()) : null)) + .filter((s) => s !== null) : []; } diff --git a/apps/space/vite.config.ts b/apps/space/vite.config.ts index 30b66d0180..cfcf38ff27 100644 --- a/apps/space/vite.config.ts +++ b/apps/space/vite.config.ts @@ -28,18 +28,14 @@ export default defineConfig(() => ({ plugins: [reactRouter(), tsconfigPaths({ projects: [path.resolve(__dirname, "tsconfig.json")] })], resolve: { alias: { - "@atlaskit/pragmatic-drag-and-drop/combine": import.meta.resolve( - "@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/combine.js" - ), - "@atlaskit/pragmatic-drag-and-drop-auto-scroll/element": import.meta.resolve( - "@atlaskit/pragmatic-drag-and-drop-auto-scroll/dist/esm/entry-point/element.js" - ), - "@atlaskit/pragmatic-drag-and-drop/element/adapter": import.meta.resolve( - "@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/element/adapter.js" - ), - "@atlaskit/pragmatic-drag-and-drop/private/get-element-from-point-without-honey-pot": import.meta.resolve( - "@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/private/get-element-from-point-without-honey-pot.js" - ), + "@atlaskit/pragmatic-drag-and-drop/combine": import.meta + .resolve("@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/combine.js"), + "@atlaskit/pragmatic-drag-and-drop-auto-scroll/element": import.meta + .resolve("@atlaskit/pragmatic-drag-and-drop-auto-scroll/dist/esm/entry-point/element.js"), + "@atlaskit/pragmatic-drag-and-drop/element/adapter": import.meta + .resolve("@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/element/adapter.js"), + "@atlaskit/pragmatic-drag-and-drop/private/get-element-from-point-without-honey-pot": import.meta + .resolve("@atlaskit/pragmatic-drag-and-drop/dist/esm/entry-point/private/get-element-from-point-without-honey-pot.js"), // Next.js compatibility shims used within space "next/link": path.resolve(__dirname, "app/compat/next/link.tsx"), "next/navigation": path.resolve(__dirname, "app/compat/next/navigation.ts"), diff --git a/apps/web/app/(all)/[workspaceSlug]/(settings)/layout.tsx b/apps/web/app/(all)/[workspaceSlug]/(settings)/layout.tsx index 0daea91d15..8216a216b7 100644 --- a/apps/web/app/(all)/[workspaceSlug]/(settings)/layout.tsx +++ b/apps/web/app/(all)/[workspaceSlug]/(settings)/layout.tsx @@ -6,7 +6,6 @@ import { SettingsHeader } from "@/components/settings/header"; // plane web imports import { LicenseSeatsBanner } from "@/plane-web/components/license"; - export default function SettingsLayout() { return ( <> diff --git a/apps/web/core/components/comments/quick-actions.tsx b/apps/web/core/components/comments/quick-actions.tsx index 95861fa610..c2debd983a 100644 --- a/apps/web/core/components/comments/quick-actions.tsx +++ b/apps/web/core/components/comments/quick-actions.tsx @@ -46,7 +46,7 @@ export const CommentQuickActions: FC = observer((props) => { handleDelete: () => activityOperations.removeComment(comment.id), }); - if(MENU_ITEMS.length === 0) return null; + if (MENU_ITEMS.length === 0) return null; return ( diff --git a/apps/web/core/components/modules/form.tsx b/apps/web/core/components/modules/form.tsx index 6d3ded8f9c..cb0c505394 100644 --- a/apps/web/core/components/modules/form.tsx +++ b/apps/web/core/components/modules/form.tsx @@ -279,4 +279,4 @@ export const ModuleForm: React.FC = (props) => { )} ); -} +}; diff --git a/apps/web/core/components/modules/select/status.tsx b/apps/web/core/components/modules/select/status.tsx index bb38eca3e3..af77b569c5 100644 --- a/apps/web/core/components/modules/select/status.tsx +++ b/apps/web/core/components/modules/select/status.tsx @@ -19,7 +19,7 @@ type Props = { handleOnChange?: () => void; }; -export function ModuleStatusSelect({ control, error, tabIndex , handleOnChange}: Props) { +export function ModuleStatusSelect({ control, error, tabIndex, handleOnChange }: Props) { const { t } = useTranslation(); return ( { const analyticsTabs = useMemo(() => getAnalyticsTabs(t, isAnalyticsTabsEnabled), [t, isAnalyticsTabsEnabled]); return analyticsTabs; -}; \ No newline at end of file +}; diff --git a/apps/web/ee/components/desktop/index.ts b/apps/web/ee/components/desktop/index.ts index 2e18ec62a6..4ecf20b63f 100644 --- a/apps/web/ee/components/desktop/index.ts +++ b/apps/web/ee/components/desktop/index.ts @@ -5,4 +5,3 @@ export * from "./navigation"; export * from "./use-desktop-app"; export * from "./helper"; export * from "./sidebar-workspace-menu"; - diff --git a/apps/web/ee/components/initiatives/components/labels/initiative-label-item.tsx b/apps/web/ee/components/initiatives/components/labels/initiative-label-item.tsx index deeecdb404..273815f323 100644 --- a/apps/web/ee/components/initiatives/components/labels/initiative-label-item.tsx +++ b/apps/web/ee/components/initiatives/components/labels/initiative-label-item.tsx @@ -23,15 +23,8 @@ type Props = { }; export const InitiativeLabelItem: React.FC = observer((props) => { - const { - label, - handleLabelDelete, - setIsUpdating, - isParentDragging, - isLastChild, - onDrop, - labelOperationsCallbacks, - } = props; + const { label, handleLabelDelete, setIsUpdating, isParentDragging, isLastChild, onDrop, labelOperationsCallbacks } = + props; // states const [isEditLabelForm, setEditLabelForm] = useState(false); diff --git a/apps/web/ee/components/navigations/use-navigation-items.ts b/apps/web/ee/components/navigations/use-navigation-items.ts index 911c403125..a55741e08f 100644 --- a/apps/web/ee/components/navigations/use-navigation-items.ts +++ b/apps/web/ee/components/navigations/use-navigation-items.ts @@ -16,7 +16,6 @@ import type { TNavigationItem } from "@/components/navigation/tab-navigation-roo import { useFlag } from "@/plane-web/hooks/store"; import { useProjectAdvanced } from "@/plane-web/hooks/store/projects/use-projects"; - type UseNavigationItemsProps = { workspaceSlug: string; projectId: string; @@ -35,7 +34,6 @@ export const useNavigationItems = ({ project, allowPermissions, }: UseNavigationItemsProps): TNavigationItem[] => { - const isProjectOverviewEnabled = useFlag(workspaceSlug, "PROJECT_OVERVIEW"); const { getProjectFeatures } = useProjectAdvanced(); @@ -43,8 +41,6 @@ export const useNavigationItems = ({ const isEpicsEnabled = projectFeatures?.is_epic_enabled; - - // Base navigation items const baseNavigation = useCallback( (workspaceSlug: string, projectId: string): TNavigationItem[] => [ diff --git a/apps/web/ee/components/pages/modals/move/footer.tsx b/apps/web/ee/components/pages/modals/move/footer.tsx index 9ac6d6b607..909aa74fc6 100644 --- a/apps/web/ee/components/pages/modals/move/footer.tsx +++ b/apps/web/ee/components/pages/modals/move/footer.tsx @@ -20,7 +20,9 @@ export const MovePageModalFooter: React.FC = (props) => { {t("common.cancel")} ); diff --git a/apps/web/ee/components/pi-chat/actions/artifacts/preview-cards/add-remove.tsx b/apps/web/ee/components/pi-chat/actions/artifacts/preview-cards/add-remove.tsx index 0d0bf232ac..9e462e6816 100644 --- a/apps/web/ee/components/pi-chat/actions/artifacts/preview-cards/add-remove.tsx +++ b/apps/web/ee/components/pi-chat/actions/artifacts/preview-cards/add-remove.tsx @@ -26,7 +26,8 @@ export const AddRemovePreviewCard = observer((props: TProps) => { {data.parameters?.name}{" "} {data.action === "add" ? "to" : "from"} {artifactSubType} {properties && properties.length > 0 ? "s" : ""} - {properties && Array.isArray(properties) && + {properties && + Array.isArray(properties) && properties.map( ( property: { diff --git a/apps/web/ee/components/workspace/sidebar/extended-sidebar-item.tsx b/apps/web/ee/components/workspace/sidebar/extended-sidebar-item.tsx index f6e8293ec7..6aeb2f269a 100644 --- a/apps/web/ee/components/workspace/sidebar/extended-sidebar-item.tsx +++ b/apps/web/ee/components/workspace/sidebar/extended-sidebar-item.tsx @@ -127,7 +127,6 @@ export const ExtendedSidebarItem: FC = observer((prop ); }, [isLastChild, handleOnNavigationItemDrop, disableDrag, disableDrop, item.key]); - const itemHref = item.key === "your_work" ? `/${workspaceSlug.toString()}${item.href}${data?.id}` diff --git a/apps/web/ee/hooks/app-rail/provider.tsx b/apps/web/ee/hooks/app-rail/provider.tsx index e6e21e4468..10f6d75ffe 100644 --- a/apps/web/ee/hooks/app-rail/provider.tsx +++ b/apps/web/ee/hooks/app-rail/provider.tsx @@ -26,8 +26,7 @@ export const AppRailVisibilityProvider = observer(({ children }: AppRailVisibili const subscriptionDetail = workspaceSubscription.currentWorkspaceSubscribedPlanDetail; // EE Logic: Feature is NOT enabled for free self-managed workspaces - const isFreeForSelfManaged = - subscriptionDetail?.is_self_managed === true && subscriptionDetail?.product === "FREE"; + const isFreeForSelfManaged = subscriptionDetail?.is_self_managed === true && subscriptionDetail?.product === "FREE"; // Feature is enabled if: // 1. Feature flag is on AND diff --git a/apps/web/ee/store/automations/node/base.ts b/apps/web/ee/store/automations/node/base.ts index bb6550a408..3b30fd200b 100644 --- a/apps/web/ee/store/automations/node/base.ts +++ b/apps/web/ee/store/automations/node/base.ts @@ -42,8 +42,7 @@ export abstract class AutomationBaseNode< T extends EAutomationNodeType, H extends TAutomationNodeHandlerName, C extends TAutomationNodeConfig, -> implements IAutomationBaseNode -{ +> implements IAutomationBaseNode { // node properties config: TAutomationNode["config"]; created_at: TAutomationNode["created_at"]; diff --git a/apps/web/ee/store/command-palette.store.ts b/apps/web/ee/store/command-palette.store.ts index a5b04f2d6d..9198944b9e 100644 --- a/apps/web/ee/store/command-palette.store.ts +++ b/apps/web/ee/store/command-palette.store.ts @@ -62,10 +62,10 @@ export class CommandPaletteStore extends BaseCommandPaletteStore implements ICom get isAnyModalOpen(): boolean { return Boolean( super.getCoreModalsState() || - this.createUpdateTeamspaceModal.isOpen || - this.createUpdateTeamspaceViewModal.isOpen || - this.createUpdateInitiativeModal.isOpen || - this.createUpdateCustomerModal.isOpen + this.createUpdateTeamspaceModal.isOpen || + this.createUpdateTeamspaceViewModal.isOpen || + this.createUpdateInitiativeModal.isOpen || + this.createUpdateCustomerModal.isOpen ); } diff --git a/apps/web/ee/store/initiatives/initiatives.store.ts b/apps/web/ee/store/initiatives/initiatives.store.ts index 8c75190267..5c8af0fb58 100644 --- a/apps/web/ee/store/initiatives/initiatives.store.ts +++ b/apps/web/ee/store/initiatives/initiatives.store.ts @@ -242,10 +242,10 @@ export class InitiativeStore implements IInitiativeStore { get isAnyModalOpen() { return Boolean( this.initiativeLinks.isLinkModalOpen || - this.isInitiativeModalOpen || - this.isProjectsModalOpen || - this.isEpicModalOpen || - this.isAttachmentDeleteModalOpen + this.isInitiativeModalOpen || + this.isProjectsModalOpen || + this.isEpicModalOpen || + this.isAttachmentDeleteModalOpen ); } diff --git a/apps/web/ee/store/pi-chat/attachment.store.ts b/apps/web/ee/store/pi-chat/attachment.store.ts index 6bd8ed7832..26cd1f5409 100644 --- a/apps/web/ee/store/pi-chat/attachment.store.ts +++ b/apps/web/ee/store/pi-chat/attachment.store.ts @@ -113,7 +113,7 @@ export class PiChatAttachmentStore implements IPiChatAttachmentStore { } finally { // Cancel any pending debounced updates this.debouncedUpdateProgress.cancel(); - + // Remove the attachment from upload status map runInAction(() => { if (this.attachmentsUploadStatusMap[chatId] && this.attachmentsUploadStatusMap[chatId][tempId]) { diff --git a/apps/web/ee/store/templates/instance/base.ts b/apps/web/ee/store/templates/instance/base.ts index fae218b86b..47b71355a3 100644 --- a/apps/web/ee/store/templates/instance/base.ts +++ b/apps/web/ee/store/templates/instance/base.ts @@ -19,8 +19,10 @@ export type TBaseTemplateInstanceProps = { baseTemplateData: T; }; -export interface IBaseTemplateInstance - extends TBaseTemplate { +export interface IBaseTemplateInstance extends TBaseTemplate< + T["template_type"], + T["template_data"] +> { // computed asJSON: T; asPublishableJSON: TPublishTemplateForm; diff --git a/packages/editor/src/ee/components/menus/bubble-menu/selection-conversion/utils.ts b/packages/editor/src/ee/components/menus/bubble-menu/selection-conversion/utils.ts index ddf4dc92e5..d6a1d65cdd 100644 --- a/packages/editor/src/ee/components/menus/bubble-menu/selection-conversion/utils.ts +++ b/packages/editor/src/ee/components/menus/bubble-menu/selection-conversion/utils.ts @@ -427,10 +427,9 @@ export const handleSelectionConversion = async (args: THandleSelectionConversion }); await createTreePromise; - // Show error/warning toast if there were any failures if (errors.length > 0) { - const successCount = (workItemsToInsert.length || (mixedContentWorkItemId ? 1 : 0)); + const successCount = workItemsToInsert.length || (mixedContentWorkItemId ? 1 : 0); const failureCount = errors.length; if (successCount > 0) { diff --git a/packages/etl/src/jira-server/etl/pull-v2.ts b/packages/etl/src/jira-server/etl/pull-v2.ts index 5965e06924..86f2098296 100644 --- a/packages/etl/src/jira-server/etl/pull-v2.ts +++ b/packages/etl/src/jira-server/etl/pull-v2.ts @@ -5,7 +5,7 @@ import type { Comment as JComment, IssueTypeDetails as JiraIssueTypeDetails, FieldDetails, - Worklog + Worklog, } from "jira.js/out/version2/models"; import type { ImportedJiraUser, @@ -212,12 +212,10 @@ export const pullAllWorklogsForIssue = async (issue: IJiraIssue, client: JiraV2S "worklogs" ); - return values.map( - (worklog) => ({ - ...worklog, - issue_id: issue.id, - }) - ); + return values.map((worklog) => ({ + ...worklog, + issue_id: issue.id, + })); }; export async function pullCommentsForIssueV2( diff --git a/packages/etl/src/jira-server/etl/transform.ts b/packages/etl/src/jira-server/etl/transform.ts index c763efe4a0..b623800e48 100644 --- a/packages/etl/src/jira-server/etl/transform.ts +++ b/packages/etl/src/jira-server/etl/transform.ts @@ -10,8 +10,7 @@ import type { PlaneUser, ExIssuePropertyOption, } from "@plane/sdk"; -import type { TPropertyValuesPayload } from "@/core"; -import { E_IMPORTER_KEYS } from "@/core"; +import type { E_IMPORTER_KEYS, TPropertyValuesPayload } from "@/core"; import { getFormattedDate, getPropertyAttributes, diff --git a/packages/i18n/src/locales/de/translations-extended.ts b/packages/i18n/src/locales/de/translations-extended.ts index 683c93d08d..58de4e0597 100644 --- a/packages/i18n/src/locales/de/translations-extended.ts +++ b/packages/i18n/src/locales/de/translations-extended.ts @@ -168,7 +168,8 @@ export default { heading: "Intake-Verantwortung", notify_assignee: { title: "Zuständige benachrichtigen", - description: "Für eine neue Intake-Anfrage werden die Standard-Zuständigen über Benachrichtigungen informiert", + description: + "Für eine neue Intake-Anfrage werden die Standard-Zuständigen über Benachrichtigungen informiert", }, toasts: { set: { @@ -776,7 +777,8 @@ export default { }, authorization_grant_type: { title: "Verbindungstyp", - description: "Wählen Sie, ob Ihre App einmal für den Arbeitsbereich installiert werden soll oder ob jeder Benutzer sein eigenes Konto verbinden soll", + description: + "Wählen Sie, ob Ihre App einmal für den Arbeitsbereich installiert werden soll oder ob jeder Benutzer sein eigenes Konto verbinden soll", }, app_description_error: "App-Beschreibung ist erforderlich", app_slug_title: "App-Slug", @@ -838,7 +840,8 @@ export default { invalid_categories_error: "Ungültige Kategorien", categories_description: "Wählen Sie die Kategorien, die am besten zu der App passen", supported_plans: "Unterstützte Pläne", - supported_plans_description: "Wählen Sie die Workspace-Pläne aus, die diese Anwendung installieren können. Leer lassen, um alle Pläne zu erlauben.", + supported_plans_description: + "Wählen Sie die Workspace-Pläne aus, die diese Anwendung installieren können. Leer lassen, um alle Pläne zu erlauben.", select_plans: "Pläne Auswählen", privacy_policy_url_title: "Datenschutzerklärung URL", privacy_policy_url_error: "Datenschutzerklärung URL ist erforderlich", diff --git a/packages/i18n/src/locales/es/translations-extended.ts b/packages/i18n/src/locales/es/translations-extended.ts index 8070a3ab0b..5626aff3c3 100644 --- a/packages/i18n/src/locales/es/translations-extended.ts +++ b/packages/i18n/src/locales/es/translations-extended.ts @@ -167,7 +167,8 @@ export default { heading: "Responsabilidad de ingreso", notify_assignee: { title: "Notificar asignados", - description: "Para una nueva solicitud de ingreso, los asignados predeterminados serán alertados mediante notificaciones", + description: + "Para una nueva solicitud de ingreso, los asignados predeterminados serán alertados mediante notificaciones", }, toasts: { set: { diff --git a/packages/i18n/src/locales/fr/translations-extended.ts b/packages/i18n/src/locales/fr/translations-extended.ts index c4fc89e40f..a07b16a5c7 100644 --- a/packages/i18n/src/locales/fr/translations-extended.ts +++ b/packages/i18n/src/locales/fr/translations-extended.ts @@ -167,7 +167,8 @@ export default { heading: "Responsabilité d'ingestion", notify_assignee: { title: "Notifier les responsables", - description: "Pour une nouvelle demande d'ingestion, les responsables par défaut seront alertés via des notifications", + description: + "Pour une nouvelle demande d'ingestion, les responsables par défaut seront alertés via des notifications", }, toasts: { set: { diff --git a/packages/i18n/src/locales/id/translations-extended.ts b/packages/i18n/src/locales/id/translations-extended.ts index cbdefaa014..f6144fcb1b 100644 --- a/packages/i18n/src/locales/id/translations-extended.ts +++ b/packages/i18n/src/locales/id/translations-extended.ts @@ -168,7 +168,8 @@ export default { heading: "Tanggung jawab penerimaan", notify_assignee: { title: "Beritahu yang ditugaskan", - description: "Untuk permintaan penerimaan baru, yang ditugaskan secara default akan diberi peringatan melalui notifikasi", + description: + "Untuk permintaan penerimaan baru, yang ditugaskan secara default akan diberi peringatan melalui notifikasi", }, toasts: { set: { diff --git a/packages/i18n/src/locales/it/translations-extended.ts b/packages/i18n/src/locales/it/translations-extended.ts index d768ec120c..9b331f6eb8 100644 --- a/packages/i18n/src/locales/it/translations-extended.ts +++ b/packages/i18n/src/locales/it/translations-extended.ts @@ -166,7 +166,8 @@ export default { heading: "Responsabilità di accettazione", notify_assignee: { title: "Notifica assegnatari", - description: "Per una nuova richiesta di accettazione, gli assegnatari predefiniti saranno avvisati tramite notifiche", + description: + "Per una nuova richiesta di accettazione, gli assegnatari predefiniti saranno avvisati tramite notifiche", }, toasts: { set: { diff --git a/packages/i18n/src/locales/pt-BR/translations-extended.ts b/packages/i18n/src/locales/pt-BR/translations-extended.ts index e5e3fc7c23..9c6f9502e3 100644 --- a/packages/i18n/src/locales/pt-BR/translations-extended.ts +++ b/packages/i18n/src/locales/pt-BR/translations-extended.ts @@ -168,7 +168,8 @@ export default { heading: "Responsabilidade de recebimento", notify_assignee: { title: "Notificar responsáveis", - description: "Para uma nova solicitação de recebimento, os responsáveis padrão serão alertados via notificações", + description: + "Para uma nova solicitação de recebimento, os responsáveis padrão serão alertados via notificações", }, toasts: { set: { diff --git a/packages/sdk/.eslintrc.js b/packages/sdk/.eslintrc.cjs similarity index 100% rename from packages/sdk/.eslintrc.js rename to packages/sdk/.eslintrc.cjs diff --git a/packages/services/src/ai/ai.service.ts b/packages/services/src/ai/ai.service.ts index 0bcebd4815..3f2054ac70 100644 --- a/packages/services/src/ai/ai.service.ts +++ b/packages/services/src/ai/ai.service.ts @@ -38,7 +38,7 @@ export class AIService extends APIService { * @returns {Promise} The response data from the GPT task * @throws {Error} Throws the response error if the request fails */ - async prompt(workspaceSlug: string, data: { prompt: string; task: string }): Promise { + async prompt(workspaceSlug: string, data: { prompt: string; task: string }): Promise { return this.post(`/api/workspaces/${workspaceSlug}/ai-assistant/`, data) .then((response) => response?.data) .catch((error) => { diff --git a/packages/services/src/issue/comments/index.ts b/packages/services/src/issue/comments/index.ts index 545a148af2..1c39cabc63 100644 --- a/packages/services/src/issue/comments/index.ts +++ b/packages/services/src/issue/comments/index.ts @@ -1 +1 @@ -export * from "./replies.service"; \ No newline at end of file +export * from "./replies.service"; diff --git a/packages/services/src/issue/index.ts b/packages/services/src/issue/index.ts index 2b0b771eaf..6aa860788f 100644 --- a/packages/services/src/issue/index.ts +++ b/packages/services/src/issue/index.ts @@ -1,2 +1,2 @@ export * from "./sites-issue.service"; -export * from "./comments"; \ No newline at end of file +export * from "./comments"; diff --git a/packages/types/src/milestone.ts b/packages/types/src/milestone.ts index ee38e7578f..3aa2d17166 100644 --- a/packages/types/src/milestone.ts +++ b/packages/types/src/milestone.ts @@ -33,4 +33,4 @@ export interface IMilestoneInstance { // actions updateProgress: (progress: TMilestoneProgress) => void; update: (data: Partial) => void; -} \ No newline at end of file +} diff --git a/packages/utils/src/work-item-filters/configs/filters/index.ts b/packages/utils/src/work-item-filters/configs/filters/index.ts index c56022a1da..24de47813f 100644 --- a/packages/utils/src/work-item-filters/configs/filters/index.ts +++ b/packages/utils/src/work-item-filters/configs/filters/index.ts @@ -8,4 +8,4 @@ export * from "./state"; export * from "./teamspace"; export * from "./user"; export * from "./work-item-type"; -export * from "./milestone"; \ No newline at end of file +export * from "./milestone";