@soulcraft/brainy 3.29.0 → 3.29.1

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [3.29.1](https://github.com/soulcraftlabs/brainy/compare/v3.29.0...v3.29.1) (2025-10-09)
6
+
7
+
8
+ ### 🐛 Bug Fixes
9
+
10
+ * pass entire storage config to createStorage (gcsNativeStorage now detected) ([7a58dd7](https://github.com/soulcraftlabs/brainy/commit/7a58dd774d956cb3b548064724f9f86c0754f82e))
11
+
5
12
  ## [3.29.0](https://github.com/soulcraftlabs/brainy/compare/v3.28.0...v3.29.0) (2025-10-09)
6
13
 
7
14
 
package/dist/brainy.js CHANGED
@@ -2227,10 +2227,9 @@ export class Brainy {
2227
2227
  * Setup storage
2228
2228
  */
2229
2229
  async setupStorage() {
2230
- const storage = await createStorage({
2231
- type: this.config.storage?.type || 'auto',
2232
- ...this.config.storage?.options
2233
- });
2230
+ // Pass the entire storage config object to createStorage
2231
+ // This ensures all storage-specific configs (gcsNativeStorage, s3Storage, etc.) are passed through
2232
+ const storage = await createStorage(this.config.storage);
2234
2233
  return storage;
2235
2234
  }
2236
2235
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soulcraft/brainy",
3
- "version": "3.29.0",
3
+ "version": "3.29.1",
4
4
  "description": "Universal Knowledge Protocol™ - World's first Triple Intelligence database unifying vector, graph, and document search in one API. 31 nouns × 40 verbs for infinite expressiveness.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",