Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polykey",
"version": "2.3.0",
"version": "2.3.2",
"homepage": "https://polykey.com",
"author": "Matrix AI",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion src/bootstrap/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type {
PasswordOpsLimit,
PasswordMemLimit,
} from '../keys/types.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../nodes/agent/callers/index.js';
import path from 'node:path';
import Logger from '@matrixai/logger';
import { DB } from '@matrixai/db';
Expand Down
2 changes: 1 addition & 1 deletion src/client/handlers/NodesAdd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import type {
import type { NodeId } from '../../ids/index.js';
import type { Host, Port } from '../../network/types.js';
import type NodeManager from '../../nodes/NodeManager.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../../nodes/agent/callers/index.js';
import { UnaryHandler } from '@matrixai/rpc';
import { matchSync } from '../../utils/index.js';
import { validateSync } from '../../validation/index.js';
Expand Down
2 changes: 1 addition & 1 deletion src/client/handlers/NodesClaim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type {
} from '../types.js';
import type { NodeId } from '../../ids/index.js';
import type NodeManager from '../../nodes/NodeManager.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../../nodes/agent/callers/index.js';
import { UnaryHandler } from '@matrixai/rpc';
import * as ids from '../../ids/index.js';
import { matchSync } from '../../utils/index.js';
Expand Down
2 changes: 1 addition & 1 deletion src/client/handlers/NodesFind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type {
} from '../types.js';
import type { NodeId } from '../../ids/index.js';
import type NodeManager from '../../nodes/NodeManager.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../../nodes/agent/callers/index.js';
import { UnaryHandler } from '@matrixai/rpc';
import { validateSync } from '../../validation/index.js';
import { matchSync } from '../../utils/index.js';
Expand Down
2 changes: 1 addition & 1 deletion src/client/handlers/NodesPing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type {
} from '../types.js';
import type { NodeId } from '../../ids/index.js';
import type NodeManager from '../../nodes/NodeManager.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../../nodes/agent/callers/index.js';
import { UnaryHandler } from '@matrixai/rpc';
import * as ids from '../../ids/index.js';
import { validateSync } from '../../validation/index.js';
Expand Down
2 changes: 1 addition & 1 deletion src/discovery/Discovery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import type {
ClaimLinkNode,
} from '../claims/payloads/index.js';
import type { DiscoveryQueueInfo } from './types.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../nodes/agent/callers/index.js';
import Logger from '@matrixai/logger';
import { createDestroyStartStop } from '@matrixai/async-init';
import { decorators } from '@matrixai/contexts';
Expand Down
4 changes: 2 additions & 2 deletions src/nodes/NodeConnectionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import type {
ClientManifest,
JSONRPCRequest,
JSONRPCResponse,
ServerManifest,
} from '@matrixai/rpc';
import type {
AuthenticateNetworkForwardCallback,
Expand All @@ -16,7 +17,6 @@ import type {
NodesAuthenticateConnectionMessage,
SuccessMessage,
} from './agent/types.js';
import type { AgentServerManifest } from './agent/handlers/index.js';
import type { AgentClientManifestNodeConnectionManager } from './agent/callers/index.js';
import type KeyRing from '../keys/KeyRing.js';
import type { CertificatePEM } from '../keys/types.js';
Expand Down Expand Up @@ -566,7 +566,7 @@ class NodeConnectionManager<
reuseAddr,
ipv6Only,
}: {
agentService: AgentServerManifest;
agentService: ServerManifest;
host?: Host;
port?: Port;
reuseAddr?: boolean;
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/agent/handlers/NodesClaimNetworkSign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type {
} from '../types.js';
import type NodeManager from '../../../nodes/NodeManager.js';
import type { JSONValue } from '../../../types.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../callers/index.js';
import { UnaryHandler } from '@matrixai/rpc';
import * as agentUtils from '../utils.js';
import * as nodesErrors from '../../errors.js';
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/agent/handlers/NodesClaimNetworkVerify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type {
} from '../types.js';
import type NodeManager from '../../../nodes/NodeManager.js';
import type { JSONValue } from '../../../types.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../callers/index.js';
import { UnaryHandler } from '@matrixai/rpc';
import * as agentUtils from '../utils.js';
import * as nodesErrors from '../../errors.js';
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/agent/handlers/NodesCrossSignClaim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type {
} from '../types.js';
import type NodeManager from '../../NodeManager.js';
import type ACL from '../../../acl/ACL.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../callers/index.js';
import { DuplexHandler } from '@matrixai/rpc';
import * as agentUtils from '../utils.js';
import * as nodesErrors from '../../errors.js';
Expand Down
2 changes: 1 addition & 1 deletion src/notifications/NotificationsManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type {
} from '../ids/types.js';
import type { Task, TaskHandler, TaskInfo } from '../tasks/types.js';
import type { TaskManager } from '../tasks/index.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../nodes/agent/callers/index.js';
import Logger from '@matrixai/logger';
import { IdInternal } from '@matrixai/id';
import { createDestroyStartStop } from '@matrixai/async-init';
Expand Down
2 changes: 1 addition & 1 deletion src/vaults/VaultManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import type ACL from '../acl/ACL.js';
import type { PolykeyWorkerManager } from '../workers/types.js';
import type { RemoteInfo } from './VaultInternal.js';
import type { VaultAction } from './types.js';
import type { AgentClientManifest } from '#nodes/agent/callers/index.js';
import type { AgentClientManifest } from '../nodes/agent/callers/index.js';
import path from 'node:path';
import { DB } from '@matrixai/db';
import { EncryptedFS, errors as encryptedFsErrors } from 'encryptedfs';
Expand Down