Skip to content

Commit 10ba855

Browse files
committed
fix: fixing up import paths
1 parent f126eaf commit 10ba855

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

src/bootstrap/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {
55
PasswordOpsLimit,
66
PasswordMemLimit,
77
} from '../keys/types.js';
8-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
8+
import type { AgentClientManifest } from '../nodes/agent/callers/index.js';
99
import path from 'node:path';
1010
import Logger from '@matrixai/logger';
1111
import { DB } from '@matrixai/db';

src/client/handlers/NodesAdd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import type {
99
import type { NodeId } from '../../ids/index.js';
1010
import type { Host, Port } from '../../network/types.js';
1111
import type NodeManager from '../../nodes/NodeManager.js';
12-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
12+
import type { AgentClientManifest } from '../../nodes/agent/callers/index.js';
1313
import { UnaryHandler } from '@matrixai/rpc';
1414
import { matchSync } from '../../utils/index.js';
1515
import { validateSync } from '../../validation/index.js';

src/client/handlers/NodesClaim.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type {
77
} from '../types.js';
88
import type { NodeId } from '../../ids/index.js';
99
import type NodeManager from '../../nodes/NodeManager.js';
10-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
10+
import type { AgentClientManifest } from '../../nodes/agent/callers/index.js';
1111
import { UnaryHandler } from '@matrixai/rpc';
1212
import * as ids from '../../ids/index.js';
1313
import { matchSync } from '../../utils/index.js';

src/client/handlers/NodesFind.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type {
88
} from '../types.js';
99
import type { NodeId } from '../../ids/index.js';
1010
import type NodeManager from '../../nodes/NodeManager.js';
11-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
11+
import type { AgentClientManifest } from '../../nodes/agent/callers/index.js';
1212
import { UnaryHandler } from '@matrixai/rpc';
1313
import { validateSync } from '../../validation/index.js';
1414
import { matchSync } from '../../utils/index.js';

src/client/handlers/NodesPing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {
66
} from '../types.js';
77
import type { NodeId } from '../../ids/index.js';
88
import type NodeManager from '../../nodes/NodeManager.js';
9-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
9+
import type { AgentClientManifest } from '../../nodes/agent/callers/index.js';
1010
import { UnaryHandler } from '@matrixai/rpc';
1111
import * as ids from '../../ids/index.js';
1212
import { validateSync } from '../../validation/index.js';

src/discovery/Discovery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import type {
2828
ClaimLinkNode,
2929
} from '../claims/payloads/index.js';
3030
import type { DiscoveryQueueInfo } from './types.js';
31-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
31+
import type { AgentClientManifest } from '../nodes/agent/callers/index.js';
3232
import Logger from '@matrixai/logger';
3333
import { createDestroyStartStop } from '@matrixai/async-init';
3434
import { decorators } from '@matrixai/contexts';

src/nodes/agent/handlers/NodesClaimNetworkSign.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {
55
} from '../types.js';
66
import type NodeManager from '../../../nodes/NodeManager.js';
77
import type { JSONValue } from '../../../types.js';
8-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
8+
import type { AgentClientManifest } from '../callers/index.js';
99
import { UnaryHandler } from '@matrixai/rpc';
1010
import * as agentUtils from '../utils.js';
1111
import * as nodesErrors from '../../errors.js';

src/nodes/agent/handlers/NodesClaimNetworkVerify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {
55
} from '../types.js';
66
import type NodeManager from '../../../nodes/NodeManager.js';
77
import type { JSONValue } from '../../../types.js';
8-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
8+
import type { AgentClientManifest } from '../callers/index.js';
99
import { UnaryHandler } from '@matrixai/rpc';
1010
import * as agentUtils from '../utils.js';
1111
import * as nodesErrors from '../../errors.js';

src/nodes/agent/handlers/NodesCrossSignClaim.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {
66
} from '../types.js';
77
import type NodeManager from '../../NodeManager.js';
88
import type ACL from '../../../acl/ACL.js';
9-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
9+
import type { AgentClientManifest } from '../callers/index.js';
1010
import { DuplexHandler } from '@matrixai/rpc';
1111
import * as agentUtils from '../utils.js';
1212
import * as nodesErrors from '../../errors.js';

src/notifications/NotificationsManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import type {
1616
} from '../ids/types.js';
1717
import type { Task, TaskHandler, TaskInfo } from '../tasks/types.js';
1818
import type { TaskManager } from '../tasks/index.js';
19-
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
19+
import type { AgentClientManifest } from '../nodes/agent/callers/index.js';
2020
import Logger from '@matrixai/logger';
2121
import { IdInternal } from '@matrixai/id';
2222
import { createDestroyStartStop } from '@matrixai/async-init';

0 commit comments

Comments
 (0)