@knowlearning/agents 0.9.182 → 0.9.183

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knowlearning/agents",
3
- "version": "0.9.182",
3
+ "version": "0.9.183",
4
4
  "description": "API for embedding applications in KnowLearning systems.",
5
5
  "main": "node.js",
6
6
  "browser": "browser.js",
package/types.d.ts CHANGED
@@ -37,7 +37,7 @@ export interface Agent {
37
37
  upload(info?: AgentUploadInfo): Promise<string>;
38
38
  download(id?: string): Promise<Response>;
39
39
  environment(userId?: string): Promise<AgentEnvironment>;
40
- close(): void;
40
+ close(info: any): void;
41
41
  reset(ns: string): Promise<void>;
42
42
  // TODO: add query function
43
43
  synced(): Promise<void>;