@holochain/client 0.21.0-dev.0 → 0.21.0-dev.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -976,9 +976,9 @@ export interface TransportConnectionStats {
976
976
  */
977
977
  opened_at_s: number;
978
978
  /**
979
- * True if this connection has successfully upgraded to webrtc.
979
+ * True if this connection has successfully upgraded to a direct connection.
980
980
  */
981
- is_webrtc: boolean;
981
+ is_direct: boolean;
982
982
  }
983
983
  /**
984
984
  * @public
@@ -1,3 +1,4 @@
1
+ import { MembraneProof } from "../api/index.js";
1
2
  import { AgentPubKey, DnaHash, EntryHash, ActionHash, HoloHashed, Signature, Timestamp } from "../types.js";
2
3
  import { Entry, EntryType } from "./entry.js";
3
4
  import { LinkTag, LinkType, RateWeight } from "./link.js";
@@ -67,7 +68,7 @@ export interface AgentValidationPkg {
67
68
  timestamp: Timestamp;
68
69
  action_seq: number;
69
70
  prev_action: ActionHash;
70
- membrane_proof: any;
71
+ membrane_proof?: MembraneProof;
71
72
  }
72
73
  /**
73
74
  * @public
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holochain/client",
3
- "version": "0.21.0-dev.0",
3
+ "version": "0.21.0-dev.2",
4
4
  "description": "A JavaScript client for the Holochain Conductor API",
5
5
  "author": "Holochain Foundation <info@holochain.org> (https://holochain.org)",
6
6
  "license": "CAL-1.0",
@@ -48,7 +48,7 @@
48
48
  "isomorphic-ws": "^5.0.0",
49
49
  "js-base64": "^3.7.8",
50
50
  "js-sha512": "^0.9.0",
51
- "libsodium-wrappers": "^0.7.15",
51
+ "libsodium-wrappers": "^0.8",
52
52
  "lodash-es": "^4.17.21",
53
53
  "ws": "^8.18.3"
54
54
  },