@enfyra/kernel 2.0.8 → 2.0.9

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.
@@ -2004,7 +2004,7 @@ async function __nextStreamChunk(
2004
2004
  return { done: false, value: firstChunk };
2005
2005
  }
2006
2006
  try {
2007
- const next = await __nextStreamChunk(iterator, deadlineMs, idleTimeoutMs, timeoutMs);
2007
+ const next = await iterator.next();
2008
2008
  if (closed || next.done) {
2009
2009
  closed = true;
2010
2010
  return { done: true, value: undefined };
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@enfyra/kernel",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "source": "bundled-compiled-kernel"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enfyra/kernel",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "Closed-distribution Enfyra kernel runtime",
5
5
  "license": "Elastic-2.0",
6
6
  "packageManager": "yarn@4.17.0",