cocoda-sdk 3.6.3 → 3.6.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.
@@ -351,7 +351,7 @@ __export(providers_exports, {
351
351
  // src/providers/base-provider.js
352
352
  var import_jskos_tools = __toESM(require("jskos-tools"), 1);
353
353
  var import_axios = __toESM(require("axios"), 1);
354
- var intersection = (arrays) => arrays.reduce((a, b) => a.filter((c) => b.includes(c)));
354
+ var intersection = (a1, a2) => a1.filter((x) => a2.includes(x));
355
355
  var BaseProvider = class {
356
356
  static providerName = "Base";
357
357
  /**