Skip to content

Commit 06fd208

Browse files
committed
Merge remote-tracking branch 'upstream/release_25.0' into dev
2 parents 2169003 + ac78028 commit 06fd208

File tree

308 files changed

+693
-844
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

308 files changed

+693
-844
lines changed

client/.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ const baseRules = {
8787
"error",
8888
{ prefer: "type-imports", fixStyle: "inline-type-imports" },
8989
],
90+
91+
"@typescript-eslint/no-import-type-side-effects": "error",
9092
};
9193

9294
const baseExtends = [

client/src/api/client/__mocks__/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { HttpResponse } from "msw";
22
import { setupServer } from "msw/node";
33
import { createOpenApiHttp } from "openapi-msw";
44

5-
import { type GalaxyApiPaths } from "@/api/schema";
5+
import type { GalaxyApiPaths } from "@/api/schema";
66

77
export { HttpResponse };
88

client/src/api/client/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import createClient from "openapi-fetch";
22

3-
import { type GalaxyApiPaths } from "@/api/schema";
3+
import type { GalaxyApiPaths } from "@/api/schema";
44
import { getAppRoot } from "@/onload/loadConfig";
55

66
function getBaseUrl() {

client/src/api/client/serverMock.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type HistoryDetailed, type HistorySummary, type MessageException } from "@/api";
1+
import type { HistoryDetailed, HistorySummary, MessageException } from "@/api";
22
import { GalaxyApi } from "@/api";
33
import { useServerMock } from "@/api/client/__mocks__";
44

client/src/api/configTemplates.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type components } from "@/api/schema";
1+
import type { components } from "@/api/schema";
22

33
export type CreateInstancePayload = components["schemas"]["CreateInstancePayload"];
44

client/src/api/datatypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
import { type components } from "@/api";
1+
import type { components } from "@/api";
22

33
export type CompositeFileInfo = components["schemas"]["CompositeFileInfo"];

client/src/api/fileSources.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { faAws, faDropbox, faGoogleDrive } from "@fortawesome/free-brands-svg-icons";
22
import { faCloud, faFolderTree, faNetworkWired, type IconDefinition } from "font-awesome-6";
33

4-
import { type components } from "@/api/schema";
4+
import type { components } from "@/api/schema";
55
import { contains } from "@/utils/filtering";
66

77
export type FileSourceTemplateSummary = components["schemas"]["FileSourceTemplateSummary"];

client/src/api/histories.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type AnyHistory, type components } from "@/api";
1+
import type { AnyHistory, components } from "@/api";
22

33
type HistoryDetailed = components["schemas"]["HistoryDetailed"];
44

client/src/api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** Contains type alias and definitions related to Galaxy API models. */
22

33
import { GalaxyApi } from "@/api/client";
4-
import { type components, type GalaxyApiPaths } from "@/api/schema";
4+
import type { components, GalaxyApiPaths } from "@/api/schema";
55

66
export { type components, GalaxyApi, type GalaxyApiPaths };
77

client/src/api/invocations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type components } from "./schema";
1+
import type { components } from "./schema";
22

33
export type WorkflowInvocationElementView = components["schemas"]["WorkflowInvocationElementView"];
44
export type WorkflowInvocationCollectionView = components["schemas"]["WorkflowInvocationCollectionView"];

0 commit comments

Comments
 (0)