@holochain/client 0.20.0-dev.1 → 0.20.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.
package/README.md CHANGED
@@ -182,6 +182,7 @@ You need a version (`stable` toolchain) of Rust available.
182
182
  You need `holochain` and `hc` on your path, best to get them from nix with `nix-shell`.
183
183
 
184
184
  To perform the pre-requisite DNA compilation steps, and run the Nodejs test, run:
185
+
185
186
  ```bash
186
187
  nix develop
187
188
  ./build-fixture.sh
@@ -32,10 +32,7 @@ export type EnableAppRequest = {
32
32
  /**
33
33
  * @public
34
34
  */
35
- export type EnableAppResponse = {
36
- app: AppInfo;
37
- errors: Array<[CellId, string]>;
38
- };
35
+ export type EnableAppResponse = AppInfo;
39
36
  /**
40
37
  * @public
41
38
  */
@@ -59,20 +56,13 @@ export type DisabledAppReason = {
59
56
  /**
60
57
  * @public
61
58
  */
62
- export type AppInfoStatus = {
63
- type: "paused";
64
- value: {
65
- reason: PausedAppReason;
66
- };
67
- } | {
59
+ export type AppStatus = {
68
60
  type: "disabled";
69
- value: {
70
- reason: DisabledAppReason;
71
- };
61
+ value: DisabledAppReason;
72
62
  } | {
73
- type: "awaiting_memproofs";
63
+ type: "enabled";
74
64
  } | {
75
- type: "running";
65
+ type: "awaiting_memproofs";
76
66
  };
77
67
  /**
78
68
  * @public
@@ -129,7 +119,7 @@ export type AppInfo = {
129
119
  agent_pub_key: AgentPubKey;
130
120
  installed_app_id: InstalledAppId;
131
121
  cell_info: Record<RoleName, Array<CellInfo>>;
132
- status: AppInfoStatus;
122
+ status: AppStatus;
133
123
  installed_at: Timestamp;
134
124
  };
135
125
  /**
@@ -240,20 +230,6 @@ export type RevokeAgentKeyRequest = {
240
230
  * @public
241
231
  */
242
232
  export type RevokeAgentKeyResponse = [CellId, string][];
243
- /**
244
- * @public
245
- */
246
- export type RegisterDnaRequest = {
247
- source: DnaSource;
248
- modifiers?: {
249
- network_seed?: string;
250
- properties?: DnaProperties;
251
- };
252
- };
253
- /**
254
- * @public
255
- */
256
- export type RegisterDnaResponse = HoloHash;
257
233
  /**
258
234
  * @public
259
235
  */
@@ -300,7 +276,7 @@ export type DnaDefinition = {
300
276
  /**
301
277
  * @public
302
278
  */
303
- export type GetDnaDefinitionRequest = DnaHash;
279
+ export type GetDnaDefinitionRequest = CellId;
304
280
  /**
305
281
  * @public
306
282
  */
@@ -320,7 +296,7 @@ export type UninstallAppResponse = null;
320
296
  */
321
297
  export type UpdateCoordinatorsRequest = {
322
298
  source: CoordinatorSource;
323
- dna_hash: DnaHash;
299
+ cell_id: CellId;
324
300
  };
325
301
  /**
326
302
  * @public
@@ -516,10 +492,7 @@ export type ListActiveAppsResponse = Array<InstalledAppId>;
516
492
  */
517
493
  export declare enum AppStatusFilter {
518
494
  Enabled = "enabled",
519
- Disabled = "disabled",
520
- Running = "running",
521
- Stopped = "stopped",
522
- Paused = "paused"
495
+ Disabled = "disabled"
523
496
  }
524
497
  /**
525
498
  * @public
@@ -576,20 +549,20 @@ export type AddAgentInfoResponse = unknown;
576
549
  /**
577
550
  * @public
578
551
  */
579
- export interface AgentMetaInfoRequest {
552
+ export interface PeerMetaInfoRequest {
580
553
  url: string;
581
554
  dna_hashes?: DnaHash[];
582
555
  }
583
556
  /**
584
557
  * @public
585
558
  */
586
- export type AgentMetaInfoResponse = Record<DnaHashB64, Record<string, AgentMetaInfo>>;
559
+ export type PeerMetaInfoResponse = Record<DnaHashB64, Record<string, PeerMetaInfo>>;
587
560
  /**
588
561
  * @public
589
562
  */
590
- export interface AgentMetaInfo {
563
+ export interface PeerMetaInfo {
591
564
  meta_value: string;
592
- expires_at: number;
565
+ expires_at: Timestamp | null;
593
566
  }
594
567
  /**
595
568
  * @public
@@ -625,7 +598,62 @@ export interface GrantZomeCallCapabilityRequest {
625
598
  /**
626
599
  * @public
627
600
  */
628
- export type GrantZomeCallCapabilityResponse = void;
601
+ export type GrantZomeCallCapabilityResponse = ActionHash;
602
+ /**
603
+ * @public
604
+ */
605
+ export interface RevokeZomeCallCapabilityRequest {
606
+ /**
607
+ * The action hash of the capability to revoke.
608
+ */
609
+ action_hash: ActionHash;
610
+ /**
611
+ * Cell ID of the cell for which to revoke the capability.
612
+ */
613
+ cell_id: CellId;
614
+ }
615
+ /**
616
+ * @public
617
+ */
618
+ export type RevokeZomeCallCapabilityResponse = void;
619
+ /**
620
+ * @public
621
+ */
622
+ export interface ListCapabilityGrantsRequest {
623
+ /**
624
+ * The app id for which to list the capability grants.
625
+ */
626
+ installed_app_id: InstalledAppId;
627
+ /**
628
+ * Whether to include also revoked grants in the response.
629
+ */
630
+ include_revoked: boolean;
631
+ }
632
+ /**
633
+ * @public
634
+ */
635
+ export type ListCapabilityGrantsResponse = Array<[CellId, CapGrantInfo[]]>;
636
+ /**
637
+ * @public
638
+ */
639
+ export interface CapGrantInfo {
640
+ /**
641
+ * The cap grant data.
642
+ */
643
+ cap_grant: ZomeCallCapGrant;
644
+ /**
645
+ * The action hash of the cap grant.
646
+ */
647
+ action_hash: ActionHash;
648
+ /**
649
+ * The timestamp when the cap grant was created.
650
+ */
651
+ created_at: Timestamp;
652
+ /**
653
+ * The timestamp when the cap grant was revoked, if it was revoked.
654
+ */
655
+ revoked_at?: Timestamp;
656
+ }
629
657
  /**
630
658
  * @public
631
659
  */
@@ -942,7 +970,7 @@ export interface DumpNetworkMetricsRequest {
942
970
  /**
943
971
  * The DNA hash of the app network to dump.
944
972
  */
945
- dna?: DnaHash;
973
+ dna_hash?: DnaHash;
946
974
  /**
947
975
  * Include DHT summary in the response.
948
976
  */
@@ -1142,7 +1170,6 @@ export interface AdminApi {
1142
1170
  dumpState: Requester<DumpStateRequest, DumpStateResponse>;
1143
1171
  dumpFullState: Requester<DumpFullStateRequest, DumpFullStateResponse>;
1144
1172
  generateAgentPubKey: Requester<GenerateAgentPubKeyRequest, GenerateAgentPubKeyResponse>;
1145
- registerDna: Requester<RegisterDnaRequest, RegisterDnaResponse>;
1146
1173
  getDnaDefinition: Requester<GetDnaDefinitionRequest, GetDnaDefinitionResponse>;
1147
1174
  uninstallApp: Requester<UninstallAppRequest, UninstallAppResponse>;
1148
1175
  installApp: Requester<InstallAppRequest, InstallAppResponse>;
@@ -1152,8 +1179,11 @@ export interface AdminApi {
1152
1179
  listAppInterfaces: Requester<ListAppInterfacesRequest, ListAppInterfacesResponse>;
1153
1180
  agentInfo: Requester<AgentInfoRequest, AgentInfoResponse>;
1154
1181
  addAgentInfo: Requester<AddAgentInfoRequest, AddAgentInfoResponse>;
1182
+ peerMetaInfo: Requester<PeerMetaInfoRequest, PeerMetaInfoResponse>;
1155
1183
  deleteCloneCell: Requester<DeleteCloneCellRequest, DeleteCloneCellResponse>;
1156
1184
  grantZomeCallCapability: Requester<GrantZomeCallCapabilityRequest, GrantZomeCallCapabilityResponse>;
1185
+ revokeZomeCallCapability: Requester<RevokeZomeCallCapabilityRequest, RevokeZomeCallCapabilityResponse>;
1186
+ listCapabilityGrants: Requester<ListCapabilityGrantsRequest, ListCapabilityGrantsResponse>;
1157
1187
  storageInfo: Requester<StorageInfoRequest, StorageInfoResponse>;
1158
1188
  issueAppAuthenticationToken: Requester<IssueAppAuthenticationTokenRequest, IssueAppAuthenticationTokenResponse>;
1159
1189
  dumpNetworkStats: Requester<DumpNetworkStatsRequest, DumpNetworkStatsResponse>;
@@ -48,7 +48,4 @@ export var AppStatusFilter;
48
48
  (function (AppStatusFilter) {
49
49
  AppStatusFilter["Enabled"] = "enabled";
50
50
  AppStatusFilter["Disabled"] = "disabled";
51
- AppStatusFilter["Running"] = "running";
52
- AppStatusFilter["Stopped"] = "stopped";
53
- AppStatusFilter["Paused"] = "paused";
54
51
  })(AppStatusFilter || (AppStatusFilter = {}));
@@ -2,7 +2,7 @@ import { CapSecret, GrantedFunctions } from "../../hdk/index.js";
2
2
  import type { AgentPubKey, CellId } from "../../types.js";
3
3
  import { WsClient } from "../client.js";
4
4
  import { Requester, Transformer, WebsocketConnectionOptions } from "../common.js";
5
- import { AddAgentInfoRequest, AddAgentInfoResponse, AdminApi, AgentInfoRequest, AgentInfoResponse, AgentMetaInfoResponse, AgentMetaInfoRequest, AttachAppInterfaceRequest, AttachAppInterfaceResponse, DeleteCloneCellRequest, DeleteCloneCellResponse, DisableAppRequest, DisableAppResponse, DumpFullStateRequest, DumpFullStateResponse, DumpNetworkMetricsRequest, DumpNetworkMetricsResponse, DumpNetworkStatsRequest, DumpNetworkStatsResponse, DumpStateRequest, DumpStateResponse, EnableAppRequest, EnableAppResponse, GenerateAgentPubKeyRequest, GenerateAgentPubKeyResponse, GetDnaDefinitionRequest, GetDnaDefinitionResponse, GrantZomeCallCapabilityRequest, GrantZomeCallCapabilityResponse, InstallAppRequest, InstallAppResponse, IssueAppAuthenticationTokenRequest, IssueAppAuthenticationTokenResponse, ListAppInterfacesRequest, ListAppInterfacesResponse, ListAppsRequest, ListAppsResponse, ListCellIdsRequest, ListCellIdsResponse, ListDnasRequest, ListDnasResponse, RegisterDnaRequest, RegisterDnaResponse, RevokeAgentKeyRequest, RevokeAgentKeyResponse, StorageInfoRequest, StorageInfoResponse, UninstallAppRequest, UninstallAppResponse, UpdateCoordinatorsRequest, UpdateCoordinatorsResponse } from "./types.js";
5
+ import { AddAgentInfoRequest, AddAgentInfoResponse, AdminApi, AgentInfoRequest, AgentInfoResponse, PeerMetaInfoResponse, PeerMetaInfoRequest, AttachAppInterfaceRequest, AttachAppInterfaceResponse, DeleteCloneCellRequest, DeleteCloneCellResponse, DisableAppRequest, DisableAppResponse, DumpFullStateRequest, DumpFullStateResponse, DumpNetworkMetricsRequest, DumpNetworkMetricsResponse, DumpNetworkStatsRequest, DumpNetworkStatsResponse, DumpStateRequest, DumpStateResponse, EnableAppRequest, EnableAppResponse, GenerateAgentPubKeyRequest, GenerateAgentPubKeyResponse, GetDnaDefinitionRequest, GetDnaDefinitionResponse, GrantZomeCallCapabilityRequest, GrantZomeCallCapabilityResponse, InstallAppRequest, InstallAppResponse, IssueAppAuthenticationTokenRequest, IssueAppAuthenticationTokenResponse, ListAppInterfacesRequest, ListAppInterfacesResponse, ListAppsRequest, ListAppsResponse, ListCellIdsRequest, ListCellIdsResponse, ListDnasRequest, ListDnasResponse, RevokeZomeCallCapabilityRequest, RevokeZomeCallCapabilityResponse, RevokeAgentKeyRequest, RevokeAgentKeyResponse, StorageInfoRequest, StorageInfoResponse, UninstallAppRequest, UninstallAppResponse, UpdateCoordinatorsRequest, UpdateCoordinatorsResponse, ListCapabilityGrantsRequest, ListCapabilityGrantsResponse } from "./types.js";
6
6
  /**
7
7
  * A class for interacting with a conductor's Admin API.
8
8
  *
@@ -55,12 +55,6 @@ export declare class AdminWebsocket implements AdminApi {
55
55
  * Generate a new agent pub key.
56
56
  */
57
57
  revokeAgentKey: Requester<RevokeAgentKeyRequest, RevokeAgentKeyResponse>;
58
- /**
59
- * Register a DNA for later app installation.
60
- *
61
- * Stores the given DNA into the Holochain DNA database and returns the hash of it.
62
- */
63
- registerDna: Requester<RegisterDnaRequest, RegisterDnaResponse>;
64
58
  /**
65
59
  * Get the DNA definition for the specified DNA hash.
66
60
  */
@@ -102,9 +96,9 @@ export declare class AdminWebsocket implements AdminApi {
102
96
  */
103
97
  addAgentInfo: Requester<AddAgentInfoRequest, AddAgentInfoResponse>;
104
98
  /**
105
- * Request agent meta info about an agent.
99
+ * Request peer meta info for a peer.
106
100
  */
107
- agentMetaInfo: Requester<AgentMetaInfoRequest, AgentMetaInfoResponse>;
101
+ peerMetaInfo: Requester<PeerMetaInfoRequest, PeerMetaInfoResponse>;
108
102
  /**
109
103
  * Delete a disabled clone cell.
110
104
  */
@@ -114,6 +108,15 @@ export declare class AdminWebsocket implements AdminApi {
114
108
  * calls.
115
109
  */
116
110
  grantZomeCallCapability: Requester<GrantZomeCallCapabilityRequest, GrantZomeCallCapabilityResponse>;
111
+ /**
112
+ * Revoke a zome call capability for an agent, which was previously granted
113
+ * using {@link AdminWebsocket.grantZomeCallCapability}.
114
+ */
115
+ revokeZomeCallCapability: Requester<RevokeZomeCallCapabilityRequest, RevokeZomeCallCapabilityResponse>;
116
+ /**
117
+ * List all capability grants for all cells.
118
+ */
119
+ listCapabilityGrants: Requester<ListCapabilityGrantsRequest, ListCapabilityGrantsResponse>;
117
120
  storageInfo: Requester<StorageInfoRequest, StorageInfoResponse>;
118
121
  issueAppAuthenticationToken: Requester<IssueAppAuthenticationTokenRequest, IssueAppAuthenticationTokenResponse>;
119
122
  dumpNetworkStats: Requester<DumpNetworkStatsRequest, DumpNetworkStatsResponse>;
@@ -71,12 +71,6 @@ export class AdminWebsocket {
71
71
  * Generate a new agent pub key.
72
72
  */
73
73
  revokeAgentKey = this._requester("revoke_agent_key");
74
- /**
75
- * Register a DNA for later app installation.
76
- *
77
- * Stores the given DNA into the Holochain DNA database and returns the hash of it.
78
- */
79
- registerDna = this._requester("register_dna");
80
74
  /**
81
75
  * Get the DNA definition for the specified DNA hash.
82
76
  */
@@ -118,9 +112,9 @@ export class AdminWebsocket {
118
112
  */
119
113
  addAgentInfo = this._requester("add_agent_info");
120
114
  /**
121
- * Request agent meta info about an agent.
115
+ * Request peer meta info for a peer.
122
116
  */
123
- agentMetaInfo = this._requester("agent_meta_info");
117
+ peerMetaInfo = this._requester("peer_meta_info");
124
118
  /**
125
119
  * Delete a disabled clone cell.
126
120
  */
@@ -130,6 +124,15 @@ export class AdminWebsocket {
130
124
  * calls.
131
125
  */
132
126
  grantZomeCallCapability = this._requester("grant_zome_call_capability");
127
+ /**
128
+ * Revoke a zome call capability for an agent, which was previously granted
129
+ * using {@link AdminWebsocket.grantZomeCallCapability}.
130
+ */
131
+ revokeZomeCallCapability = this._requester("revoke_zome_call_capability");
132
+ /**
133
+ * List all capability grants for all cells.
134
+ */
135
+ listCapabilityGrants = this._requester("list_capability_grants");
133
136
  storageInfo = this._requester("storage_info");
134
137
  issueAppAuthenticationToken = this._requester("issue_app_authentication_token");
135
138
  dumpNetworkStats = this._requester("dump_network_stats");
@@ -1,6 +1,6 @@
1
1
  import { UnsubscribeFunction } from "emittery";
2
2
  import { AgentPubKey, InstalledAppId, RoleName } from "../../types.js";
3
- import { AgentInfoRequest, AgentInfoResponse, AgentMetaInfoRequest, AppInfo, ClonedCell, DumpNetworkMetricsRequest, DumpNetworkMetricsResponse, DumpNetworkStatsResponse, MemproofMap } from "../admin/index.js";
3
+ import { AgentInfoRequest, AgentInfoResponse, PeerMetaInfoRequest, PeerMetaInfoResponse, AppInfo, DumpNetworkMetricsRequest, DumpNetworkMetricsResponse, DumpNetworkStatsResponse, MemproofMap } from "../admin/index.js";
4
4
  import { WsClient } from "../client.js";
5
5
  import { AbandonCountersigningSessionStateRequest, AppClient, AppEvents, AppWebsocketConnectionOptions, CallZomeRequest, CallZomeRequestSigned, CreateCloneCellRequest, DisableCloneCellRequest, EnableCloneCellRequest, GetCountersigningSessionStateRequest, GetCountersigningSessionStateResponse, PublishCountersigningSessionStateRequest, RoleNameCallZomeRequest, SignalCb } from "./types.js";
6
6
  /**
@@ -19,7 +19,7 @@ export declare class AppWebsocket implements AppClient {
19
19
  cachedAppInfo?: AppInfo | null;
20
20
  private readonly appInfoRequester;
21
21
  private readonly agentInfoRequester;
22
- private readonly agentMetaInfoRequester;
22
+ private readonly peerMetaInfoRequester;
23
23
  private readonly callZomeRequester;
24
24
  private readonly provideMemproofRequester;
25
25
  private readonly enableAppRequester;
@@ -35,7 +35,6 @@ export declare class AppWebsocket implements AppClient {
35
35
  /**
36
36
  * Instance factory for creating an {@link AppWebsocket}.
37
37
  *
38
- * @param token - A token to authenticate the websocket connection. Get a token using AdminWebsocket#issueAppAuthenticationToken.
39
38
  * @param options - {@link (WebsocketConnectionOptions:interface)}
40
39
  * @returns A new instance of an AppWebsocket.
41
40
  */
@@ -51,16 +50,18 @@ export declare class AppWebsocket implements AppClient {
51
50
  * Request the currently known agents of the app.
52
51
  *
53
52
  * @param req - An array of DNA hashes or null
53
+ * @param timeout - A timeout to override the default.
54
54
  * @returns The app's agent infos as JSON string.
55
55
  */
56
56
  agentInfo(req: AgentInfoRequest, timeout?: number): Promise<AgentInfoResponse>;
57
57
  /**
58
- * Request agent meta info for an agent by peer Url.
58
+ * Request peer meta info for a peer by Url.
59
59
  *
60
60
  * @param req - The peer Url of the agent and an optional array of DNA hashes
61
- * @returns The app's agent infos as JSON string.
61
+ * @param timeout - A timeout to override the default.
62
+ * @returns The meta info stored for this peer URL.
62
63
  */
63
- agentMetaInfo(req: AgentMetaInfoRequest, timeout?: number): Promise<AgentInfoResponse>;
64
+ peerMetaInfo(req: PeerMetaInfoRequest, timeout?: number): Promise<PeerMetaInfoResponse>;
64
65
  /**
65
66
  * Request network stats.
66
67
  *
@@ -106,14 +107,14 @@ export declare class AppWebsocket implements AppClient {
106
107
  * @param args - Specify the cell to clone.
107
108
  * @returns The created clone cell.
108
109
  */
109
- createCloneCell(args: CreateCloneCellRequest): Promise<ClonedCell>;
110
+ createCloneCell(args: CreateCloneCellRequest): Promise<import("../admin/types.js").ClonedCell>;
110
111
  /**
111
112
  * Enable a disabled clone cell.
112
113
  *
113
114
  * @param args - Specify the clone cell to enable.
114
115
  * @returns The enabled clone cell.
115
116
  */
116
- enableCloneCell(args: EnableCloneCellRequest): Promise<ClonedCell>;
117
+ enableCloneCell(args: EnableCloneCellRequest): Promise<import("../admin/types.js").ClonedCell>;
117
118
  /**
118
119
  * Disable an enabled clone cell.
119
120
  *
@@ -25,7 +25,7 @@ export class AppWebsocket {
25
25
  cachedAppInfo;
26
26
  appInfoRequester;
27
27
  agentInfoRequester;
28
- agentMetaInfoRequester;
28
+ peerMetaInfoRequester;
29
29
  callZomeRequester;
30
30
  provideMemproofRequester;
31
31
  enableAppRequester;
@@ -47,7 +47,7 @@ export class AppWebsocket {
47
47
  this.cachedAppInfo = appInfo;
48
48
  this.appInfoRequester = AppWebsocket.requester(this.client, "app_info", this.defaultTimeout);
49
49
  this.agentInfoRequester = AppWebsocket.requester(this.client, "agent_info", this.defaultTimeout);
50
- this.agentMetaInfoRequester = AppWebsocket.requester(this.client, "agent_meta_info", this.defaultTimeout);
50
+ this.peerMetaInfoRequester = AppWebsocket.requester(this.client, "peer_meta_info", this.defaultTimeout);
51
51
  this.callZomeRequester = AppWebsocket.requester(this.client, "call_zome", this.defaultTimeout, this.callZomeTransform);
52
52
  this.provideMemproofRequester = AppWebsocket.requester(this.client, "provide_memproofs", this.defaultTimeout);
53
53
  this.enableAppRequester = AppWebsocket.requester(this.client, "enable_app", this.defaultTimeout);
@@ -75,7 +75,6 @@ export class AppWebsocket {
75
75
  /**
76
76
  * Instance factory for creating an {@link AppWebsocket}.
77
77
  *
78
- * @param token - A token to authenticate the websocket connection. Get a token using AdminWebsocket#issueAppAuthenticationToken.
79
78
  * @param options - {@link (WebsocketConnectionOptions:interface)}
80
79
  * @returns A new instance of an AppWebsocket.
81
80
  */
@@ -117,21 +116,21 @@ export class AppWebsocket {
117
116
  * Request the currently known agents of the app.
118
117
  *
119
118
  * @param req - An array of DNA hashes or null
119
+ * @param timeout - A timeout to override the default.
120
120
  * @returns The app's agent infos as JSON string.
121
121
  */
122
122
  async agentInfo(req, timeout) {
123
- const agentInfos = await this.agentInfoRequester(req, timeout);
124
- return agentInfos;
123
+ return await this.agentInfoRequester(req, timeout);
125
124
  }
126
125
  /**
127
- * Request agent meta info for an agent by peer Url.
126
+ * Request peer meta info for a peer by Url.
128
127
  *
129
128
  * @param req - The peer Url of the agent and an optional array of DNA hashes
130
- * @returns The app's agent infos as JSON string.
129
+ * @param timeout - A timeout to override the default.
130
+ * @returns The meta info stored for this peer URL.
131
131
  */
132
- async agentMetaInfo(req, timeout) {
133
- const agentInfos = await this.agentMetaInfoRequester(req, timeout);
134
- return agentInfos;
132
+ async peerMetaInfo(req, timeout) {
133
+ return await this.peerMetaInfoRequester(req, timeout);
135
134
  }
136
135
  /**
137
136
  * Request network stats.
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.52.3"
8
+ "packageVersion": "7.52.8"
9
9
  }
10
10
  ]
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holochain/client",
3
- "version": "0.20.0-dev.1",
3
+ "version": "0.20.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",