agent-swarm-kit 1.1.3 → 1.1.4

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/build/index.cjs CHANGED
@@ -9537,6 +9537,9 @@ const CREATE_EMBEDDING_FN = async (item, self) => {
9537
9537
  const WAIT_FOR_INIT_FN$1 = async (self) => {
9538
9538
  GLOBAL_CONFIG.CC_LOGGER_ENABLE_DEBUG &&
9539
9539
  self.params.logger.debug(`ClientStorage storageName=${self.params.storageName} clientId=${self.params.clientId} shared=${self.params.shared} waitForInit`);
9540
+ if (GLOBAL_CONFIG.CC_STORAGE_DISABLE_GET_DATA) {
9541
+ return;
9542
+ }
9540
9543
  if (!self.params.getData) {
9541
9544
  return;
9542
9545
  }
package/build/index.mjs CHANGED
@@ -9535,6 +9535,9 @@ const CREATE_EMBEDDING_FN = async (item, self) => {
9535
9535
  const WAIT_FOR_INIT_FN$1 = async (self) => {
9536
9536
  GLOBAL_CONFIG.CC_LOGGER_ENABLE_DEBUG &&
9537
9537
  self.params.logger.debug(`ClientStorage storageName=${self.params.storageName} clientId=${self.params.clientId} shared=${self.params.shared} waitForInit`);
9538
+ if (GLOBAL_CONFIG.CC_STORAGE_DISABLE_GET_DATA) {
9539
+ return;
9540
+ }
9538
9541
  if (!self.params.getData) {
9539
9542
  return;
9540
9543
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-swarm-kit",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "A TypeScript library for building orchestrated framework-agnostic multi-agent AI systems",
5
5
  "author": {
6
6
  "name": "Petr Tripolsky",