@holochain/client 0.18.0-dev.3 → 0.18.0-dev.4

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.
@@ -87,7 +87,7 @@ export class AppWebsocket {
87
87
  }
88
88
  await client.authenticate({ token: options.token });
89
89
  }
90
- const appInfo = await this.requester(client, "app_info", DEFAULT_TIMEOUT)(null);
90
+ const appInfo = await AppWebsocket.requester(client, "app_info", DEFAULT_TIMEOUT)(null);
91
91
  if (!appInfo) {
92
92
  throw new HolochainError("AppNotFound", `The app your connection token was issued for was not found. The app needs to be installed and enabled.`);
93
93
  }
package/lib/hdk/link.d.ts CHANGED
@@ -39,6 +39,7 @@ export type RateUnits = number;
39
39
  */
40
40
  export interface Link {
41
41
  author: AgentPubKey;
42
+ base: AnyLinkableHash;
42
43
  target: AnyLinkableHash;
43
44
  timestamp: Timestamp;
44
45
  zome_index: ZomeIndex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holochain/client",
3
- "version": "0.18.0-dev.3",
3
+ "version": "0.18.0-dev.4",
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",