Skip to content

Commit c9f44e5

Browse files
committed
fix: import
1 parent 2567ea9 commit c9f44e5

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

packages/js/src/schemas/schemas/blockchain-network.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { z } from "zod";
2-
import { WsApplPlatformReturnValueSchema } from "../ws-appl-platform";
2+
import { WsApplPlatformReturnValueSchema } from "./ws-appl-platform";
33

44
export const BlockchainNetworkReturnValueSchema = WsApplPlatformReturnValueSchema.extend({
55
serviceSubType: z.string(),

packages/js/src/schemas/schemas/blockchain-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { z } from "zod";
2-
import { WsApplPlatformReturnValueSchema } from "../ws-appl-platform";
32
import { UniqueNameSchema } from "./unique-name";
43
import { UrlSchema } from "./url";
4+
import { WsApplPlatformReturnValueSchema } from "./ws-appl-platform";
55

66
export const BlockchainNodeReturnValueSchema = WsApplPlatformReturnValueSchema.extend({
77
serviceSubType: z.string(),

packages/js/src/schemas/schemas/custom-deployment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { z } from "zod";
2-
import { WsApplPlatformReturnValueSchema } from "../ws-appl-platform";
32
import { UrlSchema } from "./url";
3+
import { WsApplPlatformReturnValueSchema } from "./ws-appl-platform";
44

55
export const CustomDeploymentReturnValueSchema = WsApplPlatformReturnValueSchema.extend({
66
serviceSubType: z.string(),

packages/js/src/schemas/schemas/insights.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { z } from "zod";
2-
import { WsApplPlatformReturnValueSchema } from "../ws-appl-platform";
32
import { UrlSchema } from "./url";
3+
import { WsApplPlatformReturnValueSchema } from "./ws-appl-platform";
44

55
export const InsightsReturnValueSchema = WsApplPlatformReturnValueSchema.extend({
66
serviceSubType: z.string(),

packages/js/src/schemas/schemas/integration-tool.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { z } from "zod";
2-
import { WsApplPlatformReturnValueSchema } from "../ws-appl-platform";
32
import { UrlSchema } from "./url";
3+
import { WsApplPlatformReturnValueSchema } from "./ws-appl-platform";
44

55
export const BaseIntegrationToolSchema = WsApplPlatformReturnValueSchema.extend({
66
serviceSubType: z.string(),

packages/js/src/schemas/schemas/middleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { z } from "zod";
2-
import { WsApplPlatformReturnValueSchema } from "../ws-appl-platform";
32
import { UrlSchema } from "./url";
3+
import { WsApplPlatformReturnValueSchema } from "./ws-appl-platform";
44

55
export const BaseMiddlewareSchema = WsApplPlatformReturnValueSchema.extend({
66
serviceSubType: z.string(),

packages/js/src/schemas/schemas/private-key.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { z } from "zod";
2-
import { WsApplPlatformReturnValueSchema } from "../ws-appl-platform";
32
import { EthereumAddressSchema, EthereumPublicKeySchema } from "./ethereum";
3+
import { WsApplPlatformReturnValueSchema } from "./ws-appl-platform";
44

55
export const BasePrivateKeySchema = WsApplPlatformReturnValueSchema.extend({
66
serviceSubType: z.string(),

packages/js/src/schemas/schemas/storage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { z } from "zod";
2-
import { WsApplPlatformReturnValueSchema } from "../ws-appl-platform";
32
import { UrlSchema } from "./url";
3+
import { WsApplPlatformReturnValueSchema } from "./ws-appl-platform";
44

55
export const BaseStorageSchema = WsApplPlatformReturnValueSchema.extend({
66
serviceSubType: z.string(),

0 commit comments

Comments
 (0)