chromadb 3.1.7 → 3.1.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chromadb",
3
- "version": "3.1.7",
3
+ "version": "3.1.8",
4
4
  "description": "A JavaScript interface for chroma",
5
5
  "keywords": [
6
6
  "chroma",
@@ -60,11 +60,11 @@
60
60
  "@chroma-core/default-embed": "^0.1.9"
61
61
  },
62
62
  "optionalDependencies": {
63
- "chromadb-js-bindings-darwin-arm64": "^1.1.1",
64
- "chromadb-js-bindings-darwin-x64": "^1.1.1",
65
- "chromadb-js-bindings-linux-arm64-gnu": "^1.1.1",
66
- "chromadb-js-bindings-linux-x64-gnu": "^1.1.1",
67
- "chromadb-js-bindings-win32-x64-msvc": "^1.1.1"
63
+ "chromadb-js-bindings-darwin-arm64": "^1.1.4",
64
+ "chromadb-js-bindings-darwin-x64": "^1.1.4",
65
+ "chromadb-js-bindings-linux-arm64-gnu": "^1.1.4",
66
+ "chromadb-js-bindings-linux-x64-gnu": "^1.1.4",
67
+ "chromadb-js-bindings-win32-x64-msvc": "^1.1.4"
68
68
  },
69
69
  "engines": {
70
70
  "node": ">=20"
@@ -21,6 +21,10 @@ export type AttachFunctionRequest = {
21
21
 
22
22
  export type AttachFunctionResponse = {
23
23
  attached_function: AttachedFunctionInfo;
24
+ /**
25
+ * True if newly created, false if already existed (idempotent request)
26
+ */
27
+ created: boolean;
24
28
  };
25
29
 
26
30
  /**