@soulcraft/brainy 3.37.1 → 3.37.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/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
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.37.2](https://github.com/soulcraftlabs/brainy/compare/v3.37.1...v3.37.2) (2025-10-10)
6
+
7
+ - fix: ensure GCS storage initialization before pagination (2565685)
8
+
9
+
5
10
  ### [3.37.1](https://github.com/soulcraftlabs/brainy/compare/v3.37.0...v3.37.1) (2025-10-10)
6
11
 
7
12
 
@@ -782,6 +782,7 @@ export class GcsStorage extends BaseStorage {
782
782
  * Iterates through UUID-based shards for consistent pagination
783
783
  */
784
784
  async getNodesWithPagination(options) {
785
+ await this.ensureInitialized(); // CRITICAL: Must initialize before using this.bucket
785
786
  const limit = options.limit || 100;
786
787
  const useCache = options.useCache !== false;
787
788
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soulcraft/brainy",
3
- "version": "3.37.1",
3
+ "version": "3.37.2",
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",