@holochain/client 0.18.0-dev.12 → 0.18.0-dev.13

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.
@@ -188,9 +188,14 @@ export type RevokeAgentKeyRequest = {
188
188
  app_id: InstalledAppId;
189
189
  };
190
190
  /**
191
+ * Contains a list of errors of the cells where deletion was unsuccessful.
192
+ *
193
+ * If the key could not be deleted from all cells, the call
194
+ * {@link RevokeAgentKeyRequest} can be re-attempted to delete the key from the remaining cells.
195
+ *
191
196
  * @public
192
197
  */
193
- export type RevokeAgentKeyResponse = void;
198
+ export type RevokeAgentKeyResponse = Array<[CellId, string]>;
194
199
  /**
195
200
  * @public
196
201
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holochain/client",
3
- "version": "0.18.0-dev.12",
3
+ "version": "0.18.0-dev.13",
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",